diff --git a/Color Flipper/app.js b/Color Flipper/app.js
deleted file mode 100644
index 7d4d8a2..0000000
--- a/Color Flipper/app.js
+++ /dev/null
@@ -1,31 +0,0 @@
-let arrOfColor = ['red', 'green', 'blue', 'yellow', 'orange'];
-let count = 0;
-let spanElem = document.body.querySelector('.display_color_random');
-let buttonElem = document.querySelector('.button');
-
-document.addEventListener('DOMContentLoaded', function(e) {
- spanElem.innerHTML = arrOfColor[count].toUpperCase();
- spanElem.style.color = arrOfColor[count];
-
- document.body.style.backgroundColor = arrOfColor[count].toUpperCase();
-
- buttonElem.style.backgroundColor = arrOfColor[count];
- buttonElem.addEventListener('click', changeBackgroundColor);
-
- count++;
-});
-
-
-function changeBackgroundColor(e) {
- if(count === arrOfColor.length) {
- count = 0;
- } else {
- spanElem.innerHTML = arrOfColor[count].toUpperCase();
- spanElem.style.color = arrOfColor[count];
-
- document.body.style.backgroundColor = arrOfColor[count];
-
- buttonElem.style.backgroundColor = arrOfColor[count];
- count++;
- }
-}
\ No newline at end of file
diff --git a/Color Flipper/index.html b/Color Flipper/index.html
deleted file mode 100644
index 53bea79..0000000
--- a/Color Flipper/index.html
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
- Color Flipper
-
-
-
-
-
-
Background Color: RED
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Color Flipper/style.css b/Color Flipper/style.css
deleted file mode 100644
index 99952bc..0000000
--- a/Color Flipper/style.css
+++ /dev/null
@@ -1,69 +0,0 @@
-* {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
-}
-
-html, body {
- font-size: 18px;
- height: 100vh;
-}
-
-.nav {
- background-color: white;
- height: 8%;
- width: 100%;
- display: flex;
- box-shadow: 0 0 25px -5px black;
- justify-content: space-between;
- align-items: center;
-}
-
-.color_changer {
- display: flex;
- padding-right: 50px;
- font-weight: 700;
-}
-
-.color_changer_simple {
- padding-right: 25px;
-}
-
-.logo {
- padding-left: 50px;
- color: hsl(205, 78%, 60%);
-}
-
-.main {
- width: 80%;
- margin: 40px auto;
-}
-
-.main div:first-child {
- width: 70%;
- height: 3rem;
- background-color: black;
- color: white;
- font-size: 2rem;
- align-items: center;
- justify-content: center;
- display: flex;
- border-radius: 5px;
- margin: 0 auto 2rem;
- padding: 10px;
-}
-
-.button {
- margin: 0 auto;
- padding: 15px;
- border-radius: 5px;
- border: 2px solid black;
- display: block;
-}
-
-.button:hover {
- background-color: black;
- color: white;
- cursor: pointer;
- border-color: white;
-}
diff --git a/Drum Kit/images/home_background.jpg b/Drum Kit/images/home_background.jpg
deleted file mode 100644
index fd478ed..0000000
Binary files a/Drum Kit/images/home_background.jpg and /dev/null differ
diff --git a/Drum Kit/index.html b/Drum Kit/index.html
deleted file mode 100644
index 865ad68..0000000
--- a/Drum Kit/index.html
+++ /dev/null
@@ -1,75 +0,0 @@
-
-
-
- Drum Kit
-
-
-
-
- -
-
A
- CLAP
-
-
- -
-
S
- HIHAT
-
-
- -
-
D
- KICK
-
-
- -
-
F
- OPENHAT
-
-
- -
-
G
- BOOM
-
-
- -
-
H
- RIDE
-
-
- -
-
J
- SNARE
-
-
- -
-
K
- TOM
-
-
- -
-
L
- TINK
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Drum Kit/script.js b/Drum Kit/script.js
deleted file mode 100644
index 8adda6b..0000000
--- a/Drum Kit/script.js
+++ /dev/null
@@ -1,37 +0,0 @@
-const pressedKey = document.addEventListener('keyup', playAudio);
-const keys = document.getElementsByClassName('key-des');
-
-
-function playAudio(e) {
- if (e.key.toLowerCase() === 'a') {
- helper(0);
- } else if (e.key.toLowerCase() === 's') {
- helper(1);
- } else if (e.key.toLowerCase() === 'd') {
- helper(2);
- } else if (e.key.toLowerCase() === 'f') {
- helper(3);
- } else if (e.key.toLowerCase() === 'g') {
- helper(4);
- } else if (e.key.toLowerCase() === 'h') {
- helper(5);
- } else if (e.key.toLowerCase() === 'j') {
- helper(6);
- } else if (e.key.toLowerCase() === 'k') {
- helper(7);
- } else if (e.key.toLowerCase() === 'l') {
- helper(8);
- }
-}
-
-function helper(index) {
- const parentElem = keys[index];
- const audio = parentElem.querySelector('audio');
-
- parentElem.className += ' playing';
- audio.play();
-
- setTimeout(function() {
- parentElem.classList.remove('playing');
- }, 400);
-}
\ No newline at end of file
diff --git a/Drum Kit/sounds/boom.wav b/Drum Kit/sounds/boom.wav
deleted file mode 100644
index 8d6423b..0000000
Binary files a/Drum Kit/sounds/boom.wav and /dev/null differ
diff --git a/Drum Kit/sounds/clap.wav b/Drum Kit/sounds/clap.wav
deleted file mode 100644
index ef952e5..0000000
Binary files a/Drum Kit/sounds/clap.wav and /dev/null differ
diff --git a/Drum Kit/sounds/hihat.wav b/Drum Kit/sounds/hihat.wav
deleted file mode 100644
index 885cb19..0000000
Binary files a/Drum Kit/sounds/hihat.wav and /dev/null differ
diff --git a/Drum Kit/sounds/kick.wav b/Drum Kit/sounds/kick.wav
deleted file mode 100644
index 8fe46de..0000000
Binary files a/Drum Kit/sounds/kick.wav and /dev/null differ
diff --git a/Drum Kit/sounds/openhat.wav b/Drum Kit/sounds/openhat.wav
deleted file mode 100644
index 5063752..0000000
Binary files a/Drum Kit/sounds/openhat.wav and /dev/null differ
diff --git a/Drum Kit/sounds/owid-covid-data.json b/Drum Kit/sounds/owid-covid-data.json
deleted file mode 100644
index c46d362..0000000
--- a/Drum Kit/sounds/owid-covid-data.json
+++ /dev/null
@@ -1,308838 +0,0 @@
-{
- "ABW": {
- "continent": "North America",
- "location": "Aruba",
- "population": 106766.0,
- "population_density": 584.8,
- "median_age": 41.2,
- "aged_65_older": 13.085,
- "aged_70_older": 7.452,
- "gdp_per_capita": 35973.781,
- "diabetes_prevalence": 11.62,
- "life_expectancy": 76.29,
- "data": [
- {
- "date": "2020-03-13",
- "total_cases": 2.0,
- "new_cases": 2.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 18.733,
- "new_cases_per_million": 18.733,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-19",
- "new_cases_smoothed": 0.286,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 2.676,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 33.33
- },
- {
- "date": "2020-03-20",
- "total_cases": 4.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 37.465,
- "new_cases_per_million": 18.733,
- "new_cases_smoothed_per_million": 2.676,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 33.33
- },
- {
- "date": "2020-03-21",
- "new_cases_smoothed": 0.286,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 2.676,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-03-22",
- "new_cases_smoothed": 0.286,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 2.676,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-03-23",
- "new_cases_smoothed": 0.286,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 2.676,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-03-24",
- "total_cases": 12.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 112.395,
- "new_cases_per_million": 74.93,
- "new_cases_smoothed_per_million": 13.38,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-03-25",
- "total_cases": 17.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 159.227,
- "new_cases_per_million": 46.831,
- "new_cases_smoothed_per_million": 20.071,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-03-26",
- "total_cases": 19.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 177.959,
- "new_cases_per_million": 18.733,
- "new_cases_smoothed_per_million": 22.747,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-03-27",
- "total_cases": 28.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 3.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 262.256,
- "new_cases_per_million": 84.296,
- "new_cases_smoothed_per_million": 32.113,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-03-28",
- "total_cases": 28.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 262.256,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 32.113,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-03-29",
- "total_cases": 28.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 262.256,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 32.113,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-03-30",
- "total_cases": 50.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 6.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 468.314,
- "new_cases_per_million": 206.058,
- "new_cases_smoothed_per_million": 61.55,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-03-31",
- "new_cases_smoothed": 5.429,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 50.846,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-01",
- "total_cases": 55.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 515.145,
- "new_cases_per_million": 46.831,
- "new_cases_smoothed_per_million": 50.846,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-02",
- "total_cases": 55.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 515.145,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 48.169,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-03",
- "total_cases": 60.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 4.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 561.977,
- "new_cases_per_million": 46.831,
- "new_cases_smoothed_per_million": 42.817,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-04",
- "total_cases": 62.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 4.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 580.709,
- "new_cases_per_million": 18.733,
- "new_cases_smoothed_per_million": 45.493,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-05",
- "total_cases": 64.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 599.442,
- "new_cases_per_million": 18.733,
- "new_cases_smoothed_per_million": 48.169,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-06",
- "total_cases": 64.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 599.442,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 18.733,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-07",
- "total_cases": 71.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 665.006,
- "new_cases_per_million": 65.564,
- "new_cases_smoothed_per_million": 28.099,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-08",
- "total_cases": 74.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 693.105,
- "new_cases_per_million": 28.099,
- "new_cases_smoothed_per_million": 25.423,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-09",
- "total_cases": 77.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 3.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 721.203,
- "new_cases_per_million": 28.099,
- "new_cases_smoothed_per_million": 29.437,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-10",
- "total_cases": 82.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 3.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 768.035,
- "new_cases_per_million": 46.831,
- "new_cases_smoothed_per_million": 29.437,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-11",
- "total_cases": 86.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 3.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 805.5,
- "new_cases_per_million": 37.465,
- "new_cases_smoothed_per_million": 32.113,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-12",
- "total_cases": 92.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 4.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 861.698,
- "new_cases_per_million": 56.198,
- "new_cases_smoothed_per_million": 37.465,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-13",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 861.698,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 37.465,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-14",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 861.698,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 28.099,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-15",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 861.698,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 24.085,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-16",
- "total_cases": 93.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 871.064,
- "new_cases_per_million": 9.366,
- "new_cases_smoothed_per_million": 21.409,
- "total_deaths_per_million": 9.366,
- "new_deaths_per_million": 9.366,
- "new_deaths_smoothed_per_million": 1.338,
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-17",
- "total_cases": 95.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 889.796,
- "new_cases_per_million": 18.733,
- "new_cases_smoothed_per_million": 17.395,
- "total_deaths_per_million": 9.366,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.338,
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-18",
- "total_cases": 96.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 2.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 899.163,
- "new_cases_per_million": 9.366,
- "new_cases_smoothed_per_million": 13.38,
- "total_deaths_per_million": 18.733,
- "new_deaths_per_million": 9.366,
- "new_deaths_smoothed_per_million": 2.676,
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-19",
- "total_cases": 96.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 899.163,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.352,
- "total_deaths_per_million": 18.733,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.676,
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-20",
- "total_cases": 97.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 908.529,
- "new_cases_per_million": 9.366,
- "new_cases_smoothed_per_million": 6.69,
- "total_deaths_per_million": 18.733,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.676,
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-21",
- "total_cases": 97.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 908.529,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.69,
- "total_deaths_per_million": 18.733,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.676,
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-22",
- "total_cases": 97.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 908.529,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.69,
- "total_deaths_per_million": 18.733,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.676,
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-23",
- "total_cases": 100.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 936.628,
- "new_cases_per_million": 28.099,
- "new_cases_smoothed_per_million": 9.366,
- "total_deaths_per_million": 18.733,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.338,
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-24",
- "total_cases": 100.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 936.628,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.69,
- "total_deaths_per_million": 18.733,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.338,
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-25",
- "total_cases": 100.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 936.628,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.352,
- "total_deaths_per_million": 18.733,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-26",
- "total_cases": 100.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 936.628,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.352,
- "total_deaths_per_million": 18.733,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-27",
- "total_cases": 100.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 936.628,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.014,
- "total_deaths_per_million": 18.733,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-28",
- "total_cases": 100.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 936.628,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.014,
- "total_deaths_per_million": 18.733,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-29",
- "total_cases": 100.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 936.628,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.014,
- "total_deaths_per_million": 18.733,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-30",
- "total_cases": 100.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 936.628,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 18.733,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-01",
- "total_cases": 100.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 936.628,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 18.733,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-02",
- "total_cases": 100.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 936.628,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 18.733,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-03",
- "total_cases": 100.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 936.628,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 18.733,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-04",
- "total_cases": 100.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 936.628,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 18.733,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-05",
- "total_cases": 100.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 936.628,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 18.733,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-06",
- "total_cases": 100.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 936.628,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 18.733,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-07",
- "total_cases": 101.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 9.366,
- "new_cases_smoothed_per_million": 1.338,
- "total_deaths_per_million": 18.733,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-08",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.338,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 9.366,
- "new_deaths_smoothed_per_million": 1.338,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-09",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.338,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.338,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-10",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.338,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.338,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-11",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.338,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.338,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-12",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.338,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.338,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-13",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.338,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.338,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-14",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.338,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-15",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-16",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-17",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-18",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-05-19",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-05-20",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-05-21",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-05-22",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-05-23",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-05-24",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-05-25",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-05-26",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-05-27",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-05-28",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-05-29",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-05-30",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-05-31",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-01",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-02",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-03",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-04",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-05",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-06",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-07",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-08",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-09",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-10",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-06-11",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-06-12",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-06-13",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-06-14",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-06-15",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-06-16",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-06-17",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-06-18",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-06-19",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-06-20",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-06-21",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-06-22",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-06-23",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-06-24",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-06-25",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-06-26",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-06-27",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-06-28",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-06-29",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 945.994,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-06-30",
- "total_cases": 103.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 964.727,
- "new_cases_per_million": 18.733,
- "new_cases_smoothed_per_million": 2.676,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-07-01",
- "total_cases": 103.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 964.727,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.676,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-07-02",
- "total_cases": 103.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 964.727,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.676,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-07-03",
- "total_cases": 104.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 974.093,
- "new_cases_per_million": 9.366,
- "new_cases_smoothed_per_million": 4.014,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-07-04",
- "total_cases": 104.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 974.093,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.014,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-07-05",
- "total_cases": 105.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 983.459,
- "new_cases_per_million": 9.366,
- "new_cases_smoothed_per_million": 5.352,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-07-06",
- "total_cases": 105.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 983.459,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.352,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-07-07",
- "total_cases": 105.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 983.459,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.676,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-07-08",
- "total_cases": 105.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 983.459,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.676,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-07-09",
- "total_cases": 105.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 983.459,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.676,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-07-10",
- "total_cases": 105.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 983.459,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.338,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-07-11",
- "total_cases": 105.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 983.459,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.338,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-07-12",
- "total_cases": 105.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 983.459,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-07-13",
- "total_cases": 105.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 983.459,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-07-14",
- "total_cases": 105.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 983.459,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-07-15",
- "total_cases": 106.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 992.825,
- "new_cases_per_million": 9.366,
- "new_cases_smoothed_per_million": 1.338,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-07-16",
- "total_cases": 106.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 992.825,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.338,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-07-17",
- "total_cases": 108.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1011.558,
- "new_cases_per_million": 18.733,
- "new_cases_smoothed_per_million": 4.014,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-07-18",
- "total_cases": 108.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1011.558,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.014,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-07-19",
- "total_cases": 108.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1011.558,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.014,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-07-20",
- "total_cases": 113.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1058.389,
- "new_cases_per_million": 46.831,
- "new_cases_smoothed_per_million": 10.704,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-07-21",
- "total_cases": 115.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1077.122,
- "new_cases_per_million": 18.733,
- "new_cases_smoothed_per_million": 13.38,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-07-22",
- "total_cases": 117.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1095.854,
- "new_cases_per_million": 18.733,
- "new_cases_smoothed_per_million": 14.718,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-07-23",
- "total_cases": 117.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1095.854,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 14.718,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-07-24",
- "total_cases": 117.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1095.854,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 12.042,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-07-25",
- "total_cases": 118.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1105.221,
- "new_cases_per_million": 9.366,
- "new_cases_smoothed_per_million": 13.38,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-07-26",
- "total_cases": 119.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1114.587,
- "new_cases_per_million": 9.366,
- "new_cases_smoothed_per_million": 14.718,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-07-27",
- "total_cases": 119.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1114.587,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.028,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-07-28",
- "total_cases": 119.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1114.587,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.352,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-07-29",
- "total_cases": 119.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1114.587,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.676,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-07-30",
- "total_cases": 119.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1114.587,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.676,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-07-31",
- "total_cases": 120.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1123.953,
- "new_cases_per_million": 9.366,
- "new_cases_smoothed_per_million": 4.014,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-08-01",
- "total_cases": 121.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1133.32,
- "new_cases_per_million": 9.366,
- "new_cases_smoothed_per_million": 4.014,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-08-02",
- "total_cases": 121.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1133.32,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.676,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-08-03",
- "total_cases": 122.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1142.686,
- "new_cases_per_million": 9.366,
- "new_cases_smoothed_per_million": 4.014,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 32.41
- },
- {
- "date": "2020-08-04",
- "total_cases": 124.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1161.418,
- "new_cases_per_million": 18.733,
- "new_cases_smoothed_per_million": 6.69,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 43.52
- },
- {
- "date": "2020-08-05",
- "total_cases": 132.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1236.349,
- "new_cases_per_million": 74.93,
- "new_cases_smoothed_per_million": 17.395,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 43.52
- },
- {
- "date": "2020-08-06",
- "total_cases": 171.0,
- "new_cases": 39.0,
- "new_cases_smoothed": 7.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1601.633,
- "new_cases_per_million": 365.285,
- "new_cases_smoothed_per_million": 69.578,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 43.52
- },
- {
- "date": "2020-08-07",
- "total_cases": 263.0,
- "new_cases": 92.0,
- "new_cases_smoothed": 20.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2463.331,
- "new_cases_per_million": 861.698,
- "new_cases_smoothed_per_million": 191.34,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-08",
- "total_cases": 396.0,
- "new_cases": 133.0,
- "new_cases_smoothed": 39.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3709.046,
- "new_cases_per_million": 1245.715,
- "new_cases_smoothed_per_million": 367.961,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-09",
- "total_cases": 509.0,
- "new_cases": 113.0,
- "new_cases_smoothed": 55.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 4767.435,
- "new_cases_per_million": 1058.389,
- "new_cases_smoothed_per_million": 519.159,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-10",
- "total_cases": 563.0,
- "new_cases": 54.0,
- "new_cases_smoothed": 63.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5273.214,
- "new_cases_per_million": 505.779,
- "new_cases_smoothed_per_million": 590.075,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-11",
- "total_cases": 630.0,
- "new_cases": 67.0,
- "new_cases_smoothed": 72.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5900.755,
- "new_cases_per_million": 627.541,
- "new_cases_smoothed_per_million": 677.048,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-12",
- "total_cases": 717.0,
- "new_cases": 87.0,
- "new_cases_smoothed": 83.571,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6715.621,
- "new_cases_per_million": 814.866,
- "new_cases_smoothed_per_million": 782.753,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-13",
- "total_cases": 798.0,
- "new_cases": 81.0,
- "new_cases_smoothed": 89.571,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 7474.29,
- "new_cases_per_million": 758.668,
- "new_cases_smoothed_per_million": 838.951,
- "total_deaths_per_million": 28.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-14",
- "total_cases": 894.0,
- "new_cases": 96.0,
- "new_cases_smoothed": 90.143,
- "total_deaths": 4.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 8373.452,
- "new_cases_per_million": 899.163,
- "new_cases_smoothed_per_million": 844.303,
- "total_deaths_per_million": 37.465,
- "new_deaths_per_million": 9.366,
- "new_deaths_smoothed_per_million": 1.338,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-15",
- "total_cases": 973.0,
- "new_cases": 79.0,
- "new_cases_smoothed": 82.429,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 9113.388,
- "new_cases_per_million": 739.936,
- "new_cases_smoothed_per_million": 772.049,
- "total_deaths_per_million": 37.465,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.338,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-16",
- "total_cases": 1048.0,
- "new_cases": 75.0,
- "new_cases_smoothed": 77.0,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 9815.859,
- "new_cases_per_million": 702.471,
- "new_cases_smoothed_per_million": 721.203,
- "total_deaths_per_million": 37.465,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.338,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-17",
- "total_cases": 1102.0,
- "new_cases": 54.0,
- "new_cases_smoothed": 77.0,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 10321.638,
- "new_cases_per_million": 505.779,
- "new_cases_smoothed_per_million": 721.203,
- "total_deaths_per_million": 37.465,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.338,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-18",
- "total_cases": 1121.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 70.143,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 10499.597,
- "new_cases_per_million": 177.959,
- "new_cases_smoothed_per_million": 656.977,
- "total_deaths_per_million": 37.465,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.338,
- "stringency_index": 58.33
- },
- {
- "date": "2020-08-19",
- "total_cases": 1121.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 57.714,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 10499.597,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 540.568,
- "total_deaths_per_million": 37.465,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.338,
- "stringency_index": 58.33
- },
- {
- "date": "2020-08-20",
- "total_cases": 1296.0,
- "new_cases": 175.0,
- "new_cases_smoothed": 71.143,
- "total_deaths": 5.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 12138.696,
- "new_cases_per_million": 1639.099,
- "new_cases_smoothed_per_million": 666.344,
- "total_deaths_per_million": 46.831,
- "new_deaths_per_million": 9.366,
- "new_deaths_smoothed_per_million": 2.676,
- "stringency_index": 58.33
- },
- {
- "date": "2020-08-21",
- "total_cases": 1387.0,
- "new_cases": 91.0,
- "new_cases_smoothed": 70.429,
- "total_deaths": 6.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 12991.027,
- "new_cases_per_million": 852.331,
- "new_cases_smoothed_per_million": 659.654,
- "total_deaths_per_million": 56.198,
- "new_deaths_per_million": 9.366,
- "new_deaths_smoothed_per_million": 2.676,
- "stringency_index": 58.33
- },
- {
- "date": "2020-08-22",
- "total_cases": 1464.0,
- "new_cases": 77.0,
- "new_cases_smoothed": 70.143,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 13712.23,
- "new_cases_per_million": 721.203,
- "new_cases_smoothed_per_million": 656.977,
- "total_deaths_per_million": 56.198,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.676,
- "stringency_index": 58.33
- },
- {
- "date": "2020-08-23",
- "total_cases": 1534.0,
- "new_cases": 70.0,
- "new_cases_smoothed": 69.429,
- "total_deaths": 7.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 14367.87,
- "new_cases_per_million": 655.639,
- "new_cases_smoothed_per_million": 650.287,
- "total_deaths_per_million": 65.564,
- "new_deaths_per_million": 9.366,
- "new_deaths_smoothed_per_million": 4.014,
- "stringency_index": 58.33
- },
- {
- "date": "2020-08-24",
- "total_cases": 1568.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 66.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 14686.323,
- "new_cases_per_million": 318.453,
- "new_cases_smoothed_per_million": 623.526,
- "total_deaths_per_million": 65.564,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 4.014,
- "stringency_index": 58.33
- },
- {
- "date": "2020-08-25",
- "total_cases": 1628.0,
- "new_cases": 60.0,
- "new_cases_smoothed": 72.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 15248.3,
- "new_cases_per_million": 561.977,
- "new_cases_smoothed_per_million": 678.386,
- "total_deaths_per_million": 65.564,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 4.014,
- "stringency_index": 58.33
- },
- {
- "date": "2020-08-26",
- "total_cases": 1670.0,
- "new_cases": 42.0,
- "new_cases_smoothed": 78.429,
- "total_deaths": 8.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 15641.684,
- "new_cases_per_million": 393.384,
- "new_cases_smoothed_per_million": 734.584,
- "total_deaths_per_million": 74.93,
- "new_deaths_per_million": 9.366,
- "new_deaths_smoothed_per_million": 5.352,
- "stringency_index": 58.33
- },
- {
- "date": "2020-08-27",
- "total_cases": 1760.0,
- "new_cases": 90.0,
- "new_cases_smoothed": 66.286,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 16484.649,
- "new_cases_per_million": 842.965,
- "new_cases_smoothed_per_million": 620.85,
- "total_deaths_per_million": 74.93,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 4.014,
- "stringency_index": 58.33
- },
- {
- "date": "2020-08-28",
- "total_cases": 1848.0,
- "new_cases": 88.0,
- "new_cases_smoothed": 65.857,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 17308.881,
- "new_cases_per_million": 824.232,
- "new_cases_smoothed_per_million": 616.836,
- "total_deaths_per_million": 74.93,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.676,
- "stringency_index": 60.65
- },
- {
- "date": "2020-08-29",
- "total_cases": 1906.0,
- "new_cases": 58.0,
- "new_cases_smoothed": 63.143,
- "total_deaths": 9.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 17852.125,
- "new_cases_per_million": 543.244,
- "new_cases_smoothed_per_million": 591.414,
- "total_deaths_per_million": 84.296,
- "new_deaths_per_million": 9.366,
- "new_deaths_smoothed_per_million": 4.014,
- "stringency_index": 60.65
- },
- {
- "date": "2020-08-30",
- "total_cases": 1975.0,
- "new_cases": 69.0,
- "new_cases_smoothed": 63.0,
- "total_deaths": 10.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 18498.398,
- "new_cases_per_million": 646.273,
- "new_cases_smoothed_per_million": 590.075,
- "total_deaths_per_million": 93.663,
- "new_deaths_per_million": 9.366,
- "new_deaths_smoothed_per_million": 4.014,
- "stringency_index": 60.65
- },
- {
- "date": "2020-08-31",
- "total_cases": 1997.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 61.286,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 18704.456,
- "new_cases_per_million": 206.058,
- "new_cases_smoothed_per_million": 574.019,
- "total_deaths_per_million": 93.663,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 4.014,
- "stringency_index": 60.65
- },
- {
- "date": "2020-09-01",
- "total_cases": 2006.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 54.0,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 18788.753,
- "new_cases_per_million": 84.296,
- "new_cases_smoothed_per_million": 505.779,
- "total_deaths_per_million": 93.663,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 4.014,
- "stringency_index": 60.65
- },
- {
- "date": "2020-09-02",
- "total_cases": 2104.0,
- "new_cases": 98.0,
- "new_cases_smoothed": 62.0,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 19706.648,
- "new_cases_per_million": 917.895,
- "new_cases_smoothed_per_million": 580.709,
- "total_deaths_per_million": 93.663,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.676,
- "stringency_index": 60.65
- },
- {
- "date": "2020-09-03",
- "total_cases": 2211.0,
- "new_cases": 107.0,
- "new_cases_smoothed": 64.429,
- "total_deaths": 12.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 20708.84,
- "new_cases_per_million": 1002.192,
- "new_cases_smoothed_per_million": 603.456,
- "total_deaths_per_million": 112.395,
- "new_deaths_per_million": 18.733,
- "new_deaths_smoothed_per_million": 5.352,
- "stringency_index": 60.65
- },
- {
- "date": "2020-09-04",
- "total_cases": 2292.0,
- "new_cases": 81.0,
- "new_cases_smoothed": 63.429,
- "total_deaths": 13.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 21467.508,
- "new_cases_per_million": 758.668,
- "new_cases_smoothed_per_million": 594.09,
- "total_deaths_per_million": 121.762,
- "new_deaths_per_million": 9.366,
- "new_deaths_smoothed_per_million": 6.69,
- "stringency_index": 60.65
- },
- {
- "date": "2020-09-05",
- "total_cases": 2358.0,
- "new_cases": 66.0,
- "new_cases_smoothed": 64.571,
- "total_deaths": 13.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 22085.683,
- "new_cases_per_million": 618.174,
- "new_cases_smoothed_per_million": 604.794,
- "total_deaths_per_million": 121.762,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 5.352,
- "stringency_index": 60.65
- },
- {
- "date": "2020-09-06",
- "total_cases": 2428.0,
- "new_cases": 70.0,
- "new_cases_smoothed": 64.714,
- "total_deaths": 14.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 22741.322,
- "new_cases_per_million": 655.639,
- "new_cases_smoothed_per_million": 606.132,
- "total_deaths_per_million": 131.128,
- "new_deaths_per_million": 9.366,
- "new_deaths_smoothed_per_million": 5.352,
- "stringency_index": 60.65
- },
- {
- "date": "2020-09-07",
- "total_cases": 2449.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 64.571,
- "total_deaths": 14.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 22938.014,
- "new_cases_per_million": 196.692,
- "new_cases_smoothed_per_million": 604.794,
- "total_deaths_per_million": 131.128,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 5.352,
- "stringency_index": 55.09
- },
- {
- "date": "2020-09-08",
- "total_cases": 2482.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 68.0,
- "total_deaths": 15.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 23247.101,
- "new_cases_per_million": 309.087,
- "new_cases_smoothed_per_million": 636.907,
- "total_deaths_per_million": 140.494,
- "new_deaths_per_million": 9.366,
- "new_deaths_smoothed_per_million": 6.69,
- "stringency_index": 55.09
- },
- {
- "date": "2020-09-09",
- "total_cases": 2589.0,
- "new_cases": 107.0,
- "new_cases_smoothed": 69.286,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 24249.293,
- "new_cases_per_million": 1002.192,
- "new_cases_smoothed_per_million": 648.949,
- "total_deaths_per_million": 140.494,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 6.69,
- "stringency_index": 55.09
- },
- {
- "date": "2020-09-10",
- "total_cases": 2730.0,
- "new_cases": 141.0,
- "new_cases_smoothed": 74.143,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 25569.938,
- "new_cases_per_million": 1320.645,
- "new_cases_smoothed_per_million": 694.443,
- "total_deaths_per_million": 140.494,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 4.014,
- "stringency_index": 55.09
- },
- {
- "date": "2020-09-11",
- "total_cases": 2819.0,
- "new_cases": 89.0,
- "new_cases_smoothed": 75.286,
- "total_deaths": 16.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 26403.537,
- "new_cases_per_million": 833.599,
- "new_cases_smoothed_per_million": 705.147,
- "total_deaths_per_million": 149.86,
- "new_deaths_per_million": 9.366,
- "new_deaths_smoothed_per_million": 4.014,
- "stringency_index": 63.43
- },
- {
- "date": "2020-09-12",
- "total_cases": 2898.0,
- "new_cases": 79.0,
- "new_cases_smoothed": 77.143,
- "total_deaths": 18.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 27143.473,
- "new_cases_per_million": 739.936,
- "new_cases_smoothed_per_million": 722.541,
- "total_deaths_per_million": 168.593,
- "new_deaths_per_million": 18.733,
- "new_deaths_smoothed_per_million": 6.69,
- "stringency_index": 63.43
- },
- {
- "date": "2020-09-13",
- "total_cases": 2994.0,
- "new_cases": 96.0,
- "new_cases_smoothed": 80.857,
- "total_deaths": 18.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 28042.635,
- "new_cases_per_million": 899.163,
- "new_cases_smoothed_per_million": 757.33,
- "total_deaths_per_million": 168.593,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 5.352,
- "stringency_index": 63.43
- },
- {
- "date": "2020-09-14",
- "total_cases": 3046.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 85.286,
- "total_deaths": 18.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 28529.682,
- "new_cases_per_million": 487.046,
- "new_cases_smoothed_per_million": 798.81,
- "total_deaths_per_million": 168.593,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 5.352,
- "stringency_index": 63.43
- },
- {
- "date": "2020-09-15",
- "total_cases": 3060.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 82.571,
- "total_deaths": 20.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 28660.81,
- "new_cases_per_million": 131.128,
- "new_cases_smoothed_per_million": 773.387,
- "total_deaths_per_million": 187.326,
- "new_deaths_per_million": 18.733,
- "new_deaths_smoothed_per_million": 6.69,
- "stringency_index": 63.43
- },
- {
- "date": "2020-09-16",
- "total_cases": 3152.0,
- "new_cases": 92.0,
- "new_cases_smoothed": 80.429,
- "total_deaths": 22.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 29522.507,
- "new_cases_per_million": 861.698,
- "new_cases_smoothed_per_million": 753.316,
- "total_deaths_per_million": 206.058,
- "new_deaths_per_million": 18.733,
- "new_deaths_smoothed_per_million": 9.366,
- "stringency_index": 63.43
- },
- {
- "date": "2020-09-17",
- "total_cases": 3328.0,
- "new_cases": 176.0,
- "new_cases_smoothed": 85.429,
- "total_deaths": 22.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 31170.972,
- "new_cases_per_million": 1648.465,
- "new_cases_smoothed_per_million": 800.148,
- "total_deaths_per_million": 206.058,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 9.366
- },
- {
- "date": "2020-09-18",
- "total_cases": 3382.0,
- "new_cases": 54.0,
- "new_cases_smoothed": 80.429,
- "total_deaths": 23.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 31676.751,
- "new_cases_per_million": 505.779,
- "new_cases_smoothed_per_million": 753.316,
- "total_deaths_per_million": 215.424,
- "new_deaths_per_million": 9.366,
- "new_deaths_smoothed_per_million": 9.366
- },
- {
- "date": "2020-09-19",
- "total_cases": 3460.0,
- "new_cases": 78.0,
- "new_cases_smoothed": 80.286,
- "total_deaths": 23.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 32407.321,
- "new_cases_per_million": 730.57,
- "new_cases_smoothed_per_million": 751.978,
- "total_deaths_per_million": 215.424,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 6.69
- },
- {
- "date": "2020-09-20",
- "total_cases": 3460.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 66.571,
- "total_deaths": 23.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 32407.321,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 623.526,
- "total_deaths_per_million": 215.424,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 6.69
- },
- {
- "date": "2020-09-21",
- "total_cases": 3551.0,
- "new_cases": 91.0,
- "new_cases_smoothed": 72.143,
- "total_deaths": 23.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 33259.652,
- "new_cases_per_million": 852.331,
- "new_cases_smoothed_per_million": 675.71,
- "total_deaths_per_million": 215.424,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 6.69
- },
- {
- "date": "2020-09-22",
- "total_cases": 3587.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 75.286,
- "total_deaths": 24.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 33596.838,
- "new_cases_per_million": 337.186,
- "new_cases_smoothed_per_million": 705.147,
- "total_deaths_per_million": 224.791,
- "new_deaths_per_million": 9.366,
- "new_deaths_smoothed_per_million": 5.352
- },
- {
- "date": "2020-09-23",
- "total_cases": 3665.0,
- "new_cases": 78.0,
- "new_cases_smoothed": 73.286,
- "total_deaths": 25.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 34327.408,
- "new_cases_per_million": 730.57,
- "new_cases_smoothed_per_million": 686.414,
- "total_deaths_per_million": 234.157,
- "new_deaths_per_million": 9.366,
- "new_deaths_smoothed_per_million": 4.014
- },
- {
- "date": "2020-09-24",
- "total_cases": 3721.0,
- "new_cases": 56.0,
- "new_cases_smoothed": 56.143,
- "total_deaths": 25.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 34851.919,
- "new_cases_per_million": 524.512,
- "new_cases_smoothed_per_million": 525.85,
- "total_deaths_per_million": 234.157,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 4.014
- },
- {
- "date": "2020-09-25",
- "total_cases": 3756.0,
- "new_cases": 35.0,
- "new_cases_smoothed": 53.429,
- "total_deaths": 25.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 35179.739,
- "new_cases_per_million": 327.82,
- "new_cases_smoothed_per_million": 500.427,
- "total_deaths_per_million": 234.157,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.676
- }
- ]
- },
- "AFG": {
- "continent": "Asia",
- "location": "Afghanistan",
- "population": 38928341.0,
- "population_density": 54.422,
- "median_age": 18.6,
- "aged_65_older": 2.581,
- "aged_70_older": 1.337,
- "gdp_per_capita": 1803.987,
- "cardiovasc_death_rate": 597.029,
- "diabetes_prevalence": 9.59,
- "handwashing_facilities": 37.746,
- "hospital_beds_per_thousand": 0.5,
- "life_expectancy": 64.83,
- "human_development_index": 0.498,
- "data": [
- {
- "date": "2019-12-31",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-01-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-02",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-03",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-04",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-05",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-06",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-07",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-08",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-09",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-10",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-11",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-12",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-13",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-14",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-15",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-16",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-17",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-18",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-19",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-20",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-21",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-22",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-23",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-24",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-25",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-26",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-27",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-28",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-29",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-30",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-31",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-02",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-03",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-04",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-05",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-06",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-07",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-08",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-09",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-10",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-11",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-12",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-13",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-14",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-15",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-16",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-17",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-18",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-19",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-20",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-21",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-22",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-23",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 8.33
- },
- {
- "date": "2020-02-24",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 8.33
- },
- {
- "date": "2020-02-25",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.026,
- "new_cases_per_million": 0.026,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 8.33
- },
- {
- "date": "2020-02-26",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.026,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 8.33
- },
- {
- "date": "2020-02-27",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.026,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 8.33
- },
- {
- "date": "2020-02-28",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.026,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 8.33
- },
- {
- "date": "2020-02-29",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.026,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 8.33
- },
- {
- "date": "2020-03-01",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.026,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-03-02",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.026,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-03-03",
- "new_cases_smoothed": 0.0,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-03-04",
- "new_cases_smoothed": 0.0,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-03-05",
- "new_cases_smoothed": 0.0,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-03-06",
- "new_cases_smoothed": 0.0,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-03-07",
- "new_cases_smoothed": 0.0,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-03-08",
- "total_cases": 4.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.103,
- "new_cases_per_million": 0.077,
- "new_cases_smoothed_per_million": 0.011,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-03-09",
- "new_cases_smoothed": 0.429,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-03-10",
- "new_cases_smoothed": 0.429,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-03-11",
- "total_cases": 7.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.18,
- "new_cases_per_million": 0.077,
- "new_cases_smoothed_per_million": 0.022,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-03-12",
- "new_cases_smoothed": 0.857,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.022,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-03-13",
- "new_cases_smoothed": 0.857,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.022,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-03-14",
- "new_cases_smoothed": 0.857,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.022,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-03-15",
- "total_cases": 10.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.257,
- "new_cases_per_million": 0.077,
- "new_cases_smoothed_per_million": 0.022,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-03-16",
- "total_cases": 16.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.411,
- "new_cases_per_million": 0.154,
- "new_cases_smoothed_per_million": 0.044,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-03-17",
- "total_cases": 21.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.539,
- "new_cases_per_million": 0.128,
- "new_cases_smoothed_per_million": 0.062,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-03-18",
- "total_cases": 22.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.565,
- "new_cases_per_million": 0.026,
- "new_cases_smoothed_per_million": 0.055,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-03-19",
- "total_cases": 22.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.565,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.055,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-03-20",
- "total_cases": 22.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.565,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.055,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-03-21",
- "total_cases": 24.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.617,
- "new_cases_per_million": 0.051,
- "new_cases_smoothed_per_million": 0.062,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-03-22",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.617,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.051,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-03-23",
- "total_cases": 34.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.873,
- "new_cases_per_million": 0.257,
- "new_cases_smoothed_per_million": 0.066,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-03-24",
- "total_cases": 40.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1.028,
- "new_cases_per_million": 0.154,
- "new_cases_smoothed_per_million": 0.07,
- "total_deaths_per_million": 0.026,
- "new_deaths_per_million": 0.026,
- "new_deaths_smoothed_per_million": 0.004,
- "stringency_index": 50.93
- },
- {
- "date": "2020-03-25",
- "total_cases": 42.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1.079,
- "new_cases_per_million": 0.051,
- "new_cases_smoothed_per_million": 0.073,
- "total_deaths_per_million": 0.026,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.004,
- "stringency_index": 59.26
- },
- {
- "date": "2020-03-26",
- "total_cases": 75.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 7.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1.927,
- "new_cases_per_million": 0.848,
- "new_cases_smoothed_per_million": 0.194,
- "total_deaths_per_million": 0.026,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.004,
- "stringency_index": 59.26
- },
- {
- "date": "2020-03-27",
- "total_cases": 75.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1.927,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.194,
- "total_deaths_per_million": 0.026,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.004,
- "stringency_index": 59.26
- },
- {
- "date": "2020-03-28",
- "total_cases": 91.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 9.571,
- "total_deaths": 2.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2.338,
- "new_cases_per_million": 0.411,
- "new_cases_smoothed_per_million": 0.246,
- "total_deaths_per_million": 0.051,
- "new_deaths_per_million": 0.026,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 67.59
- },
- {
- "date": "2020-03-29",
- "total_cases": 106.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 11.714,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2.723,
- "new_cases_per_million": 0.385,
- "new_cases_smoothed_per_million": 0.301,
- "total_deaths_per_million": 0.077,
- "new_deaths_per_million": 0.026,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 67.59
- },
- {
- "date": "2020-03-30",
- "total_cases": 114.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 11.429,
- "total_deaths": 4.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 2.928,
- "new_cases_per_million": 0.206,
- "new_cases_smoothed_per_million": 0.294,
- "total_deaths_per_million": 0.103,
- "new_deaths_per_million": 0.026,
- "new_deaths_smoothed_per_million": 0.015,
- "stringency_index": 67.59
- },
- {
- "date": "2020-03-31",
- "total_cases": 141.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 14.429,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 3.622,
- "new_cases_per_million": 0.694,
- "new_cases_smoothed_per_million": 0.371,
- "total_deaths_per_million": 0.103,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 67.59
- },
- {
- "date": "2020-04-01",
- "total_cases": 166.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 17.714,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 4.264,
- "new_cases_per_million": 0.642,
- "new_cases_smoothed_per_million": 0.455,
- "total_deaths_per_million": 0.103,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 67.59
- },
- {
- "date": "2020-04-02",
- "total_cases": 192.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 16.714,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 4.932,
- "new_cases_per_million": 0.668,
- "new_cases_smoothed_per_million": 0.429,
- "total_deaths_per_million": 0.103,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 67.59
- },
- {
- "date": "2020-04-03",
- "total_cases": 235.0,
- "new_cases": 43.0,
- "new_cases_smoothed": 22.857,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 6.037,
- "new_cases_per_million": 1.105,
- "new_cases_smoothed_per_million": 0.587,
- "total_deaths_per_million": 0.103,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 67.59
- },
- {
- "date": "2020-04-04",
- "total_cases": 235.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 20.571,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 6.037,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.528,
- "total_deaths_per_million": 0.103,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 67.59
- },
- {
- "date": "2020-04-05",
- "total_cases": 270.0,
- "new_cases": 35.0,
- "new_cases_smoothed": 23.429,
- "total_deaths": 5.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 6.936,
- "new_cases_per_million": 0.899,
- "new_cases_smoothed_per_million": 0.602,
- "total_deaths_per_million": 0.128,
- "new_deaths_per_million": 0.026,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-06",
- "total_cases": 299.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 26.429,
- "total_deaths": 7.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 7.681,
- "new_cases_per_million": 0.745,
- "new_cases_smoothed_per_million": 0.679,
- "total_deaths_per_million": 0.18,
- "new_deaths_per_million": 0.051,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-07",
- "total_cases": 337.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 28.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 8.657,
- "new_cases_per_million": 0.976,
- "new_cases_smoothed_per_million": 0.719,
- "total_deaths_per_million": 0.18,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-08",
- "total_cases": 367.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 28.714,
- "total_deaths": 11.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 9.428,
- "new_cases_per_million": 0.771,
- "new_cases_smoothed_per_million": 0.738,
- "total_deaths_per_million": 0.283,
- "new_deaths_per_million": 0.103,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-09",
- "total_cases": 423.0,
- "new_cases": 56.0,
- "new_cases_smoothed": 33.0,
- "total_deaths": 14.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 10.866,
- "new_cases_per_million": 1.439,
- "new_cases_smoothed_per_million": 0.848,
- "total_deaths_per_million": 0.36,
- "new_deaths_per_million": 0.077,
- "new_deaths_smoothed_per_million": 0.037,
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-10",
- "total_cases": 484.0,
- "new_cases": 61.0,
- "new_cases_smoothed": 35.571,
- "total_deaths": 15.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 12.433,
- "new_cases_per_million": 1.567,
- "new_cases_smoothed_per_million": 0.914,
- "total_deaths_per_million": 0.385,
- "new_deaths_per_million": 0.026,
- "new_deaths_smoothed_per_million": 0.04,
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-11",
- "total_cases": 521.0,
- "new_cases": 37.0,
- "new_cases_smoothed": 40.857,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 13.384,
- "new_cases_per_million": 0.95,
- "new_cases_smoothed_per_million": 1.05,
- "total_deaths_per_million": 0.385,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.04,
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-12",
- "total_cases": 555.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 40.714,
- "total_deaths": 18.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 14.257,
- "new_cases_per_million": 0.873,
- "new_cases_smoothed_per_million": 1.046,
- "total_deaths_per_million": 0.462,
- "new_deaths_per_million": 0.077,
- "new_deaths_smoothed_per_million": 0.048,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-13",
- "total_cases": 607.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 44.0,
- "total_deaths": 18.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 15.593,
- "new_cases_per_million": 1.336,
- "new_cases_smoothed_per_million": 1.13,
- "total_deaths_per_million": 0.462,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.04,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-14",
- "total_cases": 665.0,
- "new_cases": 58.0,
- "new_cases_smoothed": 46.857,
- "total_deaths": 21.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 17.083,
- "new_cases_per_million": 1.49,
- "new_cases_smoothed_per_million": 1.204,
- "total_deaths_per_million": 0.539,
- "new_deaths_per_million": 0.077,
- "new_deaths_smoothed_per_million": 0.051,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-15",
- "total_cases": 714.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 49.571,
- "total_deaths": 23.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 18.341,
- "new_cases_per_million": 1.259,
- "new_cases_smoothed_per_million": 1.273,
- "total_deaths_per_million": 0.591,
- "new_deaths_per_million": 0.051,
- "new_deaths_smoothed_per_million": 0.044,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-16",
- "total_cases": 784.0,
- "new_cases": 70.0,
- "new_cases_smoothed": 51.571,
- "total_deaths": 25.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 20.14,
- "new_cases_per_million": 1.798,
- "new_cases_smoothed_per_million": 1.325,
- "total_deaths_per_million": 0.642,
- "new_deaths_per_million": 0.051,
- "new_deaths_smoothed_per_million": 0.04,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-17",
- "total_cases": 794.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 44.286,
- "total_deaths": 29.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 20.396,
- "new_cases_per_million": 0.257,
- "new_cases_smoothed_per_million": 1.138,
- "total_deaths_per_million": 0.745,
- "new_deaths_per_million": 0.103,
- "new_deaths_smoothed_per_million": 0.051,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-18",
- "total_cases": 845.0,
- "new_cases": 51.0,
- "new_cases_smoothed": 46.286,
- "total_deaths": 30.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 21.707,
- "new_cases_per_million": 1.31,
- "new_cases_smoothed_per_million": 1.189,
- "total_deaths_per_million": 0.771,
- "new_deaths_per_million": 0.026,
- "new_deaths_smoothed_per_million": 0.055,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-19",
- "total_cases": 908.0,
- "new_cases": 63.0,
- "new_cases_smoothed": 50.429,
- "total_deaths": 30.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 23.325,
- "new_cases_per_million": 1.618,
- "new_cases_smoothed_per_million": 1.295,
- "total_deaths_per_million": 0.771,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.044,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-20",
- "total_cases": 996.0,
- "new_cases": 88.0,
- "new_cases_smoothed": 55.571,
- "total_deaths": 33.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 25.585,
- "new_cases_per_million": 2.261,
- "new_cases_smoothed_per_million": 1.428,
- "total_deaths_per_million": 0.848,
- "new_deaths_per_million": 0.077,
- "new_deaths_smoothed_per_million": 0.055,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-21",
- "total_cases": 1031.0,
- "new_cases": 35.0,
- "new_cases_smoothed": 52.286,
- "total_deaths": 35.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 26.485,
- "new_cases_per_million": 0.899,
- "new_cases_smoothed_per_million": 1.343,
- "total_deaths_per_million": 0.899,
- "new_deaths_per_million": 0.051,
- "new_deaths_smoothed_per_million": 0.051,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-22",
- "total_cases": 1092.0,
- "new_cases": 61.0,
- "new_cases_smoothed": 54.0,
- "total_deaths": 36.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 28.052,
- "new_cases_per_million": 1.567,
- "new_cases_smoothed_per_million": 1.387,
- "total_deaths_per_million": 0.925,
- "new_deaths_per_million": 0.026,
- "new_deaths_smoothed_per_million": 0.048,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-23",
- "total_cases": 1176.0,
- "new_cases": 84.0,
- "new_cases_smoothed": 56.0,
- "total_deaths": 40.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 30.209,
- "new_cases_per_million": 2.158,
- "new_cases_smoothed_per_million": 1.439,
- "total_deaths_per_million": 1.028,
- "new_deaths_per_million": 0.103,
- "new_deaths_smoothed_per_million": 0.055,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-24",
- "total_cases": 1281.0,
- "new_cases": 105.0,
- "new_cases_smoothed": 69.571,
- "total_deaths": 42.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 32.907,
- "new_cases_per_million": 2.697,
- "new_cases_smoothed_per_million": 1.787,
- "total_deaths_per_million": 1.079,
- "new_deaths_per_million": 0.051,
- "new_deaths_smoothed_per_million": 0.048,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-25",
- "total_cases": 1351.0,
- "new_cases": 70.0,
- "new_cases_smoothed": 72.286,
- "total_deaths": 43.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 34.705,
- "new_cases_per_million": 1.798,
- "new_cases_smoothed_per_million": 1.857,
- "total_deaths_per_million": 1.105,
- "new_deaths_per_million": 0.026,
- "new_deaths_smoothed_per_million": 0.048,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-26",
- "total_cases": 1463.0,
- "new_cases": 112.0,
- "new_cases_smoothed": 79.286,
- "total_deaths": 47.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 37.582,
- "new_cases_per_million": 2.877,
- "new_cases_smoothed_per_million": 2.037,
- "total_deaths_per_million": 1.207,
- "new_deaths_per_million": 0.103,
- "new_deaths_smoothed_per_million": 0.062,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-27",
- "total_cases": 1531.0,
- "new_cases": 68.0,
- "new_cases_smoothed": 76.429,
- "total_deaths": 57.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 39.329,
- "new_cases_per_million": 1.747,
- "new_cases_smoothed_per_million": 1.963,
- "total_deaths_per_million": 1.464,
- "new_deaths_per_million": 0.257,
- "new_deaths_smoothed_per_million": 0.088,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-28",
- "total_cases": 1703.0,
- "new_cases": 172.0,
- "new_cases_smoothed": 96.0,
- "total_deaths": 57.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 43.747,
- "new_cases_per_million": 4.418,
- "new_cases_smoothed_per_million": 2.466,
- "total_deaths_per_million": 1.464,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.081,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-29",
- "total_cases": 1827.0,
- "new_cases": 124.0,
- "new_cases_smoothed": 105.0,
- "total_deaths": 60.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 46.932,
- "new_cases_per_million": 3.185,
- "new_cases_smoothed_per_million": 2.697,
- "total_deaths_per_million": 1.541,
- "new_deaths_per_million": 0.077,
- "new_deaths_smoothed_per_million": 0.088,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-30",
- "total_cases": 1949.0,
- "new_cases": 122.0,
- "new_cases_smoothed": 110.429,
- "total_deaths": 60.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 50.066,
- "new_cases_per_million": 3.134,
- "new_cases_smoothed_per_million": 2.837,
- "total_deaths_per_million": 1.541,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.073,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-01",
- "total_cases": 2171.0,
- "new_cases": 222.0,
- "new_cases_smoothed": 127.143,
- "total_deaths": 64.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 55.769,
- "new_cases_per_million": 5.703,
- "new_cases_smoothed_per_million": 3.266,
- "total_deaths_per_million": 1.644,
- "new_deaths_per_million": 0.103,
- "new_deaths_smoothed_per_million": 0.081,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-02",
- "total_cases": 2335.0,
- "new_cases": 164.0,
- "new_cases_smoothed": 140.571,
- "total_deaths": 68.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 59.982,
- "new_cases_per_million": 4.213,
- "new_cases_smoothed_per_million": 3.611,
- "total_deaths_per_million": 1.747,
- "new_deaths_per_million": 0.103,
- "new_deaths_smoothed_per_million": 0.092,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-03",
- "total_cases": 2469.0,
- "new_cases": 134.0,
- "new_cases_smoothed": 143.714,
- "total_deaths": 72.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 63.424,
- "new_cases_per_million": 3.442,
- "new_cases_smoothed_per_million": 3.692,
- "total_deaths_per_million": 1.85,
- "new_deaths_per_million": 0.103,
- "new_deaths_smoothed_per_million": 0.092,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-04",
- "total_cases": 2704.0,
- "new_cases": 235.0,
- "new_cases_smoothed": 167.571,
- "total_deaths": 85.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 69.461,
- "new_cases_per_million": 6.037,
- "new_cases_smoothed_per_million": 4.305,
- "total_deaths_per_million": 2.183,
- "new_deaths_per_million": 0.334,
- "new_deaths_smoothed_per_million": 0.103,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-05",
- "total_cases": 2894.0,
- "new_cases": 190.0,
- "new_cases_smoothed": 170.143,
- "total_deaths": 90.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 74.342,
- "new_cases_per_million": 4.881,
- "new_cases_smoothed_per_million": 4.371,
- "total_deaths_per_million": 2.312,
- "new_deaths_per_million": 0.128,
- "new_deaths_smoothed_per_million": 0.121,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-06",
- "total_cases": 3224.0,
- "new_cases": 330.0,
- "new_cases_smoothed": 199.571,
- "total_deaths": 95.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 82.819,
- "new_cases_per_million": 8.477,
- "new_cases_smoothed_per_million": 5.127,
- "total_deaths_per_million": 2.44,
- "new_deaths_per_million": 0.128,
- "new_deaths_smoothed_per_million": 0.128,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-07",
- "total_cases": 3392.0,
- "new_cases": 168.0,
- "new_cases_smoothed": 206.143,
- "total_deaths": 104.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 6.286,
- "total_cases_per_million": 87.134,
- "new_cases_per_million": 4.316,
- "new_cases_smoothed_per_million": 5.295,
- "total_deaths_per_million": 2.672,
- "new_deaths_per_million": 0.231,
- "new_deaths_smoothed_per_million": 0.161,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-08",
- "total_cases": 3563.0,
- "new_cases": 171.0,
- "new_cases_smoothed": 198.857,
- "total_deaths": 106.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 6.0,
- "total_cases_per_million": 91.527,
- "new_cases_per_million": 4.393,
- "new_cases_smoothed_per_million": 5.108,
- "total_deaths_per_million": 2.723,
- "new_deaths_per_million": 0.051,
- "new_deaths_smoothed_per_million": 0.154,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-09",
- "total_cases": 3778.0,
- "new_cases": 215.0,
- "new_cases_smoothed": 206.143,
- "total_deaths": 109.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 5.857,
- "total_cases_per_million": 97.05,
- "new_cases_per_million": 5.523,
- "new_cases_smoothed_per_million": 5.295,
- "total_deaths_per_million": 2.8,
- "new_deaths_per_million": 0.077,
- "new_deaths_smoothed_per_million": 0.15,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-10",
- "total_cases": 4033.0,
- "new_cases": 255.0,
- "new_cases_smoothed": 223.429,
- "total_deaths": 115.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 6.143,
- "total_cases_per_million": 103.601,
- "new_cases_per_million": 6.55,
- "new_cases_smoothed_per_million": 5.739,
- "total_deaths_per_million": 2.954,
- "new_deaths_per_million": 0.154,
- "new_deaths_smoothed_per_million": 0.158,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-11",
- "total_cases": 4402.0,
- "new_cases": 369.0,
- "new_cases_smoothed": 242.571,
- "total_deaths": 120.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 113.08,
- "new_cases_per_million": 9.479,
- "new_cases_smoothed_per_million": 6.231,
- "total_deaths_per_million": 3.083,
- "new_deaths_per_million": 0.128,
- "new_deaths_smoothed_per_million": 0.128,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-12",
- "total_cases": 4687.0,
- "new_cases": 285.0,
- "new_cases_smoothed": 256.143,
- "total_deaths": 122.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 120.401,
- "new_cases_per_million": 7.321,
- "new_cases_smoothed_per_million": 6.58,
- "total_deaths_per_million": 3.134,
- "new_deaths_per_million": 0.051,
- "new_deaths_smoothed_per_million": 0.117,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-13",
- "total_cases": 4967.0,
- "new_cases": 280.0,
- "new_cases_smoothed": 249.0,
- "total_deaths": 127.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 127.593,
- "new_cases_per_million": 7.193,
- "new_cases_smoothed_per_million": 6.396,
- "total_deaths_per_million": 3.262,
- "new_deaths_per_million": 0.128,
- "new_deaths_smoothed_per_million": 0.117,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-14",
- "total_cases": 5226.0,
- "new_cases": 259.0,
- "new_cases_smoothed": 262.0,
- "total_deaths": 130.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 134.247,
- "new_cases_per_million": 6.653,
- "new_cases_smoothed_per_million": 6.73,
- "total_deaths_per_million": 3.339,
- "new_deaths_per_million": 0.077,
- "new_deaths_smoothed_per_million": 0.095,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-15",
- "total_cases": 5339.0,
- "new_cases": 113.0,
- "new_cases_smoothed": 253.714,
- "total_deaths": 136.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 137.149,
- "new_cases_per_million": 2.903,
- "new_cases_smoothed_per_million": 6.517,
- "total_deaths_per_million": 3.494,
- "new_deaths_per_million": 0.154,
- "new_deaths_smoothed_per_million": 0.11,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-16",
- "total_cases": 6402.0,
- "new_cases": 1063.0,
- "new_cases_smoothed": 374.857,
- "total_deaths": 168.0,
- "new_deaths": 32.0,
- "new_deaths_smoothed": 8.429,
- "total_cases_per_million": 164.456,
- "new_cases_per_million": 27.307,
- "new_cases_smoothed_per_million": 9.629,
- "total_deaths_per_million": 4.316,
- "new_deaths_per_million": 0.822,
- "new_deaths_smoothed_per_million": 0.217,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-17",
- "total_cases": 6402.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 338.429,
- "total_deaths": 168.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 7.571,
- "total_cases_per_million": 164.456,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.694,
- "total_deaths_per_million": 4.316,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.194,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-18",
- "total_cases": 6664.0,
- "new_cases": 262.0,
- "new_cases_smoothed": 323.143,
- "total_deaths": 169.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 7.0,
- "total_cases_per_million": 171.186,
- "new_cases_per_million": 6.73,
- "new_cases_smoothed_per_million": 8.301,
- "total_deaths_per_million": 4.341,
- "new_deaths_per_million": 0.026,
- "new_deaths_smoothed_per_million": 0.18,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-19",
- "total_cases": 7072.0,
- "new_cases": 408.0,
- "new_cases_smoothed": 340.714,
- "total_deaths": 173.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 7.286,
- "total_cases_per_million": 181.667,
- "new_cases_per_million": 10.481,
- "new_cases_smoothed_per_million": 8.752,
- "total_deaths_per_million": 4.444,
- "new_deaths_per_million": 0.103,
- "new_deaths_smoothed_per_million": 0.187,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-20",
- "total_cases": 7653.0,
- "new_cases": 581.0,
- "new_cases_smoothed": 383.714,
- "total_deaths": 178.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 7.286,
- "total_cases_per_million": 196.592,
- "new_cases_per_million": 14.925,
- "new_cases_smoothed_per_million": 9.857,
- "total_deaths_per_million": 4.573,
- "new_deaths_per_million": 0.128,
- "new_deaths_smoothed_per_million": 0.187,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-21",
- "total_cases": 8145.0,
- "new_cases": 492.0,
- "new_cases_smoothed": 417.0,
- "total_deaths": 187.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 209.231,
- "new_cases_per_million": 12.639,
- "new_cases_smoothed_per_million": 10.712,
- "total_deaths_per_million": 4.804,
- "new_deaths_per_million": 0.231,
- "new_deaths_smoothed_per_million": 0.209,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-22",
- "total_cases": 8676.0,
- "new_cases": 531.0,
- "new_cases_smoothed": 476.714,
- "total_deaths": 193.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 222.871,
- "new_cases_per_million": 13.64,
- "new_cases_smoothed_per_million": 12.246,
- "total_deaths_per_million": 4.958,
- "new_deaths_per_million": 0.154,
- "new_deaths_smoothed_per_million": 0.209,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-23",
- "total_cases": 9216.0,
- "new_cases": 540.0,
- "new_cases_smoothed": 402.0,
- "total_deaths": 205.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 5.286,
- "total_cases_per_million": 236.743,
- "new_cases_per_million": 13.872,
- "new_cases_smoothed_per_million": 10.327,
- "total_deaths_per_million": 5.266,
- "new_deaths_per_million": 0.308,
- "new_deaths_smoothed_per_million": 0.136,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-24",
- "total_cases": 9998.0,
- "new_cases": 782.0,
- "new_cases_smoothed": 513.714,
- "total_deaths": 216.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 6.857,
- "total_cases_per_million": 256.831,
- "new_cases_per_million": 20.088,
- "new_cases_smoothed_per_million": 13.196,
- "total_deaths_per_million": 5.549,
- "new_deaths_per_million": 0.283,
- "new_deaths_smoothed_per_million": 0.176,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-25",
- "total_cases": 10582.0,
- "new_cases": 584.0,
- "new_cases_smoothed": 559.714,
- "total_deaths": 218.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 7.0,
- "total_cases_per_million": 271.833,
- "new_cases_per_million": 15.002,
- "new_cases_smoothed_per_million": 14.378,
- "total_deaths_per_million": 5.6,
- "new_deaths_per_million": 0.051,
- "new_deaths_smoothed_per_million": 0.18,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-26",
- "total_cases": 11173.0,
- "new_cases": 591.0,
- "new_cases_smoothed": 585.857,
- "total_deaths": 219.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 287.015,
- "new_cases_per_million": 15.182,
- "new_cases_smoothed_per_million": 15.05,
- "total_deaths_per_million": 5.626,
- "new_deaths_per_million": 0.026,
- "new_deaths_smoothed_per_million": 0.169,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-27",
- "total_cases": 11831.0,
- "new_cases": 658.0,
- "new_cases_smoothed": 596.857,
- "total_deaths": 220.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 6.0,
- "total_cases_per_million": 303.917,
- "new_cases_per_million": 16.903,
- "new_cases_smoothed_per_million": 15.332,
- "total_deaths_per_million": 5.651,
- "new_deaths_per_million": 0.026,
- "new_deaths_smoothed_per_million": 0.154,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-28",
- "total_cases": 12456.0,
- "new_cases": 625.0,
- "new_cases_smoothed": 615.857,
- "total_deaths": 227.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 5.714,
- "total_cases_per_million": 319.973,
- "new_cases_per_million": 16.055,
- "new_cases_smoothed_per_million": 15.82,
- "total_deaths_per_million": 5.831,
- "new_deaths_per_million": 0.18,
- "new_deaths_smoothed_per_million": 0.147,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-29",
- "total_cases": 13036.0,
- "new_cases": 580.0,
- "new_cases_smoothed": 622.857,
- "total_deaths": 235.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 6.0,
- "total_cases_per_million": 334.872,
- "new_cases_per_million": 14.899,
- "new_cases_smoothed_per_million": 16.0,
- "total_deaths_per_million": 6.037,
- "new_deaths_per_million": 0.206,
- "new_deaths_smoothed_per_million": 0.154,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-30",
- "total_cases": 13659.0,
- "new_cases": 623.0,
- "new_cases_smoothed": 634.714,
- "total_deaths": 246.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 5.857,
- "total_cases_per_million": 350.875,
- "new_cases_per_million": 16.004,
- "new_cases_smoothed_per_million": 16.305,
- "total_deaths_per_million": 6.319,
- "new_deaths_per_million": 0.283,
- "new_deaths_smoothed_per_million": 0.15,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-31",
- "total_cases": 14525.0,
- "new_cases": 866.0,
- "new_cases_smoothed": 646.714,
- "total_deaths": 249.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 373.121,
- "new_cases_per_million": 22.246,
- "new_cases_smoothed_per_million": 16.613,
- "total_deaths_per_million": 6.396,
- "new_deaths_per_million": 0.077,
- "new_deaths_smoothed_per_million": 0.121,
- "stringency_index": 84.26
- },
- {
- "date": "2020-06-01",
- "total_cases": 15205.0,
- "new_cases": 680.0,
- "new_cases_smoothed": 660.429,
- "total_deaths": 257.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 390.589,
- "new_cases_per_million": 17.468,
- "new_cases_smoothed_per_million": 16.965,
- "total_deaths_per_million": 6.602,
- "new_deaths_per_million": 0.206,
- "new_deaths_smoothed_per_million": 0.143,
- "stringency_index": 84.26
- },
- {
- "date": "2020-06-02",
- "total_cases": 15750.0,
- "new_cases": 545.0,
- "new_cases_smoothed": 653.857,
- "total_deaths": 265.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 404.59,
- "new_cases_per_million": 14.0,
- "new_cases_smoothed_per_million": 16.796,
- "total_deaths_per_million": 6.807,
- "new_deaths_per_million": 0.206,
- "new_deaths_smoothed_per_million": 0.169,
- "stringency_index": 84.26
- },
- {
- "date": "2020-06-03",
- "total_cases": 16509.0,
- "new_cases": 759.0,
- "new_cases_smoothed": 668.286,
- "total_deaths": 270.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 7.143,
- "total_cases_per_million": 424.087,
- "new_cases_per_million": 19.497,
- "new_cases_smoothed_per_million": 17.167,
- "total_deaths_per_million": 6.936,
- "new_deaths_per_million": 0.128,
- "new_deaths_smoothed_per_million": 0.183,
- "stringency_index": 84.26
- },
- {
- "date": "2020-06-04",
- "total_cases": 17267.0,
- "new_cases": 758.0,
- "new_cases_smoothed": 687.286,
- "total_deaths": 294.0,
- "new_deaths": 24.0,
- "new_deaths_smoothed": 9.571,
- "total_cases_per_million": 443.559,
- "new_cases_per_million": 19.472,
- "new_cases_smoothed_per_million": 17.655,
- "total_deaths_per_million": 7.552,
- "new_deaths_per_million": 0.617,
- "new_deaths_smoothed_per_million": 0.246,
- "stringency_index": 84.26
- },
- {
- "date": "2020-06-05",
- "total_cases": 18054.0,
- "new_cases": 787.0,
- "new_cases_smoothed": 716.857,
- "total_deaths": 300.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 9.286,
- "total_cases_per_million": 463.775,
- "new_cases_per_million": 20.217,
- "new_cases_smoothed_per_million": 18.415,
- "total_deaths_per_million": 7.706,
- "new_deaths_per_million": 0.154,
- "new_deaths_smoothed_per_million": 0.239,
- "stringency_index": 84.26
- },
- {
- "date": "2020-06-06",
- "total_cases": 18969.0,
- "new_cases": 915.0,
- "new_cases_smoothed": 758.571,
- "total_deaths": 309.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 9.0,
- "total_cases_per_million": 487.28,
- "new_cases_per_million": 23.505,
- "new_cases_smoothed_per_million": 19.486,
- "total_deaths_per_million": 7.938,
- "new_deaths_per_million": 0.231,
- "new_deaths_smoothed_per_million": 0.231,
- "stringency_index": 84.26
- },
- {
- "date": "2020-06-07",
- "total_cases": 19551.0,
- "new_cases": 582.0,
- "new_cases_smoothed": 718.0,
- "total_deaths": 327.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 11.143,
- "total_cases_per_million": 502.23,
- "new_cases_per_million": 14.951,
- "new_cases_smoothed_per_million": 18.444,
- "total_deaths_per_million": 8.4,
- "new_deaths_per_million": 0.462,
- "new_deaths_smoothed_per_million": 0.286,
- "stringency_index": 84.26
- },
- {
- "date": "2020-06-08",
- "total_cases": 20342.0,
- "new_cases": 791.0,
- "new_cases_smoothed": 733.857,
- "total_deaths": 357.0,
- "new_deaths": 30.0,
- "new_deaths_smoothed": 14.286,
- "total_cases_per_million": 522.55,
- "new_cases_per_million": 20.319,
- "new_cases_smoothed_per_million": 18.851,
- "total_deaths_per_million": 9.171,
- "new_deaths_per_million": 0.771,
- "new_deaths_smoothed_per_million": 0.367,
- "stringency_index": 84.26
- },
- {
- "date": "2020-06-09",
- "total_cases": 20917.0,
- "new_cases": 575.0,
- "new_cases_smoothed": 738.143,
- "total_deaths": 369.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 14.857,
- "total_cases_per_million": 537.321,
- "new_cases_per_million": 14.771,
- "new_cases_smoothed_per_million": 18.962,
- "total_deaths_per_million": 9.479,
- "new_deaths_per_million": 0.308,
- "new_deaths_smoothed_per_million": 0.382,
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-10",
- "total_cases": 21459.0,
- "new_cases": 542.0,
- "new_cases_smoothed": 707.143,
- "total_deaths": 384.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 16.286,
- "total_cases_per_million": 551.244,
- "new_cases_per_million": 13.923,
- "new_cases_smoothed_per_million": 18.165,
- "total_deaths_per_million": 9.864,
- "new_deaths_per_million": 0.385,
- "new_deaths_smoothed_per_million": 0.418,
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-11",
- "total_cases": 22143.0,
- "new_cases": 684.0,
- "new_cases_smoothed": 696.571,
- "total_deaths": 405.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 15.857,
- "total_cases_per_million": 568.814,
- "new_cases_per_million": 17.571,
- "new_cases_smoothed_per_million": 17.894,
- "total_deaths_per_million": 10.404,
- "new_deaths_per_million": 0.539,
- "new_deaths_smoothed_per_million": 0.407,
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-12",
- "total_cases": 22890.0,
- "new_cases": 747.0,
- "new_cases_smoothed": 690.857,
- "total_deaths": 426.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 18.0,
- "total_cases_per_million": 588.003,
- "new_cases_per_million": 19.189,
- "new_cases_smoothed_per_million": 17.747,
- "total_deaths_per_million": 10.943,
- "new_deaths_per_million": 0.539,
- "new_deaths_smoothed_per_million": 0.462,
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-13",
- "total_cases": 23546.0,
- "new_cases": 656.0,
- "new_cases_smoothed": 653.857,
- "total_deaths": 446.0,
- "new_deaths": 20.0,
- "new_deaths_smoothed": 19.571,
- "total_cases_per_million": 604.855,
- "new_cases_per_million": 16.851,
- "new_cases_smoothed_per_million": 16.796,
- "total_deaths_per_million": 11.457,
- "new_deaths_per_million": 0.514,
- "new_deaths_smoothed_per_million": 0.503,
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-14",
- "total_cases": 24102.0,
- "new_cases": 556.0,
- "new_cases_smoothed": 650.143,
- "total_deaths": 451.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 17.714,
- "total_cases_per_million": 619.138,
- "new_cases_per_million": 14.283,
- "new_cases_smoothed_per_million": 16.701,
- "total_deaths_per_million": 11.585,
- "new_deaths_per_million": 0.128,
- "new_deaths_smoothed_per_million": 0.455,
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-15",
- "total_cases": 24766.0,
- "new_cases": 664.0,
- "new_cases_smoothed": 632.0,
- "total_deaths": 471.0,
- "new_deaths": 20.0,
- "new_deaths_smoothed": 16.286,
- "total_cases_per_million": 636.195,
- "new_cases_per_million": 17.057,
- "new_cases_smoothed_per_million": 16.235,
- "total_deaths_per_million": 12.099,
- "new_deaths_per_million": 0.514,
- "new_deaths_smoothed_per_million": 0.418,
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-16",
- "total_cases": 25527.0,
- "new_cases": 761.0,
- "new_cases_smoothed": 658.571,
- "total_deaths": 478.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 15.571,
- "total_cases_per_million": 655.743,
- "new_cases_per_million": 19.549,
- "new_cases_smoothed_per_million": 16.918,
- "total_deaths_per_million": 12.279,
- "new_deaths_per_million": 0.18,
- "new_deaths_smoothed_per_million": 0.4,
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-17",
- "total_cases": 26310.0,
- "new_cases": 783.0,
- "new_cases_smoothed": 693.0,
- "total_deaths": 491.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 15.286,
- "total_cases_per_million": 675.857,
- "new_cases_per_million": 20.114,
- "new_cases_smoothed_per_million": 17.802,
- "total_deaths_per_million": 12.613,
- "new_deaths_per_million": 0.334,
- "new_deaths_smoothed_per_million": 0.393,
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-18",
- "total_cases": 26874.0,
- "new_cases": 564.0,
- "new_cases_smoothed": 675.857,
- "total_deaths": 504.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 14.143,
- "total_cases_per_million": 690.345,
- "new_cases_per_million": 14.488,
- "new_cases_smoothed_per_million": 17.362,
- "total_deaths_per_million": 12.947,
- "new_deaths_per_million": 0.334,
- "new_deaths_smoothed_per_million": 0.363,
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-19",
- "total_cases": 27532.0,
- "new_cases": 658.0,
- "new_cases_smoothed": 663.143,
- "total_deaths": 546.0,
- "new_deaths": 42.0,
- "new_deaths_smoothed": 17.143,
- "total_cases_per_million": 707.248,
- "new_cases_per_million": 16.903,
- "new_cases_smoothed_per_million": 17.035,
- "total_deaths_per_million": 14.026,
- "new_deaths_per_million": 1.079,
- "new_deaths_smoothed_per_million": 0.44,
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-20",
- "total_cases": 27878.0,
- "new_cases": 346.0,
- "new_cases_smoothed": 618.857,
- "total_deaths": 548.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 14.571,
- "total_cases_per_million": 716.136,
- "new_cases_per_million": 8.888,
- "new_cases_smoothed_per_million": 15.897,
- "total_deaths_per_million": 14.077,
- "new_deaths_per_million": 0.051,
- "new_deaths_smoothed_per_million": 0.374,
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-21",
- "total_cases": 28424.0,
- "new_cases": 546.0,
- "new_cases_smoothed": 617.429,
- "total_deaths": 569.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 16.857,
- "total_cases_per_million": 730.162,
- "new_cases_per_million": 14.026,
- "new_cases_smoothed_per_million": 15.861,
- "total_deaths_per_million": 14.617,
- "new_deaths_per_million": 0.539,
- "new_deaths_smoothed_per_million": 0.433,
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-22",
- "total_cases": 28833.0,
- "new_cases": 409.0,
- "new_cases_smoothed": 581.0,
- "total_deaths": 581.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 15.714,
- "total_cases_per_million": 740.669,
- "new_cases_per_million": 10.506,
- "new_cases_smoothed_per_million": 14.925,
- "total_deaths_per_million": 14.925,
- "new_deaths_per_million": 0.308,
- "new_deaths_smoothed_per_million": 0.404,
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-23",
- "total_cases": 29143.0,
- "new_cases": 310.0,
- "new_cases_smoothed": 516.571,
- "total_deaths": 598.0,
- "new_deaths": 17.0,
- "new_deaths_smoothed": 17.143,
- "total_cases_per_million": 748.632,
- "new_cases_per_million": 7.963,
- "new_cases_smoothed_per_million": 13.27,
- "total_deaths_per_million": 15.362,
- "new_deaths_per_million": 0.437,
- "new_deaths_smoothed_per_million": 0.44,
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-24",
- "total_cases": 29481.0,
- "new_cases": 338.0,
- "new_cases_smoothed": 453.0,
- "total_deaths": 618.0,
- "new_deaths": 20.0,
- "new_deaths_smoothed": 18.143,
- "total_cases_per_million": 757.315,
- "new_cases_per_million": 8.683,
- "new_cases_smoothed_per_million": 11.637,
- "total_deaths_per_million": 15.875,
- "new_deaths_per_million": 0.514,
- "new_deaths_smoothed_per_million": 0.466,
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-25",
- "total_cases": 29715.0,
- "new_cases": 234.0,
- "new_cases_smoothed": 405.857,
- "total_deaths": 639.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 19.286,
- "total_cases_per_million": 763.326,
- "new_cases_per_million": 6.011,
- "new_cases_smoothed_per_million": 10.426,
- "total_deaths_per_million": 16.415,
- "new_deaths_per_million": 0.539,
- "new_deaths_smoothed_per_million": 0.495,
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-26",
- "total_cases": 30175.0,
- "new_cases": 460.0,
- "new_cases_smoothed": 377.571,
- "total_deaths": 675.0,
- "new_deaths": 36.0,
- "new_deaths_smoothed": 18.429,
- "total_cases_per_million": 775.142,
- "new_cases_per_million": 11.817,
- "new_cases_smoothed_per_million": 9.699,
- "total_deaths_per_million": 17.34,
- "new_deaths_per_million": 0.925,
- "new_deaths_smoothed_per_million": 0.473,
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-27",
- "total_cases": 30451.0,
- "new_cases": 276.0,
- "new_cases_smoothed": 367.571,
- "total_deaths": 683.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 19.286,
- "total_cases_per_million": 782.232,
- "new_cases_per_million": 7.09,
- "new_cases_smoothed_per_million": 9.442,
- "total_deaths_per_million": 17.545,
- "new_deaths_per_million": 0.206,
- "new_deaths_smoothed_per_million": 0.495,
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-28",
- "total_cases": 30616.0,
- "new_cases": 165.0,
- "new_cases_smoothed": 313.143,
- "total_deaths": 703.0,
- "new_deaths": 20.0,
- "new_deaths_smoothed": 19.143,
- "total_cases_per_million": 786.471,
- "new_cases_per_million": 4.239,
- "new_cases_smoothed_per_million": 8.044,
- "total_deaths_per_million": 18.059,
- "new_deaths_per_million": 0.514,
- "new_deaths_smoothed_per_million": 0.492,
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-29",
- "total_cases": 30967.0,
- "new_cases": 351.0,
- "new_cases_smoothed": 304.857,
- "total_deaths": 721.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 20.0,
- "total_cases_per_million": 795.487,
- "new_cases_per_million": 9.017,
- "new_cases_smoothed_per_million": 7.831,
- "total_deaths_per_million": 18.521,
- "new_deaths_per_million": 0.462,
- "new_deaths_smoothed_per_million": 0.514,
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-30",
- "total_cases": 31238.0,
- "new_cases": 271.0,
- "new_cases_smoothed": 299.286,
- "total_deaths": 733.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 19.286,
- "total_cases_per_million": 802.449,
- "new_cases_per_million": 6.962,
- "new_cases_smoothed_per_million": 7.688,
- "total_deaths_per_million": 18.829,
- "new_deaths_per_million": 0.308,
- "new_deaths_smoothed_per_million": 0.495,
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-01",
- "total_cases": 31517.0,
- "new_cases": 279.0,
- "new_cases_smoothed": 290.857,
- "total_deaths": 746.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 18.286,
- "total_cases_per_million": 809.616,
- "new_cases_per_million": 7.167,
- "new_cases_smoothed_per_million": 7.472,
- "total_deaths_per_million": 19.163,
- "new_deaths_per_million": 0.334,
- "new_deaths_smoothed_per_million": 0.47,
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-02",
- "total_cases": 31836.0,
- "new_cases": 319.0,
- "new_cases_smoothed": 303.0,
- "total_deaths": 774.0,
- "new_deaths": 28.0,
- "new_deaths_smoothed": 19.286,
- "total_cases_per_million": 817.81,
- "new_cases_per_million": 8.195,
- "new_cases_smoothed_per_million": 7.784,
- "total_deaths_per_million": 19.883,
- "new_deaths_per_million": 0.719,
- "new_deaths_smoothed_per_million": 0.495,
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-03",
- "total_cases": 32022.0,
- "new_cases": 186.0,
- "new_cases_smoothed": 263.857,
- "total_deaths": 807.0,
- "new_deaths": 33.0,
- "new_deaths_smoothed": 18.857,
- "total_cases_per_million": 822.588,
- "new_cases_per_million": 4.778,
- "new_cases_smoothed_per_million": 6.778,
- "total_deaths_per_million": 20.73,
- "new_deaths_per_million": 0.848,
- "new_deaths_smoothed_per_million": 0.484,
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-04",
- "total_cases": 32324.0,
- "new_cases": 302.0,
- "new_cases_smoothed": 267.571,
- "total_deaths": 819.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 19.429,
- "total_cases_per_million": 830.346,
- "new_cases_per_million": 7.758,
- "new_cases_smoothed_per_million": 6.873,
- "total_deaths_per_million": 21.039,
- "new_deaths_per_million": 0.308,
- "new_deaths_smoothed_per_million": 0.499,
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-05",
- "total_cases": 32672.0,
- "new_cases": 348.0,
- "new_cases_smoothed": 293.714,
- "total_deaths": 826.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 17.571,
- "total_cases_per_million": 839.286,
- "new_cases_per_million": 8.94,
- "new_cases_smoothed_per_million": 7.545,
- "total_deaths_per_million": 21.218,
- "new_deaths_per_million": 0.18,
- "new_deaths_smoothed_per_million": 0.451,
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-06",
- "total_cases": 32951.0,
- "new_cases": 279.0,
- "new_cases_smoothed": 283.429,
- "total_deaths": 864.0,
- "new_deaths": 38.0,
- "new_deaths_smoothed": 20.429,
- "total_cases_per_million": 846.453,
- "new_cases_per_million": 7.167,
- "new_cases_smoothed_per_million": 7.281,
- "total_deaths_per_million": 22.195,
- "new_deaths_per_million": 0.976,
- "new_deaths_smoothed_per_million": 0.525,
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-07",
- "total_cases": 33384.0,
- "new_cases": 433.0,
- "new_cases_smoothed": 306.571,
- "total_deaths": 920.0,
- "new_deaths": 56.0,
- "new_deaths_smoothed": 26.714,
- "total_cases_per_million": 857.576,
- "new_cases_per_million": 11.123,
- "new_cases_smoothed_per_million": 7.875,
- "total_deaths_per_million": 23.633,
- "new_deaths_per_million": 1.439,
- "new_deaths_smoothed_per_million": 0.686,
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-08",
- "total_cases": 33594.0,
- "new_cases": 210.0,
- "new_cases_smoothed": 296.714,
- "total_deaths": 936.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 27.143,
- "total_cases_per_million": 862.97,
- "new_cases_per_million": 5.395,
- "new_cases_smoothed_per_million": 7.622,
- "total_deaths_per_million": 24.044,
- "new_deaths_per_million": 0.411,
- "new_deaths_smoothed_per_million": 0.697,
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-09",
- "total_cases": 33653.0,
- "new_cases": 59.0,
- "new_cases_smoothed": 259.571,
- "total_deaths": 937.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 23.286,
- "total_cases_per_million": 864.486,
- "new_cases_per_million": 1.516,
- "new_cases_smoothed_per_million": 6.668,
- "total_deaths_per_million": 24.07,
- "new_deaths_per_million": 0.026,
- "new_deaths_smoothed_per_million": 0.598,
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-10",
- "total_cases": 33908.0,
- "new_cases": 255.0,
- "new_cases_smoothed": 269.429,
- "total_deaths": 957.0,
- "new_deaths": 20.0,
- "new_deaths_smoothed": 21.429,
- "total_cases_per_million": 871.036,
- "new_cases_per_million": 6.55,
- "new_cases_smoothed_per_million": 6.921,
- "total_deaths_per_million": 24.584,
- "new_deaths_per_million": 0.514,
- "new_deaths_smoothed_per_million": 0.55,
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-11",
- "total_cases": 34366.0,
- "new_cases": 458.0,
- "new_cases_smoothed": 291.714,
- "total_deaths": 994.0,
- "new_deaths": 37.0,
- "new_deaths_smoothed": 25.0,
- "total_cases_per_million": 882.802,
- "new_cases_per_million": 11.765,
- "new_cases_smoothed_per_million": 7.494,
- "total_deaths_per_million": 25.534,
- "new_deaths_per_million": 0.95,
- "new_deaths_smoothed_per_million": 0.642,
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-12",
- "total_cases": 34451.0,
- "new_cases": 85.0,
- "new_cases_smoothed": 254.143,
- "total_deaths": 1010.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 26.286,
- "total_cases_per_million": 884.985,
- "new_cases_per_million": 2.183,
- "new_cases_smoothed_per_million": 6.528,
- "total_deaths_per_million": 25.945,
- "new_deaths_per_million": 0.411,
- "new_deaths_smoothed_per_million": 0.675,
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-13",
- "total_cases": 34451.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 214.286,
- "total_deaths": 1010.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 20.857,
- "total_cases_per_million": 884.985,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.505,
- "total_deaths_per_million": 25.945,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.536,
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-14",
- "total_cases": 34455.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 153.0,
- "total_deaths": 1012.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 13.143,
- "total_cases_per_million": 885.088,
- "new_cases_per_million": 0.103,
- "new_cases_smoothed_per_million": 3.93,
- "total_deaths_per_million": 25.996,
- "new_deaths_per_million": 0.051,
- "new_deaths_smoothed_per_million": 0.338,
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-15",
- "total_cases": 34740.0,
- "new_cases": 285.0,
- "new_cases_smoothed": 163.714,
- "total_deaths": 1045.0,
- "new_deaths": 33.0,
- "new_deaths_smoothed": 15.571,
- "total_cases_per_million": 892.409,
- "new_cases_per_million": 7.321,
- "new_cases_smoothed_per_million": 4.206,
- "total_deaths_per_million": 26.844,
- "new_deaths_per_million": 0.848,
- "new_deaths_smoothed_per_million": 0.4,
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-16",
- "total_cases": 34994.0,
- "new_cases": 254.0,
- "new_cases_smoothed": 191.571,
- "total_deaths": 1094.0,
- "new_deaths": 49.0,
- "new_deaths_smoothed": 22.429,
- "total_cases_per_million": 898.934,
- "new_cases_per_million": 6.525,
- "new_cases_smoothed_per_million": 4.921,
- "total_deaths_per_million": 28.103,
- "new_deaths_per_million": 1.259,
- "new_deaths_smoothed_per_million": 0.576,
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-17",
- "total_cases": 35070.0,
- "new_cases": 76.0,
- "new_cases_smoothed": 166.0,
- "total_deaths": 1115.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 22.571,
- "total_cases_per_million": 900.886,
- "new_cases_per_million": 1.952,
- "new_cases_smoothed_per_million": 4.264,
- "total_deaths_per_million": 28.642,
- "new_deaths_per_million": 0.539,
- "new_deaths_smoothed_per_million": 0.58,
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-18",
- "total_cases": 35289.0,
- "new_cases": 219.0,
- "new_cases_smoothed": 131.857,
- "total_deaths": 1147.0,
- "new_deaths": 32.0,
- "new_deaths_smoothed": 21.857,
- "total_cases_per_million": 906.512,
- "new_cases_per_million": 5.626,
- "new_cases_smoothed_per_million": 3.387,
- "total_deaths_per_million": 29.464,
- "new_deaths_per_million": 0.822,
- "new_deaths_smoothed_per_million": 0.561,
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-19",
- "total_cases": 35301.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 121.429,
- "total_deaths": 1164.0,
- "new_deaths": 17.0,
- "new_deaths_smoothed": 22.0,
- "total_cases_per_million": 906.82,
- "new_cases_per_million": 0.308,
- "new_cases_smoothed_per_million": 3.119,
- "total_deaths_per_million": 29.901,
- "new_deaths_per_million": 0.437,
- "new_deaths_smoothed_per_million": 0.565,
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-20",
- "total_cases": 35475.0,
- "new_cases": 174.0,
- "new_cases_smoothed": 146.286,
- "total_deaths": 1181.0,
- "new_deaths": 17.0,
- "new_deaths_smoothed": 24.429,
- "total_cases_per_million": 911.29,
- "new_cases_per_million": 4.47,
- "new_cases_smoothed_per_million": 3.758,
- "total_deaths_per_million": 30.338,
- "new_deaths_per_million": 0.437,
- "new_deaths_smoothed_per_million": 0.628,
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-21",
- "total_cases": 35615.0,
- "new_cases": 140.0,
- "new_cases_smoothed": 165.714,
- "total_deaths": 1186.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 24.857,
- "total_cases_per_million": 914.886,
- "new_cases_per_million": 3.596,
- "new_cases_smoothed_per_million": 4.257,
- "total_deaths_per_million": 30.466,
- "new_deaths_per_million": 0.128,
- "new_deaths_smoothed_per_million": 0.639,
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-22",
- "total_cases": 35727.0,
- "new_cases": 112.0,
- "new_cases_smoothed": 141.0,
- "total_deaths": 1190.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 20.714,
- "total_cases_per_million": 917.763,
- "new_cases_per_million": 2.877,
- "new_cases_smoothed_per_million": 3.622,
- "total_deaths_per_million": 30.569,
- "new_deaths_per_million": 0.103,
- "new_deaths_smoothed_per_million": 0.532,
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-23",
- "total_cases": 35915.0,
- "new_cases": 188.0,
- "new_cases_smoothed": 131.571,
- "total_deaths": 1211.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 16.714,
- "total_cases_per_million": 922.593,
- "new_cases_per_million": 4.829,
- "new_cases_smoothed_per_million": 3.38,
- "total_deaths_per_million": 31.108,
- "new_deaths_per_million": 0.539,
- "new_deaths_smoothed_per_million": 0.429,
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-24",
- "total_cases": 35928.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 122.571,
- "total_deaths": 1211.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 13.714,
- "total_cases_per_million": 922.927,
- "new_cases_per_million": 0.334,
- "new_cases_smoothed_per_million": 3.149,
- "total_deaths_per_million": 31.108,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.352,
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-25",
- "total_cases": 36036.0,
- "new_cases": 108.0,
- "new_cases_smoothed": 106.714,
- "total_deaths": 1246.0,
- "new_deaths": 35.0,
- "new_deaths_smoothed": 14.143,
- "total_cases_per_million": 925.701,
- "new_cases_per_million": 2.774,
- "new_cases_smoothed_per_million": 2.741,
- "total_deaths_per_million": 32.008,
- "new_deaths_per_million": 0.899,
- "new_deaths_smoothed_per_million": 0.363,
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-26",
- "total_cases": 36157.0,
- "new_cases": 121.0,
- "new_cases_smoothed": 122.286,
- "total_deaths": 1259.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 13.571,
- "total_cases_per_million": 928.809,
- "new_cases_per_million": 3.108,
- "new_cases_smoothed_per_million": 3.141,
- "total_deaths_per_million": 32.341,
- "new_deaths_per_million": 0.334,
- "new_deaths_smoothed_per_million": 0.349,
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-27",
- "total_cases": 36263.0,
- "new_cases": 106.0,
- "new_cases_smoothed": 112.571,
- "total_deaths": 1269.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 12.571,
- "total_cases_per_million": 931.532,
- "new_cases_per_million": 2.723,
- "new_cases_smoothed_per_million": 2.892,
- "total_deaths_per_million": 32.598,
- "new_deaths_per_million": 0.257,
- "new_deaths_smoothed_per_million": 0.323,
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-28",
- "total_cases": 36368.0,
- "new_cases": 105.0,
- "new_cases_smoothed": 107.571,
- "total_deaths": 1270.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 12.0,
- "total_cases_per_million": 934.229,
- "new_cases_per_million": 2.697,
- "new_cases_smoothed_per_million": 2.763,
- "total_deaths_per_million": 32.624,
- "new_deaths_per_million": 0.026,
- "new_deaths_smoothed_per_million": 0.308,
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-29",
- "total_cases": 36471.0,
- "new_cases": 103.0,
- "new_cases_smoothed": 106.286,
- "total_deaths": 1271.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 11.571,
- "total_cases_per_million": 936.875,
- "new_cases_per_million": 2.646,
- "new_cases_smoothed_per_million": 2.73,
- "total_deaths_per_million": 32.65,
- "new_deaths_per_million": 0.026,
- "new_deaths_smoothed_per_million": 0.297,
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-30",
- "total_cases": 36471.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 79.429,
- "total_deaths": 1271.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 936.875,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.04,
- "total_deaths_per_million": 32.65,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.22,
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-31",
- "total_cases": 36542.0,
- "new_cases": 71.0,
- "new_cases_smoothed": 87.714,
- "total_deaths": 1271.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 938.699,
- "new_cases_per_million": 1.824,
- "new_cases_smoothed_per_million": 2.253,
- "total_deaths_per_million": 32.65,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.22,
- "stringency_index": 78.7
- },
- {
- "date": "2020-08-01",
- "total_cases": 36710.0,
- "new_cases": 168.0,
- "new_cases_smoothed": 96.286,
- "total_deaths": 1283.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 5.286,
- "total_cases_per_million": 943.015,
- "new_cases_per_million": 4.316,
- "new_cases_smoothed_per_million": 2.473,
- "total_deaths_per_million": 32.958,
- "new_deaths_per_million": 0.308,
- "new_deaths_smoothed_per_million": 0.136,
- "stringency_index": 78.7
- },
- {
- "date": "2020-08-02",
- "total_cases": 36710.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 79.0,
- "total_deaths": 1283.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 943.015,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.029,
- "total_deaths_per_million": 32.958,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.088,
- "stringency_index": 78.7
- },
- {
- "date": "2020-08-03",
- "total_cases": 36710.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 63.857,
- "total_deaths": 1284.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 943.015,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.64,
- "total_deaths_per_million": 32.984,
- "new_deaths_per_million": 0.026,
- "new_deaths_smoothed_per_million": 0.055,
- "stringency_index": 78.7
- },
- {
- "date": "2020-08-04",
- "total_cases": 36747.0,
- "new_cases": 37.0,
- "new_cases_smoothed": 54.143,
- "total_deaths": 1288.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 943.965,
- "new_cases_per_million": 0.95,
- "new_cases_smoothed_per_million": 1.391,
- "total_deaths_per_million": 33.086,
- "new_deaths_per_million": 0.103,
- "new_deaths_smoothed_per_million": 0.066,
- "stringency_index": 75.0
- },
- {
- "date": "2020-08-05",
- "total_cases": 36829.0,
- "new_cases": 82.0,
- "new_cases_smoothed": 51.143,
- "total_deaths": 1294.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 946.072,
- "new_cases_per_million": 2.106,
- "new_cases_smoothed_per_million": 1.314,
- "total_deaths_per_million": 33.241,
- "new_deaths_per_million": 0.154,
- "new_deaths_smoothed_per_million": 0.084,
- "stringency_index": 71.3
- },
- {
- "date": "2020-08-06",
- "total_cases": 36896.0,
- "new_cases": 67.0,
- "new_cases_smoothed": 60.714,
- "total_deaths": 1298.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 947.793,
- "new_cases_per_million": 1.721,
- "new_cases_smoothed_per_million": 1.56,
- "total_deaths_per_million": 33.343,
- "new_deaths_per_million": 0.103,
- "new_deaths_smoothed_per_million": 0.099,
- "stringency_index": 71.3
- },
- {
- "date": "2020-08-07",
- "total_cases": 36937.0,
- "new_cases": 41.0,
- "new_cases_smoothed": 56.429,
- "total_deaths": 1298.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 948.846,
- "new_cases_per_million": 1.053,
- "new_cases_smoothed_per_million": 1.45,
- "total_deaths_per_million": 33.343,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.099,
- "stringency_index": 71.3
- },
- {
- "date": "2020-08-08",
- "total_cases": 37015.0,
- "new_cases": 78.0,
- "new_cases_smoothed": 43.571,
- "total_deaths": 1307.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 950.85,
- "new_cases_per_million": 2.004,
- "new_cases_smoothed_per_million": 1.119,
- "total_deaths_per_million": 33.575,
- "new_deaths_per_million": 0.231,
- "new_deaths_smoothed_per_million": 0.088,
- "stringency_index": 71.3
- },
- {
- "date": "2020-08-09",
- "total_cases": 37054.0,
- "new_cases": 39.0,
- "new_cases_smoothed": 49.143,
- "total_deaths": 1312.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 951.852,
- "new_cases_per_million": 1.002,
- "new_cases_smoothed_per_million": 1.262,
- "total_deaths_per_million": 33.703,
- "new_deaths_per_million": 0.128,
- "new_deaths_smoothed_per_million": 0.106,
- "stringency_index": 71.3
- },
- {
- "date": "2020-08-10",
- "total_cases": 37054.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 49.143,
- "total_deaths": 1312.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 951.852,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.262,
- "total_deaths_per_million": 33.703,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.103,
- "stringency_index": 71.3
- },
- {
- "date": "2020-08-11",
- "total_cases": 37054.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 43.857,
- "total_deaths": 1312.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 951.852,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.127,
- "total_deaths_per_million": 33.703,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.088,
- "stringency_index": 71.3
- },
- {
- "date": "2020-08-12",
- "total_cases": 37269.0,
- "new_cases": 215.0,
- "new_cases_smoothed": 62.857,
- "total_deaths": 1344.0,
- "new_deaths": 32.0,
- "new_deaths_smoothed": 7.143,
- "total_cases_per_million": 957.374,
- "new_cases_per_million": 5.523,
- "new_cases_smoothed_per_million": 1.615,
- "total_deaths_per_million": 34.525,
- "new_deaths_per_million": 0.822,
- "new_deaths_smoothed_per_million": 0.183,
- "stringency_index": 71.3
- },
- {
- "date": "2020-08-13",
- "total_cases": 37345.0,
- "new_cases": 76.0,
- "new_cases_smoothed": 64.143,
- "total_deaths": 1354.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 8.0,
- "total_cases_per_million": 959.327,
- "new_cases_per_million": 1.952,
- "new_cases_smoothed_per_million": 1.648,
- "total_deaths_per_million": 34.782,
- "new_deaths_per_million": 0.257,
- "new_deaths_smoothed_per_million": 0.206,
- "stringency_index": 71.3
- },
- {
- "date": "2020-08-14",
- "total_cases": 37424.0,
- "new_cases": 79.0,
- "new_cases_smoothed": 69.571,
- "total_deaths": 1363.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 9.286,
- "total_cases_per_million": 961.356,
- "new_cases_per_million": 2.029,
- "new_cases_smoothed_per_million": 1.787,
- "total_deaths_per_million": 35.013,
- "new_deaths_per_million": 0.231,
- "new_deaths_smoothed_per_million": 0.239,
- "stringency_index": 71.3
- },
- {
- "date": "2020-08-15",
- "total_cases": 37431.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 59.429,
- "total_deaths": 1363.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 8.0,
- "total_cases_per_million": 961.536,
- "new_cases_per_million": 0.18,
- "new_cases_smoothed_per_million": 1.527,
- "total_deaths_per_million": 35.013,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.206,
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-16",
- "total_cases": 37551.0,
- "new_cases": 120.0,
- "new_cases_smoothed": 71.0,
- "total_deaths": 1370.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 8.286,
- "total_cases_per_million": 964.619,
- "new_cases_per_million": 3.083,
- "new_cases_smoothed_per_million": 1.824,
- "total_deaths_per_million": 35.193,
- "new_deaths_per_million": 0.18,
- "new_deaths_smoothed_per_million": 0.213,
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-17",
- "total_cases": 37596.0,
- "new_cases": 45.0,
- "new_cases_smoothed": 77.429,
- "total_deaths": 1375.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 9.0,
- "total_cases_per_million": 965.775,
- "new_cases_per_million": 1.156,
- "new_cases_smoothed_per_million": 1.989,
- "total_deaths_per_million": 35.321,
- "new_deaths_per_million": 0.128,
- "new_deaths_smoothed_per_million": 0.231,
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-18",
- "total_cases": 37599.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 77.857,
- "total_deaths": 1375.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 9.0,
- "total_cases_per_million": 965.852,
- "new_cases_per_million": 0.077,
- "new_cases_smoothed_per_million": 2.0,
- "total_deaths_per_million": 35.321,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.231,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-19",
- "total_cases": 37599.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 47.143,
- "total_deaths": 1375.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 965.852,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.211,
- "total_deaths_per_million": 35.321,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.114,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-20",
- "total_cases": 37759.0,
- "new_cases": 160.0,
- "new_cases_smoothed": 59.143,
- "total_deaths": 1383.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 969.962,
- "new_cases_per_million": 4.11,
- "new_cases_smoothed_per_million": 1.519,
- "total_deaths_per_million": 35.527,
- "new_deaths_per_million": 0.206,
- "new_deaths_smoothed_per_million": 0.106,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-21",
- "total_cases": 37856.0,
- "new_cases": 97.0,
- "new_cases_smoothed": 61.714,
- "total_deaths": 1385.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 972.453,
- "new_cases_per_million": 2.492,
- "new_cases_smoothed_per_million": 1.585,
- "total_deaths_per_million": 35.578,
- "new_deaths_per_million": 0.051,
- "new_deaths_smoothed_per_million": 0.081,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-22",
- "total_cases": 37894.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 66.143,
- "total_deaths": 1385.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 973.43,
- "new_cases_per_million": 0.976,
- "new_cases_smoothed_per_million": 1.699,
- "total_deaths_per_million": 35.578,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.081,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-23",
- "total_cases": 37999.0,
- "new_cases": 105.0,
- "new_cases_smoothed": 64.0,
- "total_deaths": 1387.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 976.127,
- "new_cases_per_million": 2.697,
- "new_cases_smoothed_per_million": 1.644,
- "total_deaths_per_million": 35.63,
- "new_deaths_per_million": 0.051,
- "new_deaths_smoothed_per_million": 0.062,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-24",
- "total_cases": 37999.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 57.571,
- "total_deaths": 1387.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 976.127,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.479,
- "total_deaths_per_million": 35.63,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.044,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-25",
- "total_cases": 38070.0,
- "new_cases": 71.0,
- "new_cases_smoothed": 67.286,
- "total_deaths": 1397.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 977.951,
- "new_cases_per_million": 1.824,
- "new_cases_smoothed_per_million": 1.728,
- "total_deaths_per_million": 35.886,
- "new_deaths_per_million": 0.257,
- "new_deaths_smoothed_per_million": 0.081,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-26",
- "total_cases": 38071.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 67.429,
- "total_deaths": 1397.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 977.976,
- "new_cases_per_million": 0.026,
- "new_cases_smoothed_per_million": 1.732,
- "total_deaths_per_million": 35.886,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.081,
- "stringency_index": 21.3
- },
- {
- "date": "2020-08-27",
- "total_cases": 38126.0,
- "new_cases": 55.0,
- "new_cases_smoothed": 52.429,
- "total_deaths": 1401.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 979.389,
- "new_cases_per_million": 1.413,
- "new_cases_smoothed_per_million": 1.347,
- "total_deaths_per_million": 35.989,
- "new_deaths_per_million": 0.103,
- "new_deaths_smoothed_per_million": 0.066,
- "stringency_index": 21.3
- },
- {
- "date": "2020-08-28",
- "total_cases": 38129.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 39.0,
- "total_deaths": 1401.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 979.466,
- "new_cases_per_million": 0.077,
- "new_cases_smoothed_per_million": 1.002,
- "total_deaths_per_million": 35.989,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 21.3
- },
- {
- "date": "2020-08-29",
- "total_cases": 38140.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 35.143,
- "total_deaths": 1402.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 979.749,
- "new_cases_per_million": 0.283,
- "new_cases_smoothed_per_million": 0.903,
- "total_deaths_per_million": 36.015,
- "new_deaths_per_million": 0.026,
- "new_deaths_smoothed_per_million": 0.062,
- "stringency_index": 21.3
- },
- {
- "date": "2020-08-30",
- "total_cases": 38143.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 20.571,
- "total_deaths": 1402.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 979.826,
- "new_cases_per_million": 0.077,
- "new_cases_smoothed_per_million": 0.528,
- "total_deaths_per_million": 36.015,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.055,
- "stringency_index": 21.3
- },
- {
- "date": "2020-08-31",
- "total_cases": 38162.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 23.286,
- "total_deaths": 1402.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 980.314,
- "new_cases_per_million": 0.488,
- "new_cases_smoothed_per_million": 0.598,
- "total_deaths_per_million": 36.015,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.055,
- "stringency_index": 21.3
- },
- {
- "date": "2020-09-01",
- "total_cases": 38196.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 18.0,
- "total_deaths": 1406.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 981.187,
- "new_cases_per_million": 0.873,
- "new_cases_smoothed_per_million": 0.462,
- "total_deaths_per_million": 36.118,
- "new_deaths_per_million": 0.103,
- "new_deaths_smoothed_per_million": 0.033,
- "stringency_index": 21.3
- },
- {
- "date": "2020-09-02",
- "total_cases": 38205.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 19.143,
- "total_deaths": 1406.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 981.419,
- "new_cases_per_million": 0.231,
- "new_cases_smoothed_per_million": 0.492,
- "total_deaths_per_million": 36.118,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.033,
- "stringency_index": 21.3
- },
- {
- "date": "2020-09-03",
- "total_cases": 38243.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 16.714,
- "total_deaths": 1409.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 982.395,
- "new_cases_per_million": 0.976,
- "new_cases_smoothed_per_million": 0.429,
- "total_deaths_per_million": 36.195,
- "new_deaths_per_million": 0.077,
- "new_deaths_smoothed_per_million": 0.029,
- "stringency_index": 21.3
- },
- {
- "date": "2020-09-04",
- "total_cases": 38288.0,
- "new_cases": 45.0,
- "new_cases_smoothed": 22.714,
- "total_deaths": 1410.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 983.551,
- "new_cases_per_million": 1.156,
- "new_cases_smoothed_per_million": 0.583,
- "total_deaths_per_million": 36.22,
- "new_deaths_per_million": 0.026,
- "new_deaths_smoothed_per_million": 0.033,
- "stringency_index": 21.3
- },
- {
- "date": "2020-09-05",
- "total_cases": 38304.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 23.429,
- "total_deaths": 1410.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 983.962,
- "new_cases_per_million": 0.411,
- "new_cases_smoothed_per_million": 0.602,
- "total_deaths_per_million": 36.22,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.029,
- "stringency_index": 21.3
- },
- {
- "date": "2020-09-06",
- "total_cases": 38324.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 25.857,
- "total_deaths": 1410.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 984.476,
- "new_cases_per_million": 0.514,
- "new_cases_smoothed_per_million": 0.664,
- "total_deaths_per_million": 36.22,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.029,
- "stringency_index": 21.3
- },
- {
- "date": "2020-09-07",
- "total_cases": 38398.0,
- "new_cases": 74.0,
- "new_cases_smoothed": 33.714,
- "total_deaths": 1412.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 986.376,
- "new_cases_per_million": 1.901,
- "new_cases_smoothed_per_million": 0.866,
- "total_deaths_per_million": 36.272,
- "new_deaths_per_million": 0.051,
- "new_deaths_smoothed_per_million": 0.037,
- "stringency_index": 21.3
- },
- {
- "date": "2020-09-08",
- "total_cases": 38494.0,
- "new_cases": 96.0,
- "new_cases_smoothed": 42.571,
- "total_deaths": 1415.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 988.843,
- "new_cases_per_million": 2.466,
- "new_cases_smoothed_per_million": 1.094,
- "total_deaths_per_million": 36.349,
- "new_deaths_per_million": 0.077,
- "new_deaths_smoothed_per_million": 0.033,
- "stringency_index": 21.3
- },
- {
- "date": "2020-09-09",
- "total_cases": 38520.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 45.0,
- "total_deaths": 1418.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 989.51,
- "new_cases_per_million": 0.668,
- "new_cases_smoothed_per_million": 1.156,
- "total_deaths_per_million": 36.426,
- "new_deaths_per_million": 0.077,
- "new_deaths_smoothed_per_million": 0.044,
- "stringency_index": 21.3
- },
- {
- "date": "2020-09-10",
- "total_cases": 38544.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 43.0,
- "total_deaths": 1420.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 990.127,
- "new_cases_per_million": 0.617,
- "new_cases_smoothed_per_million": 1.105,
- "total_deaths_per_million": 36.477,
- "new_deaths_per_million": 0.051,
- "new_deaths_smoothed_per_million": 0.04,
- "stringency_index": 21.3
- },
- {
- "date": "2020-09-11",
- "total_cases": 38572.0,
- "new_cases": 28.0,
- "new_cases_smoothed": 40.571,
- "total_deaths": 1420.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 990.846,
- "new_cases_per_million": 0.719,
- "new_cases_smoothed_per_million": 1.042,
- "total_deaths_per_million": 36.477,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.037,
- "stringency_index": 21.3
- },
- {
- "date": "2020-09-12",
- "total_cases": 38606.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 43.143,
- "total_deaths": 1420.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 991.72,
- "new_cases_per_million": 0.873,
- "new_cases_smoothed_per_million": 1.108,
- "total_deaths_per_million": 36.477,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.037,
- "stringency_index": 21.3
- },
- {
- "date": "2020-09-13",
- "total_cases": 38641.0,
- "new_cases": 35.0,
- "new_cases_smoothed": 45.286,
- "total_deaths": 1420.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 992.619,
- "new_cases_per_million": 0.899,
- "new_cases_smoothed_per_million": 1.163,
- "total_deaths_per_million": 36.477,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.037,
- "stringency_index": 21.3
- },
- {
- "date": "2020-09-14",
- "total_cases": 38716.0,
- "new_cases": 75.0,
- "new_cases_smoothed": 45.429,
- "total_deaths": 1420.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 994.545,
- "new_cases_per_million": 1.927,
- "new_cases_smoothed_per_million": 1.167,
- "total_deaths_per_million": 36.477,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.029,
- "stringency_index": 21.3
- },
- {
- "date": "2020-09-15",
- "total_cases": 38815.0,
- "new_cases": 99.0,
- "new_cases_smoothed": 45.857,
- "total_deaths": 1426.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 997.088,
- "new_cases_per_million": 2.543,
- "new_cases_smoothed_per_million": 1.178,
- "total_deaths_per_million": 36.631,
- "new_deaths_per_million": 0.154,
- "new_deaths_smoothed_per_million": 0.04,
- "stringency_index": 21.3
- },
- {
- "date": "2020-09-16",
- "total_cases": 38855.0,
- "new_cases": 40.0,
- "new_cases_smoothed": 47.857,
- "total_deaths": 1436.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 998.116,
- "new_cases_per_million": 1.028,
- "new_cases_smoothed_per_million": 1.229,
- "total_deaths_per_million": 36.888,
- "new_deaths_per_million": 0.257,
- "new_deaths_smoothed_per_million": 0.066,
- "stringency_index": 21.3
- },
- {
- "date": "2020-09-17",
- "total_cases": 38872.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 46.857,
- "total_deaths": 1436.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 998.553,
- "new_cases_per_million": 0.437,
- "new_cases_smoothed_per_million": 1.204,
- "total_deaths_per_million": 36.888,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 21.3
- },
- {
- "date": "2020-09-18",
- "total_cases": 38872.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 42.857,
- "total_deaths": 1436.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 998.553,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.101,
- "total_deaths_per_million": 36.888,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 21.3
- },
- {
- "date": "2020-09-19",
- "total_cases": 38919.0,
- "new_cases": 47.0,
- "new_cases_smoothed": 44.714,
- "total_deaths": 1437.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 999.76,
- "new_cases_per_million": 1.207,
- "new_cases_smoothed_per_million": 1.149,
- "total_deaths_per_million": 36.914,
- "new_deaths_per_million": 0.026,
- "new_deaths_smoothed_per_million": 0.062,
- "stringency_index": 21.3
- },
- {
- "date": "2020-09-20",
- "total_cases": 39044.0,
- "new_cases": 125.0,
- "new_cases_smoothed": 57.571,
- "total_deaths": 1441.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 1002.971,
- "new_cases_per_million": 3.211,
- "new_cases_smoothed_per_million": 1.479,
- "total_deaths_per_million": 37.017,
- "new_deaths_per_million": 0.103,
- "new_deaths_smoothed_per_million": 0.077,
- "stringency_index": 21.3
- },
- {
- "date": "2020-09-21",
- "total_cases": 39044.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 46.857,
- "total_deaths": 1441.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 1002.971,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.204,
- "total_deaths_per_million": 37.017,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.077,
- "stringency_index": 21.3
- },
- {
- "date": "2020-09-22",
- "total_cases": 39074.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 37.0,
- "total_deaths": 1444.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 1003.742,
- "new_cases_per_million": 0.771,
- "new_cases_smoothed_per_million": 0.95,
- "total_deaths_per_million": 37.094,
- "new_deaths_per_million": 0.077,
- "new_deaths_smoothed_per_million": 0.066
- },
- {
- "date": "2020-09-23",
- "total_cases": 39145.0,
- "new_cases": 71.0,
- "new_cases_smoothed": 41.429,
- "total_deaths": 1446.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 1005.566,
- "new_cases_per_million": 1.824,
- "new_cases_smoothed_per_million": 1.064,
- "total_deaths_per_million": 37.145,
- "new_deaths_per_million": 0.051,
- "new_deaths_smoothed_per_million": 0.037
- },
- {
- "date": "2020-09-24",
- "total_cases": 39170.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 42.571,
- "total_deaths": 1451.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 1006.208,
- "new_cases_per_million": 0.642,
- "new_cases_smoothed_per_million": 1.094,
- "total_deaths_per_million": 37.274,
- "new_deaths_per_million": 0.128,
- "new_deaths_smoothed_per_million": 0.055
- },
- {
- "date": "2020-09-25",
- "total_cases": 39170.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 42.571,
- "total_deaths": 1451.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 1006.208,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.094,
- "total_deaths_per_million": 37.274,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.055
- }
- ]
- },
- "AGO": {
- "continent": "Africa",
- "location": "Angola",
- "population": 32866268.0,
- "population_density": 23.89,
- "median_age": 16.8,
- "aged_65_older": 2.405,
- "aged_70_older": 1.362,
- "gdp_per_capita": 5819.495,
- "cardiovasc_death_rate": 276.045,
- "diabetes_prevalence": 3.94,
- "handwashing_facilities": 26.664,
- "life_expectancy": 61.15,
- "human_development_index": 0.581,
- "data": [
- {
- "date": "2020-03-22",
- "total_cases": 2.0,
- "new_cases": 2.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.061,
- "new_cases_per_million": 0.061,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-23",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.061,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-24",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.061,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 33.33
- },
- {
- "date": "2020-03-25",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.061,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 33.33
- },
- {
- "date": "2020-03-26",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.061,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 33.33
- },
- {
- "date": "2020-03-27",
- "total_cases": 3.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.091,
- "new_cases_per_million": 0.03,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-03-28",
- "total_cases": 4.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.122,
- "new_cases_per_million": 0.03,
- "new_cases_smoothed_per_million": 0.017,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-03-29",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.122,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.009,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-03-30",
- "total_cases": 7.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 2.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 0.213,
- "new_cases_per_million": 0.091,
- "new_cases_smoothed_per_million": 0.022,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.061,
- "new_deaths_smoothed_per_million": 0.009,
- "stringency_index": 90.74
- },
- {
- "date": "2020-03-31",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 0.213,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.022,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.009,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-01",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 0.213,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.022,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.009,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-02",
- "total_cases": 8.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 0.243,
- "new_cases_per_million": 0.03,
- "new_cases_smoothed_per_million": 0.026,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.009,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-03",
- "total_cases": 8.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 0.243,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.022,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.009,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-04",
- "total_cases": 8.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 0.243,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.017,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.009,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-05",
- "total_cases": 10.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 0.304,
- "new_cases_per_million": 0.061,
- "new_cases_smoothed_per_million": 0.026,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.009,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-06",
- "total_cases": 14.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.426,
- "new_cases_per_million": 0.122,
- "new_cases_smoothed_per_million": 0.03,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-07",
- "total_cases": 16.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.487,
- "new_cases_per_million": 0.061,
- "new_cases_smoothed_per_million": 0.039,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-08",
- "total_cases": 17.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.517,
- "new_cases_per_million": 0.03,
- "new_cases_smoothed_per_million": 0.043,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-09",
- "total_cases": 19.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.578,
- "new_cases_per_million": 0.061,
- "new_cases_smoothed_per_million": 0.048,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-10",
- "total_cases": 19.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.578,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.048,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-11",
- "total_cases": 19.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.578,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.048,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-12",
- "total_cases": 19.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.578,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.039,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-13",
- "total_cases": 19.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.578,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.022,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-14",
- "total_cases": 19.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.578,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.013,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-15",
- "total_cases": 19.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.578,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.009,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-16",
- "total_cases": 19.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.578,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-17",
- "total_cases": 19.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.578,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-18",
- "total_cases": 19.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.578,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-19",
- "total_cases": 24.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.73,
- "new_cases_per_million": 0.152,
- "new_cases_smoothed_per_million": 0.022,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-20",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.73,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.022,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-21",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.73,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.022,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-22",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.73,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.022,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-23",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.73,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.022,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-24",
- "total_cases": 25.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.761,
- "new_cases_per_million": 0.03,
- "new_cases_smoothed_per_million": 0.026,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-25",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.761,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.026,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-26",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.761,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-27",
- "total_cases": 26.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.791,
- "new_cases_per_million": 0.03,
- "new_cases_smoothed_per_million": 0.009,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-28",
- "total_cases": 27.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.822,
- "new_cases_per_million": 0.03,
- "new_cases_smoothed_per_million": 0.013,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-29",
- "total_cases": 27.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.822,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.013,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-30",
- "total_cases": 27.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.822,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.013,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-05-01",
- "total_cases": 27.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.822,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.009,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-05-02",
- "total_cases": 29.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.882,
- "new_cases_per_million": 0.061,
- "new_cases_smoothed_per_million": 0.017,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-05-03",
- "total_cases": 35.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.065,
- "new_cases_per_million": 0.183,
- "new_cases_smoothed_per_million": 0.043,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-05-04",
- "total_cases": 35.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.065,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.039,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-05-05",
- "total_cases": 35.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.065,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.035,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-05-06",
- "total_cases": 36.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.095,
- "new_cases_per_million": 0.03,
- "new_cases_smoothed_per_million": 0.039,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-05-07",
- "total_cases": 36.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.095,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.039,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-05-08",
- "total_cases": 36.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.095,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.039,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-09",
- "total_cases": 43.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.308,
- "new_cases_per_million": 0.213,
- "new_cases_smoothed_per_million": 0.061,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-10",
- "total_cases": 43.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.308,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.035,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-11",
- "total_cases": 45.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.369,
- "new_cases_per_million": 0.061,
- "new_cases_smoothed_per_million": 0.043,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-12",
- "total_cases": 45.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.369,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.043,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-13",
- "total_cases": 45.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.369,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.039,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-14",
- "total_cases": 45.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.369,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.039,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-15",
- "total_cases": 48.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.46,
- "new_cases_per_million": 0.091,
- "new_cases_smoothed_per_million": 0.052,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-16",
- "total_cases": 48.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.46,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.022,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-17",
- "total_cases": 48.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.46,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.022,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-18",
- "total_cases": 48.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.46,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.013,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-19",
- "total_cases": 48.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.46,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.013,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-20",
- "total_cases": 50.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.521,
- "new_cases_per_million": 0.061,
- "new_cases_smoothed_per_million": 0.022,
- "total_deaths_per_million": 0.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-21",
- "total_cases": 52.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1.582,
- "new_cases_per_million": 0.061,
- "new_cases_smoothed_per_million": 0.03,
- "total_deaths_per_million": 0.091,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.004,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-22",
- "total_cases": 58.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1.765,
- "new_cases_per_million": 0.183,
- "new_cases_smoothed_per_million": 0.043,
- "total_deaths_per_million": 0.091,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.004,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-23",
- "total_cases": 60.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1.826,
- "new_cases_per_million": 0.061,
- "new_cases_smoothed_per_million": 0.052,
- "total_deaths_per_million": 0.091,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.004,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-24",
- "total_cases": 60.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1.826,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.052,
- "total_deaths_per_million": 0.091,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.004,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-25",
- "total_cases": 69.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 4.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2.099,
- "new_cases_per_million": 0.274,
- "new_cases_smoothed_per_million": 0.091,
- "total_deaths_per_million": 0.122,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.009,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-26",
- "total_cases": 69.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2.099,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.091,
- "total_deaths_per_million": 0.122,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.009,
- "stringency_index": 77.78
- },
- {
- "date": "2020-05-27",
- "total_cases": 71.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2.16,
- "new_cases_per_million": 0.061,
- "new_cases_smoothed_per_million": 0.091,
- "total_deaths_per_million": 0.122,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.009,
- "stringency_index": 77.78
- },
- {
- "date": "2020-05-28",
- "total_cases": 71.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2.16,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.083,
- "total_deaths_per_million": 0.122,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.004,
- "stringency_index": 77.78
- },
- {
- "date": "2020-05-29",
- "total_cases": 73.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2.221,
- "new_cases_per_million": 0.061,
- "new_cases_smoothed_per_million": 0.065,
- "total_deaths_per_million": 0.122,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.004,
- "stringency_index": 77.78
- },
- {
- "date": "2020-05-30",
- "total_cases": 77.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2.343,
- "new_cases_per_million": 0.122,
- "new_cases_smoothed_per_million": 0.074,
- "total_deaths_per_million": 0.122,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.004,
- "stringency_index": 77.78
- },
- {
- "date": "2020-05-31",
- "total_cases": 84.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 3.429,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2.556,
- "new_cases_per_million": 0.213,
- "new_cases_smoothed_per_million": 0.104,
- "total_deaths_per_million": 0.122,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.004,
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-01",
- "total_cases": 86.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.617,
- "new_cases_per_million": 0.061,
- "new_cases_smoothed_per_million": 0.074,
- "total_deaths_per_million": 0.122,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-02",
- "total_cases": 86.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.617,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.074,
- "total_deaths_per_million": 0.122,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-03",
- "total_cases": 86.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.617,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.065,
- "total_deaths_per_million": 0.122,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-04",
- "total_cases": 86.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.617,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.065,
- "total_deaths_per_million": 0.122,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-05",
- "total_cases": 86.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.617,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.057,
- "total_deaths_per_million": 0.122,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-06",
- "total_cases": 86.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.617,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.039,
- "total_deaths_per_million": 0.122,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-07",
- "total_cases": 86.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.617,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.009,
- "total_deaths_per_million": 0.122,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-08",
- "total_cases": 91.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.769,
- "new_cases_per_million": 0.152,
- "new_cases_smoothed_per_million": 0.022,
- "total_deaths_per_million": 0.122,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-09",
- "total_cases": 92.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.799,
- "new_cases_per_million": 0.03,
- "new_cases_smoothed_per_million": 0.026,
- "total_deaths_per_million": 0.122,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-10",
- "total_cases": 96.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.921,
- "new_cases_per_million": 0.122,
- "new_cases_smoothed_per_million": 0.043,
- "total_deaths_per_million": 0.122,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-11",
- "total_cases": 113.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 3.857,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.438,
- "new_cases_per_million": 0.517,
- "new_cases_smoothed_per_million": 0.117,
- "total_deaths_per_million": 0.122,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-12",
- "total_cases": 118.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 4.571,
- "total_deaths": 5.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 3.59,
- "new_cases_per_million": 0.152,
- "new_cases_smoothed_per_million": 0.139,
- "total_deaths_per_million": 0.152,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.004,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-13",
- "total_cases": 130.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 6.286,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 3.955,
- "new_cases_per_million": 0.365,
- "new_cases_smoothed_per_million": 0.191,
- "total_deaths_per_million": 0.152,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.004,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-14",
- "total_cases": 138.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 7.429,
- "total_deaths": 6.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 4.199,
- "new_cases_per_million": 0.243,
- "new_cases_smoothed_per_million": 0.226,
- "total_deaths_per_million": 0.183,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.009,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-15",
- "total_cases": 140.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 7.0,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 4.26,
- "new_cases_per_million": 0.061,
- "new_cases_smoothed_per_million": 0.213,
- "total_deaths_per_million": 0.183,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.009,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-16",
- "total_cases": 142.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 7.143,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 4.321,
- "new_cases_per_million": 0.061,
- "new_cases_smoothed_per_million": 0.217,
- "total_deaths_per_million": 0.183,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.009,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-17",
- "total_cases": 142.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.571,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 4.321,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.2,
- "total_deaths_per_million": 0.183,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.009,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-18",
- "total_cases": 155.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 6.0,
- "total_deaths": 7.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 4.716,
- "new_cases_per_million": 0.396,
- "new_cases_smoothed_per_million": 0.183,
- "total_deaths_per_million": 0.213,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.013,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-19",
- "total_cases": 155.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 4.716,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.161,
- "total_deaths_per_million": 0.213,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.009,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-20",
- "total_cases": 166.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 8.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 5.051,
- "new_cases_per_million": 0.335,
- "new_cases_smoothed_per_million": 0.156,
- "total_deaths_per_million": 0.243,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.013,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-21",
- "total_cases": 172.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 4.857,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 5.233,
- "new_cases_per_million": 0.183,
- "new_cases_smoothed_per_million": 0.148,
- "total_deaths_per_million": 0.243,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.009,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-22",
- "total_cases": 176.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 9.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 5.355,
- "new_cases_per_million": 0.122,
- "new_cases_smoothed_per_million": 0.156,
- "total_deaths_per_million": 0.274,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.013,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-23",
- "total_cases": 183.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 5.857,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 5.568,
- "new_cases_per_million": 0.213,
- "new_cases_smoothed_per_million": 0.178,
- "total_deaths_per_million": 0.274,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-24",
- "total_cases": 186.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 6.286,
- "total_deaths": 10.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 5.659,
- "new_cases_per_million": 0.091,
- "new_cases_smoothed_per_million": 0.191,
- "total_deaths_per_million": 0.304,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.017,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-25",
- "total_cases": 189.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 4.857,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 5.751,
- "new_cases_per_million": 0.091,
- "new_cases_smoothed_per_million": 0.148,
- "total_deaths_per_million": 0.304,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-26",
- "total_cases": 197.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 6.0,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 5.994,
- "new_cases_per_million": 0.243,
- "new_cases_smoothed_per_million": 0.183,
- "total_deaths_per_million": 0.304,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-27",
- "total_cases": 212.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 6.571,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 6.45,
- "new_cases_per_million": 0.456,
- "new_cases_smoothed_per_million": 0.2,
- "total_deaths_per_million": 0.304,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.009,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-28",
- "total_cases": 244.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 10.286,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 7.424,
- "new_cases_per_million": 0.974,
- "new_cases_smoothed_per_million": 0.313,
- "total_deaths_per_million": 0.304,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.009,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-29",
- "total_cases": 267.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 13.0,
- "total_deaths": 11.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 8.124,
- "new_cases_per_million": 0.7,
- "new_cases_smoothed_per_million": 0.396,
- "total_deaths_per_million": 0.335,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.009,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-30",
- "total_cases": 276.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 13.286,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 8.398,
- "new_cases_per_million": 0.274,
- "new_cases_smoothed_per_million": 0.404,
- "total_deaths_per_million": 0.335,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.009,
- "stringency_index": 75.93
- },
- {
- "date": "2020-07-01",
- "total_cases": 284.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 14.0,
- "total_deaths": 13.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 8.641,
- "new_cases_per_million": 0.243,
- "new_cases_smoothed_per_million": 0.426,
- "total_deaths_per_million": 0.396,
- "new_deaths_per_million": 0.061,
- "new_deaths_smoothed_per_million": 0.013,
- "stringency_index": 75.93
- },
- {
- "date": "2020-07-02",
- "total_cases": 291.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 14.571,
- "total_deaths": 15.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 8.854,
- "new_cases_per_million": 0.213,
- "new_cases_smoothed_per_million": 0.443,
- "total_deaths_per_million": 0.456,
- "new_deaths_per_million": 0.061,
- "new_deaths_smoothed_per_million": 0.022,
- "stringency_index": 75.93
- },
- {
- "date": "2020-07-03",
- "total_cases": 315.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 16.857,
- "total_deaths": 17.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 9.584,
- "new_cases_per_million": 0.73,
- "new_cases_smoothed_per_million": 0.513,
- "total_deaths_per_million": 0.517,
- "new_deaths_per_million": 0.061,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 75.93
- },
- {
- "date": "2020-07-04",
- "total_cases": 328.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 16.571,
- "total_deaths": 18.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 9.98,
- "new_cases_per_million": 0.396,
- "new_cases_smoothed_per_million": 0.504,
- "total_deaths_per_million": 0.548,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.035,
- "stringency_index": 75.93
- },
- {
- "date": "2020-07-05",
- "total_cases": 346.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 14.571,
- "total_deaths": 19.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 10.528,
- "new_cases_per_million": 0.548,
- "new_cases_smoothed_per_million": 0.443,
- "total_deaths_per_million": 0.578,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.039,
- "stringency_index": 75.93
- },
- {
- "date": "2020-07-06",
- "total_cases": 346.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 11.286,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 10.528,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.343,
- "total_deaths_per_million": 0.578,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.035,
- "stringency_index": 75.93
- },
- {
- "date": "2020-07-07",
- "total_cases": 353.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 11.0,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 10.74,
- "new_cases_per_million": 0.213,
- "new_cases_smoothed_per_million": 0.335,
- "total_deaths_per_million": 0.578,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.035,
- "stringency_index": 75.93
- },
- {
- "date": "2020-07-08",
- "total_cases": 353.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 9.857,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 10.74,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.3,
- "total_deaths_per_million": 0.578,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 75.93
- },
- {
- "date": "2020-07-09",
- "total_cases": 386.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 13.571,
- "total_deaths": 21.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 11.745,
- "new_cases_per_million": 1.004,
- "new_cases_smoothed_per_million": 0.413,
- "total_deaths_per_million": 0.639,
- "new_deaths_per_million": 0.061,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 76.39
- },
- {
- "date": "2020-07-10",
- "total_cases": 396.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 11.571,
- "total_deaths": 22.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 12.049,
- "new_cases_per_million": 0.304,
- "new_cases_smoothed_per_million": 0.352,
- "total_deaths_per_million": 0.669,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.022,
- "stringency_index": 76.39
- },
- {
- "date": "2020-07-11",
- "total_cases": 458.0,
- "new_cases": 62.0,
- "new_cases_smoothed": 18.571,
- "total_deaths": 23.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 13.935,
- "new_cases_per_million": 1.886,
- "new_cases_smoothed_per_million": 0.565,
- "total_deaths_per_million": 0.7,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.022,
- "stringency_index": 76.39
- },
- {
- "date": "2020-07-12",
- "total_cases": 483.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 19.571,
- "total_deaths": 25.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 14.696,
- "new_cases_per_million": 0.761,
- "new_cases_smoothed_per_million": 0.595,
- "total_deaths_per_million": 0.761,
- "new_deaths_per_million": 0.061,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 76.39
- },
- {
- "date": "2020-07-13",
- "total_cases": 506.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 22.857,
- "total_deaths": 26.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 15.396,
- "new_cases_per_million": 0.7,
- "new_cases_smoothed_per_million": 0.695,
- "total_deaths_per_million": 0.791,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 76.39
- },
- {
- "date": "2020-07-14",
- "total_cases": 506.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 21.857,
- "total_deaths": 26.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 15.396,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.665,
- "total_deaths_per_million": 0.791,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 76.39
- },
- {
- "date": "2020-07-15",
- "total_cases": 525.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 24.571,
- "total_deaths": 26.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 15.974,
- "new_cases_per_million": 0.578,
- "new_cases_smoothed_per_million": 0.748,
- "total_deaths_per_million": 0.791,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 76.39
- },
- {
- "date": "2020-07-16",
- "total_cases": 576.0,
- "new_cases": 51.0,
- "new_cases_smoothed": 27.143,
- "total_deaths": 27.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 17.526,
- "new_cases_per_million": 1.552,
- "new_cases_smoothed_per_million": 0.826,
- "total_deaths_per_million": 0.822,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 76.39
- },
- {
- "date": "2020-07-17",
- "total_cases": 607.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 30.143,
- "total_deaths": 28.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 18.469,
- "new_cases_per_million": 0.943,
- "new_cases_smoothed_per_million": 0.917,
- "total_deaths_per_million": 0.852,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 76.39
- },
- {
- "date": "2020-07-18",
- "total_cases": 638.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 25.714,
- "total_deaths": 29.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 19.412,
- "new_cases_per_million": 0.943,
- "new_cases_smoothed_per_million": 0.782,
- "total_deaths_per_million": 0.882,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 76.39
- },
- {
- "date": "2020-07-19",
- "total_cases": 687.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 29.143,
- "total_deaths": 29.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 20.903,
- "new_cases_per_million": 1.491,
- "new_cases_smoothed_per_million": 0.887,
- "total_deaths_per_million": 0.882,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.017,
- "stringency_index": 76.39
- },
- {
- "date": "2020-07-20",
- "total_cases": 705.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 28.429,
- "total_deaths": 29.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 21.451,
- "new_cases_per_million": 0.548,
- "new_cases_smoothed_per_million": 0.865,
- "total_deaths_per_million": 0.882,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "stringency_index": 76.39
- },
- {
- "date": "2020-07-21",
- "total_cases": 749.0,
- "new_cases": 44.0,
- "new_cases_smoothed": 34.714,
- "total_deaths": 29.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 22.789,
- "new_cases_per_million": 1.339,
- "new_cases_smoothed_per_million": 1.056,
- "total_deaths_per_million": 0.882,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "stringency_index": 76.39
- },
- {
- "date": "2020-07-22",
- "total_cases": 749.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 32.0,
- "total_deaths": 29.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 22.789,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.974,
- "total_deaths_per_million": 0.882,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "stringency_index": 76.39
- },
- {
- "date": "2020-07-23",
- "total_cases": 779.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 29.0,
- "total_deaths": 30.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 23.702,
- "new_cases_per_million": 0.913,
- "new_cases_smoothed_per_million": 0.882,
- "total_deaths_per_million": 0.913,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.013,
- "stringency_index": 76.39
- },
- {
- "date": "2020-07-24",
- "total_cases": 812.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 29.286,
- "total_deaths": 33.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 24.706,
- "new_cases_per_million": 1.004,
- "new_cases_smoothed_per_million": 0.891,
- "total_deaths_per_million": 1.004,
- "new_deaths_per_million": 0.091,
- "new_deaths_smoothed_per_million": 0.022,
- "stringency_index": 76.39
- },
- {
- "date": "2020-07-25",
- "total_cases": 851.0,
- "new_cases": 39.0,
- "new_cases_smoothed": 30.429,
- "total_deaths": 33.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 25.893,
- "new_cases_per_million": 1.187,
- "new_cases_smoothed_per_million": 0.926,
- "total_deaths_per_million": 1.004,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.017,
- "stringency_index": 76.39
- },
- {
- "date": "2020-07-26",
- "total_cases": 880.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 27.571,
- "total_deaths": 35.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 26.775,
- "new_cases_per_million": 0.882,
- "new_cases_smoothed_per_million": 0.839,
- "total_deaths_per_million": 1.065,
- "new_deaths_per_million": 0.061,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 76.39
- },
- {
- "date": "2020-07-27",
- "total_cases": 930.0,
- "new_cases": 50.0,
- "new_cases_smoothed": 32.143,
- "total_deaths": 40.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 28.296,
- "new_cases_per_million": 1.521,
- "new_cases_smoothed_per_million": 0.978,
- "total_deaths_per_million": 1.217,
- "new_deaths_per_million": 0.152,
- "new_deaths_smoothed_per_million": 0.048,
- "stringency_index": 76.39
- },
- {
- "date": "2020-07-28",
- "total_cases": 932.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 26.143,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 28.357,
- "new_cases_per_million": 0.061,
- "new_cases_smoothed_per_million": 0.795,
- "total_deaths_per_million": 1.217,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.048,
- "stringency_index": 76.39
- },
- {
- "date": "2020-07-29",
- "total_cases": 950.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 28.714,
- "total_deaths": 41.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 28.905,
- "new_cases_per_million": 0.548,
- "new_cases_smoothed_per_million": 0.874,
- "total_deaths_per_million": 1.247,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 76.39
- },
- {
- "date": "2020-07-30",
- "total_cases": 1000.0,
- "new_cases": 50.0,
- "new_cases_smoothed": 31.571,
- "total_deaths": 47.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 30.426,
- "new_cases_per_million": 1.521,
- "new_cases_smoothed_per_million": 0.961,
- "total_deaths_per_million": 1.43,
- "new_deaths_per_million": 0.183,
- "new_deaths_smoothed_per_million": 0.074,
- "stringency_index": 79.17
- },
- {
- "date": "2020-07-31",
- "total_cases": 1078.0,
- "new_cases": 78.0,
- "new_cases_smoothed": 38.0,
- "total_deaths": 48.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 32.8,
- "new_cases_per_million": 2.373,
- "new_cases_smoothed_per_million": 1.156,
- "total_deaths_per_million": 1.46,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.065,
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-01",
- "total_cases": 1109.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 36.857,
- "total_deaths": 51.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 33.743,
- "new_cases_per_million": 0.943,
- "new_cases_smoothed_per_million": 1.121,
- "total_deaths_per_million": 1.552,
- "new_deaths_per_million": 0.091,
- "new_deaths_smoothed_per_million": 0.078,
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-02",
- "total_cases": 1114.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 33.429,
- "total_deaths": 52.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 33.895,
- "new_cases_per_million": 0.152,
- "new_cases_smoothed_per_million": 1.017,
- "total_deaths_per_million": 1.582,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.074,
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-03",
- "total_cases": 1148.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 31.143,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 34.929,
- "new_cases_per_million": 1.034,
- "new_cases_smoothed_per_million": 0.948,
- "total_deaths_per_million": 1.582,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-04",
- "total_cases": 1164.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 33.143,
- "total_deaths": 54.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 35.416,
- "new_cases_per_million": 0.487,
- "new_cases_smoothed_per_million": 1.008,
- "total_deaths_per_million": 1.643,
- "new_deaths_per_million": 0.061,
- "new_deaths_smoothed_per_million": 0.061,
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-05",
- "total_cases": 1164.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 30.571,
- "total_deaths": 54.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 35.416,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.93,
- "total_deaths_per_million": 1.643,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.057,
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-06",
- "total_cases": 1344.0,
- "new_cases": 180.0,
- "new_cases_smoothed": 49.143,
- "total_deaths": 59.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 40.893,
- "new_cases_per_million": 5.477,
- "new_cases_smoothed_per_million": 1.495,
- "total_deaths_per_million": 1.795,
- "new_deaths_per_million": 0.152,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-07",
- "total_cases": 1395.0,
- "new_cases": 51.0,
- "new_cases_smoothed": 45.286,
- "total_deaths": 62.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 42.445,
- "new_cases_per_million": 1.552,
- "new_cases_smoothed_per_million": 1.378,
- "total_deaths_per_million": 1.886,
- "new_deaths_per_million": 0.091,
- "new_deaths_smoothed_per_million": 0.061,
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-08",
- "total_cases": 1483.0,
- "new_cases": 88.0,
- "new_cases_smoothed": 53.429,
- "total_deaths": 64.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 45.122,
- "new_cases_per_million": 2.678,
- "new_cases_smoothed_per_million": 1.626,
- "total_deaths_per_million": 1.947,
- "new_deaths_per_million": 0.061,
- "new_deaths_smoothed_per_million": 0.057,
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-09",
- "total_cases": 1483.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 52.714,
- "total_deaths": 64.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 45.122,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.604,
- "total_deaths_per_million": 1.947,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-10",
- "total_cases": 1572.0,
- "new_cases": 89.0,
- "new_cases_smoothed": 60.571,
- "total_deaths": 70.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 47.83,
- "new_cases_per_million": 2.708,
- "new_cases_smoothed_per_million": 1.843,
- "total_deaths_per_million": 2.13,
- "new_deaths_per_million": 0.183,
- "new_deaths_smoothed_per_million": 0.078,
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-11",
- "total_cases": 1672.0,
- "new_cases": 100.0,
- "new_cases_smoothed": 72.571,
- "total_deaths": 75.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 50.873,
- "new_cases_per_million": 3.043,
- "new_cases_smoothed_per_million": 2.208,
- "total_deaths_per_million": 2.282,
- "new_deaths_per_million": 0.152,
- "new_deaths_smoothed_per_million": 0.091,
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-12",
- "total_cases": 1679.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 73.571,
- "total_deaths": 78.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 51.086,
- "new_cases_per_million": 0.213,
- "new_cases_smoothed_per_million": 2.239,
- "total_deaths_per_million": 2.373,
- "new_deaths_per_million": 0.091,
- "new_deaths_smoothed_per_million": 0.104,
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-13",
- "total_cases": 1735.0,
- "new_cases": 56.0,
- "new_cases_smoothed": 55.857,
- "total_deaths": 80.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 52.79,
- "new_cases_per_million": 1.704,
- "new_cases_smoothed_per_million": 1.7,
- "total_deaths_per_million": 2.434,
- "new_deaths_per_million": 0.061,
- "new_deaths_smoothed_per_million": 0.091,
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-14",
- "total_cases": 1762.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 52.429,
- "total_deaths": 80.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 53.611,
- "new_cases_per_million": 0.822,
- "new_cases_smoothed_per_million": 1.595,
- "total_deaths_per_million": 2.434,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.078,
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-15",
- "total_cases": 1815.0,
- "new_cases": 53.0,
- "new_cases_smoothed": 47.429,
- "total_deaths": 83.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 55.224,
- "new_cases_per_million": 1.613,
- "new_cases_smoothed_per_million": 1.443,
- "total_deaths_per_million": 2.525,
- "new_deaths_per_million": 0.091,
- "new_deaths_smoothed_per_million": 0.083,
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-16",
- "total_cases": 1852.0,
- "new_cases": 37.0,
- "new_cases_smoothed": 52.714,
- "total_deaths": 86.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 56.35,
- "new_cases_per_million": 1.126,
- "new_cases_smoothed_per_million": 1.604,
- "total_deaths_per_million": 2.617,
- "new_deaths_per_million": 0.091,
- "new_deaths_smoothed_per_million": 0.096,
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-17",
- "total_cases": 1879.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 43.857,
- "total_deaths": 86.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 57.171,
- "new_cases_per_million": 0.822,
- "new_cases_smoothed_per_million": 1.334,
- "total_deaths_per_million": 2.617,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.07,
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-18",
- "total_cases": 1906.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 33.429,
- "total_deaths": 88.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 57.993,
- "new_cases_per_million": 0.822,
- "new_cases_smoothed_per_million": 1.017,
- "total_deaths_per_million": 2.678,
- "new_deaths_per_million": 0.061,
- "new_deaths_smoothed_per_million": 0.057,
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-19",
- "total_cases": 1966.0,
- "new_cases": 60.0,
- "new_cases_smoothed": 41.0,
- "total_deaths": 90.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 59.818,
- "new_cases_per_million": 1.826,
- "new_cases_smoothed_per_million": 1.247,
- "total_deaths_per_million": 2.738,
- "new_deaths_per_million": 0.061,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-20",
- "total_cases": 1966.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 33.0,
- "total_deaths": 90.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 59.818,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.004,
- "total_deaths_per_million": 2.738,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.043,
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-21",
- "total_cases": 2015.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 36.143,
- "total_deaths": 92.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 61.309,
- "new_cases_per_million": 1.491,
- "new_cases_smoothed_per_million": 1.1,
- "total_deaths_per_million": 2.799,
- "new_deaths_per_million": 0.061,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 76.39
- },
- {
- "date": "2020-08-22",
- "total_cases": 2044.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 32.714,
- "total_deaths": 93.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 62.191,
- "new_cases_per_million": 0.882,
- "new_cases_smoothed_per_million": 0.995,
- "total_deaths_per_million": 2.83,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.043,
- "stringency_index": 76.39
- },
- {
- "date": "2020-08-23",
- "total_cases": 2068.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 30.857,
- "total_deaths": 94.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 62.922,
- "new_cases_per_million": 0.73,
- "new_cases_smoothed_per_million": 0.939,
- "total_deaths_per_million": 2.86,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.035,
- "stringency_index": 76.39
- },
- {
- "date": "2020-08-24",
- "total_cases": 2171.0,
- "new_cases": 103.0,
- "new_cases_smoothed": 41.714,
- "total_deaths": 96.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 66.056,
- "new_cases_per_million": 3.134,
- "new_cases_smoothed_per_million": 1.269,
- "total_deaths_per_million": 2.921,
- "new_deaths_per_million": 0.061,
- "new_deaths_smoothed_per_million": 0.043,
- "stringency_index": 76.39
- },
- {
- "date": "2020-08-25",
- "total_cases": 2222.0,
- "new_cases": 51.0,
- "new_cases_smoothed": 45.143,
- "total_deaths": 100.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 67.607,
- "new_cases_per_million": 1.552,
- "new_cases_smoothed_per_million": 1.374,
- "total_deaths_per_million": 3.043,
- "new_deaths_per_million": 0.122,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 76.39
- },
- {
- "date": "2020-08-26",
- "total_cases": 2283.0,
- "new_cases": 61.0,
- "new_cases_smoothed": 45.286,
- "total_deaths": 102.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 69.463,
- "new_cases_per_million": 1.856,
- "new_cases_smoothed_per_million": 1.378,
- "total_deaths_per_million": 3.103,
- "new_deaths_per_million": 0.061,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 76.39
- },
- {
- "date": "2020-08-27",
- "total_cases": 2332.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 52.286,
- "total_deaths": 103.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 70.954,
- "new_cases_per_million": 1.491,
- "new_cases_smoothed_per_million": 1.591,
- "total_deaths_per_million": 3.134,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.057,
- "stringency_index": 76.39
- },
- {
- "date": "2020-08-28",
- "total_cases": 2415.0,
- "new_cases": 83.0,
- "new_cases_smoothed": 57.143,
- "total_deaths": 105.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 73.48,
- "new_cases_per_million": 2.525,
- "new_cases_smoothed_per_million": 1.739,
- "total_deaths_per_million": 3.195,
- "new_deaths_per_million": 0.061,
- "new_deaths_smoothed_per_million": 0.057,
- "stringency_index": 76.39
- },
- {
- "date": "2020-08-29",
- "total_cases": 2471.0,
- "new_cases": 56.0,
- "new_cases_smoothed": 61.0,
- "total_deaths": 106.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 75.183,
- "new_cases_per_million": 1.704,
- "new_cases_smoothed_per_million": 1.856,
- "total_deaths_per_million": 3.225,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.057,
- "stringency_index": 76.39
- },
- {
- "date": "2020-08-30",
- "total_cases": 2551.0,
- "new_cases": 80.0,
- "new_cases_smoothed": 69.0,
- "total_deaths": 107.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 77.618,
- "new_cases_per_million": 2.434,
- "new_cases_smoothed_per_million": 2.099,
- "total_deaths_per_million": 3.256,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.057,
- "stringency_index": 76.39
- },
- {
- "date": "2020-08-31",
- "total_cases": 2624.0,
- "new_cases": 73.0,
- "new_cases_smoothed": 64.714,
- "total_deaths": 107.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 79.839,
- "new_cases_per_million": 2.221,
- "new_cases_smoothed_per_million": 1.969,
- "total_deaths_per_million": 3.256,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.048,
- "stringency_index": 76.39
- },
- {
- "date": "2020-09-01",
- "total_cases": 2624.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 57.429,
- "total_deaths": 107.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 79.839,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.747,
- "total_deaths_per_million": 3.256,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 81.02
- },
- {
- "date": "2020-09-02",
- "total_cases": 2654.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 53.0,
- "total_deaths": 108.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 80.751,
- "new_cases_per_million": 0.913,
- "new_cases_smoothed_per_million": 1.613,
- "total_deaths_per_million": 3.286,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 81.02
- },
- {
- "date": "2020-09-03",
- "total_cases": 2729.0,
- "new_cases": 75.0,
- "new_cases_smoothed": 56.714,
- "total_deaths": 109.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 83.033,
- "new_cases_per_million": 2.282,
- "new_cases_smoothed_per_million": 1.726,
- "total_deaths_per_million": 3.316,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 81.02
- },
- {
- "date": "2020-09-04",
- "total_cases": 2777.0,
- "new_cases": 48.0,
- "new_cases_smoothed": 51.714,
- "total_deaths": 112.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 84.494,
- "new_cases_per_million": 1.46,
- "new_cases_smoothed_per_million": 1.573,
- "total_deaths_per_million": 3.408,
- "new_deaths_per_million": 0.091,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 81.02
- },
- {
- "date": "2020-09-05",
- "total_cases": 2805.0,
- "new_cases": 28.0,
- "new_cases_smoothed": 47.714,
- "total_deaths": 113.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 85.346,
- "new_cases_per_million": 0.852,
- "new_cases_smoothed_per_million": 1.452,
- "total_deaths_per_million": 3.438,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 81.02
- },
- {
- "date": "2020-09-06",
- "total_cases": 2876.0,
- "new_cases": 71.0,
- "new_cases_smoothed": 46.429,
- "total_deaths": 115.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 87.506,
- "new_cases_per_million": 2.16,
- "new_cases_smoothed_per_million": 1.413,
- "total_deaths_per_million": 3.499,
- "new_deaths_per_million": 0.061,
- "new_deaths_smoothed_per_million": 0.035,
- "stringency_index": 81.02
- },
- {
- "date": "2020-09-07",
- "total_cases": 2935.0,
- "new_cases": 59.0,
- "new_cases_smoothed": 44.429,
- "total_deaths": 117.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 89.301,
- "new_cases_per_million": 1.795,
- "new_cases_smoothed_per_million": 1.352,
- "total_deaths_per_million": 3.56,
- "new_deaths_per_million": 0.061,
- "new_deaths_smoothed_per_million": 0.043,
- "stringency_index": 81.02
- },
- {
- "date": "2020-09-08",
- "total_cases": 2965.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 48.714,
- "total_deaths": 117.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 90.214,
- "new_cases_per_million": 0.913,
- "new_cases_smoothed_per_million": 1.482,
- "total_deaths_per_million": 3.56,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.043,
- "stringency_index": 81.02
- },
- {
- "date": "2020-09-09",
- "total_cases": 2981.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 46.714,
- "total_deaths": 120.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 90.701,
- "new_cases_per_million": 0.487,
- "new_cases_smoothed_per_million": 1.421,
- "total_deaths_per_million": 3.651,
- "new_deaths_per_million": 0.091,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 81.02
- },
- {
- "date": "2020-09-10",
- "total_cases": 3033.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 43.429,
- "total_deaths": 124.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 92.283,
- "new_cases_per_million": 1.582,
- "new_cases_smoothed_per_million": 1.321,
- "total_deaths_per_million": 3.773,
- "new_deaths_per_million": 0.122,
- "new_deaths_smoothed_per_million": 0.065,
- "stringency_index": 81.02
- },
- {
- "date": "2020-09-11",
- "total_cases": 3092.0,
- "new_cases": 59.0,
- "new_cases_smoothed": 45.0,
- "total_deaths": 126.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 94.078,
- "new_cases_per_million": 1.795,
- "new_cases_smoothed_per_million": 1.369,
- "total_deaths_per_million": 3.834,
- "new_deaths_per_million": 0.061,
- "new_deaths_smoothed_per_million": 0.061,
- "stringency_index": 81.02
- },
- {
- "date": "2020-09-12",
- "total_cases": 3217.0,
- "new_cases": 125.0,
- "new_cases_smoothed": 58.857,
- "total_deaths": 130.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 97.882,
- "new_cases_per_million": 3.803,
- "new_cases_smoothed_per_million": 1.791,
- "total_deaths_per_million": 3.955,
- "new_deaths_per_million": 0.122,
- "new_deaths_smoothed_per_million": 0.074,
- "stringency_index": 81.02
- },
- {
- "date": "2020-09-13",
- "total_cases": 3279.0,
- "new_cases": 62.0,
- "new_cases_smoothed": 57.571,
- "total_deaths": 131.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 99.768,
- "new_cases_per_million": 1.886,
- "new_cases_smoothed_per_million": 1.752,
- "total_deaths_per_million": 3.986,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.07,
- "stringency_index": 81.02
- },
- {
- "date": "2020-09-14",
- "total_cases": 3335.0,
- "new_cases": 56.0,
- "new_cases_smoothed": 57.143,
- "total_deaths": 132.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 101.472,
- "new_cases_per_million": 1.704,
- "new_cases_smoothed_per_million": 1.739,
- "total_deaths_per_million": 4.016,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.065,
- "stringency_index": 81.02
- },
- {
- "date": "2020-09-15",
- "total_cases": 3388.0,
- "new_cases": 53.0,
- "new_cases_smoothed": 60.429,
- "total_deaths": 134.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 103.084,
- "new_cases_per_million": 1.613,
- "new_cases_smoothed_per_million": 1.839,
- "total_deaths_per_million": 4.077,
- "new_deaths_per_million": 0.061,
- "new_deaths_smoothed_per_million": 0.074,
- "stringency_index": 81.02
- },
- {
- "date": "2020-09-16",
- "total_cases": 3439.0,
- "new_cases": 51.0,
- "new_cases_smoothed": 65.429,
- "total_deaths": 134.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 104.636,
- "new_cases_per_million": 1.552,
- "new_cases_smoothed_per_million": 1.991,
- "total_deaths_per_million": 4.077,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.061
- },
- {
- "date": "2020-09-17",
- "total_cases": 3569.0,
- "new_cases": 130.0,
- "new_cases_smoothed": 76.571,
- "total_deaths": 139.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 108.592,
- "new_cases_per_million": 3.955,
- "new_cases_smoothed_per_million": 2.33,
- "total_deaths_per_million": 4.229,
- "new_deaths_per_million": 0.152,
- "new_deaths_smoothed_per_million": 0.065
- },
- {
- "date": "2020-09-18",
- "total_cases": 3749.0,
- "new_cases": 180.0,
- "new_cases_smoothed": 93.857,
- "total_deaths": 144.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 114.068,
- "new_cases_per_million": 5.477,
- "new_cases_smoothed_per_million": 2.856,
- "total_deaths_per_million": 4.381,
- "new_deaths_per_million": 0.152,
- "new_deaths_smoothed_per_million": 0.078
- },
- {
- "date": "2020-09-19",
- "total_cases": 3789.0,
- "new_cases": 40.0,
- "new_cases_smoothed": 81.714,
- "total_deaths": 144.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 115.285,
- "new_cases_per_million": 1.217,
- "new_cases_smoothed_per_million": 2.486,
- "total_deaths_per_million": 4.381,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.061
- },
- {
- "date": "2020-09-20",
- "total_cases": 3901.0,
- "new_cases": 112.0,
- "new_cases_smoothed": 88.857,
- "total_deaths": 144.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 118.693,
- "new_cases_per_million": 3.408,
- "new_cases_smoothed_per_million": 2.704,
- "total_deaths_per_million": 4.381,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.057
- },
- {
- "date": "2020-09-21",
- "total_cases": 3991.0,
- "new_cases": 90.0,
- "new_cases_smoothed": 93.714,
- "total_deaths": 152.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 121.431,
- "new_cases_per_million": 2.738,
- "new_cases_smoothed_per_million": 2.851,
- "total_deaths_per_million": 4.625,
- "new_deaths_per_million": 0.243,
- "new_deaths_smoothed_per_million": 0.087
- },
- {
- "date": "2020-09-22",
- "total_cases": 4117.0,
- "new_cases": 126.0,
- "new_cases_smoothed": 104.143,
- "total_deaths": 154.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 125.265,
- "new_cases_per_million": 3.834,
- "new_cases_smoothed_per_million": 3.169,
- "total_deaths_per_million": 4.686,
- "new_deaths_per_million": 0.061,
- "new_deaths_smoothed_per_million": 0.087
- },
- {
- "date": "2020-09-23",
- "total_cases": 4236.0,
- "new_cases": 119.0,
- "new_cases_smoothed": 113.857,
- "total_deaths": 155.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 128.886,
- "new_cases_per_million": 3.621,
- "new_cases_smoothed_per_million": 3.464,
- "total_deaths_per_million": 4.716,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.091
- },
- {
- "date": "2020-09-24",
- "total_cases": 4236.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 95.286,
- "total_deaths": 155.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 128.886,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.899,
- "total_deaths_per_million": 4.716,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.07
- },
- {
- "date": "2020-09-25",
- "total_cases": 4363.0,
- "new_cases": 127.0,
- "new_cases_smoothed": 87.714,
- "total_deaths": 159.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 132.75,
- "new_cases_per_million": 3.864,
- "new_cases_smoothed_per_million": 2.669,
- "total_deaths_per_million": 4.838,
- "new_deaths_per_million": 0.122,
- "new_deaths_smoothed_per_million": 0.065
- }
- ]
- },
- "AIA": {
- "continent": "North America",
- "location": "Anguilla",
- "population": 15002.0,
- "life_expectancy": 81.88,
- "data": [
- {
- "date": "2020-03-27",
- "total_cases": 2.0,
- "new_cases": 2.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 133.316,
- "new_cases_per_million": 133.316,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 71.3
- },
- {
- "date": "2020-03-28",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 133.316,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 71.3
- },
- {
- "date": "2020-03-29",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 133.316,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 71.3
- },
- {
- "date": "2020-03-30",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 133.316,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 74.07
- },
- {
- "date": "2020-03-31",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 133.316,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 74.07
- },
- {
- "date": "2020-04-01",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 133.316,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 74.07
- },
- {
- "date": "2020-04-02",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 133.316,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 19.045,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 74.07
- },
- {
- "date": "2020-04-03",
- "total_cases": 3.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 66.658,
- "new_cases_smoothed_per_million": 9.523,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 74.07
- },
- {
- "date": "2020-04-04",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.523,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 74.07
- },
- {
- "date": "2020-04-05",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.523,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 74.07
- },
- {
- "date": "2020-04-06",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.523,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 74.07
- },
- {
- "date": "2020-04-07",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.523,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 74.07
- },
- {
- "date": "2020-04-08",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.523,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 82.41
- },
- {
- "date": "2020-04-09",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.523,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 82.41
- },
- {
- "date": "2020-04-10",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 82.41
- },
- {
- "date": "2020-04-11",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 82.41
- },
- {
- "date": "2020-04-12",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 82.41
- },
- {
- "date": "2020-04-13",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 82.41
- },
- {
- "date": "2020-04-14",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 82.41
- },
- {
- "date": "2020-04-15",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 82.41
- },
- {
- "date": "2020-04-16",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 82.41
- },
- {
- "date": "2020-04-17",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 82.41
- },
- {
- "date": "2020-04-18",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 82.41
- },
- {
- "date": "2020-04-19",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 82.41
- },
- {
- "date": "2020-04-20",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 82.41
- },
- {
- "date": "2020-04-21",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 82.41
- },
- {
- "date": "2020-04-22",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-23",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-24",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-25",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-26",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-27",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-28",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-29",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 61.11
- },
- {
- "date": "2020-04-30",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 61.11
- },
- {
- "date": "2020-05-01",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 61.11
- },
- {
- "date": "2020-05-02",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 61.11
- },
- {
- "date": "2020-05-03",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 61.11
- },
- {
- "date": "2020-05-04",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 61.11
- },
- {
- "date": "2020-05-05",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 61.11
- },
- {
- "date": "2020-05-06",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 61.11
- },
- {
- "date": "2020-05-07",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 61.11
- },
- {
- "date": "2020-05-08",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 61.11
- },
- {
- "date": "2020-05-09",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 61.11
- },
- {
- "date": "2020-05-10",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 61.11
- },
- {
- "date": "2020-05-11",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-12",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-13",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-14",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-15",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-16",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-17",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-18",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-19",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-20",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-21",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-22",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-23",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-24",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-25",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-26",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-27",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-28",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-29",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-30",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-31",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-01",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-06-02",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-06-03",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-06-04",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-06-05",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-06-06",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-06-07",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-06-08",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-06-09",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-06-10",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-06-11",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-06-12",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-06-13",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-06-14",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-06-15",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-06-16",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-06-17",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-06-18",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-06-19",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-06-20",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-06-21",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-06-22",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-06-23",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-06-24",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-06-25",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-06-26",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-06-27",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-06-28",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-06-29",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-06-30",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-07-01",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-07-02",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 26.85
- },
- {
- "date": "2020-07-03",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 26.85
- },
- {
- "date": "2020-07-04",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 26.85
- },
- {
- "date": "2020-07-05",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 26.85
- },
- {
- "date": "2020-07-06",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 26.85
- },
- {
- "date": "2020-07-07",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 26.85
- },
- {
- "date": "2020-07-08",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 26.85
- },
- {
- "date": "2020-07-09",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 26.85
- },
- {
- "date": "2020-07-10",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 26.85
- },
- {
- "date": "2020-07-11",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 26.85
- },
- {
- "date": "2020-07-12",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 26.85
- },
- {
- "date": "2020-07-13",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 26.85
- },
- {
- "date": "2020-07-14",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 26.85
- },
- {
- "date": "2020-07-15",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 26.85
- },
- {
- "date": "2020-07-16",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 26.85
- },
- {
- "date": "2020-07-17",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 26.85
- },
- {
- "date": "2020-07-18",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 26.85
- },
- {
- "date": "2020-07-19",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 26.85
- },
- {
- "date": "2020-07-20",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 26.85
- },
- {
- "date": "2020-07-21",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 26.85
- },
- {
- "date": "2020-07-22",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 26.85
- },
- {
- "date": "2020-07-23",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 26.85
- },
- {
- "date": "2020-07-24",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 26.85
- },
- {
- "date": "2020-07-25",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 26.85
- },
- {
- "date": "2020-07-26",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 26.85
- },
- {
- "date": "2020-07-27",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 26.85
- },
- {
- "date": "2020-07-28",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 26.85
- },
- {
- "date": "2020-07-29",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 26.85
- },
- {
- "date": "2020-07-30",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-07-31",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-08-01",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-08-02",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-08-03",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-08-04",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-08-05",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-08-06",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-08-07",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-08-08",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-08-09",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-08-10",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-08-11",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-08-12",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-08-13",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-08-14",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-08-15",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-08-16",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-08-17",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-08-18",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-08-19",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-08-20",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-08-21",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-08-22",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-08-23",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-08-24",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-08-25",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-08-26",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-08-27",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-08-28",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-08-29",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-08-30",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-08-31",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-09-01",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 18.52
- },
- {
- "date": "2020-09-02",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-03",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-04",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-05",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-06",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-07",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-08",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-09",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-10",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-11",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-12",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-13",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-14",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-15",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-16",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-17",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-18",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-19",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-20",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-21",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-22",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-23",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-24",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-25",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- }
- ]
- },
- "ALB": {
- "continent": "Europe",
- "location": "Albania",
- "population": 2877800.0,
- "population_density": 104.871,
- "median_age": 38.0,
- "aged_65_older": 13.188,
- "aged_70_older": 8.643,
- "gdp_per_capita": 11803.431,
- "extreme_poverty": 1.1,
- "cardiovasc_death_rate": 304.195,
- "diabetes_prevalence": 10.08,
- "female_smokers": 7.1,
- "male_smokers": 51.2,
- "hospital_beds_per_thousand": 2.89,
- "life_expectancy": 78.57,
- "human_development_index": 0.785,
- "data": [
- {
- "date": "2020-03-09",
- "total_cases": 2.0,
- "new_cases": 2.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.695,
- "new_cases_per_million": 0.695,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-03-10",
- "total_cases": 6.0,
- "new_cases": 4.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 2.085,
- "new_cases_per_million": 1.39,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-03-11",
- "total_cases": 10.0,
- "new_cases": 4.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 3.475,
- "new_cases_per_million": 1.39,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 51.85
- },
- {
- "date": "2020-03-12",
- "total_cases": 11.0,
- "new_cases": 1.0,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "total_cases_per_million": 3.822,
- "new_cases_per_million": 0.347,
- "total_deaths_per_million": 0.347,
- "new_deaths_per_million": 0.347,
- "stringency_index": 51.85
- },
- {
- "date": "2020-03-13",
- "total_cases": 23.0,
- "new_cases": 12.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 7.992,
- "new_cases_per_million": 4.17,
- "total_deaths_per_million": 0.347,
- "new_deaths_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-03-14",
- "total_cases": 33.0,
- "new_cases": 10.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 11.467,
- "new_cases_per_million": 3.475,
- "total_deaths_per_million": 0.347,
- "new_deaths_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-03-15",
- "total_cases": 38.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 13.205,
- "new_cases_per_million": 1.737,
- "new_cases_smoothed_per_million": 1.886,
- "total_deaths_per_million": 0.347,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "stringency_index": 81.48
- },
- {
- "date": "2020-03-16",
- "total_cases": 42.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 5.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 14.594,
- "new_cases_per_million": 1.39,
- "new_cases_smoothed_per_million": 1.986,
- "total_deaths_per_million": 0.347,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "stringency_index": 81.48
- },
- {
- "date": "2020-03-17",
- "total_cases": 51.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 6.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 17.722,
- "new_cases_per_million": 3.127,
- "new_cases_smoothed_per_million": 2.234,
- "total_deaths_per_million": 0.347,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "stringency_index": 81.48
- },
- {
- "date": "2020-03-18",
- "total_cases": 55.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 6.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 19.112,
- "new_cases_per_million": 1.39,
- "new_cases_smoothed_per_million": 2.234,
- "total_deaths_per_million": 0.347,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "stringency_index": 81.48
- },
- {
- "date": "2020-03-19",
- "total_cases": 59.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 6.857,
- "total_deaths": 2.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 20.502,
- "new_cases_per_million": 1.39,
- "new_cases_smoothed_per_million": 2.383,
- "total_deaths_per_million": 0.695,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.05,
- "stringency_index": 81.48
- },
- {
- "date": "2020-03-20",
- "total_cases": 70.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 6.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 24.324,
- "new_cases_per_million": 3.822,
- "new_cases_smoothed_per_million": 2.333,
- "total_deaths_per_million": 0.695,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "stringency_index": 81.48
- },
- {
- "date": "2020-03-21",
- "total_cases": 70.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 24.324,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.837,
- "total_deaths_per_million": 0.695,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "stringency_index": 81.48
- },
- {
- "date": "2020-03-22",
- "total_cases": 76.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 26.409,
- "new_cases_per_million": 2.085,
- "new_cases_smoothed_per_million": 1.886,
- "total_deaths_per_million": 0.695,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "stringency_index": 81.48
- },
- {
- "date": "2020-03-23",
- "total_cases": 89.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 6.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 30.926,
- "new_cases_per_million": 4.517,
- "new_cases_smoothed_per_million": 2.333,
- "total_deaths_per_million": 0.695,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "stringency_index": 84.26
- },
- {
- "date": "2020-03-24",
- "total_cases": 100.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 7.0,
- "total_deaths": 4.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 34.749,
- "new_cases_per_million": 3.822,
- "new_cases_smoothed_per_million": 2.432,
- "total_deaths_per_million": 1.39,
- "new_deaths_per_million": 0.695,
- "new_deaths_smoothed_per_million": 0.149,
- "stringency_index": 84.26
- },
- {
- "date": "2020-03-25",
- "total_cases": 123.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 9.714,
- "total_deaths": 5.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 42.741,
- "new_cases_per_million": 7.992,
- "new_cases_smoothed_per_million": 3.376,
- "total_deaths_per_million": 1.737,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.199,
- "stringency_index": 84.26
- },
- {
- "date": "2020-03-26",
- "total_cases": 146.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 12.429,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 50.733,
- "new_cases_per_million": 7.992,
- "new_cases_smoothed_per_million": 4.319,
- "total_deaths_per_million": 1.737,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.149,
- "stringency_index": 84.26
- },
- {
- "date": "2020-03-27",
- "total_cases": 174.0,
- "new_cases": 28.0,
- "new_cases_smoothed": 14.857,
- "total_deaths": 6.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 60.463,
- "new_cases_per_million": 9.73,
- "new_cases_smoothed_per_million": 5.163,
- "total_deaths_per_million": 2.085,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.199,
- "stringency_index": 84.26
- },
- {
- "date": "2020-03-28",
- "total_cases": 186.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 16.571,
- "total_deaths": 9.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 64.633,
- "new_cases_per_million": 4.17,
- "new_cases_smoothed_per_million": 5.758,
- "total_deaths_per_million": 3.127,
- "new_deaths_per_million": 1.042,
- "new_deaths_smoothed_per_million": 0.347,
- "stringency_index": 84.26
- },
- {
- "date": "2020-03-29",
- "total_cases": 197.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 17.286,
- "total_deaths": 10.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 68.455,
- "new_cases_per_million": 3.822,
- "new_cases_smoothed_per_million": 6.007,
- "total_deaths_per_million": 3.475,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.397,
- "stringency_index": 84.26
- },
- {
- "date": "2020-03-30",
- "total_cases": 212.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 17.571,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 73.667,
- "new_cases_per_million": 5.212,
- "new_cases_smoothed_per_million": 6.106,
- "total_deaths_per_million": 3.475,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.397,
- "stringency_index": 84.26
- },
- {
- "date": "2020-03-31",
- "total_cases": 223.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 17.571,
- "total_deaths": 12.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 77.49,
- "new_cases_per_million": 3.822,
- "new_cases_smoothed_per_million": 6.106,
- "total_deaths_per_million": 4.17,
- "new_deaths_per_million": 0.695,
- "new_deaths_smoothed_per_million": 0.397,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-01",
- "total_cases": 243.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 17.143,
- "total_deaths": 15.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 84.44,
- "new_cases_per_million": 6.95,
- "new_cases_smoothed_per_million": 5.957,
- "total_deaths_per_million": 5.212,
- "new_deaths_per_million": 1.042,
- "new_deaths_smoothed_per_million": 0.496,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-02",
- "total_cases": 259.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 16.143,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 89.999,
- "new_cases_per_million": 5.56,
- "new_cases_smoothed_per_million": 5.609,
- "total_deaths_per_million": 5.212,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.496,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-03",
- "total_cases": 277.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 14.714,
- "total_deaths": 16.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 96.254,
- "new_cases_per_million": 6.255,
- "new_cases_smoothed_per_million": 5.113,
- "total_deaths_per_million": 5.56,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.496,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-04",
- "total_cases": 304.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 16.857,
- "total_deaths": 17.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 105.636,
- "new_cases_per_million": 9.382,
- "new_cases_smoothed_per_million": 5.858,
- "total_deaths_per_million": 5.907,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.397,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-05",
- "total_cases": 333.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 19.429,
- "total_deaths": 19.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 115.713,
- "new_cases_per_million": 10.077,
- "new_cases_smoothed_per_million": 6.751,
- "total_deaths_per_million": 6.602,
- "new_deaths_per_million": 0.695,
- "new_deaths_smoothed_per_million": 0.447,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-06",
- "total_cases": 361.0,
- "new_cases": 28.0,
- "new_cases_smoothed": 21.286,
- "total_deaths": 21.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 125.443,
- "new_cases_per_million": 9.73,
- "new_cases_smoothed_per_million": 7.397,
- "total_deaths_per_million": 7.297,
- "new_deaths_per_million": 0.695,
- "new_deaths_smoothed_per_million": 0.546,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-07",
- "total_cases": 377.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 22.0,
- "total_deaths": 22.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 131.003,
- "new_cases_per_million": 5.56,
- "new_cases_smoothed_per_million": 7.645,
- "total_deaths_per_million": 7.645,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.496,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-08",
- "total_cases": 383.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 20.0,
- "total_deaths": 22.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 133.088,
- "new_cases_per_million": 2.085,
- "new_cases_smoothed_per_million": 6.95,
- "total_deaths_per_million": 7.645,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.347,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-09",
- "total_cases": 400.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 20.143,
- "total_deaths": 22.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 138.995,
- "new_cases_per_million": 5.907,
- "new_cases_smoothed_per_million": 6.999,
- "total_deaths_per_million": 7.645,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.347,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-10",
- "total_cases": 409.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 18.857,
- "total_deaths": 23.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 142.122,
- "new_cases_per_million": 3.127,
- "new_cases_smoothed_per_million": 6.553,
- "total_deaths_per_million": 7.992,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.347,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-11",
- "total_cases": 416.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 16.0,
- "total_deaths": 23.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 144.555,
- "new_cases_per_million": 2.432,
- "new_cases_smoothed_per_million": 5.56,
- "total_deaths_per_million": 7.992,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.298,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-12",
- "total_cases": 433.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 14.286,
- "total_deaths": 23.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 150.462,
- "new_cases_per_million": 5.907,
- "new_cases_smoothed_per_million": 4.964,
- "total_deaths_per_million": 7.992,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.199,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-13",
- "total_cases": 446.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 12.143,
- "total_deaths": 23.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 154.979,
- "new_cases_per_million": 4.517,
- "new_cases_smoothed_per_million": 4.219,
- "total_deaths_per_million": 7.992,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.099,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-14",
- "total_cases": 467.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 12.857,
- "total_deaths": 23.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 162.277,
- "new_cases_per_million": 7.297,
- "new_cases_smoothed_per_million": 4.468,
- "total_deaths_per_million": 7.992,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-15",
- "total_cases": 475.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 13.143,
- "total_deaths": 24.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 165.057,
- "new_cases_per_million": 2.78,
- "new_cases_smoothed_per_million": 4.567,
- "total_deaths_per_million": 8.34,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.099,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-16",
- "total_cases": 494.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 13.429,
- "total_deaths": 25.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 171.659,
- "new_cases_per_million": 6.602,
- "new_cases_smoothed_per_million": 4.666,
- "total_deaths_per_million": 8.687,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.149,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-17",
- "total_cases": 518.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 15.571,
- "total_deaths": 26.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 179.999,
- "new_cases_per_million": 8.34,
- "new_cases_smoothed_per_million": 5.411,
- "total_deaths_per_million": 9.035,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.149,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-18",
- "total_cases": 539.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 17.571,
- "total_deaths": 26.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 187.296,
- "new_cases_per_million": 7.297,
- "new_cases_smoothed_per_million": 6.106,
- "total_deaths_per_million": 9.035,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.149,
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-19",
- "total_cases": 548.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 16.429,
- "total_deaths": 26.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 190.423,
- "new_cases_per_million": 3.127,
- "new_cases_smoothed_per_million": 5.709,
- "total_deaths_per_million": 9.035,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.149,
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-20",
- "total_cases": 562.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 16.571,
- "total_deaths": 26.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 195.288,
- "new_cases_per_million": 4.865,
- "new_cases_smoothed_per_million": 5.758,
- "total_deaths_per_million": 9.035,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.149,
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-21",
- "total_cases": 584.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 16.714,
- "total_deaths": 26.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 202.933,
- "new_cases_per_million": 7.645,
- "new_cases_smoothed_per_million": 5.808,
- "total_deaths_per_million": 9.035,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.149,
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-22",
- "total_cases": 609.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 19.143,
- "total_deaths": 26.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 211.62,
- "new_cases_per_million": 8.687,
- "new_cases_smoothed_per_million": 6.652,
- "total_deaths_per_million": 9.035,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.099,
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-23",
- "total_cases": 634.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 20.0,
- "total_deaths": 27.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 220.307,
- "new_cases_per_million": 8.687,
- "new_cases_smoothed_per_million": 6.95,
- "total_deaths_per_million": 9.382,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.099,
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-24",
- "total_cases": 663.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 20.714,
- "total_deaths": 27.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 230.384,
- "new_cases_per_million": 10.077,
- "new_cases_smoothed_per_million": 7.198,
- "total_deaths_per_million": 9.382,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-25",
- "total_cases": 678.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 19.857,
- "total_deaths": 27.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 235.597,
- "new_cases_per_million": 5.212,
- "new_cases_smoothed_per_million": 6.9,
- "total_deaths_per_million": 9.382,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-26",
- "total_cases": 712.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 23.429,
- "total_deaths": 27.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 247.411,
- "new_cases_per_million": 11.815,
- "new_cases_smoothed_per_million": 8.141,
- "total_deaths_per_million": 9.382,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-27",
- "total_cases": 726.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 23.429,
- "total_deaths": 28.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 252.276,
- "new_cases_per_million": 4.865,
- "new_cases_smoothed_per_million": 8.141,
- "total_deaths_per_million": 9.73,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.099,
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-28",
- "total_cases": 736.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 21.714,
- "total_deaths": 28.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 255.751,
- "new_cases_per_million": 3.475,
- "new_cases_smoothed_per_million": 7.545,
- "total_deaths_per_million": 9.73,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.099,
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-29",
- "total_cases": 750.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 20.143,
- "total_deaths": 30.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 260.616,
- "new_cases_per_million": 4.865,
- "new_cases_smoothed_per_million": 6.999,
- "total_deaths_per_million": 10.425,
- "new_deaths_per_million": 0.695,
- "new_deaths_smoothed_per_million": 0.199,
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-30",
- "total_cases": 766.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 18.857,
- "total_deaths": 31.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 266.176,
- "new_cases_per_million": 5.56,
- "new_cases_smoothed_per_million": 6.553,
- "total_deaths_per_million": 10.772,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.199,
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-01",
- "total_cases": 773.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 15.714,
- "total_deaths": 31.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 268.608,
- "new_cases_per_million": 2.432,
- "new_cases_smoothed_per_million": 5.461,
- "total_deaths_per_million": 10.772,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.199,
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-02",
- "total_cases": 782.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 14.857,
- "total_deaths": 31.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 271.735,
- "new_cases_per_million": 3.127,
- "new_cases_smoothed_per_million": 5.163,
- "total_deaths_per_million": 10.772,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.199,
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-03",
- "total_cases": 789.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 11.0,
- "total_deaths": 31.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 274.168,
- "new_cases_per_million": 2.432,
- "new_cases_smoothed_per_million": 3.822,
- "total_deaths_per_million": 10.772,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.199,
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-04",
- "total_cases": 795.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 9.857,
- "total_deaths": 31.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 276.253,
- "new_cases_per_million": 2.085,
- "new_cases_smoothed_per_million": 3.425,
- "total_deaths_per_million": 10.772,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.149,
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-05",
- "total_cases": 803.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 9.571,
- "total_deaths": 31.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 279.033,
- "new_cases_per_million": 2.78,
- "new_cases_smoothed_per_million": 3.326,
- "total_deaths_per_million": 10.772,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.149,
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-06",
- "total_cases": 820.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 10.0,
- "total_deaths": 31.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 284.94,
- "new_cases_per_million": 5.907,
- "new_cases_smoothed_per_million": 3.475,
- "total_deaths_per_million": 10.772,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-07",
- "total_cases": 832.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 9.429,
- "total_deaths": 31.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 289.11,
- "new_cases_per_million": 4.17,
- "new_cases_smoothed_per_million": 3.276,
- "total_deaths_per_million": 10.772,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-08",
- "total_cases": 842.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 9.857,
- "total_deaths": 31.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 292.585,
- "new_cases_per_million": 3.475,
- "new_cases_smoothed_per_million": 3.425,
- "total_deaths_per_million": 10.772,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-09",
- "total_cases": 850.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 9.714,
- "total_deaths": 31.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 295.365,
- "new_cases_per_million": 2.78,
- "new_cases_smoothed_per_million": 3.376,
- "total_deaths_per_million": 10.772,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-10",
- "total_cases": 856.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 9.571,
- "total_deaths": 31.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 297.449,
- "new_cases_per_million": 2.085,
- "new_cases_smoothed_per_million": 3.326,
- "total_deaths_per_million": 10.772,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-11",
- "total_cases": 868.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 10.429,
- "total_deaths": 31.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 301.619,
- "new_cases_per_million": 4.17,
- "new_cases_smoothed_per_million": 3.624,
- "total_deaths_per_million": 10.772,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-12",
- "total_cases": 872.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 9.857,
- "total_deaths": 31.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 303.009,
- "new_cases_per_million": 1.39,
- "new_cases_smoothed_per_million": 3.425,
- "total_deaths_per_million": 10.772,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-13",
- "total_cases": 876.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 8.0,
- "total_deaths": 31.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 304.399,
- "new_cases_per_million": 1.39,
- "new_cases_smoothed_per_million": 2.78,
- "total_deaths_per_million": 10.772,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-14",
- "total_cases": 880.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 6.857,
- "total_deaths": 31.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 305.789,
- "new_cases_per_million": 1.39,
- "new_cases_smoothed_per_million": 2.383,
- "total_deaths_per_million": 10.772,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-15",
- "total_cases": 898.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 8.0,
- "total_deaths": 31.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 312.044,
- "new_cases_per_million": 6.255,
- "new_cases_smoothed_per_million": 2.78,
- "total_deaths_per_million": 10.772,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-16",
- "total_cases": 916.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 9.429,
- "total_deaths": 31.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 318.299,
- "new_cases_per_million": 6.255,
- "new_cases_smoothed_per_million": 3.276,
- "total_deaths_per_million": 10.772,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-17",
- "total_cases": 933.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 11.0,
- "total_deaths": 31.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 324.206,
- "new_cases_per_million": 5.907,
- "new_cases_smoothed_per_million": 3.822,
- "total_deaths_per_million": 10.772,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-18",
- "total_cases": 946.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 11.143,
- "total_deaths": 31.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 328.723,
- "new_cases_per_million": 4.517,
- "new_cases_smoothed_per_million": 3.872,
- "total_deaths_per_million": 10.772,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-19",
- "total_cases": 948.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 10.857,
- "total_deaths": 31.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 329.418,
- "new_cases_per_million": 0.695,
- "new_cases_smoothed_per_million": 3.773,
- "total_deaths_per_million": 10.772,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-20",
- "total_cases": 949.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 10.429,
- "total_deaths": 31.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 329.766,
- "new_cases_per_million": 0.347,
- "new_cases_smoothed_per_million": 3.624,
- "total_deaths_per_million": 10.772,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-21",
- "total_cases": 964.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 12.0,
- "total_deaths": 31.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 334.978,
- "new_cases_per_million": 5.212,
- "new_cases_smoothed_per_million": 4.17,
- "total_deaths_per_million": 10.772,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-22",
- "total_cases": 969.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 10.143,
- "total_deaths": 31.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 336.716,
- "new_cases_per_million": 1.737,
- "new_cases_smoothed_per_million": 3.525,
- "total_deaths_per_million": 10.772,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-23",
- "total_cases": 981.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 9.286,
- "total_deaths": 31.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 340.885,
- "new_cases_per_million": 4.17,
- "new_cases_smoothed_per_million": 3.227,
- "total_deaths_per_million": 10.772,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-24",
- "total_cases": 989.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 8.0,
- "total_deaths": 31.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 343.665,
- "new_cases_per_million": 2.78,
- "new_cases_smoothed_per_million": 2.78,
- "total_deaths_per_million": 10.772,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-25",
- "total_cases": 998.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 7.429,
- "total_deaths": 32.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 346.793,
- "new_cases_per_million": 3.127,
- "new_cases_smoothed_per_million": 2.581,
- "total_deaths_per_million": 11.12,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.05,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-26",
- "total_cases": 1004.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 8.0,
- "total_deaths": 32.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 348.878,
- "new_cases_per_million": 2.085,
- "new_cases_smoothed_per_million": 2.78,
- "total_deaths_per_million": 11.12,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-27",
- "total_cases": 1029.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 11.429,
- "total_deaths": 33.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 357.565,
- "new_cases_per_million": 8.687,
- "new_cases_smoothed_per_million": 3.971,
- "total_deaths_per_million": 11.467,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.099,
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-28",
- "total_cases": 1050.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 12.286,
- "total_deaths": 33.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 364.862,
- "new_cases_per_million": 7.297,
- "new_cases_smoothed_per_million": 4.269,
- "total_deaths_per_million": 11.467,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.099,
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-29",
- "total_cases": 1076.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 15.286,
- "total_deaths": 33.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 373.897,
- "new_cases_per_million": 9.035,
- "new_cases_smoothed_per_million": 5.312,
- "total_deaths_per_million": 11.467,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.099,
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-30",
- "total_cases": 1099.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 16.857,
- "total_deaths": 33.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 381.889,
- "new_cases_per_million": 7.992,
- "new_cases_smoothed_per_million": 5.858,
- "total_deaths_per_million": 11.467,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.099,
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-31",
- "total_cases": 1122.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 19.0,
- "total_deaths": 33.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 389.881,
- "new_cases_per_million": 7.992,
- "new_cases_smoothed_per_million": 6.602,
- "total_deaths_per_million": 11.467,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.099,
- "stringency_index": 86.11
- },
- {
- "date": "2020-06-01",
- "total_cases": 1137.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 19.857,
- "total_deaths": 33.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 395.093,
- "new_cases_per_million": 5.212,
- "new_cases_smoothed_per_million": 6.9,
- "total_deaths_per_million": 11.467,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "stringency_index": 67.59
- },
- {
- "date": "2020-06-02",
- "total_cases": 1143.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 19.857,
- "total_deaths": 33.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 397.178,
- "new_cases_per_million": 2.085,
- "new_cases_smoothed_per_million": 6.9,
- "total_deaths_per_million": 11.467,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "stringency_index": 67.59
- },
- {
- "date": "2020-06-03",
- "total_cases": 1164.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 19.286,
- "total_deaths": 33.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 404.476,
- "new_cases_per_million": 7.297,
- "new_cases_smoothed_per_million": 6.702,
- "total_deaths_per_million": 11.467,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-06-04",
- "total_cases": 1184.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 19.143,
- "total_deaths": 33.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 411.425,
- "new_cases_per_million": 6.95,
- "new_cases_smoothed_per_million": 6.652,
- "total_deaths_per_million": 11.467,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-06-05",
- "total_cases": 1197.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 17.286,
- "total_deaths": 33.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 415.943,
- "new_cases_per_million": 4.517,
- "new_cases_smoothed_per_million": 6.007,
- "total_deaths_per_million": 11.467,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-06-06",
- "total_cases": 1212.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 16.143,
- "total_deaths": 33.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 421.155,
- "new_cases_per_million": 5.212,
- "new_cases_smoothed_per_million": 5.609,
- "total_deaths_per_million": 11.467,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-06-07",
- "total_cases": 1232.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 15.714,
- "total_deaths": 34.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 428.105,
- "new_cases_per_million": 6.95,
- "new_cases_smoothed_per_million": 5.461,
- "total_deaths_per_million": 11.815,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.05,
- "stringency_index": 67.59
- },
- {
- "date": "2020-06-08",
- "total_cases": 1246.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 15.571,
- "total_deaths": 34.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 432.97,
- "new_cases_per_million": 4.865,
- "new_cases_smoothed_per_million": 5.411,
- "total_deaths_per_million": 11.815,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "stringency_index": 67.59
- },
- {
- "date": "2020-06-09",
- "total_cases": 1263.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 17.143,
- "total_deaths": 34.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 438.877,
- "new_cases_per_million": 5.907,
- "new_cases_smoothed_per_million": 5.957,
- "total_deaths_per_million": 11.815,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "stringency_index": 67.59
- },
- {
- "date": "2020-06-10",
- "total_cases": 1299.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 19.286,
- "total_deaths": 34.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 451.386,
- "new_cases_per_million": 12.51,
- "new_cases_smoothed_per_million": 6.702,
- "total_deaths_per_million": 11.815,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "stringency_index": 67.59
- },
- {
- "date": "2020-06-11",
- "total_cases": 1341.0,
- "new_cases": 42.0,
- "new_cases_smoothed": 22.429,
- "total_deaths": 34.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 465.981,
- "new_cases_per_million": 14.594,
- "new_cases_smoothed_per_million": 7.794,
- "total_deaths_per_million": 11.815,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "stringency_index": 67.59
- },
- {
- "date": "2020-06-12",
- "total_cases": 1385.0,
- "new_cases": 44.0,
- "new_cases_smoothed": 26.857,
- "total_deaths": 35.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 481.27,
- "new_cases_per_million": 15.289,
- "new_cases_smoothed_per_million": 9.333,
- "total_deaths_per_million": 12.162,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.099,
- "stringency_index": 67.59
- },
- {
- "date": "2020-06-13",
- "total_cases": 1416.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 29.143,
- "total_deaths": 36.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 492.043,
- "new_cases_per_million": 10.772,
- "new_cases_smoothed_per_million": 10.127,
- "total_deaths_per_million": 12.51,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.149,
- "stringency_index": 67.59
- },
- {
- "date": "2020-06-14",
- "total_cases": 1464.0,
- "new_cases": 48.0,
- "new_cases_smoothed": 33.143,
- "total_deaths": 36.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 508.722,
- "new_cases_per_million": 16.679,
- "new_cases_smoothed_per_million": 11.517,
- "total_deaths_per_million": 12.51,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.099,
- "stringency_index": 67.59
- },
- {
- "date": "2020-06-15",
- "total_cases": 1521.0,
- "new_cases": 57.0,
- "new_cases_smoothed": 39.286,
- "total_deaths": 36.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 528.529,
- "new_cases_per_million": 19.807,
- "new_cases_smoothed_per_million": 13.651,
- "total_deaths_per_million": 12.51,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.099,
- "stringency_index": 67.59
- },
- {
- "date": "2020-06-16",
- "total_cases": 1590.0,
- "new_cases": 69.0,
- "new_cases_smoothed": 46.714,
- "total_deaths": 36.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 552.505,
- "new_cases_per_million": 23.977,
- "new_cases_smoothed_per_million": 16.233,
- "total_deaths_per_million": 12.51,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.099,
- "stringency_index": 67.59
- },
- {
- "date": "2020-06-17",
- "total_cases": 1672.0,
- "new_cases": 82.0,
- "new_cases_smoothed": 53.286,
- "total_deaths": 37.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 580.999,
- "new_cases_per_million": 28.494,
- "new_cases_smoothed_per_million": 18.516,
- "total_deaths_per_million": 12.857,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.149,
- "stringency_index": 67.59
- },
- {
- "date": "2020-06-18",
- "total_cases": 1722.0,
- "new_cases": 50.0,
- "new_cases_smoothed": 54.429,
- "total_deaths": 38.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 598.374,
- "new_cases_per_million": 17.374,
- "new_cases_smoothed_per_million": 18.913,
- "total_deaths_per_million": 13.205,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.199,
- "stringency_index": 67.59
- },
- {
- "date": "2020-06-19",
- "total_cases": 1788.0,
- "new_cases": 66.0,
- "new_cases_smoothed": 57.571,
- "total_deaths": 39.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 621.308,
- "new_cases_per_million": 22.934,
- "new_cases_smoothed_per_million": 20.005,
- "total_deaths_per_million": 13.552,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.199,
- "stringency_index": 67.59
- },
- {
- "date": "2020-06-20",
- "total_cases": 1838.0,
- "new_cases": 50.0,
- "new_cases_smoothed": 60.286,
- "total_deaths": 42.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 638.682,
- "new_cases_per_million": 17.374,
- "new_cases_smoothed_per_million": 20.949,
- "total_deaths_per_million": 14.594,
- "new_deaths_per_million": 1.042,
- "new_deaths_smoothed_per_million": 0.298,
- "stringency_index": 67.59
- },
- {
- "date": "2020-06-21",
- "total_cases": 1891.0,
- "new_cases": 53.0,
- "new_cases_smoothed": 61.0,
- "total_deaths": 43.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 657.099,
- "new_cases_per_million": 18.417,
- "new_cases_smoothed_per_million": 21.197,
- "total_deaths_per_million": 14.942,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.347,
- "stringency_index": 67.59
- },
- {
- "date": "2020-06-22",
- "total_cases": 1927.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 58.0,
- "total_deaths": 44.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 669.609,
- "new_cases_per_million": 12.51,
- "new_cases_smoothed_per_million": 20.154,
- "total_deaths_per_million": 15.289,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.397,
- "stringency_index": 64.81
- },
- {
- "date": "2020-06-23",
- "total_cases": 1995.0,
- "new_cases": 68.0,
- "new_cases_smoothed": 57.857,
- "total_deaths": 44.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 693.238,
- "new_cases_per_million": 23.629,
- "new_cases_smoothed_per_million": 20.105,
- "total_deaths_per_million": 15.289,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.397,
- "stringency_index": 64.81
- },
- {
- "date": "2020-06-24",
- "total_cases": 2047.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 53.571,
- "total_deaths": 45.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 711.307,
- "new_cases_per_million": 18.069,
- "new_cases_smoothed_per_million": 18.615,
- "total_deaths_per_million": 15.637,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.397,
- "stringency_index": 64.81
- },
- {
- "date": "2020-06-25",
- "total_cases": 2114.0,
- "new_cases": 67.0,
- "new_cases_smoothed": 56.0,
- "total_deaths": 47.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 734.589,
- "new_cases_per_million": 23.282,
- "new_cases_smoothed_per_million": 19.459,
- "total_deaths_per_million": 16.332,
- "new_deaths_per_million": 0.695,
- "new_deaths_smoothed_per_million": 0.447,
- "stringency_index": 64.81
- },
- {
- "date": "2020-06-26",
- "total_cases": 2192.0,
- "new_cases": 78.0,
- "new_cases_smoothed": 57.714,
- "total_deaths": 49.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 761.693,
- "new_cases_per_million": 27.104,
- "new_cases_smoothed_per_million": 20.055,
- "total_deaths_per_million": 17.027,
- "new_deaths_per_million": 0.695,
- "new_deaths_smoothed_per_million": 0.496,
- "stringency_index": 64.81
- },
- {
- "date": "2020-06-27",
- "total_cases": 2269.0,
- "new_cases": 77.0,
- "new_cases_smoothed": 61.571,
- "total_deaths": 51.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 788.45,
- "new_cases_per_million": 26.757,
- "new_cases_smoothed_per_million": 21.395,
- "total_deaths_per_million": 17.722,
- "new_deaths_per_million": 0.695,
- "new_deaths_smoothed_per_million": 0.447,
- "stringency_index": 64.81
- },
- {
- "date": "2020-06-28",
- "total_cases": 2330.0,
- "new_cases": 61.0,
- "new_cases_smoothed": 62.714,
- "total_deaths": 53.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 809.646,
- "new_cases_per_million": 21.197,
- "new_cases_smoothed_per_million": 21.792,
- "total_deaths_per_million": 18.417,
- "new_deaths_per_million": 0.695,
- "new_deaths_smoothed_per_million": 0.496,
- "stringency_index": 64.81
- },
- {
- "date": "2020-06-29",
- "total_cases": 2402.0,
- "new_cases": 72.0,
- "new_cases_smoothed": 67.857,
- "total_deaths": 55.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 834.665,
- "new_cases_per_million": 25.019,
- "new_cases_smoothed_per_million": 23.58,
- "total_deaths_per_million": 19.112,
- "new_deaths_per_million": 0.695,
- "new_deaths_smoothed_per_million": 0.546,
- "stringency_index": 64.81
- },
- {
- "date": "2020-06-30",
- "total_cases": 2466.0,
- "new_cases": 64.0,
- "new_cases_smoothed": 67.286,
- "total_deaths": 58.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 856.905,
- "new_cases_per_million": 22.239,
- "new_cases_smoothed_per_million": 23.381,
- "total_deaths_per_million": 20.154,
- "new_deaths_per_million": 1.042,
- "new_deaths_smoothed_per_million": 0.695,
- "stringency_index": 64.81
- },
- {
- "date": "2020-07-01",
- "total_cases": 2535.0,
- "new_cases": 69.0,
- "new_cases_smoothed": 69.714,
- "total_deaths": 62.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 880.881,
- "new_cases_per_million": 23.977,
- "new_cases_smoothed_per_million": 24.225,
- "total_deaths_per_million": 21.544,
- "new_deaths_per_million": 1.39,
- "new_deaths_smoothed_per_million": 0.844,
- "stringency_index": 64.81
- },
- {
- "date": "2020-07-02",
- "total_cases": 2580.0,
- "new_cases": 45.0,
- "new_cases_smoothed": 66.571,
- "total_deaths": 65.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 896.518,
- "new_cases_per_million": 15.637,
- "new_cases_smoothed_per_million": 23.133,
- "total_deaths_per_million": 22.587,
- "new_deaths_per_million": 1.042,
- "new_deaths_smoothed_per_million": 0.894,
- "stringency_index": 64.81
- },
- {
- "date": "2020-07-03",
- "total_cases": 2662.0,
- "new_cases": 82.0,
- "new_cases_smoothed": 67.143,
- "total_deaths": 69.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 925.012,
- "new_cases_per_million": 28.494,
- "new_cases_smoothed_per_million": 23.331,
- "total_deaths_per_million": 23.977,
- "new_deaths_per_million": 1.39,
- "new_deaths_smoothed_per_million": 0.993,
- "stringency_index": 64.81
- },
- {
- "date": "2020-07-04",
- "total_cases": 2752.0,
- "new_cases": 90.0,
- "new_cases_smoothed": 69.0,
- "total_deaths": 72.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 956.286,
- "new_cases_per_million": 31.274,
- "new_cases_smoothed_per_million": 23.977,
- "total_deaths_per_million": 25.019,
- "new_deaths_per_million": 1.042,
- "new_deaths_smoothed_per_million": 1.042,
- "stringency_index": 64.81
- },
- {
- "date": "2020-07-05",
- "total_cases": 2819.0,
- "new_cases": 67.0,
- "new_cases_smoothed": 69.857,
- "total_deaths": 74.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 979.568,
- "new_cases_per_million": 23.282,
- "new_cases_smoothed_per_million": 24.274,
- "total_deaths_per_million": 25.714,
- "new_deaths_per_million": 0.695,
- "new_deaths_smoothed_per_million": 1.042,
- "stringency_index": 64.81
- },
- {
- "date": "2020-07-06",
- "total_cases": 2893.0,
- "new_cases": 74.0,
- "new_cases_smoothed": 70.143,
- "total_deaths": 76.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 1005.282,
- "new_cases_per_million": 25.714,
- "new_cases_smoothed_per_million": 24.374,
- "total_deaths_per_million": 26.409,
- "new_deaths_per_million": 0.695,
- "new_deaths_smoothed_per_million": 1.042,
- "stringency_index": 59.26
- },
- {
- "date": "2020-07-07",
- "total_cases": 2964.0,
- "new_cases": 71.0,
- "new_cases_smoothed": 71.143,
- "total_deaths": 79.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 1029.953,
- "new_cases_per_million": 24.672,
- "new_cases_smoothed_per_million": 24.721,
- "total_deaths_per_million": 27.452,
- "new_deaths_per_million": 1.042,
- "new_deaths_smoothed_per_million": 1.042,
- "stringency_index": 59.26
- },
- {
- "date": "2020-07-08",
- "total_cases": 3038.0,
- "new_cases": 74.0,
- "new_cases_smoothed": 71.857,
- "total_deaths": 81.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 1055.668,
- "new_cases_per_million": 25.714,
- "new_cases_smoothed_per_million": 24.969,
- "total_deaths_per_million": 28.147,
- "new_deaths_per_million": 0.695,
- "new_deaths_smoothed_per_million": 0.943,
- "stringency_index": 59.26
- },
- {
- "date": "2020-07-09",
- "total_cases": 3106.0,
- "new_cases": 68.0,
- "new_cases_smoothed": 75.143,
- "total_deaths": 83.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 1079.297,
- "new_cases_per_million": 23.629,
- "new_cases_smoothed_per_million": 26.111,
- "total_deaths_per_million": 28.841,
- "new_deaths_per_million": 0.695,
- "new_deaths_smoothed_per_million": 0.894,
- "stringency_index": 59.26
- },
- {
- "date": "2020-07-10",
- "total_cases": 3188.0,
- "new_cases": 82.0,
- "new_cases_smoothed": 75.143,
- "total_deaths": 83.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 1107.791,
- "new_cases_per_million": 28.494,
- "new_cases_smoothed_per_million": 26.111,
- "total_deaths_per_million": 28.841,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.695,
- "stringency_index": 59.26
- },
- {
- "date": "2020-07-11",
- "total_cases": 3278.0,
- "new_cases": 90.0,
- "new_cases_smoothed": 75.143,
- "total_deaths": 85.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 1139.065,
- "new_cases_per_million": 31.274,
- "new_cases_smoothed_per_million": 26.111,
- "total_deaths_per_million": 29.536,
- "new_deaths_per_million": 0.695,
- "new_deaths_smoothed_per_million": 0.645,
- "stringency_index": 59.26
- },
- {
- "date": "2020-07-12",
- "total_cases": 3371.0,
- "new_cases": 93.0,
- "new_cases_smoothed": 78.857,
- "total_deaths": 89.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 1171.381,
- "new_cases_per_million": 32.316,
- "new_cases_smoothed_per_million": 27.402,
- "total_deaths_per_million": 30.926,
- "new_deaths_per_million": 1.39,
- "new_deaths_smoothed_per_million": 0.745,
- "stringency_index": 59.26
- },
- {
- "date": "2020-07-13",
- "total_cases": 3454.0,
- "new_cases": 83.0,
- "new_cases_smoothed": 80.143,
- "total_deaths": 93.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 1200.222,
- "new_cases_per_million": 28.841,
- "new_cases_smoothed_per_million": 27.849,
- "total_deaths_per_million": 32.316,
- "new_deaths_per_million": 1.39,
- "new_deaths_smoothed_per_million": 0.844,
- "stringency_index": 59.26
- },
- {
- "date": "2020-07-14",
- "total_cases": 3571.0,
- "new_cases": 117.0,
- "new_cases_smoothed": 86.714,
- "total_deaths": 95.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 1240.878,
- "new_cases_per_million": 40.656,
- "new_cases_smoothed_per_million": 30.132,
- "total_deaths_per_million": 33.011,
- "new_deaths_per_million": 0.695,
- "new_deaths_smoothed_per_million": 0.794,
- "stringency_index": 59.26
- },
- {
- "date": "2020-07-15",
- "total_cases": 3667.0,
- "new_cases": 96.0,
- "new_cases_smoothed": 89.857,
- "total_deaths": 97.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 1274.237,
- "new_cases_per_million": 33.359,
- "new_cases_smoothed_per_million": 31.224,
- "total_deaths_per_million": 33.706,
- "new_deaths_per_million": 0.695,
- "new_deaths_smoothed_per_million": 0.794,
- "stringency_index": 59.26
- },
- {
- "date": "2020-07-16",
- "total_cases": 3752.0,
- "new_cases": 85.0,
- "new_cases_smoothed": 92.286,
- "total_deaths": 101.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 1303.774,
- "new_cases_per_million": 29.536,
- "new_cases_smoothed_per_million": 32.068,
- "total_deaths_per_million": 35.096,
- "new_deaths_per_million": 1.39,
- "new_deaths_smoothed_per_million": 0.894,
- "stringency_index": 59.26
- },
- {
- "date": "2020-07-17",
- "total_cases": 3851.0,
- "new_cases": 99.0,
- "new_cases_smoothed": 94.714,
- "total_deaths": 104.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 1338.175,
- "new_cases_per_million": 34.401,
- "new_cases_smoothed_per_million": 32.912,
- "total_deaths_per_million": 36.139,
- "new_deaths_per_million": 1.042,
- "new_deaths_smoothed_per_million": 1.042,
- "stringency_index": 59.26
- },
- {
- "date": "2020-07-18",
- "total_cases": 3906.0,
- "new_cases": 55.0,
- "new_cases_smoothed": 89.714,
- "total_deaths": 107.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 1357.287,
- "new_cases_per_million": 19.112,
- "new_cases_smoothed_per_million": 31.175,
- "total_deaths_per_million": 37.181,
- "new_deaths_per_million": 1.042,
- "new_deaths_smoothed_per_million": 1.092,
- "stringency_index": 59.26
- },
- {
- "date": "2020-07-19",
- "total_cases": 4008.0,
- "new_cases": 102.0,
- "new_cases_smoothed": 91.0,
- "total_deaths": 111.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 1392.731,
- "new_cases_per_million": 35.444,
- "new_cases_smoothed_per_million": 31.621,
- "total_deaths_per_million": 38.571,
- "new_deaths_per_million": 1.39,
- "new_deaths_smoothed_per_million": 1.092,
- "stringency_index": 59.26
- },
- {
- "date": "2020-07-20",
- "total_cases": 4090.0,
- "new_cases": 82.0,
- "new_cases_smoothed": 90.857,
- "total_deaths": 112.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 1421.225,
- "new_cases_per_million": 28.494,
- "new_cases_smoothed_per_million": 31.572,
- "total_deaths_per_million": 38.919,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.943,
- "stringency_index": 59.26
- },
- {
- "date": "2020-07-21",
- "total_cases": 4171.0,
- "new_cases": 81.0,
- "new_cases_smoothed": 85.714,
- "total_deaths": 113.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 1449.371,
- "new_cases_per_million": 28.147,
- "new_cases_smoothed_per_million": 29.785,
- "total_deaths_per_million": 39.266,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.894,
- "stringency_index": 59.26
- },
- {
- "date": "2020-07-22",
- "total_cases": 4290.0,
- "new_cases": 119.0,
- "new_cases_smoothed": 89.0,
- "total_deaths": 117.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 1490.722,
- "new_cases_per_million": 41.351,
- "new_cases_smoothed_per_million": 30.926,
- "total_deaths_per_million": 40.656,
- "new_deaths_per_million": 1.39,
- "new_deaths_smoothed_per_million": 0.993,
- "stringency_index": 59.26
- },
- {
- "date": "2020-07-23",
- "total_cases": 4358.0,
- "new_cases": 68.0,
- "new_cases_smoothed": 86.571,
- "total_deaths": 120.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 1514.351,
- "new_cases_per_million": 23.629,
- "new_cases_smoothed_per_million": 30.083,
- "total_deaths_per_million": 41.699,
- "new_deaths_per_million": 1.042,
- "new_deaths_smoothed_per_million": 0.943,
- "stringency_index": 59.26
- },
- {
- "date": "2020-07-24",
- "total_cases": 4466.0,
- "new_cases": 108.0,
- "new_cases_smoothed": 87.857,
- "total_deaths": 123.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 1551.88,
- "new_cases_per_million": 37.529,
- "new_cases_smoothed_per_million": 30.529,
- "total_deaths_per_million": 42.741,
- "new_deaths_per_million": 1.042,
- "new_deaths_smoothed_per_million": 0.943,
- "stringency_index": 59.26
- },
- {
- "date": "2020-07-25",
- "total_cases": 4570.0,
- "new_cases": 104.0,
- "new_cases_smoothed": 94.857,
- "total_deaths": 128.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 1588.019,
- "new_cases_per_million": 36.139,
- "new_cases_smoothed_per_million": 32.962,
- "total_deaths_per_million": 44.478,
- "new_deaths_per_million": 1.737,
- "new_deaths_smoothed_per_million": 1.042,
- "stringency_index": 59.26
- },
- {
- "date": "2020-07-26",
- "total_cases": 4637.0,
- "new_cases": 67.0,
- "new_cases_smoothed": 89.857,
- "total_deaths": 134.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 1611.3,
- "new_cases_per_million": 23.282,
- "new_cases_smoothed_per_million": 31.224,
- "total_deaths_per_million": 46.563,
- "new_deaths_per_million": 2.085,
- "new_deaths_smoothed_per_million": 1.142,
- "stringency_index": 59.26
- },
- {
- "date": "2020-07-27",
- "total_cases": 4763.0,
- "new_cases": 126.0,
- "new_cases_smoothed": 96.143,
- "total_deaths": 138.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 1655.084,
- "new_cases_per_million": 43.783,
- "new_cases_smoothed_per_million": 33.408,
- "total_deaths_per_million": 47.953,
- "new_deaths_per_million": 1.39,
- "new_deaths_smoothed_per_million": 1.291,
- "stringency_index": 59.26
- },
- {
- "date": "2020-07-28",
- "total_cases": 4880.0,
- "new_cases": 117.0,
- "new_cases_smoothed": 101.286,
- "total_deaths": 144.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 1695.74,
- "new_cases_per_million": 40.656,
- "new_cases_smoothed_per_million": 35.196,
- "total_deaths_per_million": 50.038,
- "new_deaths_per_million": 2.085,
- "new_deaths_smoothed_per_million": 1.539,
- "stringency_index": 59.26
- },
- {
- "date": "2020-07-29",
- "total_cases": 4997.0,
- "new_cases": 117.0,
- "new_cases_smoothed": 101.0,
- "total_deaths": 148.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 1736.396,
- "new_cases_per_million": 40.656,
- "new_cases_smoothed_per_million": 35.096,
- "total_deaths_per_million": 51.428,
- "new_deaths_per_million": 1.39,
- "new_deaths_smoothed_per_million": 1.539,
- "stringency_index": 59.26
- },
- {
- "date": "2020-07-30",
- "total_cases": 5105.0,
- "new_cases": 108.0,
- "new_cases_smoothed": 106.714,
- "total_deaths": 150.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 1773.925,
- "new_cases_per_million": 37.529,
- "new_cases_smoothed_per_million": 37.082,
- "total_deaths_per_million": 52.123,
- "new_deaths_per_million": 0.695,
- "new_deaths_smoothed_per_million": 1.489,
- "stringency_index": 59.26
- },
- {
- "date": "2020-07-31",
- "total_cases": 5197.0,
- "new_cases": 92.0,
- "new_cases_smoothed": 104.429,
- "total_deaths": 154.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 1805.893,
- "new_cases_per_million": 31.969,
- "new_cases_smoothed_per_million": 36.288,
- "total_deaths_per_million": 53.513,
- "new_deaths_per_million": 1.39,
- "new_deaths_smoothed_per_million": 1.539,
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-01",
- "total_cases": 5276.0,
- "new_cases": 79.0,
- "new_cases_smoothed": 100.857,
- "total_deaths": 157.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 1833.345,
- "new_cases_per_million": 27.452,
- "new_cases_smoothed_per_million": 35.047,
- "total_deaths_per_million": 54.556,
- "new_deaths_per_million": 1.042,
- "new_deaths_smoothed_per_million": 1.44,
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-02",
- "total_cases": 5396.0,
- "new_cases": 120.0,
- "new_cases_smoothed": 108.429,
- "total_deaths": 161.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 1875.043,
- "new_cases_per_million": 41.699,
- "new_cases_smoothed_per_million": 37.678,
- "total_deaths_per_million": 55.946,
- "new_deaths_per_million": 1.39,
- "new_deaths_smoothed_per_million": 1.34,
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-03",
- "total_cases": 5519.0,
- "new_cases": 123.0,
- "new_cases_smoothed": 108.0,
- "total_deaths": 166.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 1917.784,
- "new_cases_per_million": 42.741,
- "new_cases_smoothed_per_million": 37.529,
- "total_deaths_per_million": 57.683,
- "new_deaths_per_million": 1.737,
- "new_deaths_smoothed_per_million": 1.39,
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-04",
- "total_cases": 5620.0,
- "new_cases": 101.0,
- "new_cases_smoothed": 105.714,
- "total_deaths": 172.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 1952.881,
- "new_cases_per_million": 35.096,
- "new_cases_smoothed_per_million": 36.734,
- "total_deaths_per_million": 59.768,
- "new_deaths_per_million": 2.085,
- "new_deaths_smoothed_per_million": 1.39,
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-05",
- "total_cases": 5750.0,
- "new_cases": 130.0,
- "new_cases_smoothed": 107.571,
- "total_deaths": 176.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 1998.054,
- "new_cases_per_million": 45.173,
- "new_cases_smoothed_per_million": 37.38,
- "total_deaths_per_million": 61.158,
- "new_deaths_per_million": 1.39,
- "new_deaths_smoothed_per_million": 1.39,
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-06",
- "total_cases": 5889.0,
- "new_cases": 139.0,
- "new_cases_smoothed": 112.0,
- "total_deaths": 182.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 2046.355,
- "new_cases_per_million": 48.301,
- "new_cases_smoothed_per_million": 38.919,
- "total_deaths_per_million": 63.243,
- "new_deaths_per_million": 2.085,
- "new_deaths_smoothed_per_million": 1.589,
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-07",
- "total_cases": 6016.0,
- "new_cases": 127.0,
- "new_cases_smoothed": 117.0,
- "total_deaths": 188.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 2090.486,
- "new_cases_per_million": 44.131,
- "new_cases_smoothed_per_million": 40.656,
- "total_deaths_per_million": 65.328,
- "new_deaths_per_million": 2.085,
- "new_deaths_smoothed_per_million": 1.688,
- "stringency_index": 53.7
- },
- {
- "date": "2020-08-08",
- "total_cases": 6151.0,
- "new_cases": 135.0,
- "new_cases_smoothed": 125.0,
- "total_deaths": 189.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 2137.397,
- "new_cases_per_million": 46.911,
- "new_cases_smoothed_per_million": 43.436,
- "total_deaths_per_million": 65.675,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 1.589,
- "stringency_index": 53.7
- },
- {
- "date": "2020-08-09",
- "total_cases": 6275.0,
- "new_cases": 124.0,
- "new_cases_smoothed": 125.571,
- "total_deaths": 193.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 2180.485,
- "new_cases_per_million": 43.088,
- "new_cases_smoothed_per_million": 43.635,
- "total_deaths_per_million": 67.065,
- "new_deaths_per_million": 1.39,
- "new_deaths_smoothed_per_million": 1.589,
- "stringency_index": 53.7
- },
- {
- "date": "2020-08-10",
- "total_cases": 6411.0,
- "new_cases": 136.0,
- "new_cases_smoothed": 127.429,
- "total_deaths": 199.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 2227.743,
- "new_cases_per_million": 47.258,
- "new_cases_smoothed_per_million": 44.28,
- "total_deaths_per_million": 69.15,
- "new_deaths_per_million": 2.085,
- "new_deaths_smoothed_per_million": 1.638,
- "stringency_index": 53.7
- },
- {
- "date": "2020-08-11",
- "total_cases": 6536.0,
- "new_cases": 125.0,
- "new_cases_smoothed": 130.857,
- "total_deaths": 200.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 2271.179,
- "new_cases_per_million": 43.436,
- "new_cases_smoothed_per_million": 45.471,
- "total_deaths_per_million": 69.498,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 1.39,
- "stringency_index": 53.7
- },
- {
- "date": "2020-08-12",
- "total_cases": 6676.0,
- "new_cases": 140.0,
- "new_cases_smoothed": 132.286,
- "total_deaths": 205.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 2319.828,
- "new_cases_per_million": 48.648,
- "new_cases_smoothed_per_million": 45.968,
- "total_deaths_per_million": 71.235,
- "new_deaths_per_million": 1.737,
- "new_deaths_smoothed_per_million": 1.44,
- "stringency_index": 53.7
- },
- {
- "date": "2020-08-13",
- "total_cases": 6817.0,
- "new_cases": 141.0,
- "new_cases_smoothed": 132.571,
- "total_deaths": 208.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 2368.823,
- "new_cases_per_million": 48.996,
- "new_cases_smoothed_per_million": 46.067,
- "total_deaths_per_million": 72.277,
- "new_deaths_per_million": 1.042,
- "new_deaths_smoothed_per_million": 1.291,
- "stringency_index": 53.7
- },
- {
- "date": "2020-08-14",
- "total_cases": 6971.0,
- "new_cases": 154.0,
- "new_cases_smoothed": 136.429,
- "total_deaths": 213.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 2422.337,
- "new_cases_per_million": 53.513,
- "new_cases_smoothed_per_million": 47.407,
- "total_deaths_per_million": 74.015,
- "new_deaths_per_million": 1.737,
- "new_deaths_smoothed_per_million": 1.241,
- "stringency_index": 53.7
- },
- {
- "date": "2020-08-15",
- "total_cases": 7117.0,
- "new_cases": 146.0,
- "new_cases_smoothed": 138.0,
- "total_deaths": 219.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 2473.07,
- "new_cases_per_million": 50.733,
- "new_cases_smoothed_per_million": 47.953,
- "total_deaths_per_million": 76.1,
- "new_deaths_per_million": 2.085,
- "new_deaths_smoothed_per_million": 1.489,
- "stringency_index": 53.7
- },
- {
- "date": "2020-08-16",
- "total_cases": 7260.0,
- "new_cases": 143.0,
- "new_cases_smoothed": 140.714,
- "total_deaths": 225.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 2522.76,
- "new_cases_per_million": 49.691,
- "new_cases_smoothed_per_million": 48.896,
- "total_deaths_per_million": 78.185,
- "new_deaths_per_million": 2.085,
- "new_deaths_smoothed_per_million": 1.589,
- "stringency_index": 53.7
- },
- {
- "date": "2020-08-17",
- "total_cases": 7380.0,
- "new_cases": 120.0,
- "new_cases_smoothed": 138.429,
- "total_deaths": 228.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 2564.459,
- "new_cases_per_million": 41.699,
- "new_cases_smoothed_per_million": 48.102,
- "total_deaths_per_million": 79.227,
- "new_deaths_per_million": 1.042,
- "new_deaths_smoothed_per_million": 1.44,
- "stringency_index": 53.7
- },
- {
- "date": "2020-08-18",
- "total_cases": 7499.0,
- "new_cases": 119.0,
- "new_cases_smoothed": 137.571,
- "total_deaths": 230.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 2605.81,
- "new_cases_per_million": 41.351,
- "new_cases_smoothed_per_million": 47.804,
- "total_deaths_per_million": 79.922,
- "new_deaths_per_million": 0.695,
- "new_deaths_smoothed_per_million": 1.489,
- "stringency_index": 53.7
- },
- {
- "date": "2020-08-19",
- "total_cases": 7654.0,
- "new_cases": 155.0,
- "new_cases_smoothed": 139.714,
- "total_deaths": 232.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 2659.671,
- "new_cases_per_million": 53.861,
- "new_cases_smoothed_per_million": 48.549,
- "total_deaths_per_million": 80.617,
- "new_deaths_per_million": 0.695,
- "new_deaths_smoothed_per_million": 1.34,
- "stringency_index": 53.7
- },
- {
- "date": "2020-08-20",
- "total_cases": 7812.0,
- "new_cases": 158.0,
- "new_cases_smoothed": 142.143,
- "total_deaths": 234.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 2714.574,
- "new_cases_per_million": 54.903,
- "new_cases_smoothed_per_million": 49.393,
- "total_deaths_per_million": 81.312,
- "new_deaths_per_million": 0.695,
- "new_deaths_smoothed_per_million": 1.291,
- "stringency_index": 53.7
- },
- {
- "date": "2020-08-21",
- "total_cases": 7967.0,
- "new_cases": 155.0,
- "new_cases_smoothed": 142.286,
- "total_deaths": 238.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 2768.434,
- "new_cases_per_million": 53.861,
- "new_cases_smoothed_per_million": 49.443,
- "total_deaths_per_million": 82.702,
- "new_deaths_per_million": 1.39,
- "new_deaths_smoothed_per_million": 1.241,
- "stringency_index": 53.7
- },
- {
- "date": "2020-08-22",
- "total_cases": 8119.0,
- "new_cases": 152.0,
- "new_cases_smoothed": 143.143,
- "total_deaths": 240.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 2821.252,
- "new_cases_per_million": 52.818,
- "new_cases_smoothed_per_million": 49.74,
- "total_deaths_per_million": 83.397,
- "new_deaths_per_million": 0.695,
- "new_deaths_smoothed_per_million": 1.042,
- "stringency_index": 53.7
- },
- {
- "date": "2020-08-23",
- "total_cases": 8275.0,
- "new_cases": 156.0,
- "new_cases_smoothed": 145.0,
- "total_deaths": 245.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 2875.46,
- "new_cases_per_million": 54.208,
- "new_cases_smoothed_per_million": 50.386,
- "total_deaths_per_million": 85.134,
- "new_deaths_per_million": 1.737,
- "new_deaths_smoothed_per_million": 0.993,
- "stringency_index": 53.7
- },
- {
- "date": "2020-08-24",
- "total_cases": 8427.0,
- "new_cases": 152.0,
- "new_cases_smoothed": 149.571,
- "total_deaths": 250.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 2928.279,
- "new_cases_per_million": 52.818,
- "new_cases_smoothed_per_million": 51.974,
- "total_deaths_per_million": 86.872,
- "new_deaths_per_million": 1.737,
- "new_deaths_smoothed_per_million": 1.092,
- "stringency_index": 53.7
- },
- {
- "date": "2020-08-25",
- "total_cases": 8605.0,
- "new_cases": 178.0,
- "new_cases_smoothed": 158.0,
- "total_deaths": 254.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 2990.131,
- "new_cases_per_million": 61.853,
- "new_cases_smoothed_per_million": 54.903,
- "total_deaths_per_million": 88.262,
- "new_deaths_per_million": 1.39,
- "new_deaths_smoothed_per_million": 1.191,
- "stringency_index": 53.7
- },
- {
- "date": "2020-08-26",
- "total_cases": 8759.0,
- "new_cases": 154.0,
- "new_cases_smoothed": 157.857,
- "total_deaths": 259.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 3043.644,
- "new_cases_per_million": 53.513,
- "new_cases_smoothed_per_million": 54.853,
- "total_deaths_per_million": 89.999,
- "new_deaths_per_million": 1.737,
- "new_deaths_smoothed_per_million": 1.34,
- "stringency_index": 53.7
- },
- {
- "date": "2020-08-27",
- "total_cases": 8927.0,
- "new_cases": 168.0,
- "new_cases_smoothed": 159.286,
- "total_deaths": 263.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 3102.022,
- "new_cases_per_million": 58.378,
- "new_cases_smoothed_per_million": 55.35,
- "total_deaths_per_million": 91.389,
- "new_deaths_per_million": 1.39,
- "new_deaths_smoothed_per_million": 1.44,
- "stringency_index": 53.7
- },
- {
- "date": "2020-08-28",
- "total_cases": 9083.0,
- "new_cases": 156.0,
- "new_cases_smoothed": 159.429,
- "total_deaths": 266.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 3156.23,
- "new_cases_per_million": 54.208,
- "new_cases_smoothed_per_million": 55.399,
- "total_deaths_per_million": 92.432,
- "new_deaths_per_million": 1.042,
- "new_deaths_smoothed_per_million": 1.39,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-29",
- "total_cases": 9195.0,
- "new_cases": 112.0,
- "new_cases_smoothed": 153.714,
- "total_deaths": 271.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 3195.149,
- "new_cases_per_million": 38.919,
- "new_cases_smoothed_per_million": 53.414,
- "total_deaths_per_million": 94.169,
- "new_deaths_per_million": 1.737,
- "new_deaths_smoothed_per_million": 1.539,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-30",
- "total_cases": 9279.0,
- "new_cases": 84.0,
- "new_cases_smoothed": 143.429,
- "total_deaths": 275.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 3224.338,
- "new_cases_per_million": 29.189,
- "new_cases_smoothed_per_million": 49.84,
- "total_deaths_per_million": 95.559,
- "new_deaths_per_million": 1.39,
- "new_deaths_smoothed_per_million": 1.489,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-31",
- "total_cases": 9380.0,
- "new_cases": 101.0,
- "new_cases_smoothed": 136.143,
- "total_deaths": 280.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 3259.434,
- "new_cases_per_million": 35.096,
- "new_cases_smoothed_per_million": 47.308,
- "total_deaths_per_million": 97.297,
- "new_deaths_per_million": 1.737,
- "new_deaths_smoothed_per_million": 1.489,
- "stringency_index": 54.63
- },
- {
- "date": "2020-09-01",
- "total_cases": 9513.0,
- "new_cases": 133.0,
- "new_cases_smoothed": 129.714,
- "total_deaths": 284.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 3305.65,
- "new_cases_per_million": 46.216,
- "new_cases_smoothed_per_million": 45.074,
- "total_deaths_per_million": 98.686,
- "new_deaths_per_million": 1.39,
- "new_deaths_smoothed_per_million": 1.489,
- "stringency_index": 54.63
- },
- {
- "date": "2020-09-02",
- "total_cases": 9606.0,
- "new_cases": 93.0,
- "new_cases_smoothed": 121.0,
- "total_deaths": 290.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 3337.967,
- "new_cases_per_million": 32.316,
- "new_cases_smoothed_per_million": 42.046,
- "total_deaths_per_million": 100.771,
- "new_deaths_per_million": 2.085,
- "new_deaths_smoothed_per_million": 1.539,
- "stringency_index": 54.63
- },
- {
- "date": "2020-09-03",
- "total_cases": 9728.0,
- "new_cases": 122.0,
- "new_cases_smoothed": 114.429,
- "total_deaths": 296.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 3380.36,
- "new_cases_per_million": 42.393,
- "new_cases_smoothed_per_million": 39.763,
- "total_deaths_per_million": 102.856,
- "new_deaths_per_million": 2.085,
- "new_deaths_smoothed_per_million": 1.638,
- "stringency_index": 54.63
- },
- {
- "date": "2020-09-04",
- "total_cases": 9844.0,
- "new_cases": 116.0,
- "new_cases_smoothed": 108.714,
- "total_deaths": 301.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 3420.669,
- "new_cases_per_million": 40.309,
- "new_cases_smoothed_per_million": 37.777,
- "total_deaths_per_million": 104.594,
- "new_deaths_per_million": 1.737,
- "new_deaths_smoothed_per_million": 1.737,
- "stringency_index": 54.63
- },
- {
- "date": "2020-09-05",
- "total_cases": 9967.0,
- "new_cases": 123.0,
- "new_cases_smoothed": 110.286,
- "total_deaths": 306.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 3463.41,
- "new_cases_per_million": 42.741,
- "new_cases_smoothed_per_million": 38.323,
- "total_deaths_per_million": 106.331,
- "new_deaths_per_million": 1.737,
- "new_deaths_smoothed_per_million": 1.737,
- "stringency_index": 54.63
- },
- {
- "date": "2020-09-06",
- "total_cases": 10102.0,
- "new_cases": 135.0,
- "new_cases_smoothed": 117.571,
- "total_deaths": 312.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.286,
- "total_cases_per_million": 3510.32,
- "new_cases_per_million": 46.911,
- "new_cases_smoothed_per_million": 40.855,
- "total_deaths_per_million": 108.416,
- "new_deaths_per_million": 2.085,
- "new_deaths_smoothed_per_million": 1.837,
- "stringency_index": 54.63
- },
- {
- "date": "2020-09-07",
- "total_cases": 10255.0,
- "new_cases": 153.0,
- "new_cases_smoothed": 125.0,
- "total_deaths": 316.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 3563.486,
- "new_cases_per_million": 53.166,
- "new_cases_smoothed_per_million": 43.436,
- "total_deaths_per_million": 109.806,
- "new_deaths_per_million": 1.39,
- "new_deaths_smoothed_per_million": 1.787,
- "stringency_index": 54.63
- },
- {
- "date": "2020-09-08",
- "total_cases": 10406.0,
- "new_cases": 151.0,
- "new_cases_smoothed": 127.571,
- "total_deaths": 319.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 3615.957,
- "new_cases_per_million": 52.471,
- "new_cases_smoothed_per_million": 44.329,
- "total_deaths_per_million": 110.849,
- "new_deaths_per_million": 1.042,
- "new_deaths_smoothed_per_million": 1.737,
- "stringency_index": 54.63
- },
- {
- "date": "2020-09-09",
- "total_cases": 10553.0,
- "new_cases": 147.0,
- "new_cases_smoothed": 135.286,
- "total_deaths": 321.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 3667.037,
- "new_cases_per_million": 51.081,
- "new_cases_smoothed_per_million": 47.01,
- "total_deaths_per_million": 111.544,
- "new_deaths_per_million": 0.695,
- "new_deaths_smoothed_per_million": 1.539,
- "stringency_index": 54.63
- },
- {
- "date": "2020-09-10",
- "total_cases": 10704.0,
- "new_cases": 151.0,
- "new_cases_smoothed": 139.429,
- "total_deaths": 322.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 3719.508,
- "new_cases_per_million": 52.471,
- "new_cases_smoothed_per_million": 48.45,
- "total_deaths_per_million": 111.891,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 1.291,
- "stringency_index": 54.63
- },
- {
- "date": "2020-09-11",
- "total_cases": 10860.0,
- "new_cases": 156.0,
- "new_cases_smoothed": 145.143,
- "total_deaths": 324.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 3773.716,
- "new_cases_per_million": 54.208,
- "new_cases_smoothed_per_million": 50.435,
- "total_deaths_per_million": 112.586,
- "new_deaths_per_million": 0.695,
- "new_deaths_smoothed_per_million": 1.142,
- "stringency_index": 54.63
- },
- {
- "date": "2020-09-12",
- "total_cases": 11021.0,
- "new_cases": 161.0,
- "new_cases_smoothed": 150.571,
- "total_deaths": 327.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 3829.662,
- "new_cases_per_million": 55.946,
- "new_cases_smoothed_per_million": 52.322,
- "total_deaths_per_million": 113.628,
- "new_deaths_per_million": 1.042,
- "new_deaths_smoothed_per_million": 1.042,
- "stringency_index": 54.63
- },
- {
- "date": "2020-09-13",
- "total_cases": 11185.0,
- "new_cases": 164.0,
- "new_cases_smoothed": 154.714,
- "total_deaths": 330.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 3886.65,
- "new_cases_per_million": 56.988,
- "new_cases_smoothed_per_million": 53.761,
- "total_deaths_per_million": 114.671,
- "new_deaths_per_million": 1.042,
- "new_deaths_smoothed_per_million": 0.894,
- "stringency_index": 54.63
- },
- {
- "date": "2020-09-14",
- "total_cases": 11353.0,
- "new_cases": 168.0,
- "new_cases_smoothed": 156.857,
- "total_deaths": 334.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 3945.027,
- "new_cases_per_million": 58.378,
- "new_cases_smoothed_per_million": 54.506,
- "total_deaths_per_million": 116.061,
- "new_deaths_per_million": 1.39,
- "new_deaths_smoothed_per_million": 0.894,
- "stringency_index": 43.52
- },
- {
- "date": "2020-09-15",
- "total_cases": 11520.0,
- "new_cases": 167.0,
- "new_cases_smoothed": 159.143,
- "total_deaths": 338.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 4003.058,
- "new_cases_per_million": 58.03,
- "new_cases_smoothed_per_million": 55.3,
- "total_deaths_per_million": 117.451,
- "new_deaths_per_million": 1.39,
- "new_deaths_smoothed_per_million": 0.943,
- "stringency_index": 43.52
- },
- {
- "date": "2020-09-16",
- "total_cases": 11672.0,
- "new_cases": 152.0,
- "new_cases_smoothed": 159.857,
- "total_deaths": 340.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 4055.876,
- "new_cases_per_million": 52.818,
- "new_cases_smoothed_per_million": 55.548,
- "total_deaths_per_million": 118.146,
- "new_deaths_per_million": 0.695,
- "new_deaths_smoothed_per_million": 0.943,
- "stringency_index": 43.52
- },
- {
- "date": "2020-09-17",
- "total_cases": 11816.0,
- "new_cases": 144.0,
- "new_cases_smoothed": 158.857,
- "total_deaths": 343.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 4105.914,
- "new_cases_per_million": 50.038,
- "new_cases_smoothed_per_million": 55.201,
- "total_deaths_per_million": 119.188,
- "new_deaths_per_million": 1.042,
- "new_deaths_smoothed_per_million": 1.042,
- "stringency_index": 43.52
- },
- {
- "date": "2020-09-18",
- "total_cases": 11948.0,
- "new_cases": 132.0,
- "new_cases_smoothed": 155.429,
- "total_deaths": 348.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 4151.783,
- "new_cases_per_million": 45.868,
- "new_cases_smoothed_per_million": 54.01,
- "total_deaths_per_million": 120.926,
- "new_deaths_per_million": 1.737,
- "new_deaths_smoothed_per_million": 1.191,
- "stringency_index": 43.52
- },
- {
- "date": "2020-09-19",
- "total_cases": 12073.0,
- "new_cases": 125.0,
- "new_cases_smoothed": 150.286,
- "total_deaths": 353.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 4195.219,
- "new_cases_per_million": 43.436,
- "new_cases_smoothed_per_million": 52.222,
- "total_deaths_per_million": 122.663,
- "new_deaths_per_million": 1.737,
- "new_deaths_smoothed_per_million": 1.291,
- "stringency_index": 43.52
- },
- {
- "date": "2020-09-20",
- "total_cases": 12226.0,
- "new_cases": 153.0,
- "new_cases_smoothed": 148.714,
- "total_deaths": 358.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 4248.384,
- "new_cases_per_million": 53.166,
- "new_cases_smoothed_per_million": 51.676,
- "total_deaths_per_million": 124.401,
- "new_deaths_per_million": 1.737,
- "new_deaths_smoothed_per_million": 1.39,
- "stringency_index": 43.52
- },
- {
- "date": "2020-09-21",
- "total_cases": 12385.0,
- "new_cases": 159.0,
- "new_cases_smoothed": 147.429,
- "total_deaths": 362.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 4303.635,
- "new_cases_per_million": 55.251,
- "new_cases_smoothed_per_million": 51.23,
- "total_deaths_per_million": 125.791,
- "new_deaths_per_million": 1.39,
- "new_deaths_smoothed_per_million": 1.39,
- "stringency_index": 43.52
- },
- {
- "date": "2020-09-22",
- "total_cases": 12535.0,
- "new_cases": 150.0,
- "new_cases_smoothed": 145.0,
- "total_deaths": 364.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 4355.758,
- "new_cases_per_million": 52.123,
- "new_cases_smoothed_per_million": 50.386,
- "total_deaths_per_million": 126.486,
- "new_deaths_per_million": 0.695,
- "new_deaths_smoothed_per_million": 1.291,
- "stringency_index": 43.52
- },
- {
- "date": "2020-09-23",
- "total_cases": 12666.0,
- "new_cases": 131.0,
- "new_cases_smoothed": 142.0,
- "total_deaths": 367.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 4401.279,
- "new_cases_per_million": 45.521,
- "new_cases_smoothed_per_million": 49.343,
- "total_deaths_per_million": 127.528,
- "new_deaths_per_million": 1.042,
- "new_deaths_smoothed_per_million": 1.34
- },
- {
- "date": "2020-09-24",
- "total_cases": 12787.0,
- "new_cases": 121.0,
- "new_cases_smoothed": 138.714,
- "total_deaths": 370.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 4443.325,
- "new_cases_per_million": 42.046,
- "new_cases_smoothed_per_million": 48.202,
- "total_deaths_per_million": 128.57,
- "new_deaths_per_million": 1.042,
- "new_deaths_smoothed_per_million": 1.34
- },
- {
- "date": "2020-09-25",
- "total_cases": 12921.0,
- "new_cases": 134.0,
- "new_cases_smoothed": 139.0,
- "total_deaths": 370.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 4489.888,
- "new_cases_per_million": 46.563,
- "new_cases_smoothed_per_million": 48.301,
- "total_deaths_per_million": 128.57,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.092
- }
- ]
- },
- "AND": {
- "continent": "Europe",
- "location": "Andorra",
- "population": 77265.0,
- "population_density": 163.755,
- "cardiovasc_death_rate": 109.135,
- "diabetes_prevalence": 7.97,
- "female_smokers": 29.0,
- "male_smokers": 37.8,
- "life_expectancy": 83.73,
- "human_development_index": 0.858,
- "data": [
- {
- "date": "2020-03-03",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 12.942,
- "new_cases_per_million": 12.942,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-09",
- "new_cases_smoothed": 0.143,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 1.849,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-10",
- "new_cases_smoothed": 0.0,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-11",
- "new_cases_smoothed": 0.0,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-12",
- "new_cases_smoothed": 0.0,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-13",
- "new_cases_smoothed": 0.0,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 9.26
- },
- {
- "date": "2020-03-14",
- "total_cases": 2.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 25.885,
- "new_cases_per_million": 12.942,
- "new_cases_smoothed_per_million": 1.849,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 20.37
- },
- {
- "date": "2020-03-15",
- "new_cases_smoothed": 0.143,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 1.849,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 20.37
- },
- {
- "date": "2020-03-16",
- "total_cases": 5.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 64.712,
- "new_cases_per_million": 38.827,
- "new_cases_smoothed_per_million": 7.396,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 31.48
- },
- {
- "date": "2020-03-17",
- "total_cases": 14.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 181.195,
- "new_cases_per_million": 116.482,
- "new_cases_smoothed_per_million": 24.036,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 31.48
- },
- {
- "date": "2020-03-18",
- "total_cases": 14.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 181.195,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 24.036,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 31.48
- },
- {
- "date": "2020-03-19",
- "total_cases": 53.0,
- "new_cases": 39.0,
- "new_cases_smoothed": 7.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 685.951,
- "new_cases_per_million": 504.756,
- "new_cases_smoothed_per_million": 96.144,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 31.48
- },
- {
- "date": "2020-03-20",
- "total_cases": 75.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 10.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 970.685,
- "new_cases_per_million": 284.734,
- "new_cases_smoothed_per_million": 136.82,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 31.48
- },
- {
- "date": "2020-03-21",
- "total_cases": 75.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 10.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 970.685,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 134.971,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 31.48
- },
- {
- "date": "2020-03-22",
- "total_cases": 88.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 12.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1138.937,
- "new_cases_per_million": 168.252,
- "new_cases_smoothed_per_million": 159.007,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 31.48
- },
- {
- "date": "2020-03-23",
- "total_cases": 113.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 15.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1462.499,
- "new_cases_per_million": 323.562,
- "new_cases_smoothed_per_million": 199.684,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 31.48
- },
- {
- "date": "2020-03-24",
- "total_cases": 133.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 17.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1721.349,
- "new_cases_per_million": 258.849,
- "new_cases_smoothed_per_million": 220.022,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 31.48
- },
- {
- "date": "2020-03-25",
- "total_cases": 164.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 21.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2122.565,
- "new_cases_per_million": 401.217,
- "new_cases_smoothed_per_million": 277.339,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-03-26",
- "total_cases": 188.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 19.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2433.184,
- "new_cases_per_million": 310.619,
- "new_cases_smoothed_per_million": 249.605,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-03-27",
- "total_cases": 224.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 21.286,
- "total_deaths": 3.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2899.113,
- "new_cases_per_million": 465.929,
- "new_cases_smoothed_per_million": 275.49,
- "total_deaths_per_million": 38.827,
- "new_deaths_per_million": 38.827,
- "new_deaths_smoothed_per_million": 5.547,
- "stringency_index": 48.15
- },
- {
- "date": "2020-03-28",
- "total_cases": 267.0,
- "new_cases": 43.0,
- "new_cases_smoothed": 27.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 3455.64,
- "new_cases_per_million": 556.526,
- "new_cases_smoothed_per_million": 354.993,
- "total_deaths_per_million": 38.827,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 5.547,
- "stringency_index": 48.15
- },
- {
- "date": "2020-03-29",
- "total_cases": 308.0,
- "new_cases": 41.0,
- "new_cases_smoothed": 31.429,
- "total_deaths": 4.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 3986.281,
- "new_cases_per_million": 530.641,
- "new_cases_smoothed_per_million": 406.763,
- "total_deaths_per_million": 51.77,
- "new_deaths_per_million": 12.942,
- "new_deaths_smoothed_per_million": 7.396,
- "stringency_index": 48.15
- },
- {
- "date": "2020-03-30",
- "total_cases": 334.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 31.571,
- "total_deaths": 6.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 4322.785,
- "new_cases_per_million": 336.504,
- "new_cases_smoothed_per_million": 408.612,
- "total_deaths_per_million": 77.655,
- "new_deaths_per_million": 25.885,
- "new_deaths_smoothed_per_million": 11.094,
- "stringency_index": 48.15
- },
- {
- "date": "2020-03-31",
- "total_cases": 370.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 33.857,
- "total_deaths": 8.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 4788.714,
- "new_cases_per_million": 465.929,
- "new_cases_smoothed_per_million": 438.195,
- "total_deaths_per_million": 103.54,
- "new_deaths_per_million": 25.885,
- "new_deaths_smoothed_per_million": 14.791,
- "stringency_index": 48.15
- },
- {
- "date": "2020-04-01",
- "total_cases": 376.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 30.286,
- "total_deaths": 12.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 4866.369,
- "new_cases_per_million": 77.655,
- "new_cases_smoothed_per_million": 391.972,
- "total_deaths_per_million": 155.31,
- "new_deaths_per_million": 51.77,
- "new_deaths_smoothed_per_million": 22.187,
- "stringency_index": 48.15
- },
- {
- "date": "2020-04-02",
- "total_cases": 390.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 28.857,
- "total_deaths": 14.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 5047.564,
- "new_cases_per_million": 181.195,
- "new_cases_smoothed_per_million": 373.483,
- "total_deaths_per_million": 181.195,
- "new_deaths_per_million": 25.885,
- "new_deaths_smoothed_per_million": 25.885,
- "stringency_index": 48.15
- },
- {
- "date": "2020-04-03",
- "total_cases": 428.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 29.143,
- "total_deaths": 15.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 5539.377,
- "new_cases_per_million": 491.814,
- "new_cases_smoothed_per_million": 377.181,
- "total_deaths_per_million": 194.137,
- "new_deaths_per_million": 12.942,
- "new_deaths_smoothed_per_million": 22.187,
- "stringency_index": 48.15
- },
- {
- "date": "2020-04-04",
- "total_cases": 439.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 24.571,
- "total_deaths": 16.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 5681.745,
- "new_cases_per_million": 142.367,
- "new_cases_smoothed_per_million": 318.015,
- "total_deaths_per_million": 207.08,
- "new_deaths_per_million": 12.942,
- "new_deaths_smoothed_per_million": 24.036,
- "stringency_index": 48.15
- },
- {
- "date": "2020-04-05",
- "total_cases": 466.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 22.571,
- "total_deaths": 17.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 6031.191,
- "new_cases_per_million": 349.447,
- "new_cases_smoothed_per_million": 292.13,
- "total_deaths_per_million": 220.022,
- "new_deaths_per_million": 12.942,
- "new_deaths_smoothed_per_million": 24.036,
- "stringency_index": 48.15
- },
- {
- "date": "2020-04-06",
- "total_cases": 501.0,
- "new_cases": 35.0,
- "new_cases_smoothed": 23.857,
- "total_deaths": 18.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 6484.178,
- "new_cases_per_million": 452.986,
- "new_cases_smoothed_per_million": 308.77,
- "total_deaths_per_million": 232.964,
- "new_deaths_per_million": 12.942,
- "new_deaths_smoothed_per_million": 22.187,
- "stringency_index": 48.15
- },
- {
- "date": "2020-04-07",
- "total_cases": 526.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 22.286,
- "total_deaths": 21.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 6807.74,
- "new_cases_per_million": 323.562,
- "new_cases_smoothed_per_million": 288.432,
- "total_deaths_per_million": 271.792,
- "new_deaths_per_million": 38.827,
- "new_deaths_smoothed_per_million": 24.036,
- "stringency_index": 48.15
- },
- {
- "date": "2020-04-08",
- "total_cases": 545.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 24.143,
- "total_deaths": 22.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 7053.647,
- "new_cases_per_million": 245.907,
- "new_cases_smoothed_per_million": 312.468,
- "total_deaths_per_million": 284.734,
- "new_deaths_per_million": 12.942,
- "new_deaths_smoothed_per_million": 18.489,
- "stringency_index": 56.48
- },
- {
- "date": "2020-04-09",
- "total_cases": 564.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 24.857,
- "total_deaths": 23.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 7299.553,
- "new_cases_per_million": 245.907,
- "new_cases_smoothed_per_million": 321.713,
- "total_deaths_per_million": 297.677,
- "new_deaths_per_million": 12.942,
- "new_deaths_smoothed_per_million": 16.64,
- "stringency_index": 56.48
- },
- {
- "date": "2020-04-10",
- "total_cases": 583.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 22.143,
- "total_deaths": 25.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 7545.46,
- "new_cases_per_million": 245.907,
- "new_cases_smoothed_per_million": 286.583,
- "total_deaths_per_million": 323.562,
- "new_deaths_per_million": 25.885,
- "new_deaths_smoothed_per_million": 18.489,
- "stringency_index": 56.48
- },
- {
- "date": "2020-04-11",
- "total_cases": 601.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 23.143,
- "total_deaths": 26.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 7778.425,
- "new_cases_per_million": 232.964,
- "new_cases_smoothed_per_million": 299.526,
- "total_deaths_per_million": 336.504,
- "new_deaths_per_million": 12.942,
- "new_deaths_smoothed_per_million": 18.489,
- "stringency_index": 56.48
- },
- {
- "date": "2020-04-12",
- "total_cases": 622.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 22.286,
- "total_deaths": 28.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 8050.217,
- "new_cases_per_million": 271.792,
- "new_cases_smoothed_per_million": 288.432,
- "total_deaths_per_million": 362.389,
- "new_deaths_per_million": 25.885,
- "new_deaths_smoothed_per_million": 20.338,
- "stringency_index": 56.48
- },
- {
- "date": "2020-04-13",
- "total_cases": 638.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 19.571,
- "total_deaths": 29.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 8257.296,
- "new_cases_per_million": 207.08,
- "new_cases_smoothed_per_million": 253.303,
- "total_deaths_per_million": 375.332,
- "new_deaths_per_million": 12.942,
- "new_deaths_smoothed_per_million": 20.338,
- "stringency_index": 56.48
- },
- {
- "date": "2020-04-14",
- "total_cases": 646.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 17.143,
- "total_deaths": 29.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 8360.836,
- "new_cases_per_million": 103.54,
- "new_cases_smoothed_per_million": 221.871,
- "total_deaths_per_million": 375.332,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 14.791,
- "stringency_index": 56.48
- },
- {
- "date": "2020-04-15",
- "total_cases": 659.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 16.286,
- "total_deaths": 31.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 8529.088,
- "new_cases_per_million": 168.252,
- "new_cases_smoothed_per_million": 210.777,
- "total_deaths_per_million": 401.217,
- "new_deaths_per_million": 25.885,
- "new_deaths_smoothed_per_million": 16.64,
- "stringency_index": 56.48
- },
- {
- "date": "2020-04-16",
- "total_cases": 673.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 15.571,
- "total_deaths": 33.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 8710.283,
- "new_cases_per_million": 181.195,
- "new_cases_smoothed_per_million": 201.533,
- "total_deaths_per_million": 427.102,
- "new_deaths_per_million": 25.885,
- "new_deaths_smoothed_per_million": 18.489,
- "stringency_index": 56.48
- },
- {
- "date": "2020-04-17",
- "total_cases": 682.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 14.143,
- "total_deaths": 33.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 8826.765,
- "new_cases_per_million": 116.482,
- "new_cases_smoothed_per_million": 183.044,
- "total_deaths_per_million": 427.102,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 14.791,
- "stringency_index": 56.48
- },
- {
- "date": "2020-04-18",
- "total_cases": 696.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 13.571,
- "total_deaths": 35.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 9007.96,
- "new_cases_per_million": 181.195,
- "new_cases_smoothed_per_million": 175.648,
- "total_deaths_per_million": 452.986,
- "new_deaths_per_million": 25.885,
- "new_deaths_smoothed_per_million": 16.64,
- "stringency_index": 56.48
- },
- {
- "date": "2020-04-19",
- "total_cases": 704.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 11.714,
- "total_deaths": 35.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 9111.499,
- "new_cases_per_million": 103.54,
- "new_cases_smoothed_per_million": 151.612,
- "total_deaths_per_million": 452.986,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 12.942,
- "stringency_index": 56.48
- },
- {
- "date": "2020-04-20",
- "total_cases": 713.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 10.714,
- "total_deaths": 36.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 9227.982,
- "new_cases_per_million": 116.482,
- "new_cases_smoothed_per_million": 138.669,
- "total_deaths_per_million": 465.929,
- "new_deaths_per_million": 12.942,
- "new_deaths_smoothed_per_million": 12.942,
- "stringency_index": 52.78
- },
- {
- "date": "2020-04-21",
- "total_cases": 717.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 10.143,
- "total_deaths": 36.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 9279.752,
- "new_cases_per_million": 51.77,
- "new_cases_smoothed_per_million": 131.274,
- "total_deaths_per_million": 465.929,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 12.942,
- "stringency_index": 52.78
- },
- {
- "date": "2020-04-22",
- "total_cases": 717.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 8.286,
- "total_deaths": 37.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 9279.752,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 107.238,
- "total_deaths_per_million": 478.871,
- "new_deaths_per_million": 12.942,
- "new_deaths_smoothed_per_million": 11.094,
- "stringency_index": 52.78
- },
- {
- "date": "2020-04-23",
- "total_cases": 723.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 7.143,
- "total_deaths": 37.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 9357.406,
- "new_cases_per_million": 77.655,
- "new_cases_smoothed_per_million": 92.446,
- "total_deaths_per_million": 478.871,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 7.396,
- "stringency_index": 52.78
- },
- {
- "date": "2020-04-24",
- "total_cases": 724.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 6.0,
- "total_deaths": 37.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 9370.349,
- "new_cases_per_million": 12.942,
- "new_cases_smoothed_per_million": 77.655,
- "total_deaths_per_million": 478.871,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 7.396,
- "stringency_index": 52.78
- },
- {
- "date": "2020-04-25",
- "total_cases": 731.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 5.0,
- "total_deaths": 40.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 9460.946,
- "new_cases_per_million": 90.597,
- "new_cases_smoothed_per_million": 64.712,
- "total_deaths_per_million": 517.699,
- "new_deaths_per_million": 38.827,
- "new_deaths_smoothed_per_million": 9.245,
- "stringency_index": 52.78
- },
- {
- "date": "2020-04-26",
- "total_cases": 733.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 9486.831,
- "new_cases_per_million": 25.885,
- "new_cases_smoothed_per_million": 53.619,
- "total_deaths_per_million": 517.699,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 9.245,
- "stringency_index": 52.78
- },
- {
- "date": "2020-04-27",
- "total_cases": 740.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 3.857,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 9577.428,
- "new_cases_per_million": 90.597,
- "new_cases_smoothed_per_million": 49.921,
- "total_deaths_per_million": 517.699,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 7.396,
- "stringency_index": 52.78
- },
- {
- "date": "2020-04-28",
- "total_cases": 743.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 9616.256,
- "new_cases_per_million": 38.827,
- "new_cases_smoothed_per_million": 48.072,
- "total_deaths_per_million": 517.699,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 7.396,
- "stringency_index": 52.78
- },
- {
- "date": "2020-04-29",
- "total_cases": 743.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 41.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 9616.256,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 48.072,
- "total_deaths_per_million": 530.641,
- "new_deaths_per_million": 12.942,
- "new_deaths_smoothed_per_million": 7.396,
- "stringency_index": 52.78
- },
- {
- "date": "2020-04-30",
- "total_cases": 743.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 42.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 9616.256,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 36.978,
- "total_deaths_per_million": 543.584,
- "new_deaths_per_million": 12.942,
- "new_deaths_smoothed_per_million": 9.245,
- "stringency_index": 52.78
- },
- {
- "date": "2020-05-01",
- "total_cases": 745.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 42.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 9642.141,
- "new_cases_per_million": 25.885,
- "new_cases_smoothed_per_million": 38.827,
- "total_deaths_per_million": 543.584,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 9.245,
- "stringency_index": 52.78
- },
- {
- "date": "2020-05-02",
- "total_cases": 746.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 43.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 9655.083,
- "new_cases_per_million": 12.942,
- "new_cases_smoothed_per_million": 27.734,
- "total_deaths_per_million": 556.526,
- "new_deaths_per_million": 12.942,
- "new_deaths_smoothed_per_million": 5.547,
- "stringency_index": 52.78
- },
- {
- "date": "2020-05-03",
- "total_cases": 747.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 44.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 9668.026,
- "new_cases_per_million": 12.942,
- "new_cases_smoothed_per_million": 25.885,
- "total_deaths_per_million": 569.469,
- "new_deaths_per_million": 12.942,
- "new_deaths_smoothed_per_million": 7.396,
- "stringency_index": 52.78
- },
- {
- "date": "2020-05-04",
- "total_cases": 748.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 45.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 9680.968,
- "new_cases_per_million": 12.942,
- "new_cases_smoothed_per_million": 14.791,
- "total_deaths_per_million": 582.411,
- "new_deaths_per_million": 12.942,
- "new_deaths_smoothed_per_million": 9.245,
- "stringency_index": 52.78
- },
- {
- "date": "2020-05-05",
- "total_cases": 750.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 45.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 9706.853,
- "new_cases_per_million": 25.885,
- "new_cases_smoothed_per_million": 12.942,
- "total_deaths_per_million": 582.411,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 9.245,
- "stringency_index": 52.78
- },
- {
- "date": "2020-05-06",
- "total_cases": 751.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 46.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 9719.796,
- "new_cases_per_million": 12.942,
- "new_cases_smoothed_per_million": 14.791,
- "total_deaths_per_million": 595.354,
- "new_deaths_per_million": 12.942,
- "new_deaths_smoothed_per_million": 9.245,
- "stringency_index": 52.78
- },
- {
- "date": "2020-05-07",
- "total_cases": 751.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 46.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 9719.796,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 14.791,
- "total_deaths_per_million": 595.354,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 7.396,
- "stringency_index": 52.78
- },
- {
- "date": "2020-05-08",
- "total_cases": 752.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 47.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 9732.738,
- "new_cases_per_million": 12.942,
- "new_cases_smoothed_per_million": 12.942,
- "total_deaths_per_million": 608.296,
- "new_deaths_per_million": 12.942,
- "new_deaths_smoothed_per_million": 9.245,
- "stringency_index": 52.78
- },
- {
- "date": "2020-05-09",
- "total_cases": 752.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 47.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 9732.738,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 11.094,
- "total_deaths_per_million": 608.296,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 7.396,
- "stringency_index": 52.78
- },
- {
- "date": "2020-05-10",
- "total_cases": 754.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 48.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 9758.623,
- "new_cases_per_million": 25.885,
- "new_cases_smoothed_per_million": 12.942,
- "total_deaths_per_million": 621.239,
- "new_deaths_per_million": 12.942,
- "new_deaths_smoothed_per_million": 7.396,
- "stringency_index": 52.78
- },
- {
- "date": "2020-05-11",
- "total_cases": 755.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 48.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 9771.565,
- "new_cases_per_million": 12.942,
- "new_cases_smoothed_per_million": 12.942,
- "total_deaths_per_million": 621.239,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 5.547,
- "stringency_index": 50.0
- },
- {
- "date": "2020-05-12",
- "total_cases": 756.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 48.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 9784.508,
- "new_cases_per_million": 12.942,
- "new_cases_smoothed_per_million": 11.094,
- "total_deaths_per_million": 621.239,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 5.547,
- "stringency_index": 50.0
- },
- {
- "date": "2020-05-13",
- "total_cases": 758.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 48.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 9810.393,
- "new_cases_per_million": 25.885,
- "new_cases_smoothed_per_million": 12.942,
- "total_deaths_per_million": 621.239,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 3.698,
- "stringency_index": 50.0
- },
- {
- "date": "2020-05-14",
- "total_cases": 760.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 49.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 9836.278,
- "new_cases_per_million": 25.885,
- "new_cases_smoothed_per_million": 16.64,
- "total_deaths_per_million": 634.181,
- "new_deaths_per_million": 12.942,
- "new_deaths_smoothed_per_million": 5.547,
- "stringency_index": 50.0
- },
- {
- "date": "2020-05-15",
- "total_cases": 761.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 49.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 9849.22,
- "new_cases_per_million": 12.942,
- "new_cases_smoothed_per_million": 16.64,
- "total_deaths_per_million": 634.181,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 3.698,
- "stringency_index": 50.0
- },
- {
- "date": "2020-05-16",
- "total_cases": 761.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 49.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 9849.22,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 16.64,
- "total_deaths_per_million": 634.181,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 3.698,
- "stringency_index": 50.0
- },
- {
- "date": "2020-05-17",
- "total_cases": 761.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 51.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 9849.22,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 12.942,
- "total_deaths_per_million": 660.066,
- "new_deaths_per_million": 25.885,
- "new_deaths_smoothed_per_million": 5.547,
- "stringency_index": 50.0
- },
- {
- "date": "2020-05-18",
- "total_cases": 761.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 9849.22,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 11.094,
- "total_deaths_per_million": 660.066,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 5.547,
- "stringency_index": 50.0
- },
- {
- "date": "2020-05-19",
- "total_cases": 761.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 9849.22,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.245,
- "total_deaths_per_million": 660.066,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 5.547,
- "stringency_index": 50.0
- },
- {
- "date": "2020-05-20",
- "total_cases": 761.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 9849.22,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.547,
- "total_deaths_per_million": 660.066,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 5.547,
- "stringency_index": 50.0
- },
- {
- "date": "2020-05-21",
- "total_cases": 762.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 9862.163,
- "new_cases_per_million": 12.942,
- "new_cases_smoothed_per_million": 3.698,
- "total_deaths_per_million": 660.066,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 3.698,
- "stringency_index": 50.0
- },
- {
- "date": "2020-05-22",
- "total_cases": 762.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 9862.163,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.849,
- "total_deaths_per_million": 660.066,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 3.698,
- "stringency_index": 50.0
- },
- {
- "date": "2020-05-23",
- "total_cases": 762.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 9862.163,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.849,
- "total_deaths_per_million": 660.066,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 3.698,
- "stringency_index": 50.0
- },
- {
- "date": "2020-05-24",
- "total_cases": 762.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9862.163,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.849,
- "total_deaths_per_million": 660.066,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-05-25",
- "total_cases": 763.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9875.105,
- "new_cases_per_million": 12.942,
- "new_cases_smoothed_per_million": 3.698,
- "total_deaths_per_million": 660.066,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-05-26",
- "total_cases": 763.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9875.105,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.698,
- "total_deaths_per_million": 660.066,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-05-27",
- "total_cases": 763.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9875.105,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.698,
- "total_deaths_per_million": 660.066,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-05-28",
- "total_cases": 763.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9875.105,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.849,
- "total_deaths_per_million": 660.066,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-05-29",
- "total_cases": 763.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9875.105,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.849,
- "total_deaths_per_million": 660.066,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-05-30",
- "total_cases": 764.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9888.048,
- "new_cases_per_million": 12.942,
- "new_cases_smoothed_per_million": 3.698,
- "total_deaths_per_million": 660.066,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-05-31",
- "total_cases": 764.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9888.048,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.698,
- "total_deaths_per_million": 660.066,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-06-01",
- "total_cases": 764.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9888.048,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.849,
- "total_deaths_per_million": 660.066,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-06-02",
- "total_cases": 765.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9900.99,
- "new_cases_per_million": 12.942,
- "new_cases_smoothed_per_million": 3.698,
- "total_deaths_per_million": 660.066,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-03",
- "total_cases": 844.0,
- "new_cases": 79.0,
- "new_cases_smoothed": 11.571,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10923.445,
- "new_cases_per_million": 1022.455,
- "new_cases_smoothed_per_million": 149.763,
- "total_deaths_per_million": 660.066,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-04",
- "total_cases": 851.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 12.571,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11014.043,
- "new_cases_per_million": 90.597,
- "new_cases_smoothed_per_million": 162.705,
- "total_deaths_per_million": 660.066,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-05",
- "total_cases": 852.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 12.714,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11026.985,
- "new_cases_per_million": 12.942,
- "new_cases_smoothed_per_million": 164.554,
- "total_deaths_per_million": 660.066,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-06",
- "total_cases": 852.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 12.571,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11026.985,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 162.705,
- "total_deaths_per_million": 660.066,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-07",
- "total_cases": 852.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 12.571,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11026.985,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 162.705,
- "total_deaths_per_million": 660.066,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-08",
- "total_cases": 852.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 12.571,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11026.985,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 162.705,
- "total_deaths_per_million": 660.066,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-09",
- "total_cases": 852.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 12.429,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11026.985,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 160.856,
- "total_deaths_per_million": 660.066,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-10",
- "total_cases": 852.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11026.985,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 14.791,
- "total_deaths_per_million": 660.066,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-11",
- "total_cases": 852.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11026.985,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.849,
- "total_deaths_per_million": 660.066,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-12",
- "total_cases": 852.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11026.985,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 660.066,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-13",
- "total_cases": 853.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11039.928,
- "new_cases_per_million": 12.942,
- "new_cases_smoothed_per_million": 1.849,
- "total_deaths_per_million": 660.066,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-14",
- "total_cases": 853.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11039.928,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.849,
- "total_deaths_per_million": 660.066,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-15",
- "total_cases": 853.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11039.928,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.849,
- "total_deaths_per_million": 660.066,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-16",
- "total_cases": 853.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11039.928,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.849,
- "total_deaths_per_million": 660.066,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-17",
- "total_cases": 854.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 52.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 11052.87,
- "new_cases_per_million": 12.942,
- "new_cases_smoothed_per_million": 3.698,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 12.942,
- "new_deaths_smoothed_per_million": 1.849,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-18",
- "total_cases": 854.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 11052.87,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.698,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.849,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-19",
- "total_cases": 855.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 11065.812,
- "new_cases_per_million": 12.942,
- "new_cases_smoothed_per_million": 5.547,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.849,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-20",
- "total_cases": 855.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 11065.812,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.698,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.849,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-21",
- "total_cases": 855.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 11065.812,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.698,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.849,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-22",
- "total_cases": 855.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 11065.812,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.698,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.849,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-23",
- "total_cases": 855.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 11065.812,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.698,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.849,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-24",
- "total_cases": 855.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11065.812,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.849,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-25",
- "total_cases": 855.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11065.812,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.849,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-26",
- "total_cases": 855.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11065.812,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-27",
- "total_cases": 855.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11065.812,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-28",
- "total_cases": 855.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11065.812,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-29",
- "total_cases": 855.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11065.812,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-30",
- "total_cases": 855.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11065.812,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-07-01",
- "total_cases": 855.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11065.812,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-07-02",
- "total_cases": 855.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11065.812,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-07-03",
- "total_cases": 855.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11065.812,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-07-04",
- "total_cases": 855.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11065.812,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-07-05",
- "total_cases": 855.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11065.812,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-07-06",
- "total_cases": 855.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11065.812,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-07-07",
- "total_cases": 855.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11065.812,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-08",
- "total_cases": 855.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11065.812,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-09",
- "total_cases": 855.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11065.812,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-10",
- "total_cases": 855.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11065.812,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-11",
- "total_cases": 855.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11065.812,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-12",
- "total_cases": 855.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11065.812,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-13",
- "total_cases": 855.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11065.812,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-14",
- "total_cases": 858.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11104.64,
- "new_cases_per_million": 38.827,
- "new_cases_smoothed_per_million": 5.547,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-15",
- "total_cases": 861.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11143.467,
- "new_cases_per_million": 38.827,
- "new_cases_smoothed_per_million": 11.094,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-16",
- "total_cases": 862.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11156.41,
- "new_cases_per_million": 12.942,
- "new_cases_smoothed_per_million": 12.942,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-17",
- "total_cases": 877.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 3.143,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11350.547,
- "new_cases_per_million": 194.137,
- "new_cases_smoothed_per_million": 40.676,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-18",
- "total_cases": 880.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 3.571,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11389.374,
- "new_cases_per_million": 38.827,
- "new_cases_smoothed_per_million": 46.223,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-19",
- "total_cases": 880.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.571,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11389.374,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 46.223,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-20",
- "total_cases": 880.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.571,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11389.374,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 46.223,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-21",
- "total_cases": 884.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11441.144,
- "new_cases_per_million": 51.77,
- "new_cases_smoothed_per_million": 48.072,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-07-22",
- "total_cases": 884.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11441.144,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 42.525,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-23",
- "total_cases": 889.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 3.857,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11505.856,
- "new_cases_per_million": 64.712,
- "new_cases_smoothed_per_million": 49.921,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-24",
- "total_cases": 889.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11505.856,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 22.187,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-25",
- "total_cases": 889.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11505.856,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 16.64,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-26",
- "total_cases": 897.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11609.396,
- "new_cases_per_million": 103.54,
- "new_cases_smoothed_per_million": 31.432,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-27",
- "total_cases": 897.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11609.396,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 31.432,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-28",
- "total_cases": 907.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11738.821,
- "new_cases_per_million": 129.425,
- "new_cases_smoothed_per_million": 42.525,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-29",
- "total_cases": 907.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11738.821,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 42.525,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-30",
- "total_cases": 918.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11881.188,
- "new_cases_per_million": 142.367,
- "new_cases_smoothed_per_million": 53.619,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-31",
- "total_cases": 922.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 4.714,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11932.958,
- "new_cases_per_million": 51.77,
- "new_cases_smoothed_per_million": 61.015,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-01",
- "total_cases": 925.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11971.785,
- "new_cases_per_million": 38.827,
- "new_cases_smoothed_per_million": 66.561,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-02",
- "total_cases": 925.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.0,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11971.785,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 51.77,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-03",
- "total_cases": 925.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.0,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11971.785,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 51.77,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-04",
- "total_cases": 937.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 4.286,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12127.095,
- "new_cases_per_million": 155.31,
- "new_cases_smoothed_per_million": 55.468,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-05",
- "total_cases": 939.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 4.571,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12152.98,
- "new_cases_per_million": 25.885,
- "new_cases_smoothed_per_million": 59.166,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-06",
- "total_cases": 939.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12152.98,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 38.827,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-07",
- "total_cases": 944.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 3.143,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12217.692,
- "new_cases_per_million": 64.712,
- "new_cases_smoothed_per_million": 40.676,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-08",
- "total_cases": 955.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 4.286,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12360.06,
- "new_cases_per_million": 142.367,
- "new_cases_smoothed_per_million": 55.468,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-09",
- "total_cases": 956.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 4.429,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12373.002,
- "new_cases_per_million": 12.942,
- "new_cases_smoothed_per_million": 57.317,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-10",
- "total_cases": 956.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.429,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12373.002,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 57.317,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-11",
- "total_cases": 963.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12463.599,
- "new_cases_per_million": 90.597,
- "new_cases_smoothed_per_million": 48.072,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-12",
- "total_cases": 963.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.429,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12463.599,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 44.374,
- "total_deaths_per_million": 673.008,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-13",
- "total_cases": 977.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 53.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 12644.794,
- "new_cases_per_million": 181.195,
- "new_cases_smoothed_per_million": 70.259,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 12.942,
- "new_deaths_smoothed_per_million": 1.849,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-14",
- "total_cases": 981.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 5.286,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 12696.564,
- "new_cases_per_million": 51.77,
- "new_cases_smoothed_per_million": 68.41,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.849,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-15",
- "total_cases": 989.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 4.857,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 12800.104,
- "new_cases_per_million": 103.54,
- "new_cases_smoothed_per_million": 62.863,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.849,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-16",
- "total_cases": 989.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.714,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 12800.104,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 61.015,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.849,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-17",
- "total_cases": 989.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.714,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 12800.104,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 61.015,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.849,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-18",
- "total_cases": 1005.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 6.0,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 13007.183,
- "new_cases_per_million": 207.08,
- "new_cases_smoothed_per_million": 77.655,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.849,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-19",
- "total_cases": 1005.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.0,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 13007.183,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 77.655,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.849,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-20",
- "total_cases": 1024.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 6.714,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 13253.09,
- "new_cases_per_million": 245.907,
- "new_cases_smoothed_per_million": 86.899,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-21",
- "total_cases": 1024.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.143,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 13253.09,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 79.504,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-22",
- "total_cases": 1045.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 8.0,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 13524.882,
- "new_cases_per_million": 271.792,
- "new_cases_smoothed_per_million": 103.54,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-23",
- "total_cases": 1045.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 8.0,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 13524.882,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 103.54,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-24",
- "total_cases": 1045.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 8.0,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 13524.882,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 103.54,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-25",
- "total_cases": 1060.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 7.857,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 13719.019,
- "new_cases_per_million": 194.137,
- "new_cases_smoothed_per_million": 101.691,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-26",
- "total_cases": 1060.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.857,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 13719.019,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 101.691,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-27",
- "total_cases": 1098.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 10.571,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 14210.833,
- "new_cases_per_million": 491.814,
- "new_cases_smoothed_per_million": 136.82,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-28",
- "total_cases": 1098.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 10.571,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 14210.833,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 136.82,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-29",
- "total_cases": 1124.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 11.286,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 14547.337,
- "new_cases_per_million": 336.504,
- "new_cases_smoothed_per_million": 146.065,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-30",
- "total_cases": 1124.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 11.286,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 14547.337,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 146.065,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-31",
- "total_cases": 1124.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 11.286,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 14547.337,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 146.065,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-09-01",
- "total_cases": 1176.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 16.571,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 15220.346,
- "new_cases_per_million": 673.008,
- "new_cases_smoothed_per_million": 214.475,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-09-02",
- "total_cases": 1184.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 17.714,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 15323.885,
- "new_cases_per_million": 103.54,
- "new_cases_smoothed_per_million": 229.267,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-09-03",
- "total_cases": 1199.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 14.429,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 15518.022,
- "new_cases_per_million": 194.137,
- "new_cases_smoothed_per_million": 186.741,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-09-04",
- "total_cases": 1199.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 14.429,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 15518.022,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 186.741,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-09-05",
- "total_cases": 1215.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 13.0,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 15725.102,
- "new_cases_per_million": 207.08,
- "new_cases_smoothed_per_million": 168.252,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-09-06",
- "total_cases": 1215.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 13.0,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 15725.102,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 168.252,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-09-07",
- "total_cases": 1215.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 13.0,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 15725.102,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 168.252,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-09-08",
- "total_cases": 1261.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 12.143,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 16320.456,
- "new_cases_per_million": 595.354,
- "new_cases_smoothed_per_million": 157.159,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-09-09",
- "total_cases": 1261.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 11.0,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 16320.456,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 142.367,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-09-10",
- "total_cases": 1301.0,
- "new_cases": 40.0,
- "new_cases_smoothed": 14.571,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 16838.154,
- "new_cases_per_million": 517.699,
- "new_cases_smoothed_per_million": 188.59,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-09-11",
- "total_cases": 1301.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 14.571,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 16838.154,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 188.59,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-09-12",
- "total_cases": 1344.0,
- "new_cases": 43.0,
- "new_cases_smoothed": 18.429,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 17394.681,
- "new_cases_per_million": 556.526,
- "new_cases_smoothed_per_million": 238.511,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-09-13",
- "total_cases": 1344.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 18.429,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 17394.681,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 238.511,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-09-14",
- "total_cases": 1344.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 18.429,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 17394.681,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 238.511,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-09-15",
- "total_cases": 1438.0,
- "new_cases": 94.0,
- "new_cases_smoothed": 25.286,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 18611.273,
- "new_cases_per_million": 1216.592,
- "new_cases_smoothed_per_million": 327.26,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-16",
- "total_cases": 1438.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 25.286,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 18611.273,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 327.26,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-17",
- "total_cases": 1438.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 19.571,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 18611.273,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 253.303,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-18",
- "total_cases": 1483.0,
- "new_cases": 45.0,
- "new_cases_smoothed": 26.0,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 19193.684,
- "new_cases_per_million": 582.411,
- "new_cases_smoothed_per_million": 336.504,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-19",
- "total_cases": 1564.0,
- "new_cases": 81.0,
- "new_cases_smoothed": 31.429,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 20242.024,
- "new_cases_per_million": 1048.34,
- "new_cases_smoothed_per_million": 406.763,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-20",
- "total_cases": 1564.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 31.429,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 20242.024,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 406.763,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-21",
- "total_cases": 1564.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 31.429,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 20242.024,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 406.763,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-22",
- "total_cases": 1681.0,
- "new_cases": 117.0,
- "new_cases_smoothed": 34.714,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 21756.293,
- "new_cases_per_million": 1514.269,
- "new_cases_smoothed_per_million": 449.289,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-23",
- "total_cases": 1681.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 34.714,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 21756.293,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 449.289,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-24",
- "total_cases": 1753.0,
- "new_cases": 72.0,
- "new_cases_smoothed": 45.0,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 22688.151,
- "new_cases_per_million": 931.858,
- "new_cases_smoothed_per_million": 582.411,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-25",
- "total_cases": 1753.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 38.571,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 22688.151,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 499.21,
- "total_deaths_per_million": 685.951,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- }
- ]
- },
- "ARE": {
- "continent": "Asia",
- "location": "United Arab Emirates",
- "population": 9890400.0,
- "population_density": 112.442,
- "median_age": 34.0,
- "aged_65_older": 1.144,
- "aged_70_older": 0.526,
- "gdp_per_capita": 67293.483,
- "cardiovasc_death_rate": 317.84,
- "diabetes_prevalence": 17.26,
- "female_smokers": 1.2,
- "male_smokers": 37.4,
- "hospital_beds_per_thousand": 1.2,
- "life_expectancy": 77.97,
- "human_development_index": 0.863,
- "data": [
- {
- "date": "2019-12-31",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-01-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-02",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-03",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-04",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-05",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-06",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-07",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-08",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-09",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-10",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-11",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-12",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-13",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-14",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-15",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-16",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-17",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-18",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-19",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-20",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-21",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-22",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-23",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-01-24",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-01-25",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-01-26",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-01-27",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.101,
- "new_cases_per_million": 0.101,
- "new_cases_smoothed_per_million": 0.014,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-01-28",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.101,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.014,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-01-29",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.101,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.014,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 75.0,
- "total_tests": 75.0,
- "total_tests_per_thousand": 0.008,
- "new_tests_per_thousand": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 2.78
- },
- {
- "date": "2020-01-30",
- "total_cases": 4.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.404,
- "new_cases_per_million": 0.303,
- "new_cases_smoothed_per_million": 0.058,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 2.78
- },
- {
- "date": "2020-01-31",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.404,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.058,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-01",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.404,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.058,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 183.0,
- "total_tests": 258.0,
- "total_tests_per_thousand": 0.026,
- "new_tests_per_thousand": 0.019,
- "tests_units": "tests performed",
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-02",
- "total_cases": 5.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.506,
- "new_cases_per_million": 0.101,
- "new_cases_smoothed_per_million": 0.072,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-03",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.506,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.058,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-04",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.506,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.058,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-05",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.506,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.058,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 73.0,
- "new_tests_smoothed_per_thousand": 0.007,
- "tests_per_case": 127.75,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-06",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.506,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.014,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 76.0,
- "new_tests_smoothed_per_thousand": 0.008,
- "tests_per_case": 532.0,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-07",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.506,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.014,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 79.0,
- "new_tests_smoothed_per_thousand": 0.008,
- "tests_per_case": 553.0,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-08",
- "total_cases": 7.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.708,
- "new_cases_per_million": 0.202,
- "new_cases_smoothed_per_million": 0.043,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 574.0,
- "total_tests": 832.0,
- "total_tests_per_thousand": 0.084,
- "new_tests_per_thousand": 0.058,
- "new_tests_smoothed": 82.0,
- "new_tests_smoothed_per_thousand": 0.008,
- "tests_per_case": 191.333,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-09",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.708,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.029,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1360.0,
- "total_tests": 2192.0,
- "total_tests_per_thousand": 0.222,
- "new_tests_per_thousand": 0.138,
- "new_tests_smoothed": 265.0,
- "new_tests_smoothed_per_thousand": 0.027,
- "tests_per_case": 927.5,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-10",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.708,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.029,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 437.0,
- "total_tests": 2629.0,
- "total_tests_per_thousand": 0.266,
- "new_tests_per_thousand": 0.044,
- "new_tests_smoothed": 315.0,
- "new_tests_smoothed_per_thousand": 0.032,
- "tests_per_case": 1102.5,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-11",
- "total_cases": 8.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.809,
- "new_cases_per_million": 0.101,
- "new_cases_smoothed_per_million": 0.043,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 314.0,
- "new_tests_smoothed_per_thousand": 0.032,
- "tests_per_case": 732.6669999999999,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-12",
- "total_cases": 8.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.809,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.043,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 314.0,
- "new_tests_smoothed_per_thousand": 0.032,
- "tests_per_case": 732.6669999999999,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-13",
- "total_cases": 8.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.809,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.043,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 313.0,
- "new_tests_smoothed_per_thousand": 0.032,
- "tests_per_case": 730.3330000000001,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-14",
- "total_cases": 8.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.809,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.043,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 306.0,
- "total_tests": 2935.0,
- "total_tests_per_thousand": 0.297,
- "new_tests_per_thousand": 0.031,
- "new_tests_smoothed": 312.0,
- "new_tests_smoothed_per_thousand": 0.032,
- "tests_per_case": 728.0,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-15",
- "total_cases": 8.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.809,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.014,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 451.0,
- "new_tests_smoothed_per_thousand": 0.046,
- "tests_per_case": 3157.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-16",
- "total_cases": 8.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.809,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.014,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 2107.0,
- "total_tests": 5042.0,
- "total_tests_per_thousand": 0.51,
- "new_tests_per_thousand": 0.213,
- "new_tests_smoothed": 407.0,
- "new_tests_smoothed_per_thousand": 0.041,
- "tests_per_case": 2849.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-17",
- "total_cases": 9.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.91,
- "new_cases_per_million": 0.101,
- "new_cases_smoothed_per_million": 0.029,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 463.0,
- "new_tests_smoothed_per_thousand": 0.047,
- "tests_per_case": 1620.5,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-18",
- "total_cases": 9.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.91,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.014,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1651.0,
- "total_tests": 6693.0,
- "total_tests_per_thousand": 0.677,
- "new_tests_per_thousand": 0.167,
- "new_tests_smoothed": 570.0,
- "new_tests_smoothed_per_thousand": 0.058,
- "tests_per_case": 3990.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-19",
- "total_cases": 9.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.91,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.014,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 664.0,
- "new_tests_smoothed_per_thousand": 0.067,
- "tests_per_case": 4648.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-20",
- "total_cases": 9.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.91,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.014,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 757.0,
- "new_tests_smoothed_per_thousand": 0.077,
- "tests_per_case": 5299.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-21",
- "total_cases": 9.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.91,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.014,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 2201.0,
- "total_tests": 8894.0,
- "total_tests_per_thousand": 0.899,
- "new_tests_per_thousand": 0.223,
- "new_tests_smoothed": 851.0,
- "new_tests_smoothed_per_thousand": 0.086,
- "tests_per_case": 5957.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-22",
- "total_cases": 11.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.112,
- "new_cases_per_million": 0.202,
- "new_cases_smoothed_per_million": 0.043,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 4096.0,
- "total_tests": 12990.0,
- "total_tests_per_thousand": 1.313,
- "new_tests_per_thousand": 0.414,
- "new_tests_smoothed": 1286.0,
- "new_tests_smoothed_per_thousand": 0.13,
- "tests_per_case": 3000.667,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-23",
- "total_cases": 13.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.314,
- "new_cases_per_million": 0.202,
- "new_cases_smoothed_per_million": 0.072,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 1173.0,
- "new_tests_smoothed_per_thousand": 0.119,
- "tests_per_case": 1642.2,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-24",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.314,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.058,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 1093.0,
- "new_tests_smoothed_per_thousand": 0.111,
- "tests_per_case": 1912.75,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-02-25",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.314,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.058,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 1013.0,
- "new_tests_smoothed_per_thousand": 0.102,
- "tests_per_case": 1772.75,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-02-26",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.314,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.058,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 946.0,
- "new_tests_smoothed_per_thousand": 0.096,
- "tests_per_case": 1655.5,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-02-27",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.314,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.058,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1325.0,
- "total_tests": 14315.0,
- "total_tests_per_thousand": 1.447,
- "new_tests_per_thousand": 0.134,
- "new_tests_smoothed": 879.0,
- "new_tests_smoothed_per_thousand": 0.089,
- "tests_per_case": 1538.25,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-02-28",
- "total_cases": 19.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.921,
- "new_cases_per_million": 0.607,
- "new_cases_smoothed_per_million": 0.144,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 8606.0,
- "total_tests": 22921.0,
- "total_tests_per_thousand": 2.317,
- "new_tests_per_thousand": 0.87,
- "new_tests_smoothed": 2004.0,
- "new_tests_smoothed_per_thousand": 0.203,
- "tests_per_case": 1402.8,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-02-29",
- "total_cases": 21.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.123,
- "new_cases_per_million": 0.202,
- "new_cases_smoothed_per_million": 0.144,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 1494.0,
- "new_tests_smoothed_per_thousand": 0.151,
- "tests_per_case": 1045.8,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-03-01",
- "total_cases": 21.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.123,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.116,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 1532.0,
- "new_tests_smoothed_per_thousand": 0.155,
- "tests_per_case": 1340.5,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 15.74
- },
- {
- "date": "2020-03-02",
- "total_cases": 21.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.123,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.116,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 1569.0,
- "new_tests_smoothed_per_thousand": 0.159,
- "tests_per_case": 1372.875,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 15.74
- },
- {
- "date": "2020-03-03",
- "new_cases_smoothed": 1.143,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.116,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 2113.0,
- "total_tests": 25034.0,
- "total_tests_per_thousand": 2.531,
- "new_tests_per_thousand": 0.214,
- "new_tests_smoothed": 1607.0,
- "new_tests_smoothed_per_thousand": 0.162,
- "tests_per_case": 1406.125,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 15.74
- },
- {
- "date": "2020-03-04",
- "total_cases": 27.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.73,
- "new_cases_per_million": 0.607,
- "new_cases_smoothed_per_million": 0.202,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 12724.0,
- "total_tests": 37758.0,
- "total_tests_per_thousand": 3.818,
- "new_tests_per_thousand": 1.287,
- "new_tests_smoothed": 3387.0,
- "new_tests_smoothed_per_thousand": 0.342,
- "tests_per_case": 1693.5,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 15.74
- },
- {
- "date": "2020-03-05",
- "new_cases_smoothed": 2.0,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 4117.0,
- "new_tests_smoothed_per_thousand": 0.416,
- "tests_per_case": 2058.5,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 15.74
- },
- {
- "date": "2020-03-06",
- "total_cases": 29.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.932,
- "new_cases_per_million": 0.202,
- "new_cases_smoothed_per_million": 0.144,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 10753.0,
- "total_tests": 48511.0,
- "total_tests_per_thousand": 4.905,
- "new_tests_per_thousand": 1.087,
- "new_tests_smoothed": 3656.0,
- "new_tests_smoothed_per_thousand": 0.37,
- "tests_per_case": 2559.2,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 15.74
- },
- {
- "date": "2020-03-07",
- "new_cases_smoothed": 1.143,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.116,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 4480.0,
- "total_tests": 52991.0,
- "total_tests_per_thousand": 5.358,
- "new_tests_per_thousand": 0.453,
- "new_tests_smoothed": 4220.0,
- "new_tests_smoothed_per_thousand": 0.427,
- "tests_per_case": 3692.5,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 15.74
- },
- {
- "date": "2020-03-08",
- "total_cases": 45.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 3.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 4.55,
- "new_cases_per_million": 1.618,
- "new_cases_smoothed_per_million": 0.347,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 4641.0,
- "new_tests_smoothed_per_thousand": 0.469,
- "tests_per_case": 1353.625,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 21.3
- },
- {
- "date": "2020-03-09",
- "new_cases_smoothed": 3.429,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 6949.0,
- "total_tests": 59940.0,
- "total_tests_per_thousand": 6.06,
- "new_tests_per_thousand": 0.703,
- "new_tests_smoothed": 5062.0,
- "new_tests_smoothed_per_thousand": 0.512,
- "tests_per_case": 1476.4170000000001,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 21.3
- },
- {
- "date": "2020-03-10",
- "total_cases": 59.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5.965,
- "new_cases_per_million": 1.416,
- "new_cases_smoothed_per_million": 0.549,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 3618.0,
- "total_tests": 63558.0,
- "total_tests_per_thousand": 6.426,
- "new_tests_per_thousand": 0.366,
- "new_tests_smoothed": 5503.0,
- "new_tests_smoothed_per_thousand": 0.556,
- "tests_per_case": 1013.711,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 21.3
- },
- {
- "date": "2020-03-11",
- "total_cases": 74.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 6.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 7.482,
- "new_cases_per_million": 1.517,
- "new_cases_smoothed_per_million": 0.679,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 4398.0,
- "new_tests_smoothed_per_thousand": 0.445,
- "tests_per_case": 655.021,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 32.41
- },
- {
- "date": "2020-03-12",
- "new_cases_smoothed": 6.714,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.679,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 9973.0,
- "total_tests": 73531.0,
- "total_tests_per_thousand": 7.435,
- "new_tests_per_thousand": 1.008,
- "new_tests_smoothed": 4342.0,
- "new_tests_smoothed_per_thousand": 0.439,
- "tests_per_case": 646.681,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 32.41
- },
- {
- "date": "2020-03-13",
- "total_cases": 85.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 8.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 8.594,
- "new_cases_per_million": 1.112,
- "new_cases_smoothed_per_million": 0.809,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 4291.0,
- "new_tests_smoothed_per_thousand": 0.434,
- "tests_per_case": 536.375,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 34.26
- },
- {
- "date": "2020-03-14",
- "new_cases_smoothed": 8.0,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.809,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 10040.0,
- "total_tests": 83571.0,
- "total_tests_per_thousand": 8.45,
- "new_tests_per_thousand": 1.015,
- "new_tests_smoothed": 4369.0,
- "new_tests_smoothed_per_thousand": 0.442,
- "tests_per_case": 546.125,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 34.26
- },
- {
- "date": "2020-03-15",
- "total_cases": 86.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 5.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 8.695,
- "new_cases_per_million": 0.101,
- "new_cases_smoothed_per_million": 0.592,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 6616.0,
- "total_tests": 90187.0,
- "total_tests_per_thousand": 9.119,
- "new_tests_per_thousand": 0.669,
- "new_tests_smoothed": 4817.0,
- "new_tests_smoothed_per_thousand": 0.487,
- "tests_per_case": 822.415,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 34.26
- },
- {
- "date": "2020-03-16",
- "total_cases": 98.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 7.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.909,
- "new_cases_per_million": 1.213,
- "new_cases_smoothed_per_million": 0.766,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 5073.0,
- "new_tests_smoothed_per_thousand": 0.513,
- "tests_per_case": 670.0189999999999,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 45.37
- },
- {
- "date": "2020-03-17",
- "total_cases": 98.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.909,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.563,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 10525.0,
- "total_tests": 100712.0,
- "total_tests_per_thousand": 10.183,
- "new_tests_per_thousand": 1.064,
- "new_tests_smoothed": 5308.0,
- "new_tests_smoothed_per_thousand": 0.537,
- "tests_per_case": 952.7180000000001,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 45.37
- },
- {
- "date": "2020-03-18",
- "total_cases": 113.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11.425,
- "new_cases_per_million": 1.517,
- "new_cases_smoothed_per_million": 0.563,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 5585.0,
- "new_tests_smoothed_per_thousand": 0.565,
- "tests_per_case": 1002.436,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 45.37
- },
- {
- "date": "2020-03-19",
- "total_cases": 113.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11.425,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.563,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 13857.0,
- "total_tests": 114569.0,
- "total_tests_per_thousand": 11.584,
- "new_tests_per_thousand": 1.401,
- "new_tests_smoothed": 5863.0,
- "new_tests_smoothed_per_thousand": 0.593,
- "tests_per_case": 1052.333,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 45.37
- },
- {
- "date": "2020-03-20",
- "total_cases": 140.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 7.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 14.155,
- "new_cases_per_million": 2.73,
- "new_cases_smoothed_per_million": 0.794,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 6053.0,
- "new_tests_smoothed_per_thousand": 0.612,
- "tests_per_case": 770.382,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 45.37
- },
- {
- "date": "2020-03-21",
- "total_cases": 140.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 14.155,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.794,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 12706.0,
- "total_tests": 127275.0,
- "total_tests_per_thousand": 12.869,
- "new_tests_per_thousand": 1.285,
- "new_tests_smoothed": 6243.0,
- "new_tests_smoothed_per_thousand": 0.631,
- "tests_per_case": 794.564,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 45.37
- },
- {
- "date": "2020-03-22",
- "total_cases": 153.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 9.571,
- "total_deaths": 2.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 15.47,
- "new_cases_per_million": 1.314,
- "new_cases_smoothed_per_million": 0.968,
- "total_deaths_per_million": 0.202,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.029,
- "new_tests_smoothed": 6495.0,
- "new_tests_smoothed_per_thousand": 0.657,
- "tests_per_case": 678.582,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 45.37
- },
- {
- "date": "2020-03-23",
- "total_cases": 153.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 15.47,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.794,
- "total_deaths_per_million": 0.202,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.029,
- "new_tests": 16748.0,
- "total_tests": 144023.0,
- "total_tests_per_thousand": 14.562,
- "new_tests_per_thousand": 1.693,
- "new_tests_smoothed": 6939.0,
- "new_tests_smoothed_per_thousand": 0.702,
- "tests_per_case": 883.145,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 62.04
- },
- {
- "date": "2020-03-24",
- "total_cases": 198.0,
- "new_cases": 45.0,
- "new_cases_smoothed": 14.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 20.019,
- "new_cases_per_million": 4.55,
- "new_cases_smoothed_per_million": 1.444,
- "total_deaths_per_million": 0.202,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.029,
- "new_tests": 9093.0,
- "total_tests": 153116.0,
- "total_tests_per_thousand": 15.481,
- "new_tests_per_thousand": 0.919,
- "new_tests_smoothed": 7486.0,
- "new_tests_smoothed_per_thousand": 0.757,
- "tests_per_case": 524.02,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 62.04
- },
- {
- "date": "2020-03-25",
- "total_cases": 248.0,
- "new_cases": 50.0,
- "new_cases_smoothed": 19.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 25.075,
- "new_cases_per_million": 5.055,
- "new_cases_smoothed_per_million": 1.95,
- "total_deaths_per_million": 0.202,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.029,
- "new_tests": 9536.0,
- "total_tests": 162652.0,
- "total_tests_per_thousand": 16.445,
- "new_tests_per_thousand": 0.964,
- "new_tests_smoothed": 7859.0,
- "new_tests_smoothed_per_thousand": 0.795,
- "tests_per_case": 407.504,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 70.37
- },
- {
- "date": "2020-03-26",
- "total_cases": 333.0,
- "new_cases": 85.0,
- "new_cases_smoothed": 31.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 33.669,
- "new_cases_per_million": 8.594,
- "new_cases_smoothed_per_million": 3.178,
- "total_deaths_per_million": 0.202,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.029,
- "new_tests_smoothed": 8218.0,
- "new_tests_smoothed_per_thousand": 0.831,
- "tests_per_case": 261.482,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-27",
- "total_cases": 333.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 27.571,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 33.669,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.788,
- "total_deaths_per_million": 0.202,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.029,
- "new_tests": 18882.0,
- "total_tests": 181534.0,
- "total_tests_per_thousand": 18.355,
- "new_tests_per_thousand": 1.909,
- "new_tests_smoothed": 8659.0,
- "new_tests_smoothed_per_thousand": 0.875,
- "tests_per_case": 314.057,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 84.26
- },
- {
- "date": "2020-03-28",
- "total_cases": 405.0,
- "new_cases": 72.0,
- "new_cases_smoothed": 37.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 40.949,
- "new_cases_per_million": 7.28,
- "new_cases_smoothed_per_million": 3.828,
- "total_deaths_per_million": 0.202,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.029,
- "new_tests": 8216.0,
- "total_tests": 189750.0,
- "total_tests_per_thousand": 19.185,
- "new_tests_per_thousand": 0.831,
- "new_tests_smoothed": 8925.0,
- "new_tests_smoothed_per_thousand": 0.902,
- "tests_per_case": 235.755,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 84.26
- },
- {
- "date": "2020-03-29",
- "total_cases": 468.0,
- "new_cases": 63.0,
- "new_cases_smoothed": 45.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 47.319,
- "new_cases_per_million": 6.37,
- "new_cases_smoothed_per_million": 4.55,
- "total_deaths_per_million": 0.202,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 9098.0,
- "total_tests": 198848.0,
- "total_tests_per_thousand": 20.105,
- "new_tests_per_thousand": 0.92,
- "new_tests_smoothed": 9028.0,
- "new_tests_smoothed_per_thousand": 0.913,
- "tests_per_case": 200.622,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 84.26
- },
- {
- "date": "2020-03-30",
- "total_cases": 570.0,
- "new_cases": 102.0,
- "new_cases_smoothed": 59.571,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 57.632,
- "new_cases_per_million": 10.313,
- "new_cases_smoothed_per_million": 6.023,
- "total_deaths_per_million": 0.303,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.014,
- "new_tests": 7694.0,
- "total_tests": 206542.0,
- "total_tests_per_thousand": 20.883,
- "new_tests_per_thousand": 0.778,
- "new_tests_smoothed": 8931.0,
- "new_tests_smoothed_per_thousand": 0.903,
- "tests_per_case": 149.921,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 84.26
- },
- {
- "date": "2020-03-31",
- "total_cases": 611.0,
- "new_cases": 41.0,
- "new_cases_smoothed": 59.0,
- "total_deaths": 5.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 61.777,
- "new_cases_per_million": 4.145,
- "new_cases_smoothed_per_million": 5.965,
- "total_deaths_per_million": 0.506,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.043,
- "new_tests": 13458.0,
- "total_tests": 220000.0,
- "total_tests_per_thousand": 22.244,
- "new_tests_per_thousand": 1.361,
- "new_tests_smoothed": 9555.0,
- "new_tests_smoothed_per_thousand": 0.966,
- "tests_per_case": 161.94899999999998,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-01",
- "total_cases": 664.0,
- "new_cases": 53.0,
- "new_cases_smoothed": 59.429,
- "total_deaths": 6.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 67.136,
- "new_cases_per_million": 5.359,
- "new_cases_smoothed_per_million": 6.009,
- "total_deaths_per_million": 0.607,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.058,
- "new_tests": 20480.0,
- "total_tests": 240480.0,
- "total_tests_per_thousand": 24.314,
- "new_tests_per_thousand": 2.071,
- "new_tests_smoothed": 11118.0,
- "new_tests_smoothed_per_thousand": 1.124,
- "tests_per_case": 187.082,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-02",
- "total_cases": 814.0,
- "new_cases": 150.0,
- "new_cases_smoothed": 68.714,
- "total_deaths": 8.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 82.302,
- "new_cases_per_million": 15.166,
- "new_cases_smoothed_per_million": 6.948,
- "total_deaths_per_million": 0.809,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.087,
- "new_tests": 22433.0,
- "total_tests": 262913.0,
- "total_tests_per_thousand": 26.583,
- "new_tests_per_thousand": 2.268,
- "new_tests_smoothed": 12974.0,
- "new_tests_smoothed_per_thousand": 1.312,
- "tests_per_case": 188.81099999999998,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-03",
- "total_cases": 1024.0,
- "new_cases": 210.0,
- "new_cases_smoothed": 98.714,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 103.535,
- "new_cases_per_million": 21.233,
- "new_cases_smoothed_per_million": 9.981,
- "total_deaths_per_million": 0.809,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.087,
- "new_tests": 31402.0,
- "total_tests": 294315.0,
- "total_tests_per_thousand": 29.758,
- "new_tests_per_thousand": 3.175,
- "new_tests_smoothed": 16112.0,
- "new_tests_smoothed_per_thousand": 1.629,
- "tests_per_case": 163.219,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-04",
- "total_cases": 1264.0,
- "new_cases": 240.0,
- "new_cases_smoothed": 122.714,
- "total_deaths": 9.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 127.801,
- "new_cases_per_million": 24.266,
- "new_cases_smoothed_per_million": 12.407,
- "total_deaths_per_million": 0.91,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.101,
- "new_tests": 39950.0,
- "total_tests": 334265.0,
- "total_tests_per_thousand": 33.797,
- "new_tests_per_thousand": 4.039,
- "new_tests_smoothed": 20645.0,
- "new_tests_smoothed_per_thousand": 2.087,
- "tests_per_case": 168.236,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-05",
- "total_cases": 1505.0,
- "new_cases": 241.0,
- "new_cases_smoothed": 148.143,
- "total_deaths": 10.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 152.168,
- "new_cases_per_million": 24.367,
- "new_cases_smoothed_per_million": 14.978,
- "total_deaths_per_million": 1.011,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.116,
- "new_tests": 58348.0,
- "total_tests": 392613.0,
- "total_tests_per_thousand": 39.696,
- "new_tests_per_thousand": 5.899,
- "new_tests_smoothed": 27681.0,
- "new_tests_smoothed_per_thousand": 2.799,
- "tests_per_case": 186.85299999999998,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-06",
- "total_cases": 1783.0,
- "new_cases": 278.0,
- "new_cases_smoothed": 173.286,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 180.276,
- "new_cases_per_million": 28.108,
- "new_cases_smoothed_per_million": 17.521,
- "total_deaths_per_million": 1.011,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.101,
- "new_tests": 39870.0,
- "total_tests": 432483.0,
- "total_tests_per_thousand": 43.728,
- "new_tests_per_thousand": 4.031,
- "new_tests_smoothed": 32277.0,
- "new_tests_smoothed_per_thousand": 3.263,
- "tests_per_case": 186.265,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-07",
- "total_cases": 2045.0,
- "new_cases": 262.0,
- "new_cases_smoothed": 204.857,
- "total_deaths": 11.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 206.766,
- "new_cases_per_million": 26.49,
- "new_cases_smoothed_per_million": 20.713,
- "total_deaths_per_million": 1.112,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.087,
- "new_tests": 58294.0,
- "total_tests": 490777.0,
- "total_tests_per_thousand": 49.622,
- "new_tests_per_thousand": 5.894,
- "new_tests_smoothed": 38682.0,
- "new_tests_smoothed_per_thousand": 3.911,
- "tests_per_case": 188.824,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-08",
- "total_cases": 2313.0,
- "new_cases": 268.0,
- "new_cases_smoothed": 235.571,
- "total_deaths": 12.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 233.863,
- "new_cases_per_million": 27.097,
- "new_cases_smoothed_per_million": 23.818,
- "total_deaths_per_million": 1.213,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.087,
- "new_tests": 48418.0,
- "total_tests": 539195.0,
- "total_tests_per_thousand": 54.517,
- "new_tests_per_thousand": 4.895,
- "new_tests_smoothed": 42674.0,
- "new_tests_smoothed_per_thousand": 4.315,
- "tests_per_case": 181.15099999999998,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-09",
- "total_cases": 2597.0,
- "new_cases": 284.0,
- "new_cases_smoothed": 254.714,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 262.578,
- "new_cases_per_million": 28.715,
- "new_cases_smoothed_per_million": 25.754,
- "total_deaths_per_million": 1.213,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.058,
- "new_tests": 40000.0,
- "total_tests": 579195.0,
- "total_tests_per_thousand": 58.561,
- "new_tests_per_thousand": 4.044,
- "new_tests_smoothed": 45183.0,
- "new_tests_smoothed_per_thousand": 4.568,
- "tests_per_case": 177.387,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-10",
- "total_cases": 2910.0,
- "new_cases": 313.0,
- "new_cases_smoothed": 269.429,
- "total_deaths": 14.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 294.225,
- "new_cases_per_million": 31.647,
- "new_cases_smoothed_per_million": 27.241,
- "total_deaths_per_million": 1.416,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.087,
- "new_tests": 49000.0,
- "total_tests": 628195.0,
- "total_tests_per_thousand": 63.516,
- "new_tests_per_thousand": 4.954,
- "new_tests_smoothed": 47697.0,
- "new_tests_smoothed_per_thousand": 4.823,
- "tests_per_case": 177.03,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-11",
- "total_cases": 3260.0,
- "new_cases": 350.0,
- "new_cases_smoothed": 285.143,
- "total_deaths": 16.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 329.613,
- "new_cases_per_million": 35.388,
- "new_cases_smoothed_per_million": 28.83,
- "total_deaths_per_million": 1.618,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.101,
- "new_tests": 20000.0,
- "total_tests": 648195.0,
- "total_tests_per_thousand": 65.538,
- "new_tests_per_thousand": 2.022,
- "new_tests_smoothed": 44847.0,
- "new_tests_smoothed_per_thousand": 4.534,
- "tests_per_case": 157.279,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-12",
- "total_cases": 3616.0,
- "new_cases": 356.0,
- "new_cases_smoothed": 301.571,
- "total_deaths": 20.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 365.607,
- "new_cases_per_million": 35.994,
- "new_cases_smoothed_per_million": 30.491,
- "total_deaths_per_million": 2.022,
- "new_deaths_per_million": 0.404,
- "new_deaths_smoothed_per_million": 0.144,
- "new_tests": 22000.0,
- "total_tests": 670195.0,
- "total_tests_per_thousand": 67.762,
- "new_tests_per_thousand": 2.224,
- "new_tests_smoothed": 39655.0,
- "new_tests_smoothed_per_thousand": 4.009,
- "tests_per_case": 131.495,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-13",
- "total_cases": 3982.0,
- "new_cases": 366.0,
- "new_cases_smoothed": 314.143,
- "total_deaths": 22.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 402.613,
- "new_cases_per_million": 37.006,
- "new_cases_smoothed_per_million": 31.762,
- "total_deaths_per_million": 2.224,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.173,
- "new_tests": 23380.0,
- "total_tests": 693575.0,
- "total_tests_per_thousand": 70.126,
- "new_tests_per_thousand": 2.364,
- "new_tests_smoothed": 37299.0,
- "new_tests_smoothed_per_thousand": 3.771,
- "tests_per_case": 118.73299999999999,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-14",
- "total_cases": 4359.0,
- "new_cases": 377.0,
- "new_cases_smoothed": 330.571,
- "total_deaths": 25.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 440.73,
- "new_cases_per_million": 38.118,
- "new_cases_smoothed_per_million": 33.423,
- "total_deaths_per_million": 2.528,
- "new_deaths_per_million": 0.303,
- "new_deaths_smoothed_per_million": 0.202,
- "new_tests": 32000.0,
- "total_tests": 725575.0,
- "total_tests_per_thousand": 73.362,
- "new_tests_per_thousand": 3.235,
- "new_tests_smoothed": 33543.0,
- "new_tests_smoothed_per_thousand": 3.391,
- "tests_per_case": 101.47,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-15",
- "total_cases": 4749.0,
- "new_cases": 390.0,
- "new_cases_smoothed": 348.0,
- "total_deaths": 28.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 480.163,
- "new_cases_per_million": 39.432,
- "new_cases_smoothed_per_million": 35.186,
- "total_deaths_per_million": 2.831,
- "new_deaths_per_million": 0.303,
- "new_deaths_smoothed_per_million": 0.231,
- "new_tests": 41425.0,
- "total_tests": 767000.0,
- "total_tests_per_thousand": 77.55,
- "new_tests_per_thousand": 4.188,
- "new_tests_smoothed": 32544.0,
- "new_tests_smoothed_per_thousand": 3.29,
- "tests_per_case": 93.51700000000001,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-16",
- "total_cases": 5158.0,
- "new_cases": 409.0,
- "new_cases_smoothed": 365.857,
- "total_deaths": 33.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 521.516,
- "new_cases_per_million": 41.353,
- "new_cases_smoothed_per_million": 36.991,
- "total_deaths_per_million": 3.337,
- "new_deaths_per_million": 0.506,
- "new_deaths_smoothed_per_million": 0.303,
- "new_tests": 25000.0,
- "total_tests": 792000.0,
- "total_tests_per_thousand": 80.078,
- "new_tests_per_thousand": 2.528,
- "new_tests_smoothed": 30401.0,
- "new_tests_smoothed_per_thousand": 3.074,
- "tests_per_case": 83.095,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-17",
- "total_cases": 5593.0,
- "new_cases": 435.0,
- "new_cases_smoothed": 383.286,
- "total_deaths": 35.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 565.498,
- "new_cases_per_million": 43.982,
- "new_cases_smoothed_per_million": 38.753,
- "total_deaths_per_million": 3.539,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.303,
- "new_tests": 24000.0,
- "total_tests": 816000.0,
- "total_tests_per_thousand": 82.504,
- "new_tests_per_thousand": 2.427,
- "new_tests_smoothed": 26829.0,
- "new_tests_smoothed_per_thousand": 2.713,
- "tests_per_case": 69.997,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 87.04
- },
- {
- "date": "2020-04-18",
- "total_cases": 6045.0,
- "new_cases": 452.0,
- "new_cases_smoothed": 397.857,
- "total_deaths": 37.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 611.199,
- "new_cases_per_million": 45.701,
- "new_cases_smoothed_per_million": 40.227,
- "total_deaths_per_million": 3.741,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.303,
- "new_tests": 21806.0,
- "total_tests": 837806.0,
- "total_tests_per_thousand": 84.709,
- "new_tests_per_thousand": 2.205,
- "new_tests_smoothed": 27087.0,
- "new_tests_smoothed_per_thousand": 2.739,
- "tests_per_case": 68.082,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 87.04
- },
- {
- "date": "2020-04-19",
- "total_cases": 6490.0,
- "new_cases": 445.0,
- "new_cases_smoothed": 410.571,
- "total_deaths": 37.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 656.192,
- "new_cases_per_million": 44.993,
- "new_cases_smoothed_per_million": 41.512,
- "total_deaths_per_million": 3.741,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.246,
- "new_tests": 25795.0,
- "total_tests": 863601.0,
- "total_tests_per_thousand": 87.317,
- "new_tests_per_thousand": 2.608,
- "new_tests_smoothed": 27629.0,
- "new_tests_smoothed_per_thousand": 2.794,
- "tests_per_case": 67.294,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 87.04
- },
- {
- "date": "2020-04-20",
- "total_cases": 6943.0,
- "new_cases": 453.0,
- "new_cases_smoothed": 423.0,
- "total_deaths": 41.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 701.994,
- "new_cases_per_million": 45.802,
- "new_cases_smoothed_per_million": 42.769,
- "total_deaths_per_million": 4.145,
- "new_deaths_per_million": 0.404,
- "new_deaths_smoothed_per_million": 0.274,
- "new_tests": 22807.0,
- "total_tests": 886408.0,
- "total_tests_per_thousand": 89.623,
- "new_tests_per_thousand": 2.306,
- "new_tests_smoothed": 27548.0,
- "new_tests_smoothed_per_thousand": 2.785,
- "tests_per_case": 65.125,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 87.04
- },
- {
- "date": "2020-04-21",
- "total_cases": 7401.0,
- "new_cases": 458.0,
- "new_cases_smoothed": 434.571,
- "total_deaths": 43.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 748.301,
- "new_cases_per_million": 46.308,
- "new_cases_smoothed_per_million": 43.939,
- "total_deaths_per_million": 4.348,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.26,
- "new_tests": 20165.0,
- "total_tests": 906573.0,
- "total_tests_per_thousand": 91.662,
- "new_tests_per_thousand": 2.039,
- "new_tests_smoothed": 25857.0,
- "new_tests_smoothed_per_thousand": 2.614,
- "tests_per_case": 59.5,
- "positive_rate": 0.017,
- "tests_units": "tests performed",
- "stringency_index": 87.04
- },
- {
- "date": "2020-04-22",
- "total_cases": 7865.0,
- "new_cases": 464.0,
- "new_cases_smoothed": 445.143,
- "total_deaths": 46.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 795.216,
- "new_cases_per_million": 46.914,
- "new_cases_smoothed_per_million": 45.008,
- "total_deaths_per_million": 4.651,
- "new_deaths_per_million": 0.303,
- "new_deaths_smoothed_per_million": 0.26,
- "new_tests": 23053.0,
- "total_tests": 929626.0,
- "total_tests_per_thousand": 93.993,
- "new_tests_per_thousand": 2.331,
- "new_tests_smoothed": 23232.0,
- "new_tests_smoothed_per_thousand": 2.349,
- "tests_per_case": 52.19,
- "positive_rate": 0.019,
- "tests_units": "tests performed",
- "stringency_index": 87.04
- },
- {
- "date": "2020-04-23",
- "total_cases": 8322.0,
- "new_cases": 457.0,
- "new_cases_smoothed": 452.0,
- "total_deaths": 52.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 841.422,
- "new_cases_per_million": 46.206,
- "new_cases_smoothed_per_million": 45.701,
- "total_deaths_per_million": 5.258,
- "new_deaths_per_million": 0.607,
- "new_deaths_smoothed_per_million": 0.274,
- "new_tests": 25506.0,
- "total_tests": 955132.0,
- "total_tests_per_thousand": 96.572,
- "new_tests_per_thousand": 2.579,
- "new_tests_smoothed": 23305.0,
- "new_tests_smoothed_per_thousand": 2.356,
- "tests_per_case": 51.56,
- "positive_rate": 0.019,
- "tests_units": "tests performed",
- "stringency_index": 87.04
- },
- {
- "date": "2020-04-24",
- "total_cases": 8812.0,
- "new_cases": 490.0,
- "new_cases_smoothed": 459.857,
- "total_deaths": 56.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 890.965,
- "new_cases_per_million": 49.543,
- "new_cases_smoothed_per_million": 46.495,
- "total_deaths_per_million": 5.662,
- "new_deaths_per_million": 0.404,
- "new_deaths_smoothed_per_million": 0.303,
- "new_tests": 26274.0,
- "total_tests": 981406.0,
- "total_tests_per_thousand": 99.228,
- "new_tests_per_thousand": 2.657,
- "new_tests_smoothed": 23629.0,
- "new_tests_smoothed_per_thousand": 2.389,
- "tests_per_case": 51.383,
- "positive_rate": 0.019,
- "tests_units": "tests performed",
- "stringency_index": 87.04
- },
- {
- "date": "2020-04-25",
- "total_cases": 9309.0,
- "new_cases": 497.0,
- "new_cases_smoothed": 466.286,
- "total_deaths": 64.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 941.216,
- "new_cases_per_million": 50.251,
- "new_cases_smoothed_per_million": 47.145,
- "total_deaths_per_million": 6.471,
- "new_deaths_per_million": 0.809,
- "new_deaths_smoothed_per_million": 0.39,
- "new_tests": 21984.0,
- "total_tests": 1003390.0,
- "total_tests_per_thousand": 101.451,
- "new_tests_per_thousand": 2.223,
- "new_tests_smoothed": 23655.0,
- "new_tests_smoothed_per_thousand": 2.392,
- "tests_per_case": 50.731,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 87.04
- },
- {
- "date": "2020-04-26",
- "total_cases": 9813.0,
- "new_cases": 504.0,
- "new_cases_smoothed": 474.714,
- "total_deaths": 71.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 992.174,
- "new_cases_per_million": 50.959,
- "new_cases_smoothed_per_million": 47.997,
- "total_deaths_per_million": 7.179,
- "new_deaths_per_million": 0.708,
- "new_deaths_smoothed_per_million": 0.491,
- "new_tests": 25086.0,
- "total_tests": 1028476.0,
- "total_tests_per_thousand": 103.987,
- "new_tests_per_thousand": 2.536,
- "new_tests_smoothed": 23554.0,
- "new_tests_smoothed_per_thousand": 2.382,
- "tests_per_case": 49.617,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 87.04
- },
- {
- "date": "2020-04-27",
- "total_cases": 10349.0,
- "new_cases": 536.0,
- "new_cases_smoothed": 486.571,
- "total_deaths": 76.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 1046.368,
- "new_cases_per_million": 54.194,
- "new_cases_smoothed_per_million": 49.196,
- "total_deaths_per_million": 7.684,
- "new_deaths_per_million": 0.506,
- "new_deaths_smoothed_per_million": 0.506,
- "new_tests": 26195.0,
- "total_tests": 1054671.0,
- "total_tests_per_thousand": 106.636,
- "new_tests_per_thousand": 2.649,
- "new_tests_smoothed": 24038.0,
- "new_tests_smoothed_per_thousand": 2.43,
- "tests_per_case": 49.403,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 87.04
- },
- {
- "date": "2020-04-28",
- "total_cases": 10839.0,
- "new_cases": 490.0,
- "new_cases_smoothed": 491.143,
- "total_deaths": 82.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 1095.911,
- "new_cases_per_million": 49.543,
- "new_cases_smoothed_per_million": 49.659,
- "total_deaths_per_million": 8.291,
- "new_deaths_per_million": 0.607,
- "new_deaths_smoothed_per_million": 0.563,
- "new_tests": 27905.0,
- "total_tests": 1082576.0,
- "total_tests_per_thousand": 109.457,
- "new_tests_per_thousand": 2.821,
- "new_tests_smoothed": 25143.0,
- "new_tests_smoothed_per_thousand": 2.542,
- "tests_per_case": 51.193000000000005,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 87.04
- },
- {
- "date": "2020-04-29",
- "total_cases": 11380.0,
- "new_cases": 541.0,
- "new_cases_smoothed": 502.143,
- "total_deaths": 89.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 6.143,
- "total_cases_per_million": 1150.611,
- "new_cases_per_million": 54.7,
- "new_cases_smoothed_per_million": 50.771,
- "total_deaths_per_million": 8.999,
- "new_deaths_per_million": 0.708,
- "new_deaths_smoothed_per_million": 0.621,
- "new_tests": 26524.0,
- "total_tests": 1109100.0,
- "total_tests_per_thousand": 112.139,
- "new_tests_per_thousand": 2.682,
- "new_tests_smoothed": 25639.0,
- "new_tests_smoothed_per_thousand": 2.592,
- "tests_per_case": 51.059,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-30",
- "total_cases": 11929.0,
- "new_cases": 549.0,
- "new_cases_smoothed": 515.286,
- "total_deaths": 98.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 1206.119,
- "new_cases_per_million": 55.508,
- "new_cases_smoothed_per_million": 52.1,
- "total_deaths_per_million": 9.909,
- "new_deaths_per_million": 0.91,
- "new_deaths_smoothed_per_million": 0.664,
- "new_tests": 36266.0,
- "total_tests": 1145366.0,
- "total_tests_per_thousand": 115.806,
- "new_tests_per_thousand": 3.667,
- "new_tests_smoothed": 27176.0,
- "new_tests_smoothed_per_thousand": 2.748,
- "tests_per_case": 52.74,
- "positive_rate": 0.019,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-01",
- "total_cases": 12481.0,
- "new_cases": 552.0,
- "new_cases_smoothed": 524.143,
- "total_deaths": 105.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 7.0,
- "total_cases_per_million": 1261.931,
- "new_cases_per_million": 55.812,
- "new_cases_smoothed_per_million": 52.995,
- "total_deaths_per_million": 10.616,
- "new_deaths_per_million": 0.708,
- "new_deaths_smoothed_per_million": 0.708,
- "new_tests": 26677.0,
- "total_tests": 1172043.0,
- "total_tests_per_thousand": 118.503,
- "new_tests_per_thousand": 2.697,
- "new_tests_smoothed": 27234.0,
- "new_tests_smoothed_per_thousand": 2.754,
- "tests_per_case": 51.958999999999996,
- "positive_rate": 0.019,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-02",
- "total_cases": 13038.0,
- "new_cases": 557.0,
- "new_cases_smoothed": 532.714,
- "total_deaths": 111.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 6.714,
- "total_cases_per_million": 1318.248,
- "new_cases_per_million": 56.317,
- "new_cases_smoothed_per_million": 53.862,
- "total_deaths_per_million": 11.223,
- "new_deaths_per_million": 0.607,
- "new_deaths_smoothed_per_million": 0.679,
- "new_tests": 18428.0,
- "total_tests": 1190471.0,
- "total_tests_per_thousand": 120.366,
- "new_tests_per_thousand": 1.863,
- "new_tests_smoothed": 26726.0,
- "new_tests_smoothed_per_thousand": 2.702,
- "tests_per_case": 50.169,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 77.78
- },
- {
- "date": "2020-05-03",
- "total_cases": 13599.0,
- "new_cases": 561.0,
- "new_cases_smoothed": 540.857,
- "total_deaths": 119.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 6.857,
- "total_cases_per_million": 1374.97,
- "new_cases_per_million": 56.722,
- "new_cases_smoothed_per_million": 54.685,
- "total_deaths_per_million": 12.032,
- "new_deaths_per_million": 0.809,
- "new_deaths_smoothed_per_million": 0.693,
- "new_tests": 28039.0,
- "total_tests": 1218510.0,
- "total_tests_per_thousand": 123.201,
- "new_tests_per_thousand": 2.835,
- "new_tests_smoothed": 27148.0,
- "new_tests_smoothed_per_thousand": 2.745,
- "tests_per_case": 50.193999999999996,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 77.78
- },
- {
- "date": "2020-05-04",
- "total_cases": 14163.0,
- "new_cases": 564.0,
- "new_cases_smoothed": 544.857,
- "total_deaths": 126.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 7.143,
- "total_cases_per_million": 1431.995,
- "new_cases_per_million": 57.025,
- "new_cases_smoothed_per_million": 55.089,
- "total_deaths_per_million": 12.74,
- "new_deaths_per_million": 0.708,
- "new_deaths_smoothed_per_million": 0.722,
- "new_tests": 25231.0,
- "total_tests": 1243741.0,
- "total_tests_per_thousand": 125.752,
- "new_tests_per_thousand": 2.551,
- "new_tests_smoothed": 27010.0,
- "new_tests_smoothed_per_thousand": 2.731,
- "tests_per_case": 49.573,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 77.78
- },
- {
- "date": "2020-05-05",
- "total_cases": 14730.0,
- "new_cases": 567.0,
- "new_cases_smoothed": 555.857,
- "total_deaths": 137.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 7.857,
- "total_cases_per_million": 1489.323,
- "new_cases_per_million": 57.328,
- "new_cases_smoothed_per_million": 56.202,
- "total_deaths_per_million": 13.852,
- "new_deaths_per_million": 1.112,
- "new_deaths_smoothed_per_million": 0.794,
- "new_tests": 33994.0,
- "total_tests": 1277735.0,
- "total_tests_per_thousand": 129.189,
- "new_tests_per_thousand": 3.437,
- "new_tests_smoothed": 27880.0,
- "new_tests_smoothed_per_thousand": 2.819,
- "tests_per_case": 50.157,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 77.78
- },
- {
- "date": "2020-05-06",
- "total_cases": 15192.0,
- "new_cases": 462.0,
- "new_cases_smoothed": 544.571,
- "total_deaths": 146.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 1536.035,
- "new_cases_per_million": 46.712,
- "new_cases_smoothed_per_million": 55.061,
- "total_deaths_per_million": 14.762,
- "new_deaths_per_million": 0.91,
- "new_deaths_smoothed_per_million": 0.823,
- "new_tests": 41134.0,
- "total_tests": 1318869.0,
- "total_tests_per_thousand": 133.348,
- "new_tests_per_thousand": 4.159,
- "new_tests_smoothed": 29967.0,
- "new_tests_smoothed_per_thousand": 3.03,
- "tests_per_case": 55.028999999999996,
- "positive_rate": 0.018000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-07",
- "total_cases": 15738.0,
- "new_cases": 546.0,
- "new_cases_smoothed": 544.143,
- "total_deaths": 157.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 8.429,
- "total_cases_per_million": 1591.24,
- "new_cases_per_million": 55.205,
- "new_cases_smoothed_per_million": 55.017,
- "total_deaths_per_million": 15.874,
- "new_deaths_per_million": 1.112,
- "new_deaths_smoothed_per_million": 0.852,
- "new_tests": 33153.0,
- "total_tests": 1352022.0,
- "total_tests_per_thousand": 136.7,
- "new_tests_per_thousand": 3.352,
- "new_tests_smoothed": 29522.0,
- "new_tests_smoothed_per_thousand": 2.985,
- "tests_per_case": 54.254,
- "positive_rate": 0.018000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-08",
- "total_cases": 16240.0,
- "new_cases": 502.0,
- "new_cases_smoothed": 537.0,
- "total_deaths": 165.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 1641.996,
- "new_cases_per_million": 50.756,
- "new_cases_smoothed_per_million": 54.295,
- "total_deaths_per_million": 16.683,
- "new_deaths_per_million": 0.809,
- "new_deaths_smoothed_per_million": 0.867,
- "new_tests": 29866.0,
- "total_tests": 1381888.0,
- "total_tests_per_thousand": 139.72,
- "new_tests_per_thousand": 3.02,
- "new_tests_smoothed": 29978.0,
- "new_tests_smoothed_per_thousand": 3.031,
- "tests_per_case": 55.825,
- "positive_rate": 0.018000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-09",
- "total_cases": 16793.0,
- "new_cases": 553.0,
- "new_cases_smoothed": 536.429,
- "total_deaths": 174.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 9.0,
- "total_cases_per_million": 1697.909,
- "new_cases_per_million": 55.913,
- "new_cases_smoothed_per_million": 54.237,
- "total_deaths_per_million": 17.593,
- "new_deaths_per_million": 0.91,
- "new_deaths_smoothed_per_million": 0.91,
- "new_tests": 26763.0,
- "total_tests": 1408651.0,
- "total_tests_per_thousand": 142.426,
- "new_tests_per_thousand": 2.706,
- "new_tests_smoothed": 31169.0,
- "new_tests_smoothed_per_thousand": 3.151,
- "tests_per_case": 58.105,
- "positive_rate": 0.017,
- "tests_units": "tests performed",
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-10",
- "total_cases": 17417.0,
- "new_cases": 624.0,
- "new_cases_smoothed": 545.429,
- "total_deaths": 185.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 9.429,
- "total_cases_per_million": 1761.001,
- "new_cases_per_million": 63.091,
- "new_cases_smoothed_per_million": 55.147,
- "total_deaths_per_million": 18.705,
- "new_deaths_per_million": 1.112,
- "new_deaths_smoothed_per_million": 0.953,
- "new_tests": 32597.0,
- "total_tests": 1441248.0,
- "total_tests_per_thousand": 145.722,
- "new_tests_per_thousand": 3.296,
- "new_tests_smoothed": 31820.0,
- "new_tests_smoothed_per_thousand": 3.217,
- "tests_per_case": 58.339,
- "positive_rate": 0.017,
- "tests_units": "tests performed",
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-11",
- "total_cases": 18198.0,
- "new_cases": 781.0,
- "new_cases_smoothed": 576.429,
- "total_deaths": 198.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 10.286,
- "total_cases_per_million": 1839.966,
- "new_cases_per_million": 78.965,
- "new_cases_smoothed_per_million": 58.282,
- "total_deaths_per_million": 20.019,
- "new_deaths_per_million": 1.314,
- "new_deaths_smoothed_per_million": 1.04,
- "new_tests": 34869.0,
- "total_tests": 1476117.0,
- "total_tests_per_thousand": 149.247,
- "new_tests_per_thousand": 3.526,
- "new_tests_smoothed": 33197.0,
- "new_tests_smoothed_per_thousand": 3.356,
- "tests_per_case": 57.591,
- "positive_rate": 0.017,
- "tests_units": "tests performed",
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-12",
- "total_cases": 18878.0,
- "new_cases": 680.0,
- "new_cases_smoothed": 592.571,
- "total_deaths": 201.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 9.143,
- "total_cases_per_million": 1908.72,
- "new_cases_per_million": 68.754,
- "new_cases_smoothed_per_million": 59.914,
- "total_deaths_per_million": 20.323,
- "new_deaths_per_million": 0.303,
- "new_deaths_smoothed_per_million": 0.924,
- "new_tests": 37112.0,
- "total_tests": 1513229.0,
- "total_tests_per_thousand": 153.0,
- "new_tests_per_thousand": 3.752,
- "new_tests_smoothed": 33642.0,
- "new_tests_smoothed_per_thousand": 3.401,
- "tests_per_case": 56.773,
- "positive_rate": 0.018000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-13",
- "total_cases": 19661.0,
- "new_cases": 783.0,
- "new_cases_smoothed": 638.429,
- "total_deaths": 203.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 1987.887,
- "new_cases_per_million": 79.168,
- "new_cases_smoothed_per_million": 64.55,
- "total_deaths_per_million": 20.525,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.823,
- "new_tests": 38477.0,
- "total_tests": 1551706.0,
- "total_tests_per_thousand": 156.89,
- "new_tests_per_thousand": 3.89,
- "new_tests_smoothed": 33262.0,
- "new_tests_smoothed_per_thousand": 3.363,
- "tests_per_case": 52.1,
- "positive_rate": 0.019,
- "tests_units": "tests performed",
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-14",
- "total_cases": 20386.0,
- "new_cases": 725.0,
- "new_cases_smoothed": 664.0,
- "total_deaths": 206.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 7.0,
- "total_cases_per_million": 2061.191,
- "new_cases_per_million": 73.303,
- "new_cases_smoothed_per_million": 67.136,
- "total_deaths_per_million": 20.828,
- "new_deaths_per_million": 0.303,
- "new_deaths_smoothed_per_million": 0.708,
- "new_tests": 35735.0,
- "total_tests": 1587441.0,
- "total_tests_per_thousand": 160.503,
- "new_tests_per_thousand": 3.613,
- "new_tests_smoothed": 33631.0,
- "new_tests_smoothed_per_thousand": 3.4,
- "tests_per_case": 50.648999999999994,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 74.07
- },
- {
- "date": "2020-05-15",
- "total_cases": 21084.0,
- "new_cases": 698.0,
- "new_cases_smoothed": 692.0,
- "total_deaths": 208.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 6.143,
- "total_cases_per_million": 2131.764,
- "new_cases_per_million": 70.573,
- "new_cases_smoothed_per_million": 69.967,
- "total_deaths_per_million": 21.03,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.621,
- "new_tests": 40720.0,
- "total_tests": 1628161.0,
- "total_tests_per_thousand": 164.62,
- "new_tests_per_thousand": 4.117,
- "new_tests_smoothed": 35182.0,
- "new_tests_smoothed_per_thousand": 3.557,
- "tests_per_case": 50.841,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 74.07
- },
- {
- "date": "2020-05-16",
- "total_cases": 21831.0,
- "new_cases": 747.0,
- "new_cases_smoothed": 719.714,
- "total_deaths": 210.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 2207.292,
- "new_cases_per_million": 75.528,
- "new_cases_smoothed_per_million": 72.769,
- "total_deaths_per_million": 21.233,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.52,
- "new_tests": 37844.0,
- "total_tests": 1666005.0,
- "total_tests_per_thousand": 168.447,
- "new_tests_per_thousand": 3.826,
- "new_tests_smoothed": 36765.0,
- "new_tests_smoothed_per_thousand": 3.717,
- "tests_per_case": 51.083,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 74.07
- },
- {
- "date": "2020-05-17",
- "total_cases": 22627.0,
- "new_cases": 796.0,
- "new_cases_smoothed": 744.286,
- "total_deaths": 214.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 2287.774,
- "new_cases_per_million": 80.482,
- "new_cases_smoothed_per_million": 75.253,
- "total_deaths_per_million": 21.637,
- "new_deaths_per_million": 0.404,
- "new_deaths_smoothed_per_million": 0.419,
- "new_tests": 38904.0,
- "total_tests": 1704909.0,
- "total_tests_per_thousand": 172.38,
- "new_tests_per_thousand": 3.934,
- "new_tests_smoothed": 37666.0,
- "new_tests_smoothed_per_thousand": 3.808,
- "tests_per_case": 50.607,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 74.07
- },
- {
- "date": "2020-05-18",
- "total_cases": 23358.0,
- "new_cases": 731.0,
- "new_cases_smoothed": 737.143,
- "total_deaths": 220.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 2361.684,
- "new_cases_per_million": 73.91,
- "new_cases_smoothed_per_million": 74.531,
- "total_deaths_per_million": 22.244,
- "new_deaths_per_million": 0.607,
- "new_deaths_smoothed_per_million": 0.318,
- "new_tests": 43732.0,
- "total_tests": 1748641.0,
- "total_tests_per_thousand": 176.802,
- "new_tests_per_thousand": 4.422,
- "new_tests_smoothed": 38932.0,
- "new_tests_smoothed_per_thousand": 3.936,
- "tests_per_case": 52.815,
- "positive_rate": 0.019,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-19",
- "total_cases": 24190.0,
- "new_cases": 832.0,
- "new_cases_smoothed": 758.857,
- "total_deaths": 224.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 2445.806,
- "new_cases_per_million": 84.122,
- "new_cases_smoothed_per_million": 76.727,
- "total_deaths_per_million": 22.648,
- "new_deaths_per_million": 0.404,
- "new_deaths_smoothed_per_million": 0.332,
- "new_tests": 43993.0,
- "total_tests": 1792634.0,
- "total_tests_per_thousand": 181.25,
- "new_tests_per_thousand": 4.448,
- "new_tests_smoothed": 39915.0,
- "new_tests_smoothed_per_thousand": 4.036,
- "tests_per_case": 52.599,
- "positive_rate": 0.019,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-20",
- "total_cases": 25063.0,
- "new_cases": 873.0,
- "new_cases_smoothed": 771.714,
- "total_deaths": 227.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 2534.073,
- "new_cases_per_million": 88.267,
- "new_cases_smoothed_per_million": 78.027,
- "total_deaths_per_million": 22.952,
- "new_deaths_per_million": 0.303,
- "new_deaths_smoothed_per_million": 0.347,
- "new_tests": 50377.0,
- "total_tests": 1843011.0,
- "total_tests_per_thousand": 186.343,
- "new_tests_per_thousand": 5.094,
- "new_tests_smoothed": 41615.0,
- "new_tests_smoothed_per_thousand": 4.208,
- "tests_per_case": 53.925,
- "positive_rate": 0.019,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-21",
- "total_cases": 26004.0,
- "new_cases": 941.0,
- "new_cases_smoothed": 802.571,
- "total_deaths": 233.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 2629.216,
- "new_cases_per_million": 95.143,
- "new_cases_smoothed_per_million": 81.147,
- "total_deaths_per_million": 23.558,
- "new_deaths_per_million": 0.607,
- "new_deaths_smoothed_per_million": 0.39,
- "new_tests": 39791.0,
- "total_tests": 1882802.0,
- "total_tests_per_thousand": 190.367,
- "new_tests_per_thousand": 4.023,
- "new_tests_smoothed": 42194.0,
- "new_tests_smoothed_per_thousand": 4.266,
- "tests_per_case": 52.574,
- "positive_rate": 0.019,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-22",
- "total_cases": 26898.0,
- "new_cases": 894.0,
- "new_cases_smoothed": 830.571,
- "total_deaths": 237.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 2719.607,
- "new_cases_per_million": 90.391,
- "new_cases_smoothed_per_million": 83.978,
- "total_deaths_per_million": 23.963,
- "new_deaths_per_million": 0.404,
- "new_deaths_smoothed_per_million": 0.419,
- "new_tests": 35686.0,
- "total_tests": 1918488.0,
- "total_tests_per_thousand": 193.975,
- "new_tests_per_thousand": 3.608,
- "new_tests_smoothed": 41475.0,
- "new_tests_smoothed_per_thousand": 4.193,
- "tests_per_case": 49.93600000000001,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-23",
- "total_cases": 27892.0,
- "new_cases": 994.0,
- "new_cases_smoothed": 865.857,
- "total_deaths": 241.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 2820.108,
- "new_cases_per_million": 100.501,
- "new_cases_smoothed_per_million": 87.545,
- "total_deaths_per_million": 24.367,
- "new_deaths_per_million": 0.404,
- "new_deaths_smoothed_per_million": 0.448,
- "new_tests": 41202.0,
- "total_tests": 1959690.0,
- "total_tests_per_thousand": 198.141,
- "new_tests_per_thousand": 4.166,
- "new_tests_smoothed": 41955.0,
- "new_tests_smoothed_per_thousand": 4.242,
- "tests_per_case": 48.455,
- "positive_rate": 0.021,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-24",
- "total_cases": 28704.0,
- "new_cases": 812.0,
- "new_cases_smoothed": 868.143,
- "total_deaths": 244.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 2902.208,
- "new_cases_per_million": 82.1,
- "new_cases_smoothed_per_million": 87.776,
- "total_deaths_per_million": 24.67,
- "new_deaths_per_million": 0.303,
- "new_deaths_smoothed_per_million": 0.433,
- "new_tests": 28282.0,
- "total_tests": 1987972.0,
- "total_tests_per_thousand": 201.0,
- "new_tests_per_thousand": 2.86,
- "new_tests_smoothed": 40438.0,
- "new_tests_smoothed_per_thousand": 4.089,
- "tests_per_case": 46.58,
- "positive_rate": 0.021,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-25",
- "total_cases": 29485.0,
- "new_cases": 781.0,
- "new_cases_smoothed": 875.286,
- "total_deaths": 245.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 2981.174,
- "new_cases_per_million": 78.965,
- "new_cases_smoothed_per_million": 88.499,
- "total_deaths_per_million": 24.771,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.361,
- "new_tests": 27540.0,
- "total_tests": 2015512.0,
- "total_tests_per_thousand": 203.785,
- "new_tests_per_thousand": 2.785,
- "new_tests_smoothed": 38124.0,
- "new_tests_smoothed_per_thousand": 3.855,
- "tests_per_case": 43.556000000000004,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-26",
- "total_cases": 30307.0,
- "new_cases": 822.0,
- "new_cases_smoothed": 873.857,
- "total_deaths": 248.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 3064.285,
- "new_cases_per_million": 83.111,
- "new_cases_smoothed_per_million": 88.354,
- "total_deaths_per_million": 25.075,
- "new_deaths_per_million": 0.303,
- "new_deaths_smoothed_per_million": 0.347,
- "new_tests": 38628.0,
- "total_tests": 2054140.0,
- "total_tests_per_thousand": 207.69,
- "new_tests_per_thousand": 3.906,
- "new_tests_smoothed": 37358.0,
- "new_tests_smoothed_per_thousand": 3.777,
- "tests_per_case": 42.751000000000005,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-27",
- "total_cases": 31086.0,
- "new_cases": 779.0,
- "new_cases_smoothed": 860.429,
- "total_deaths": 253.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 3143.048,
- "new_cases_per_million": 78.763,
- "new_cases_smoothed_per_million": 86.996,
- "total_deaths_per_million": 25.58,
- "new_deaths_per_million": 0.506,
- "new_deaths_smoothed_per_million": 0.376,
- "new_tests": 36131.0,
- "total_tests": 2090271.0,
- "total_tests_per_thousand": 211.343,
- "new_tests_per_thousand": 3.653,
- "new_tests_smoothed": 35323.0,
- "new_tests_smoothed_per_thousand": 3.571,
- "tests_per_case": 41.053000000000004,
- "positive_rate": 0.024,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-28",
- "total_cases": 31969.0,
- "new_cases": 883.0,
- "new_cases_smoothed": 852.143,
- "total_deaths": 255.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 3232.326,
- "new_cases_per_million": 89.278,
- "new_cases_smoothed_per_million": 86.159,
- "total_deaths_per_million": 25.783,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.318,
- "new_tests": 42624.0,
- "total_tests": 2132895.0,
- "total_tests_per_thousand": 215.653,
- "new_tests_per_thousand": 4.31,
- "new_tests_smoothed": 35728.0,
- "new_tests_smoothed_per_thousand": 3.612,
- "tests_per_case": 41.927,
- "positive_rate": 0.024,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-29",
- "total_cases": 32532.0,
- "new_cases": 563.0,
- "new_cases_smoothed": 804.857,
- "total_deaths": 258.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 3289.25,
- "new_cases_per_million": 56.924,
- "new_cases_smoothed_per_million": 81.378,
- "total_deaths_per_million": 26.086,
- "new_deaths_per_million": 0.303,
- "new_deaths_smoothed_per_million": 0.303,
- "new_tests": 37153.0,
- "total_tests": 2170048.0,
- "total_tests_per_thousand": 219.41,
- "new_tests_per_thousand": 3.756,
- "new_tests_smoothed": 35937.0,
- "new_tests_smoothed_per_thousand": 3.634,
- "tests_per_case": 44.65,
- "positive_rate": 0.022000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-30",
- "total_cases": 33170.0,
- "new_cases": 638.0,
- "new_cases_smoothed": 754.0,
- "total_deaths": 260.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 3353.757,
- "new_cases_per_million": 64.507,
- "new_cases_smoothed_per_million": 76.236,
- "total_deaths_per_million": 26.288,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.274,
- "new_tests": 30147.0,
- "total_tests": 2200195.0,
- "total_tests_per_thousand": 222.458,
- "new_tests_per_thousand": 3.048,
- "new_tests_smoothed": 34358.0,
- "new_tests_smoothed_per_thousand": 3.474,
- "tests_per_case": 45.568000000000005,
- "positive_rate": 0.022000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-31",
- "total_cases": 33896.0,
- "new_cases": 726.0,
- "new_cases_smoothed": 741.714,
- "total_deaths": 262.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 3427.162,
- "new_cases_per_million": 73.405,
- "new_cases_smoothed_per_million": 74.993,
- "total_deaths_per_million": 26.49,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.26,
- "new_tests": 35037.0,
- "total_tests": 2235232.0,
- "total_tests_per_thousand": 226.0,
- "new_tests_per_thousand": 3.543,
- "new_tests_smoothed": 35323.0,
- "new_tests_smoothed_per_thousand": 3.571,
- "tests_per_case": 47.623000000000005,
- "positive_rate": 0.021,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-01",
- "total_cases": 34557.0,
- "new_cases": 661.0,
- "new_cases_smoothed": 724.571,
- "total_deaths": 264.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 3493.994,
- "new_cases_per_million": 66.832,
- "new_cases_smoothed_per_million": 73.26,
- "total_deaths_per_million": 26.693,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.274,
- "new_tests": 41762.0,
- "total_tests": 2276994.0,
- "total_tests_per_thousand": 230.223,
- "new_tests_per_thousand": 4.222,
- "new_tests_smoothed": 37355.0,
- "new_tests_smoothed_per_thousand": 3.777,
- "tests_per_case": 51.555,
- "positive_rate": 0.019,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-02",
- "total_cases": 35192.0,
- "new_cases": 635.0,
- "new_cases_smoothed": 697.857,
- "total_deaths": 266.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 3558.198,
- "new_cases_per_million": 64.204,
- "new_cases_smoothed_per_million": 70.559,
- "total_deaths_per_million": 26.895,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.26,
- "new_tests": 54823.0,
- "total_tests": 2331817.0,
- "total_tests_per_thousand": 235.766,
- "new_tests_per_thousand": 5.543,
- "new_tests_smoothed": 39668.0,
- "new_tests_smoothed_per_thousand": 4.011,
- "tests_per_case": 56.843,
- "positive_rate": 0.018000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-03",
- "total_cases": 35788.0,
- "new_cases": 596.0,
- "new_cases_smoothed": 671.714,
- "total_deaths": 269.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 3618.458,
- "new_cases_per_million": 60.26,
- "new_cases_smoothed_per_million": 67.916,
- "total_deaths_per_million": 27.198,
- "new_deaths_per_million": 0.303,
- "new_deaths_smoothed_per_million": 0.231,
- "new_tests": 44241.0,
- "total_tests": 2376058.0,
- "total_tests_per_thousand": 240.239,
- "new_tests_per_thousand": 4.473,
- "new_tests_smoothed": 40827.0,
- "new_tests_smoothed_per_thousand": 4.128,
- "tests_per_case": 60.78,
- "positive_rate": 0.016,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-04",
- "total_cases": 36359.0,
- "new_cases": 571.0,
- "new_cases_smoothed": 627.143,
- "total_deaths": 270.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 3676.191,
- "new_cases_per_million": 57.733,
- "new_cases_smoothed_per_million": 63.409,
- "total_deaths_per_million": 27.299,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.217,
- "new_tests": 52996.0,
- "total_tests": 2429054.0,
- "total_tests_per_thousand": 245.597,
- "new_tests_per_thousand": 5.358,
- "new_tests_smoothed": 42308.0,
- "new_tests_smoothed_per_thousand": 4.278,
- "tests_per_case": 67.462,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-05",
- "total_cases": 37018.0,
- "new_cases": 659.0,
- "new_cases_smoothed": 640.857,
- "total_deaths": 273.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 3742.821,
- "new_cases_per_million": 66.63,
- "new_cases_smoothed_per_million": 64.796,
- "total_deaths_per_million": 27.603,
- "new_deaths_per_million": 0.303,
- "new_deaths_smoothed_per_million": 0.217,
- "new_tests": 44201.0,
- "total_tests": 2473255.0,
- "total_tests_per_thousand": 250.066,
- "new_tests_per_thousand": 4.469,
- "new_tests_smoothed": 43315.0,
- "new_tests_smoothed_per_thousand": 4.379,
- "tests_per_case": 67.589,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-06",
- "total_cases": 37642.0,
- "new_cases": 624.0,
- "new_cases_smoothed": 638.857,
- "total_deaths": 274.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 3805.913,
- "new_cases_per_million": 63.091,
- "new_cases_smoothed_per_million": 64.594,
- "total_deaths_per_million": 27.704,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.202,
- "new_tests": 32679.0,
- "total_tests": 2505934.0,
- "total_tests_per_thousand": 253.37,
- "new_tests_per_thousand": 3.304,
- "new_tests_smoothed": 43677.0,
- "new_tests_smoothed_per_thousand": 4.416,
- "tests_per_case": 68.367,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-07",
- "total_cases": 38268.0,
- "new_cases": 626.0,
- "new_cases_smoothed": 624.571,
- "total_deaths": 275.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 3869.207,
- "new_cases_per_million": 63.294,
- "new_cases_smoothed_per_million": 63.149,
- "total_deaths_per_million": 27.805,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.188,
- "new_tests": 37640.0,
- "total_tests": 2543574.0,
- "total_tests_per_thousand": 257.176,
- "new_tests_per_thousand": 3.806,
- "new_tests_smoothed": 44049.0,
- "new_tests_smoothed_per_thousand": 4.454,
- "tests_per_case": 70.527,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-08",
- "total_cases": 38808.0,
- "new_cases": 540.0,
- "new_cases_smoothed": 607.286,
- "total_deaths": 276.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 3923.805,
- "new_cases_per_million": 54.598,
- "new_cases_smoothed_per_million": 61.402,
- "total_deaths_per_million": 27.906,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.173,
- "new_tests": 47201.0,
- "total_tests": 2590775.0,
- "total_tests_per_thousand": 261.948,
- "new_tests_per_thousand": 4.772,
- "new_tests_smoothed": 44826.0,
- "new_tests_smoothed_per_thousand": 4.532,
- "tests_per_case": 73.814,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-09",
- "total_cases": 39376.0,
- "new_cases": 568.0,
- "new_cases_smoothed": 597.714,
- "total_deaths": 281.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 3981.234,
- "new_cases_per_million": 57.429,
- "new_cases_smoothed_per_million": 60.434,
- "total_deaths_per_million": 28.411,
- "new_deaths_per_million": 0.506,
- "new_deaths_smoothed_per_million": 0.217,
- "new_tests": 45378.0,
- "total_tests": 2636153.0,
- "total_tests_per_thousand": 266.537,
- "new_tests_per_thousand": 4.588,
- "new_tests_smoothed": 43477.0,
- "new_tests_smoothed_per_thousand": 4.396,
- "tests_per_case": 72.73899999999999,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-10",
- "total_cases": 39904.0,
- "new_cases": 528.0,
- "new_cases_smoothed": 588.0,
- "total_deaths": 283.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 4034.619,
- "new_cases_per_million": 53.385,
- "new_cases_smoothed_per_million": 59.452,
- "total_deaths_per_million": 28.614,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.202,
- "new_tests": 44167.0,
- "total_tests": 2680320.0,
- "total_tests_per_thousand": 271.002,
- "new_tests_per_thousand": 4.466,
- "new_tests_smoothed": 43466.0,
- "new_tests_smoothed_per_thousand": 4.395,
- "tests_per_case": 73.922,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-11",
- "total_cases": 40507.0,
- "new_cases": 603.0,
- "new_cases_smoothed": 592.571,
- "total_deaths": 284.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 4095.588,
- "new_cases_per_million": 60.968,
- "new_cases_smoothed_per_million": 59.914,
- "total_deaths_per_million": 28.715,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.202,
- "new_tests": 40724.0,
- "total_tests": 2721044.0,
- "total_tests_per_thousand": 275.12,
- "new_tests_per_thousand": 4.118,
- "new_tests_smoothed": 41713.0,
- "new_tests_smoothed_per_thousand": 4.218,
- "tests_per_case": 70.393,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-12",
- "total_cases": 40986.0,
- "new_cases": 479.0,
- "new_cases_smoothed": 566.857,
- "total_deaths": 286.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 4144.018,
- "new_cases_per_million": 48.431,
- "new_cases_smoothed_per_million": 57.314,
- "total_deaths_per_million": 28.917,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.188,
- "new_tests": 43013.0,
- "total_tests": 2764057.0,
- "total_tests_per_thousand": 279.469,
- "new_tests_per_thousand": 4.349,
- "new_tests_smoothed": 41543.0,
- "new_tests_smoothed_per_thousand": 4.2,
- "tests_per_case": 73.28699999999999,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-13",
- "total_cases": 41499.0,
- "new_cases": 513.0,
- "new_cases_smoothed": 551.0,
- "total_deaths": 287.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 4195.887,
- "new_cases_per_million": 51.868,
- "new_cases_smoothed_per_million": 55.711,
- "total_deaths_per_million": 29.018,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.188,
- "new_tests": 27041.0,
- "total_tests": 2791098.0,
- "total_tests_per_thousand": 282.203,
- "new_tests_per_thousand": 2.734,
- "new_tests_smoothed": 40738.0,
- "new_tests_smoothed_per_thousand": 4.119,
- "tests_per_case": 73.935,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-14",
- "total_cases": 41990.0,
- "new_cases": 491.0,
- "new_cases_smoothed": 531.714,
- "total_deaths": 288.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 4245.531,
- "new_cases_per_million": 49.644,
- "new_cases_smoothed_per_million": 53.761,
- "total_deaths_per_million": 29.119,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.188,
- "new_tests": 38036.0,
- "total_tests": 2829134.0,
- "total_tests_per_thousand": 286.048,
- "new_tests_per_thousand": 3.846,
- "new_tests_smoothed": 40794.0,
- "new_tests_smoothed_per_thousand": 4.125,
- "tests_per_case": 76.722,
- "positive_rate": 0.013000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-15",
- "total_cases": 42294.0,
- "new_cases": 304.0,
- "new_cases_smoothed": 498.0,
- "total_deaths": 289.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 4276.268,
- "new_cases_per_million": 30.737,
- "new_cases_smoothed_per_million": 50.352,
- "total_deaths_per_million": 29.22,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.188,
- "new_tests": 39887.0,
- "total_tests": 2869021.0,
- "total_tests_per_thousand": 290.081,
- "new_tests_per_thousand": 4.033,
- "new_tests_smoothed": 39749.0,
- "new_tests_smoothed_per_thousand": 4.019,
- "tests_per_case": 79.817,
- "positive_rate": 0.013000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-16",
- "total_cases": 42636.0,
- "new_cases": 342.0,
- "new_cases_smoothed": 465.714,
- "total_deaths": 291.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 4310.847,
- "new_cases_per_million": 34.579,
- "new_cases_smoothed_per_million": 47.088,
- "total_deaths_per_million": 29.422,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.144,
- "new_tests": 40478.0,
- "total_tests": 2909499.0,
- "total_tests_per_thousand": 294.174,
- "new_tests_per_thousand": 4.093,
- "new_tests_smoothed": 39049.0,
- "new_tests_smoothed_per_thousand": 3.948,
- "tests_per_case": 83.848,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-17",
- "total_cases": 42982.0,
- "new_cases": 346.0,
- "new_cases_smoothed": 439.714,
- "total_deaths": 293.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 4345.83,
- "new_cases_per_million": 34.983,
- "new_cases_smoothed_per_million": 44.459,
- "total_deaths_per_million": 29.625,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.144,
- "new_tests": 38502.0,
- "total_tests": 2948001.0,
- "total_tests_per_thousand": 298.067,
- "new_tests_per_thousand": 3.893,
- "new_tests_smoothed": 38240.0,
- "new_tests_smoothed_per_thousand": 3.866,
- "tests_per_case": 86.96600000000001,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-18",
- "total_cases": 43364.0,
- "new_cases": 382.0,
- "new_cases_smoothed": 408.143,
- "total_deaths": 295.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 4384.454,
- "new_cases_per_million": 38.623,
- "new_cases_smoothed_per_million": 41.267,
- "total_deaths_per_million": 29.827,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.159,
- "new_tests": 34364.0,
- "total_tests": 2982365.0,
- "total_tests_per_thousand": 301.541,
- "new_tests_per_thousand": 3.474,
- "new_tests_smoothed": 37332.0,
- "new_tests_smoothed_per_thousand": 3.775,
- "tests_per_case": 91.46799999999999,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-19",
- "total_cases": 43752.0,
- "new_cases": 388.0,
- "new_cases_smoothed": 395.143,
- "total_deaths": 298.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 4423.684,
- "new_cases_per_million": 39.23,
- "new_cases_smoothed_per_million": 39.952,
- "total_deaths_per_million": 30.13,
- "new_deaths_per_million": 0.303,
- "new_deaths_smoothed_per_million": 0.173,
- "new_tests": 48524.0,
- "total_tests": 3030889.0,
- "total_tests_per_thousand": 306.448,
- "new_tests_per_thousand": 4.906,
- "new_tests_smoothed": 38119.0,
- "new_tests_smoothed_per_thousand": 3.854,
- "tests_per_case": 96.469,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-20",
- "total_cases": 44145.0,
- "new_cases": 393.0,
- "new_cases_smoothed": 378.0,
- "total_deaths": 300.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 4463.419,
- "new_cases_per_million": 39.736,
- "new_cases_smoothed_per_million": 38.219,
- "total_deaths_per_million": 30.332,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.188,
- "new_tests": 40876.0,
- "total_tests": 3071765.0,
- "total_tests_per_thousand": 310.58,
- "new_tests_per_thousand": 4.133,
- "new_tests_smoothed": 40095.0,
- "new_tests_smoothed_per_thousand": 4.054,
- "tests_per_case": 106.071,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-21",
- "total_cases": 44533.0,
- "new_cases": 388.0,
- "new_cases_smoothed": 363.286,
- "total_deaths": 301.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 4502.649,
- "new_cases_per_million": 39.23,
- "new_cases_smoothed_per_million": 36.731,
- "total_deaths_per_million": 30.434,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.188,
- "new_tests": 40956.0,
- "total_tests": 3112721.0,
- "total_tests_per_thousand": 314.721,
- "new_tests_per_thousand": 4.141,
- "new_tests_smoothed": 40512.0,
- "new_tests_smoothed_per_thousand": 4.096,
- "tests_per_case": 111.516,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-22",
- "total_cases": 44925.0,
- "new_cases": 392.0,
- "new_cases_smoothed": 375.857,
- "total_deaths": 302.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 4542.283,
- "new_cases_per_million": 39.634,
- "new_cases_smoothed_per_million": 38.002,
- "total_deaths_per_million": 30.535,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.188,
- "new_tests": 44291.0,
- "total_tests": 3157012.0,
- "total_tests_per_thousand": 319.2,
- "new_tests_per_thousand": 4.478,
- "new_tests_smoothed": 41142.0,
- "new_tests_smoothed_per_thousand": 4.16,
- "tests_per_case": 109.462,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-23",
- "total_cases": 45303.0,
- "new_cases": 378.0,
- "new_cases_smoothed": 381.0,
- "total_deaths": 303.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 4580.502,
- "new_cases_per_million": 38.219,
- "new_cases_smoothed_per_million": 38.522,
- "total_deaths_per_million": 30.636,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.173,
- "new_tests": 49650.0,
- "total_tests": 3206662.0,
- "total_tests_per_thousand": 324.22,
- "new_tests_per_thousand": 5.02,
- "new_tests_smoothed": 42452.0,
- "new_tests_smoothed_per_thousand": 4.292,
- "tests_per_case": 111.42299999999999,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-24",
- "total_cases": 45683.0,
- "new_cases": 380.0,
- "new_cases_smoothed": 385.857,
- "total_deaths": 305.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 4618.923,
- "new_cases_per_million": 38.421,
- "new_cases_smoothed_per_million": 39.013,
- "total_deaths_per_million": 30.838,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.173,
- "new_tests": 49152.0,
- "total_tests": 3255814.0,
- "total_tests_per_thousand": 329.189,
- "new_tests_per_thousand": 4.97,
- "new_tests_smoothed": 43973.0,
- "new_tests_smoothed_per_thousand": 4.446,
- "tests_per_case": 113.962,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-25",
- "total_cases": 46133.0,
- "new_cases": 450.0,
- "new_cases_smoothed": 395.571,
- "total_deaths": 307.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 4664.422,
- "new_cases_per_million": 45.499,
- "new_cases_smoothed_per_million": 39.995,
- "total_deaths_per_million": 31.04,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.173,
- "new_tests": 52527.0,
- "total_tests": 3308341.0,
- "total_tests_per_thousand": 334.5,
- "new_tests_per_thousand": 5.311,
- "new_tests_smoothed": 46568.0,
- "new_tests_smoothed_per_thousand": 4.708,
- "tests_per_case": 117.723,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-26",
- "total_cases": 46563.0,
- "new_cases": 430.0,
- "new_cases_smoothed": 401.571,
- "total_deaths": 308.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 4707.899,
- "new_cases_per_million": 43.477,
- "new_cases_smoothed_per_million": 40.602,
- "total_deaths_per_million": 31.141,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.144,
- "new_tests": 58741.0,
- "total_tests": 3367082.0,
- "total_tests_per_thousand": 340.439,
- "new_tests_per_thousand": 5.939,
- "new_tests_smoothed": 48028.0,
- "new_tests_smoothed_per_thousand": 4.856,
- "tests_per_case": 119.6,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-27",
- "total_cases": 46973.0,
- "new_cases": 410.0,
- "new_cases_smoothed": 404.0,
- "total_deaths": 310.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 4749.353,
- "new_cases_per_million": 41.454,
- "new_cases_smoothed_per_million": 40.848,
- "total_deaths_per_million": 31.344,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.144,
- "new_tests": 43551.0,
- "total_tests": 3410633.0,
- "total_tests_per_thousand": 344.843,
- "new_tests_per_thousand": 4.403,
- "new_tests_smoothed": 48410.0,
- "new_tests_smoothed_per_thousand": 4.895,
- "tests_per_case": 119.82700000000001,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-28",
- "total_cases": 47360.0,
- "new_cases": 387.0,
- "new_cases_smoothed": 403.857,
- "total_deaths": 311.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 4788.482,
- "new_cases_per_million": 39.129,
- "new_cases_smoothed_per_million": 40.833,
- "total_deaths_per_million": 31.445,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.144,
- "new_tests": 63970.0,
- "total_tests": 3474603.0,
- "total_tests_per_thousand": 351.311,
- "new_tests_per_thousand": 6.468,
- "new_tests_smoothed": 51697.0,
- "new_tests_smoothed_per_thousand": 5.227,
- "tests_per_case": 128.00799999999998,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-29",
- "total_cases": 47797.0,
- "new_cases": 437.0,
- "new_cases_smoothed": 410.286,
- "total_deaths": 313.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 4832.666,
- "new_cases_per_million": 44.184,
- "new_cases_smoothed_per_million": 41.483,
- "total_deaths_per_million": 31.647,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.159,
- "new_tests": 62028.0,
- "total_tests": 3536631.0,
- "total_tests_per_thousand": 357.582,
- "new_tests_per_thousand": 6.272,
- "new_tests_smoothed": 54231.0,
- "new_tests_smoothed_per_thousand": 5.483,
- "tests_per_case": 132.179,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-30",
- "total_cases": 48246.0,
- "new_cases": 449.0,
- "new_cases_smoothed": 420.429,
- "total_deaths": 314.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 4878.064,
- "new_cases_per_million": 45.398,
- "new_cases_smoothed_per_million": 42.509,
- "total_deaths_per_million": 31.748,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.159,
- "new_tests": 56177.0,
- "total_tests": 3592808.0,
- "total_tests_per_thousand": 363.262,
- "new_tests_per_thousand": 5.68,
- "new_tests_smoothed": 55164.0,
- "new_tests_smoothed_per_thousand": 5.578,
- "tests_per_case": 131.209,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-07-01",
- "total_cases": 48667.0,
- "new_cases": 421.0,
- "new_cases_smoothed": 426.286,
- "total_deaths": 315.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 4920.63,
- "new_cases_per_million": 42.567,
- "new_cases_smoothed_per_million": 43.101,
- "total_deaths_per_million": 31.849,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.144,
- "new_tests": 54358.0,
- "total_tests": 3647166.0,
- "total_tests_per_thousand": 368.758,
- "new_tests_per_thousand": 5.496,
- "new_tests_smoothed": 55907.0,
- "new_tests_smoothed_per_thousand": 5.653,
- "tests_per_case": 131.149,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-07-02",
- "total_cases": 49069.0,
- "new_cases": 402.0,
- "new_cases_smoothed": 419.429,
- "total_deaths": 316.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 4961.276,
- "new_cases_per_million": 40.645,
- "new_cases_smoothed_per_million": 42.408,
- "total_deaths_per_million": 31.95,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.13,
- "new_tests": 71697.0,
- "total_tests": 3718863.0,
- "total_tests_per_thousand": 376.007,
- "new_tests_per_thousand": 7.249,
- "new_tests_smoothed": 58646.0,
- "new_tests_smoothed_per_thousand": 5.93,
- "tests_per_case": 139.82399999999998,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-07-03",
- "total_cases": 49469.0,
- "new_cases": 400.0,
- "new_cases_smoothed": 415.143,
- "total_deaths": 317.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 5001.719,
- "new_cases_per_million": 40.443,
- "new_cases_smoothed_per_million": 41.974,
- "total_deaths_per_million": 32.051,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.13,
- "new_tests": 47930.0,
- "total_tests": 3766793.0,
- "total_tests_per_thousand": 380.853,
- "new_tests_per_thousand": 4.846,
- "new_tests_smoothed": 57102.0,
- "new_tests_smoothed_per_thousand": 5.773,
- "tests_per_case": 137.548,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 52.78
- },
- {
- "date": "2020-07-04",
- "total_cases": 50141.0,
- "new_cases": 672.0,
- "new_cases_smoothed": 452.571,
- "total_deaths": 318.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 5069.664,
- "new_cases_per_million": 67.945,
- "new_cases_smoothed_per_million": 45.759,
- "total_deaths_per_million": 32.152,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.116,
- "new_tests": 28009.0,
- "total_tests": 3794802.0,
- "total_tests_per_thousand": 383.685,
- "new_tests_per_thousand": 2.832,
- "new_tests_smoothed": 54881.0,
- "new_tests_smoothed_per_thousand": 5.549,
- "tests_per_case": 121.265,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 52.78
- },
- {
- "date": "2020-07-05",
- "total_cases": 50857.0,
- "new_cases": 716.0,
- "new_cases_smoothed": 499.571,
- "total_deaths": 321.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 5142.057,
- "new_cases_per_million": 72.393,
- "new_cases_smoothed_per_million": 50.511,
- "total_deaths_per_million": 32.456,
- "new_deaths_per_million": 0.303,
- "new_deaths_smoothed_per_million": 0.144,
- "new_tests": 44192.0,
- "total_tests": 3838994.0,
- "total_tests_per_thousand": 388.154,
- "new_tests_per_thousand": 4.468,
- "new_tests_smoothed": 52056.0,
- "new_tests_smoothed_per_thousand": 5.263,
- "tests_per_case": 104.20100000000001,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-06",
- "total_cases": 51540.0,
- "new_cases": 683.0,
- "new_cases_smoothed": 534.714,
- "total_deaths": 323.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 5211.114,
- "new_cases_per_million": 69.057,
- "new_cases_smoothed_per_million": 54.064,
- "total_deaths_per_million": 32.658,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.144,
- "new_tests": 51430.0,
- "total_tests": 3890424.0,
- "total_tests_per_thousand": 393.354,
- "new_tests_per_thousand": 5.2,
- "new_tests_smoothed": 50542.0,
- "new_tests_smoothed_per_thousand": 5.11,
- "tests_per_case": 94.522,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-07",
- "total_cases": 52068.0,
- "new_cases": 528.0,
- "new_cases_smoothed": 546.0,
- "total_deaths": 324.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 5264.499,
- "new_cases_per_million": 53.385,
- "new_cases_smoothed_per_million": 55.205,
- "total_deaths_per_million": 32.759,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.144,
- "new_tests": 49777.0,
- "total_tests": 3940201.0,
- "total_tests_per_thousand": 398.386,
- "new_tests_per_thousand": 5.033,
- "new_tests_smoothed": 49628.0,
- "new_tests_smoothed_per_thousand": 5.018,
- "tests_per_case": 90.89399999999999,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-08",
- "total_cases": 52600.0,
- "new_cases": 532.0,
- "new_cases_smoothed": 561.857,
- "total_deaths": 326.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 5318.288,
- "new_cases_per_million": 53.79,
- "new_cases_smoothed_per_million": 56.808,
- "total_deaths_per_million": 32.961,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.159,
- "new_tests": 47322.0,
- "total_tests": 3987523.0,
- "total_tests_per_thousand": 403.171,
- "new_tests_per_thousand": 4.785,
- "new_tests_smoothed": 48622.0,
- "new_tests_smoothed_per_thousand": 4.916,
- "tests_per_case": 86.538,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-09",
- "total_cases": 53045.0,
- "new_cases": 445.0,
- "new_cases_smoothed": 568.0,
- "total_deaths": 327.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 5363.282,
- "new_cases_per_million": 44.993,
- "new_cases_smoothed_per_million": 57.429,
- "total_deaths_per_million": 33.062,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.159,
- "new_tests": 58504.0,
- "total_tests": 4046027.0,
- "total_tests_per_thousand": 409.086,
- "new_tests_per_thousand": 5.915,
- "new_tests_smoothed": 46738.0,
- "new_tests_smoothed_per_thousand": 4.726,
- "tests_per_case": 82.285,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-10",
- "total_cases": 53577.0,
- "new_cases": 532.0,
- "new_cases_smoothed": 586.857,
- "total_deaths": 328.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 5417.071,
- "new_cases_per_million": 53.79,
- "new_cases_smoothed_per_million": 59.336,
- "total_deaths_per_million": 33.163,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.159,
- "new_tests": 50139.0,
- "total_tests": 4096166.0,
- "total_tests_per_thousand": 414.156,
- "new_tests_per_thousand": 5.069,
- "new_tests_smoothed": 47053.0,
- "new_tests_smoothed_per_thousand": 4.757,
- "tests_per_case": 80.178,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-11",
- "total_cases": 54050.0,
- "new_cases": 473.0,
- "new_cases_smoothed": 558.429,
- "total_deaths": 330.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 5464.895,
- "new_cases_per_million": 47.824,
- "new_cases_smoothed_per_million": 56.462,
- "total_deaths_per_million": 33.366,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.173,
- "new_tests": 34478.0,
- "total_tests": 4130644.0,
- "total_tests_per_thousand": 417.642,
- "new_tests_per_thousand": 3.486,
- "new_tests_smoothed": 47977.0,
- "new_tests_smoothed_per_thousand": 4.851,
- "tests_per_case": 85.914,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-12",
- "total_cases": 54453.0,
- "new_cases": 403.0,
- "new_cases_smoothed": 513.714,
- "total_deaths": 331.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 5505.642,
- "new_cases_per_million": 40.747,
- "new_cases_smoothed_per_million": 51.941,
- "total_deaths_per_million": 33.467,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.144,
- "new_tests": 50325.0,
- "total_tests": 4180969.0,
- "total_tests_per_thousand": 422.73,
- "new_tests_per_thousand": 5.088,
- "new_tests_smoothed": 48854.0,
- "new_tests_smoothed_per_thousand": 4.94,
- "tests_per_case": 95.1,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-13",
- "total_cases": 54854.0,
- "new_cases": 401.0,
- "new_cases_smoothed": 473.429,
- "total_deaths": 333.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 5546.186,
- "new_cases_per_million": 40.544,
- "new_cases_smoothed_per_million": 47.867,
- "total_deaths_per_million": 33.669,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.144,
- "new_tests": 34478.0,
- "total_tests": 4215447.0,
- "total_tests_per_thousand": 426.216,
- "new_tests_per_thousand": 3.486,
- "new_tests_smoothed": 46432.0,
- "new_tests_smoothed_per_thousand": 4.695,
- "tests_per_case": 98.07600000000001,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-14",
- "total_cases": 55198.0,
- "new_cases": 344.0,
- "new_cases_smoothed": 447.143,
- "total_deaths": 334.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 5580.967,
- "new_cases_per_million": 34.781,
- "new_cases_smoothed_per_million": 45.21,
- "total_deaths_per_million": 33.77,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.144,
- "new_tests": 52782.0,
- "total_tests": 4268229.0,
- "total_tests_per_thousand": 431.553,
- "new_tests_per_thousand": 5.337,
- "new_tests_smoothed": 46861.0,
- "new_tests_smoothed_per_thousand": 4.738,
- "tests_per_case": 104.801,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-15",
- "total_cases": 55573.0,
- "new_cases": 375.0,
- "new_cases_smoothed": 424.714,
- "total_deaths": 335.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 5618.883,
- "new_cases_per_million": 37.916,
- "new_cases_smoothed_per_million": 42.942,
- "total_deaths_per_million": 33.871,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.13,
- "new_tests": 48534.0,
- "total_tests": 4316763.0,
- "total_tests_per_thousand": 436.46,
- "new_tests_per_thousand": 4.907,
- "new_tests_smoothed": 47034.0,
- "new_tests_smoothed_per_thousand": 4.756,
- "tests_per_case": 110.743,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-16",
- "total_cases": 55848.0,
- "new_cases": 275.0,
- "new_cases_smoothed": 400.429,
- "total_deaths": 335.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 5646.688,
- "new_cases_per_million": 27.805,
- "new_cases_smoothed_per_million": 40.487,
- "total_deaths_per_million": 33.871,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.116,
- "new_tests": 48931.0,
- "total_tests": 4365694.0,
- "total_tests_per_thousand": 441.407,
- "new_tests_per_thousand": 4.947,
- "new_tests_smoothed": 45667.0,
- "new_tests_smoothed_per_thousand": 4.617,
- "tests_per_case": 114.045,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-17",
- "total_cases": 56129.0,
- "new_cases": 281.0,
- "new_cases_smoothed": 364.571,
- "total_deaths": 335.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 5675.099,
- "new_cases_per_million": 28.411,
- "new_cases_smoothed_per_million": 36.861,
- "total_deaths_per_million": 33.871,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.101,
- "new_tests": 48561.0,
- "total_tests": 4414255.0,
- "total_tests_per_thousand": 446.317,
- "new_tests_per_thousand": 4.91,
- "new_tests_smoothed": 45441.0,
- "new_tests_smoothed_per_thousand": 4.594,
- "tests_per_case": 124.64200000000001,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-18",
- "total_cases": 56422.0,
- "new_cases": 293.0,
- "new_cases_smoothed": 338.857,
- "total_deaths": 337.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 5704.724,
- "new_cases_per_million": 29.625,
- "new_cases_smoothed_per_million": 34.261,
- "total_deaths_per_million": 34.073,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.101,
- "new_tests": 46950.0,
- "total_tests": 4461205.0,
- "total_tests_per_thousand": 451.064,
- "new_tests_per_thousand": 4.747,
- "new_tests_smoothed": 47223.0,
- "new_tests_smoothed_per_thousand": 4.775,
- "tests_per_case": 139.36,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-19",
- "total_cases": 56711.0,
- "new_cases": 289.0,
- "new_cases_smoothed": 322.571,
- "total_deaths": 338.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 5733.944,
- "new_cases_per_million": 29.22,
- "new_cases_smoothed_per_million": 32.615,
- "total_deaths_per_million": 34.175,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.101,
- "new_tests": 47723.0,
- "total_tests": 4508928.0,
- "total_tests_per_thousand": 455.889,
- "new_tests_per_thousand": 4.825,
- "new_tests_smoothed": 46851.0,
- "new_tests_smoothed_per_thousand": 4.737,
- "tests_per_case": 145.24200000000002,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-20",
- "total_cases": 56922.0,
- "new_cases": 211.0,
- "new_cases_smoothed": 295.429,
- "total_deaths": 339.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 5755.278,
- "new_cases_per_million": 21.334,
- "new_cases_smoothed_per_million": 29.87,
- "total_deaths_per_million": 34.276,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.087,
- "new_tests": 27224.0,
- "total_tests": 4536152.0,
- "total_tests_per_thousand": 458.642,
- "new_tests_per_thousand": 2.753,
- "new_tests_smoothed": 45815.0,
- "new_tests_smoothed_per_thousand": 4.632,
- "tests_per_case": 155.08,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-21",
- "total_cases": 57193.0,
- "new_cases": 271.0,
- "new_cases_smoothed": 285.0,
- "total_deaths": 340.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 5782.678,
- "new_cases_per_million": 27.4,
- "new_cases_smoothed_per_million": 28.816,
- "total_deaths_per_million": 34.377,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.087,
- "new_tests": 40050.0,
- "total_tests": 4576202.0,
- "total_tests_per_thousand": 462.691,
- "new_tests_per_thousand": 4.049,
- "new_tests_smoothed": 43996.0,
- "new_tests_smoothed_per_thousand": 4.448,
- "tests_per_case": 154.372,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-22",
- "total_cases": 57498.0,
- "new_cases": 305.0,
- "new_cases_smoothed": 275.0,
- "total_deaths": 341.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 5813.516,
- "new_cases_per_million": 30.838,
- "new_cases_smoothed_per_million": 27.805,
- "total_deaths_per_million": 34.478,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.087,
- "new_tests": 47014.0,
- "total_tests": 4623216.0,
- "total_tests_per_thousand": 467.445,
- "new_tests_per_thousand": 4.753,
- "new_tests_smoothed": 43779.0,
- "new_tests_smoothed_per_thousand": 4.426,
- "tests_per_case": 159.196,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-23",
- "total_cases": 57734.0,
- "new_cases": 236.0,
- "new_cases_smoothed": 269.429,
- "total_deaths": 342.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 5837.378,
- "new_cases_per_million": 23.862,
- "new_cases_smoothed_per_million": 27.241,
- "total_deaths_per_million": 34.579,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.101,
- "new_tests": 54096.0,
- "total_tests": 4677312.0,
- "total_tests_per_thousand": 472.914,
- "new_tests_per_thousand": 5.47,
- "new_tests_smoothed": 44517.0,
- "new_tests_smoothed_per_thousand": 4.501,
- "tests_per_case": 165.227,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-24",
- "total_cases": 57988.0,
- "new_cases": 254.0,
- "new_cases_smoothed": 265.571,
- "total_deaths": 342.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 5863.059,
- "new_cases_per_million": 25.681,
- "new_cases_smoothed_per_million": 26.851,
- "total_deaths_per_million": 34.579,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.101,
- "new_tests": 46965.0,
- "total_tests": 4724277.0,
- "total_tests_per_thousand": 477.663,
- "new_tests_per_thousand": 4.749,
- "new_tests_smoothed": 44289.0,
- "new_tests_smoothed_per_thousand": 4.478,
- "tests_per_case": 166.769,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-25",
- "total_cases": 58249.0,
- "new_cases": 261.0,
- "new_cases_smoothed": 261.0,
- "total_deaths": 343.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 5889.448,
- "new_cases_per_million": 26.389,
- "new_cases_smoothed_per_million": 26.389,
- "total_deaths_per_million": 34.68,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.087,
- "new_tests": 52627.0,
- "total_tests": 4776904.0,
- "total_tests_per_thousand": 482.984,
- "new_tests_per_thousand": 5.321,
- "new_tests_smoothed": 45100.0,
- "new_tests_smoothed_per_thousand": 4.56,
- "tests_per_case": 172.797,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-26",
- "total_cases": 58562.0,
- "new_cases": 313.0,
- "new_cases_smoothed": 264.429,
- "total_deaths": 343.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 5921.095,
- "new_cases_per_million": 31.647,
- "new_cases_smoothed_per_million": 26.736,
- "total_deaths_per_million": 34.68,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.072,
- "new_tests": 51162.0,
- "total_tests": 4828066.0,
- "total_tests_per_thousand": 488.157,
- "new_tests_per_thousand": 5.173,
- "new_tests_smoothed": 45591.0,
- "new_tests_smoothed_per_thousand": 4.61,
- "tests_per_case": 172.41299999999998,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-27",
- "total_cases": 58913.0,
- "new_cases": 351.0,
- "new_cases_smoothed": 284.429,
- "total_deaths": 344.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 5956.584,
- "new_cases_per_million": 35.489,
- "new_cases_smoothed_per_million": 28.758,
- "total_deaths_per_million": 34.781,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.072,
- "new_tests": 47229.0,
- "total_tests": 4875295.0,
- "total_tests_per_thousand": 492.932,
- "new_tests_per_thousand": 4.775,
- "new_tests_smoothed": 48449.0,
- "new_tests_smoothed_per_thousand": 4.899,
- "tests_per_case": 170.338,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-28",
- "total_cases": 59177.0,
- "new_cases": 264.0,
- "new_cases_smoothed": 283.429,
- "total_deaths": 345.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 5983.277,
- "new_cases_per_million": 26.693,
- "new_cases_smoothed_per_million": 28.657,
- "total_deaths_per_million": 34.882,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.072,
- "new_tests": 43622.0,
- "total_tests": 4918917.0,
- "total_tests_per_thousand": 497.343,
- "new_tests_per_thousand": 4.411,
- "new_tests_smoothed": 48959.0,
- "new_tests_smoothed_per_thousand": 4.95,
- "tests_per_case": 172.738,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-29",
- "total_cases": 59546.0,
- "new_cases": 369.0,
- "new_cases_smoothed": 292.571,
- "total_deaths": 347.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 6020.586,
- "new_cases_per_million": 37.309,
- "new_cases_smoothed_per_million": 29.581,
- "total_deaths_per_million": 35.085,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.087,
- "new_tests": 47483.0,
- "total_tests": 4966400.0,
- "total_tests_per_thousand": 502.143,
- "new_tests_per_thousand": 4.801,
- "new_tests_smoothed": 49026.0,
- "new_tests_smoothed_per_thousand": 4.957,
- "tests_per_case": 167.56900000000002,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-30",
- "total_cases": 59921.0,
- "new_cases": 375.0,
- "new_cases_smoothed": 312.429,
- "total_deaths": 347.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 6058.501,
- "new_cases_per_million": 37.916,
- "new_cases_smoothed_per_million": 31.589,
- "total_deaths_per_million": 35.085,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.072,
- "new_tests": 55257.0,
- "total_tests": 5021657.0,
- "total_tests_per_thousand": 507.73,
- "new_tests_per_thousand": 5.587,
- "new_tests_smoothed": 49192.0,
- "new_tests_smoothed_per_thousand": 4.974,
- "tests_per_case": 157.45,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 32.41
- },
- {
- "date": "2020-07-31",
- "total_cases": 60506.0,
- "new_cases": 585.0,
- "new_cases_smoothed": 359.714,
- "total_deaths": 351.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 6117.649,
- "new_cases_per_million": 59.148,
- "new_cases_smoothed_per_million": 36.37,
- "total_deaths_per_million": 35.489,
- "new_deaths_per_million": 0.404,
- "new_deaths_smoothed_per_million": 0.13,
- "new_tests": 54727.0,
- "total_tests": 5076384.0,
- "total_tests_per_thousand": 513.264,
- "new_tests_per_thousand": 5.533,
- "new_tests_smoothed": 50301.0,
- "new_tests_smoothed_per_thousand": 5.086,
- "tests_per_case": 139.836,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-08-01",
- "total_cases": 60506.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 322.429,
- "total_deaths": 351.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 6117.649,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 32.6,
- "total_deaths_per_million": 35.489,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.116,
- "new_tests": 43268.0,
- "total_tests": 5119652.0,
- "total_tests_per_thousand": 517.639,
- "new_tests_per_thousand": 4.375,
- "new_tests_smoothed": 48964.0,
- "new_tests_smoothed_per_thousand": 4.951,
- "tests_per_case": 151.86,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-08-02",
- "total_cases": 60760.0,
- "new_cases": 254.0,
- "new_cases_smoothed": 314.0,
- "total_deaths": 351.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 6143.331,
- "new_cases_per_million": 25.681,
- "new_cases_smoothed_per_million": 31.748,
- "total_deaths_per_million": 35.489,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.116,
- "new_tests": 42428.0,
- "total_tests": 5162080.0,
- "total_tests_per_thousand": 521.928,
- "new_tests_per_thousand": 4.29,
- "new_tests_smoothed": 47716.0,
- "new_tests_smoothed_per_thousand": 4.824,
- "tests_per_case": 151.96200000000002,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-08-03",
- "total_cases": 60999.0,
- "new_cases": 239.0,
- "new_cases_smoothed": 298.0,
- "total_deaths": 351.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 6167.496,
- "new_cases_per_million": 24.165,
- "new_cases_smoothed_per_million": 30.13,
- "total_deaths_per_million": 35.489,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.101,
- "new_tests": 27811.0,
- "total_tests": 5189891.0,
- "total_tests_per_thousand": 524.74,
- "new_tests_per_thousand": 2.812,
- "new_tests_smoothed": 44942.0,
- "new_tests_smoothed_per_thousand": 4.544,
- "tests_per_case": 150.812,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 37.96
- },
- {
- "date": "2020-08-04",
- "total_cases": 61163.0,
- "new_cases": 164.0,
- "new_cases_smoothed": 283.714,
- "total_deaths": 351.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 6184.077,
- "new_cases_per_million": 16.582,
- "new_cases_smoothed_per_million": 28.686,
- "total_deaths_per_million": 35.489,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.087,
- "new_tests": 29398.0,
- "total_tests": 5219289.0,
- "total_tests_per_thousand": 527.713,
- "new_tests_per_thousand": 2.972,
- "new_tests_smoothed": 42910.0,
- "new_tests_smoothed_per_thousand": 4.339,
- "tests_per_case": 151.244,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 37.96
- },
- {
- "date": "2020-08-05",
- "total_cases": 61352.0,
- "new_cases": 189.0,
- "new_cases_smoothed": 258.0,
- "total_deaths": 351.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 6203.187,
- "new_cases_per_million": 19.109,
- "new_cases_smoothed_per_million": 26.086,
- "total_deaths_per_million": 35.489,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.058,
- "new_tests": 43369.0,
- "total_tests": 5262658.0,
- "total_tests_per_thousand": 532.098,
- "new_tests_per_thousand": 4.385,
- "new_tests_smoothed": 42323.0,
- "new_tests_smoothed_per_thousand": 4.279,
- "tests_per_case": 164.043,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 37.96
- },
- {
- "date": "2020-08-06",
- "total_cases": 61606.0,
- "new_cases": 254.0,
- "new_cases_smoothed": 240.714,
- "total_deaths": 353.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 6228.868,
- "new_cases_per_million": 25.681,
- "new_cases_smoothed_per_million": 24.338,
- "total_deaths_per_million": 35.691,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.087,
- "new_tests": 50729.0,
- "total_tests": 5313387.0,
- "total_tests_per_thousand": 537.227,
- "new_tests_per_thousand": 5.129,
- "new_tests_smoothed": 41676.0,
- "new_tests_smoothed_per_thousand": 4.214,
- "tests_per_case": 173.135,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 37.96
- },
- {
- "date": "2020-08-07",
- "total_cases": 61845.0,
- "new_cases": 239.0,
- "new_cases_smoothed": 191.286,
- "total_deaths": 354.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 6253.033,
- "new_cases_per_million": 24.165,
- "new_cases_smoothed_per_million": 19.341,
- "total_deaths_per_million": 35.792,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.043,
- "new_tests": 61978.0,
- "total_tests": 5375365.0,
- "total_tests_per_thousand": 543.493,
- "new_tests_per_thousand": 6.266,
- "new_tests_smoothed": 42712.0,
- "new_tests_smoothed_per_thousand": 4.319,
- "tests_per_case": 223.28900000000002,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 37.96
- },
- {
- "date": "2020-08-08",
- "total_cases": 62061.0,
- "new_cases": 216.0,
- "new_cases_smoothed": 222.143,
- "total_deaths": 356.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 6274.873,
- "new_cases_per_million": 21.839,
- "new_cases_smoothed_per_million": 22.46,
- "total_deaths_per_million": 35.994,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.072,
- "new_tests": 63792.0,
- "total_tests": 5439157.0,
- "total_tests_per_thousand": 549.943,
- "new_tests_per_thousand": 6.45,
- "new_tests_smoothed": 45644.0,
- "new_tests_smoothed_per_thousand": 4.615,
- "tests_per_case": 205.47099999999998,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 37.96
- },
- {
- "date": "2020-08-09",
- "total_cases": 62300.0,
- "new_cases": 239.0,
- "new_cases_smoothed": 220.0,
- "total_deaths": 356.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 6299.037,
- "new_cases_per_million": 24.165,
- "new_cases_smoothed_per_million": 22.244,
- "total_deaths_per_million": 35.994,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.072,
- "new_tests": 61544.0,
- "total_tests": 5500701.0,
- "total_tests_per_thousand": 556.166,
- "new_tests_per_thousand": 6.223,
- "new_tests_smoothed": 48374.0,
- "new_tests_smoothed_per_thousand": 4.891,
- "tests_per_case": 219.882,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 37.96
- },
- {
- "date": "2020-08-10",
- "total_cases": 62525.0,
- "new_cases": 225.0,
- "new_cases_smoothed": 218.0,
- "total_deaths": 357.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 6321.787,
- "new_cases_per_million": 22.749,
- "new_cases_smoothed_per_million": 22.042,
- "total_deaths_per_million": 36.096,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.087,
- "new_tests": 58953.0,
- "total_tests": 5559654.0,
- "total_tests_per_thousand": 562.126,
- "new_tests_per_thousand": 5.961,
- "new_tests_smoothed": 52823.0,
- "new_tests_smoothed_per_thousand": 5.341,
- "tests_per_case": 242.30700000000002,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 37.96
- },
- {
- "date": "2020-08-11",
- "total_cases": 62704.0,
- "new_cases": 179.0,
- "new_cases_smoothed": 220.143,
- "total_deaths": 357.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 6339.885,
- "new_cases_per_million": 18.098,
- "new_cases_smoothed_per_million": 22.258,
- "total_deaths_per_million": 36.096,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.087,
- "new_tests": 64110.0,
- "total_tests": 5623764.0,
- "total_tests_per_thousand": 568.608,
- "new_tests_per_thousand": 6.482,
- "new_tests_smoothed": 57782.0,
- "new_tests_smoothed_per_thousand": 5.842,
- "tests_per_case": 262.475,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 37.96
- },
- {
- "date": "2020-08-12",
- "total_cases": 62966.0,
- "new_cases": 262.0,
- "new_cases_smoothed": 230.571,
- "total_deaths": 357.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 6366.375,
- "new_cases_per_million": 26.49,
- "new_cases_smoothed_per_million": 23.313,
- "total_deaths_per_million": 36.096,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.087,
- "new_tests": 72630.0,
- "total_tests": 5696394.0,
- "total_tests_per_thousand": 575.952,
- "new_tests_per_thousand": 7.343,
- "new_tests_smoothed": 61962.0,
- "new_tests_smoothed_per_thousand": 6.265,
- "tests_per_case": 268.732,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 37.96
- },
- {
- "date": "2020-08-13",
- "total_cases": 63212.0,
- "new_cases": 246.0,
- "new_cases_smoothed": 229.429,
- "total_deaths": 357.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 6391.248,
- "new_cases_per_million": 24.873,
- "new_cases_smoothed_per_million": 23.197,
- "total_deaths_per_million": 36.096,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.058,
- "new_tests": 68964.0,
- "total_tests": 5765358.0,
- "total_tests_per_thousand": 582.925,
- "new_tests_per_thousand": 6.973,
- "new_tests_smoothed": 64567.0,
- "new_tests_smoothed_per_thousand": 6.528,
- "tests_per_case": 281.425,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 37.96
- },
- {
- "date": "2020-08-14",
- "total_cases": 63489.0,
- "new_cases": 277.0,
- "new_cases_smoothed": 234.857,
- "total_deaths": 358.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 6419.255,
- "new_cases_per_million": 28.007,
- "new_cases_smoothed_per_million": 23.746,
- "total_deaths_per_million": 36.197,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.058,
- "new_tests": 82344.0,
- "total_tests": 5847702.0,
- "total_tests_per_thousand": 591.25,
- "new_tests_per_thousand": 8.326,
- "new_tests_smoothed": 67477.0,
- "new_tests_smoothed_per_thousand": 6.822,
- "tests_per_case": 287.311,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 37.96
- },
- {
- "date": "2020-08-15",
- "total_cases": 63819.0,
- "new_cases": 330.0,
- "new_cases_smoothed": 251.143,
- "total_deaths": 359.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 6452.621,
- "new_cases_per_million": 33.366,
- "new_cases_smoothed_per_million": 25.393,
- "total_deaths_per_million": 36.298,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.043,
- "new_tests": 77640.0,
- "total_tests": 5925342.0,
- "total_tests_per_thousand": 599.1,
- "new_tests_per_thousand": 7.85,
- "new_tests_smoothed": 69455.0,
- "new_tests_smoothed_per_thousand": 7.022,
- "tests_per_case": 276.556,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 37.96
- },
- {
- "date": "2020-08-16",
- "total_cases": 64102.0,
- "new_cases": 283.0,
- "new_cases_smoothed": 257.429,
- "total_deaths": 361.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 6481.234,
- "new_cases_per_million": 28.614,
- "new_cases_smoothed_per_million": 26.028,
- "total_deaths_per_million": 36.5,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.072,
- "new_tests": 65186.0,
- "total_tests": 5990528.0,
- "total_tests_per_thousand": 605.691,
- "new_tests_per_thousand": 6.591,
- "new_tests_smoothed": 69975.0,
- "new_tests_smoothed_per_thousand": 7.075,
- "tests_per_case": 271.823,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 37.96
- },
- {
- "date": "2020-08-17",
- "total_cases": 64312.0,
- "new_cases": 210.0,
- "new_cases_smoothed": 255.286,
- "total_deaths": 364.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 6502.467,
- "new_cases_per_million": 21.233,
- "new_cases_smoothed_per_million": 25.811,
- "total_deaths_per_million": 36.803,
- "new_deaths_per_million": 0.303,
- "new_deaths_smoothed_per_million": 0.101,
- "new_tests": 71322.0,
- "total_tests": 6061850.0,
- "total_tests_per_thousand": 612.902,
- "new_tests_per_thousand": 7.211,
- "new_tests_smoothed": 71742.0,
- "new_tests_smoothed_per_thousand": 7.254,
- "tests_per_case": 281.026,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 37.96
- },
- {
- "date": "2020-08-18",
- "total_cases": 64541.0,
- "new_cases": 229.0,
- "new_cases_smoothed": 262.429,
- "total_deaths": 364.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 6525.621,
- "new_cases_per_million": 23.154,
- "new_cases_smoothed_per_million": 26.534,
- "total_deaths_per_million": 36.803,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.101,
- "new_tests": 59759.0,
- "total_tests": 6121609.0,
- "total_tests_per_thousand": 618.945,
- "new_tests_per_thousand": 6.042,
- "new_tests_smoothed": 71121.0,
- "new_tests_smoothed_per_thousand": 7.191,
- "tests_per_case": 271.01099999999997,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 37.96
- },
- {
- "date": "2020-08-19",
- "total_cases": 64906.0,
- "new_cases": 365.0,
- "new_cases_smoothed": 277.143,
- "total_deaths": 366.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 6562.525,
- "new_cases_per_million": 36.904,
- "new_cases_smoothed_per_million": 28.021,
- "total_deaths_per_million": 37.006,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.13,
- "new_tests": 72026.0,
- "total_tests": 6193635.0,
- "total_tests_per_thousand": 626.227,
- "new_tests_per_thousand": 7.282,
- "new_tests_smoothed": 71034.0,
- "new_tests_smoothed_per_thousand": 7.182,
- "tests_per_case": 256.308,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 37.96
- },
- {
- "date": "2020-08-20",
- "total_cases": 65341.0,
- "new_cases": 435.0,
- "new_cases_smoothed": 304.143,
- "total_deaths": 367.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 6606.507,
- "new_cases_per_million": 43.982,
- "new_cases_smoothed_per_million": 30.751,
- "total_deaths_per_million": 37.107,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.144,
- "new_tests": 72283.0,
- "total_tests": 6265918.0,
- "total_tests_per_thousand": 633.535,
- "new_tests_per_thousand": 7.308,
- "new_tests_smoothed": 71509.0,
- "new_tests_smoothed_per_thousand": 7.23,
- "tests_per_case": 235.11599999999999,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 37.96
- },
- {
- "date": "2020-08-21",
- "total_cases": 65802.0,
- "new_cases": 461.0,
- "new_cases_smoothed": 330.429,
- "total_deaths": 369.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 6653.118,
- "new_cases_per_million": 46.611,
- "new_cases_smoothed_per_million": 33.409,
- "total_deaths_per_million": 37.309,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.159,
- "new_tests": 82191.0,
- "total_tests": 6348109.0,
- "total_tests_per_thousand": 641.846,
- "new_tests_per_thousand": 8.31,
- "new_tests_smoothed": 71487.0,
- "new_tests_smoothed_per_thousand": 7.228,
- "tests_per_case": 216.34599999999998,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 37.96
- },
- {
- "date": "2020-08-22",
- "total_cases": 66193.0,
- "new_cases": 391.0,
- "new_cases_smoothed": 339.143,
- "total_deaths": 370.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 6692.651,
- "new_cases_per_million": 39.533,
- "new_cases_smoothed_per_million": 34.29,
- "total_deaths_per_million": 37.41,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.159,
- "new_tests": 70079.0,
- "total_tests": 6418188.0,
- "total_tests_per_thousand": 648.931,
- "new_tests_per_thousand": 7.086,
- "new_tests_smoothed": 70407.0,
- "new_tests_smoothed_per_thousand": 7.119,
- "tests_per_case": 207.60299999999998,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 37.96
- },
- {
- "date": "2020-08-23",
- "total_cases": 66617.0,
- "new_cases": 424.0,
- "new_cases_smoothed": 359.286,
- "total_deaths": 372.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 6735.521,
- "new_cases_per_million": 42.87,
- "new_cases_smoothed_per_million": 36.327,
- "total_deaths_per_million": 37.612,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.159,
- "new_tests": 71216.0,
- "total_tests": 6489404.0,
- "total_tests_per_thousand": 656.132,
- "new_tests_per_thousand": 7.201,
- "new_tests_smoothed": 71268.0,
- "new_tests_smoothed_per_thousand": 7.206,
- "tests_per_case": 198.36,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 37.96
- },
- {
- "date": "2020-08-24",
- "total_cases": 67007.0,
- "new_cases": 390.0,
- "new_cases_smoothed": 385.0,
- "total_deaths": 375.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 6774.953,
- "new_cases_per_million": 39.432,
- "new_cases_smoothed_per_million": 38.927,
- "total_deaths_per_million": 37.916,
- "new_deaths_per_million": 0.303,
- "new_deaths_smoothed_per_million": 0.159,
- "new_tests": 71282.0,
- "total_tests": 6560686.0,
- "total_tests_per_thousand": 663.339,
- "new_tests_per_thousand": 7.207,
- "new_tests_smoothed": 71262.0,
- "new_tests_smoothed_per_thousand": 7.205,
- "tests_per_case": 185.09599999999998,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 37.96
- },
- {
- "date": "2020-08-25",
- "total_cases": 67282.0,
- "new_cases": 275.0,
- "new_cases_smoothed": 391.571,
- "total_deaths": 376.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 6802.758,
- "new_cases_per_million": 27.805,
- "new_cases_smoothed_per_million": 39.591,
- "total_deaths_per_million": 38.017,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.173,
- "new_tests": 69309.0,
- "total_tests": 6629995.0,
- "total_tests_per_thousand": 670.346,
- "new_tests_per_thousand": 7.008,
- "new_tests_smoothed": 72627.0,
- "new_tests_smoothed_per_thousand": 7.343,
- "tests_per_case": 185.476,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 37.96
- },
- {
- "date": "2020-08-26",
- "total_cases": 67621.0,
- "new_cases": 339.0,
- "new_cases_smoothed": 387.857,
- "total_deaths": 377.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 6837.034,
- "new_cases_per_million": 34.276,
- "new_cases_smoothed_per_million": 39.216,
- "total_deaths_per_million": 38.118,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.159,
- "new_tests": 57419.0,
- "total_tests": 6687414.0,
- "total_tests_per_thousand": 676.152,
- "new_tests_per_thousand": 5.806,
- "new_tests_smoothed": 70540.0,
- "new_tests_smoothed_per_thousand": 7.132,
- "tests_per_case": 181.87099999999998,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 37.96
- },
- {
- "date": "2020-08-27",
- "total_cases": 68020.0,
- "new_cases": 399.0,
- "new_cases_smoothed": 382.714,
- "total_deaths": 378.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 6877.376,
- "new_cases_per_million": 40.342,
- "new_cases_smoothed_per_million": 38.696,
- "total_deaths_per_million": 38.219,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.159,
- "new_tests": 68043.0,
- "total_tests": 6755457.0,
- "total_tests_per_thousand": 683.032,
- "new_tests_per_thousand": 6.88,
- "new_tests_smoothed": 69934.0,
- "new_tests_smoothed_per_thousand": 7.071,
- "tests_per_case": 182.732,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 37.96
- },
- {
- "date": "2020-08-28",
- "total_cases": 68511.0,
- "new_cases": 491.0,
- "new_cases_smoothed": 387.0,
- "total_deaths": 378.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 6927.02,
- "new_cases_per_million": 49.644,
- "new_cases_smoothed_per_million": 39.129,
- "total_deaths_per_million": 38.219,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.13,
- "new_tests": 79680.0,
- "total_tests": 6835137.0,
- "total_tests_per_thousand": 691.088,
- "new_tests_per_thousand": 8.056,
- "new_tests_smoothed": 69575.0,
- "new_tests_smoothed_per_thousand": 7.035,
- "tests_per_case": 179.78,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 37.96
- },
- {
- "date": "2020-08-29",
- "total_cases": 68901.0,
- "new_cases": 390.0,
- "new_cases_smoothed": 386.857,
- "total_deaths": 379.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 6966.452,
- "new_cases_per_million": 39.432,
- "new_cases_smoothed_per_million": 39.114,
- "total_deaths_per_million": 38.32,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.13,
- "new_tests": 88803.0,
- "total_tests": 6923940.0,
- "total_tests_per_thousand": 700.067,
- "new_tests_per_thousand": 8.979,
- "new_tests_smoothed": 72250.0,
- "new_tests_smoothed_per_thousand": 7.305,
- "tests_per_case": 186.761,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 37.96
- },
- {
- "date": "2020-08-30",
- "total_cases": 69328.0,
- "new_cases": 427.0,
- "new_cases_smoothed": 387.286,
- "total_deaths": 379.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 7009.625,
- "new_cases_per_million": 43.173,
- "new_cases_smoothed_per_million": 39.158,
- "total_deaths_per_million": 38.32,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.101,
- "new_tests": 87955.0,
- "total_tests": 7011895.0,
- "total_tests_per_thousand": 708.96,
- "new_tests_per_thousand": 8.893,
- "new_tests_smoothed": 74642.0,
- "new_tests_smoothed_per_thousand": 7.547,
- "tests_per_case": 192.731,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 37.96
- },
- {
- "date": "2020-08-31",
- "total_cases": 69690.0,
- "new_cases": 362.0,
- "new_cases_smoothed": 383.286,
- "total_deaths": 382.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 7046.227,
- "new_cases_per_million": 36.601,
- "new_cases_smoothed_per_million": 38.753,
- "total_deaths_per_million": 38.623,
- "new_deaths_per_million": 0.303,
- "new_deaths_smoothed_per_million": 0.101,
- "new_tests": 82763.0,
- "total_tests": 7094658.0,
- "total_tests_per_thousand": 717.328,
- "new_tests_per_thousand": 8.368,
- "new_tests_smoothed": 76282.0,
- "new_tests_smoothed_per_thousand": 7.713,
- "tests_per_case": 199.021,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 37.96
- },
- {
- "date": "2020-09-01",
- "total_cases": 70231.0,
- "new_cases": 541.0,
- "new_cases_smoothed": 421.286,
- "total_deaths": 384.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 7100.926,
- "new_cases_per_million": 54.7,
- "new_cases_smoothed_per_million": 42.595,
- "total_deaths_per_million": 38.826,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.116,
- "new_tests": 82772.0,
- "total_tests": 7177430.0,
- "total_tests_per_thousand": 725.697,
- "new_tests_per_thousand": 8.369,
- "new_tests_smoothed": 78205.0,
- "new_tests_smoothed_per_thousand": 7.907,
- "tests_per_case": 185.63400000000001,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-02",
- "total_cases": 70805.0,
- "new_cases": 574.0,
- "new_cases_smoothed": 454.857,
- "total_deaths": 384.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 7158.962,
- "new_cases_per_million": 58.036,
- "new_cases_smoothed_per_million": 45.99,
- "total_deaths_per_million": 38.826,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.101,
- "new_tests": 79623.0,
- "total_tests": 7257053.0,
- "total_tests_per_thousand": 733.747,
- "new_tests_per_thousand": 8.051,
- "new_tests_smoothed": 81377.0,
- "new_tests_smoothed_per_thousand": 8.228,
- "tests_per_case": 178.907,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-03",
- "total_cases": 71540.0,
- "new_cases": 735.0,
- "new_cases_smoothed": 502.857,
- "total_deaths": 387.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 7233.277,
- "new_cases_per_million": 74.314,
- "new_cases_smoothed_per_million": 50.843,
- "total_deaths_per_million": 39.129,
- "new_deaths_per_million": 0.303,
- "new_deaths_smoothed_per_million": 0.13,
- "new_tests": 67821.0,
- "total_tests": 7324874.0,
- "total_tests_per_thousand": 740.604,
- "new_tests_per_thousand": 6.857,
- "new_tests_smoothed": 81345.0,
- "new_tests_smoothed_per_thousand": 8.225,
- "tests_per_case": 161.766,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-04",
- "total_cases": 72154.0,
- "new_cases": 614.0,
- "new_cases_smoothed": 520.429,
- "total_deaths": 387.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 7295.357,
- "new_cases_per_million": 62.08,
- "new_cases_smoothed_per_million": 52.62,
- "total_deaths_per_million": 39.129,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.13,
- "new_tests": 80935.0,
- "total_tests": 7405809.0,
- "total_tests_per_thousand": 748.788,
- "new_tests_per_thousand": 8.183,
- "new_tests_smoothed": 81525.0,
- "new_tests_smoothed_per_thousand": 8.243,
- "tests_per_case": 156.65,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-05",
- "total_cases": 72766.0,
- "new_cases": 612.0,
- "new_cases_smoothed": 552.143,
- "total_deaths": 387.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 7357.235,
- "new_cases_per_million": 61.878,
- "new_cases_smoothed_per_million": 55.826,
- "total_deaths_per_million": 39.129,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.116,
- "new_tests": 82333.0,
- "total_tests": 7488142.0,
- "total_tests_per_thousand": 757.112,
- "new_tests_per_thousand": 8.325,
- "new_tests_smoothed": 80600.0,
- "new_tests_smoothed_per_thousand": 8.149,
- "tests_per_case": 145.977,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-06",
- "total_cases": 73471.0,
- "new_cases": 705.0,
- "new_cases_smoothed": 591.857,
- "total_deaths": 388.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 7428.517,
- "new_cases_per_million": 71.281,
- "new_cases_smoothed_per_million": 59.842,
- "total_deaths_per_million": 39.23,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.13,
- "new_tests": 87336.0,
- "total_tests": 7575478.0,
- "total_tests_per_thousand": 765.943,
- "new_tests_per_thousand": 8.83,
- "new_tests_smoothed": 80512.0,
- "new_tests_smoothed_per_thousand": 8.14,
- "tests_per_case": 136.033,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-07",
- "total_cases": 73984.0,
- "new_cases": 513.0,
- "new_cases_smoothed": 613.429,
- "total_deaths": 388.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 7480.385,
- "new_cases_per_million": 51.868,
- "new_cases_smoothed_per_million": 62.023,
- "total_deaths_per_million": 39.23,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.087,
- "new_tests": 57506.0,
- "total_tests": 7632984.0,
- "total_tests_per_thousand": 771.757,
- "new_tests_per_thousand": 5.814,
- "new_tests_smoothed": 76904.0,
- "new_tests_smoothed_per_thousand": 7.776,
- "tests_per_case": 125.367,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-08",
- "total_cases": 74454.0,
- "new_cases": 470.0,
- "new_cases_smoothed": 603.286,
- "total_deaths": 390.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 7527.906,
- "new_cases_per_million": 47.521,
- "new_cases_smoothed_per_million": 60.997,
- "total_deaths_per_million": 39.432,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.087,
- "new_tests": 71334.0,
- "total_tests": 7704318.0,
- "total_tests_per_thousand": 778.969,
- "new_tests_per_thousand": 7.212,
- "new_tests_smoothed": 75270.0,
- "new_tests_smoothed_per_thousand": 7.61,
- "tests_per_case": 124.76700000000001,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-09",
- "total_cases": 75098.0,
- "new_cases": 644.0,
- "new_cases_smoothed": 613.286,
- "total_deaths": 391.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 7593.019,
- "new_cases_per_million": 65.114,
- "new_cases_smoothed_per_million": 62.008,
- "total_deaths_per_million": 39.533,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.101,
- "new_tests": 85917.0,
- "total_tests": 7790235.0,
- "total_tests_per_thousand": 787.656,
- "new_tests_per_thousand": 8.687,
- "new_tests_smoothed": 76169.0,
- "new_tests_smoothed_per_thousand": 7.701,
- "tests_per_case": 124.198,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-10",
- "total_cases": 75981.0,
- "new_cases": 883.0,
- "new_cases_smoothed": 634.429,
- "total_deaths": 393.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 7682.298,
- "new_cases_per_million": 89.278,
- "new_cases_smoothed_per_million": 64.146,
- "total_deaths_per_million": 39.736,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.087,
- "new_tests": 82076.0,
- "total_tests": 7872311.0,
- "total_tests_per_thousand": 795.955,
- "new_tests_per_thousand": 8.299,
- "new_tests_smoothed": 78205.0,
- "new_tests_smoothed_per_thousand": 7.907,
- "tests_per_case": 123.26799999999999,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-11",
- "total_cases": 76911.0,
- "new_cases": 930.0,
- "new_cases_smoothed": 679.571,
- "total_deaths": 398.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 7776.329,
- "new_cases_per_million": 94.031,
- "new_cases_smoothed_per_million": 68.71,
- "total_deaths_per_million": 40.241,
- "new_deaths_per_million": 0.506,
- "new_deaths_smoothed_per_million": 0.159,
- "new_tests": 75177.0,
- "total_tests": 7947488.0,
- "total_tests_per_thousand": 803.556,
- "new_tests_per_thousand": 7.601,
- "new_tests_smoothed": 77383.0,
- "new_tests_smoothed_per_thousand": 7.824,
- "tests_per_case": 113.87,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-12",
- "total_cases": 77842.0,
- "new_cases": 931.0,
- "new_cases_smoothed": 725.143,
- "total_deaths": 398.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 7870.46,
- "new_cases_per_million": 94.132,
- "new_cases_smoothed_per_million": 73.318,
- "total_deaths_per_million": 40.241,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.159,
- "new_tests": 95287.0,
- "total_tests": 8042775.0,
- "total_tests_per_thousand": 813.19,
- "new_tests_per_thousand": 9.634,
- "new_tests_smoothed": 79233.0,
- "new_tests_smoothed_per_thousand": 8.011,
- "tests_per_case": 109.265,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-13",
- "total_cases": 78849.0,
- "new_cases": 1007.0,
- "new_cases_smoothed": 768.286,
- "total_deaths": 399.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 7972.276,
- "new_cases_per_million": 101.816,
- "new_cases_smoothed_per_million": 77.68,
- "total_deaths_per_million": 40.342,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.159,
- "new_tests": 84642.0,
- "total_tests": 8127417.0,
- "total_tests_per_thousand": 821.748,
- "new_tests_per_thousand": 8.558,
- "new_tests_smoothed": 78848.0,
- "new_tests_smoothed_per_thousand": 7.972,
- "tests_per_case": 102.62799999999999,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-14",
- "total_cases": 79489.0,
- "new_cases": 640.0,
- "new_cases_smoothed": 786.429,
- "total_deaths": 399.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 8036.985,
- "new_cases_per_million": 64.709,
- "new_cases_smoothed_per_million": 79.514,
- "total_deaths_per_million": 40.342,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.159,
- "new_tests": 64084.0,
- "total_tests": 8191501.0,
- "total_tests_per_thousand": 828.227,
- "new_tests_per_thousand": 6.479,
- "new_tests_smoothed": 79788.0,
- "new_tests_smoothed_per_thousand": 8.067,
- "tests_per_case": 101.456,
- "positive_rate": 0.01,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-15",
- "total_cases": 80266.0,
- "new_cases": 777.0,
- "new_cases_smoothed": 830.286,
- "total_deaths": 399.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 8115.546,
- "new_cases_per_million": 78.561,
- "new_cases_smoothed_per_million": 83.949,
- "total_deaths_per_million": 40.342,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.13,
- "new_tests": 86879.0,
- "total_tests": 8278380.0,
- "total_tests_per_thousand": 837.012,
- "new_tests_per_thousand": 8.784,
- "new_tests_smoothed": 82009.0,
- "new_tests_smoothed_per_thousand": 8.292,
- "tests_per_case": 98.772,
- "positive_rate": 0.01,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-16",
- "total_cases": 80940.0,
- "new_cases": 674.0,
- "new_cases_smoothed": 834.571,
- "total_deaths": 401.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 8183.693,
- "new_cases_per_million": 68.147,
- "new_cases_smoothed_per_million": 84.382,
- "total_deaths_per_million": 40.544,
- "new_deaths_per_million": 0.202,
- "new_deaths_smoothed_per_million": 0.144,
- "new_tests": 93682.0,
- "total_tests": 8372062.0,
- "total_tests_per_thousand": 846.484,
- "new_tests_per_thousand": 9.472,
- "new_tests_smoothed": 83118.0,
- "new_tests_smoothed_per_thousand": 8.404,
- "tests_per_case": 99.594,
- "positive_rate": 0.01,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-17",
- "total_cases": 81782.0,
- "new_cases": 842.0,
- "new_cases_smoothed": 828.714,
- "total_deaths": 402.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 8268.826,
- "new_cases_per_million": 85.133,
- "new_cases_smoothed_per_million": 83.79,
- "total_deaths_per_million": 40.645,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.13,
- "new_tests": 92912.0,
- "total_tests": 8464974.0,
- "total_tests_per_thousand": 855.878,
- "new_tests_per_thousand": 9.394,
- "new_tests_smoothed": 84666.0,
- "new_tests_smoothed_per_thousand": 8.56,
- "tests_per_case": 102.165,
- "positive_rate": 0.01,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-18",
- "total_cases": 82568.0,
- "new_cases": 786.0,
- "new_cases_smoothed": 808.143,
- "total_deaths": 402.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 8348.297,
- "new_cases_per_million": 79.471,
- "new_cases_smoothed_per_million": 81.71,
- "total_deaths_per_million": 40.645,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.058,
- "new_tests": 97469.0,
- "total_tests": 8562443.0,
- "total_tests_per_thousand": 865.733,
- "new_tests_per_thousand": 9.855,
- "new_tests_smoothed": 87851.0,
- "new_tests_smoothed_per_thousand": 8.882,
- "tests_per_case": 108.70700000000001,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-19",
- "total_cases": 83433.0,
- "new_cases": 865.0,
- "new_cases_smoothed": 798.714,
- "total_deaths": 403.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 8435.756,
- "new_cases_per_million": 87.459,
- "new_cases_smoothed_per_million": 80.757,
- "total_deaths_per_million": 40.747,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.072,
- "new_tests": 103124.0,
- "total_tests": 8665567.0,
- "total_tests_per_thousand": 876.159,
- "new_tests_per_thousand": 10.427,
- "new_tests_smoothed": 88970.0,
- "new_tests_smoothed_per_thousand": 8.996,
- "tests_per_case": 111.39200000000001,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-20",
- "total_cases": 84242.0,
- "new_cases": 809.0,
- "new_cases_smoothed": 770.429,
- "total_deaths": 404.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 8517.552,
- "new_cases_per_million": 81.796,
- "new_cases_smoothed_per_million": 77.897,
- "total_deaths_per_million": 40.848,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.072,
- "new_tests": 97251.0,
- "total_tests": 8762818.0,
- "total_tests_per_thousand": 885.992,
- "new_tests_per_thousand": 9.833,
- "new_tests_smoothed": 90772.0,
- "new_tests_smoothed_per_thousand": 9.178,
- "tests_per_case": 117.82,
- "positive_rate": 0.008,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-21",
- "total_cases": 84916.0,
- "new_cases": 674.0,
- "new_cases_smoothed": 775.286,
- "total_deaths": 404.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 8585.699,
- "new_cases_per_million": 68.147,
- "new_cases_smoothed_per_million": 78.388,
- "total_deaths_per_million": 40.848,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.072,
- "new_tests": 72388.0,
- "total_tests": 8835206.0,
- "total_tests_per_thousand": 893.311,
- "new_tests_per_thousand": 7.319,
- "new_tests_smoothed": 91958.0,
- "new_tests_smoothed_per_thousand": 9.298,
- "tests_per_case": 118.61200000000001,
- "positive_rate": 0.008,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-22",
- "total_cases": 85595.0,
- "new_cases": 679.0,
- "new_cases_smoothed": 761.286,
- "total_deaths": 405.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 8654.352,
- "new_cases_per_million": 68.652,
- "new_cases_smoothed_per_million": 76.972,
- "total_deaths_per_million": 40.949,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.087,
- "new_tests": 98528.0,
- "total_tests": 8933734.0,
- "total_tests_per_thousand": 903.273,
- "new_tests_per_thousand": 9.962,
- "new_tests_smoothed": 93622.0,
- "new_tests_smoothed_per_thousand": 9.466,
- "tests_per_case": 122.979,
- "positive_rate": 0.008,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-23",
- "total_cases": 86447.0,
- "new_cases": 852.0,
- "new_cases_smoothed": 786.714,
- "total_deaths": 405.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 8740.496,
- "new_cases_per_million": 86.144,
- "new_cases_smoothed_per_million": 79.543,
- "total_deaths_per_million": 40.949,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.058,
- "new_tests": 103199.0,
- "total_tests": 9036933.0,
- "total_tests_per_thousand": 913.708,
- "new_tests_per_thousand": 10.434,
- "new_tests_smoothed": 94982.0,
- "new_tests_smoothed_per_thousand": 9.603,
- "tests_per_case": 120.73299999999999,
- "positive_rate": 0.008,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-24",
- "total_cases": 87530.0,
- "new_cases": 1083.0,
- "new_cases_smoothed": 821.143,
- "total_deaths": 406.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 8849.996,
- "new_cases_per_million": 109.5,
- "new_cases_smoothed_per_million": 83.024,
- "total_deaths_per_million": 41.05,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.058,
- "new_tests": 93618.0,
- "total_tests": 9130551.0,
- "total_tests_per_thousand": 923.173,
- "new_tests_per_thousand": 9.466,
- "new_tests_smoothed": 95082.0,
- "new_tests_smoothed_per_thousand": 9.614,
- "tests_per_case": 115.792,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-25",
- "total_cases": 88532.0,
- "new_cases": 1002.0,
- "new_cases_smoothed": 852.0,
- "total_deaths": 407.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 8951.306,
- "new_cases_per_million": 101.31,
- "new_cases_smoothed_per_million": 86.144,
- "total_deaths_per_million": 41.151,
- "new_deaths_per_million": 0.101,
- "new_deaths_smoothed_per_million": 0.072
- }
- ]
- },
- "ARG": {
- "continent": "South America",
- "location": "Argentina",
- "population": 45195777.0,
- "population_density": 16.177,
- "median_age": 31.9,
- "aged_65_older": 11.198,
- "aged_70_older": 7.441,
- "gdp_per_capita": 18933.907,
- "extreme_poverty": 0.6,
- "cardiovasc_death_rate": 191.032,
- "diabetes_prevalence": 5.5,
- "female_smokers": 16.2,
- "male_smokers": 27.7,
- "hospital_beds_per_thousand": 5.0,
- "life_expectancy": 76.67,
- "human_development_index": 0.825,
- "data": [
- {
- "date": "2020-02-11",
- "new_tests": 2.0,
- "total_tests": 2.0,
- "total_tests_per_thousand": 0.0,
- "new_tests_per_thousand": 0.0,
- "tests_units": "people tested",
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-12",
- "tests_units": "people tested",
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-13",
- "tests_units": "people tested",
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-14",
- "tests_units": "people tested",
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-15",
- "tests_units": "people tested",
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-16",
- "tests_units": "people tested",
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-17",
- "tests_units": "people tested",
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-18",
- "new_tests_smoothed": 0.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_units": "people tested",
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-19",
- "new_tests_smoothed": 0.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_units": "people tested",
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-20",
- "new_tests": 2.0,
- "total_tests": 4.0,
- "total_tests_per_thousand": 0.0,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 0.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_units": "people tested",
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-21",
- "new_tests_smoothed": 0.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_units": "people tested",
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-22",
- "new_tests_smoothed": 0.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_units": "people tested",
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-23",
- "new_tests_smoothed": 0.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_units": "people tested",
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-24",
- "new_tests_smoothed": 0.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_units": "people tested",
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-25",
- "new_tests": 1.0,
- "total_tests": 5.0,
- "total_tests_per_thousand": 0.0,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 0.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_units": "people tested",
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-26",
- "new_tests_smoothed": 1.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_units": "people tested",
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-27",
- "new_tests": 5.0,
- "total_tests": 10.0,
- "total_tests_per_thousand": 0.0,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 1.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_units": "people tested",
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-28",
- "new_tests": 9.0,
- "total_tests": 19.0,
- "total_tests_per_thousand": 0.0,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 2.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_units": "people tested",
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-29",
- "new_tests_smoothed": 2.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_units": "people tested",
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-01",
- "new_tests_smoothed": 3.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_units": "people tested",
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-02",
- "new_tests": 5.0,
- "total_tests": 24.0,
- "total_tests_per_thousand": 0.001,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 3.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_units": "people tested",
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-03",
- "new_tests": 7.0,
- "total_tests": 31.0,
- "total_tests_per_thousand": 0.001,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 4.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_units": "people tested",
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-04",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.022,
- "new_cases_per_million": 0.022,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_tests": 6.0,
- "total_tests": 37.0,
- "total_tests_per_thousand": 0.001,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 4.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_units": "people tested",
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-05",
- "new_tests": 7.0,
- "total_tests": 44.0,
- "total_tests_per_thousand": 0.001,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 5.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_units": "people tested",
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-06",
- "total_cases": 2.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.044,
- "new_cases_per_million": 0.022,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_tests": 10.0,
- "total_tests": 54.0,
- "total_tests_per_thousand": 0.001,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 5.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_units": "people tested",
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-07",
- "total_cases": 8.0,
- "new_cases": 6.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.177,
- "new_cases_per_million": 0.133,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_tests": 8.0,
- "total_tests": 62.0,
- "total_tests_per_thousand": 0.001,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 6.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_units": "people tested",
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-08",
- "total_cases": 9.0,
- "new_cases": 1.0,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "total_cases_per_million": 0.199,
- "new_cases_per_million": 0.022,
- "total_deaths_per_million": 0.022,
- "new_deaths_per_million": 0.022,
- "new_tests": 26.0,
- "total_tests": 88.0,
- "total_tests_per_thousand": 0.002,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 9.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_units": "people tested",
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-09",
- "total_cases": 12.0,
- "new_cases": 3.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.266,
- "new_cases_per_million": 0.066,
- "total_deaths_per_million": 0.022,
- "new_deaths_per_million": 0.0,
- "new_tests": 12.0,
- "total_tests": 100.0,
- "total_tests_per_thousand": 0.002,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 11.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_units": "people tested",
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-10",
- "new_cases_smoothed": 1.714,
- "new_deaths_smoothed": 0.143,
- "new_cases_smoothed_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.003,
- "new_tests": 28.0,
- "total_tests": 128.0,
- "total_tests_per_thousand": 0.003,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 14.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_units": "people tested",
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-11",
- "total_cases": 19.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 0.42,
- "new_cases_per_million": 0.155,
- "new_cases_smoothed_per_million": 0.057,
- "total_deaths_per_million": 0.022,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.003,
- "new_tests": 30.0,
- "total_tests": 158.0,
- "total_tests_per_thousand": 0.003,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 17.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_per_case": 6.611000000000001,
- "positive_rate": 0.151,
- "tests_units": "people tested",
- "stringency_index": 25.0
- },
- {
- "date": "2020-03-12",
- "new_cases_smoothed": 2.571,
- "new_deaths_smoothed": 0.143,
- "new_cases_smoothed_per_million": 0.057,
- "new_deaths_smoothed_per_million": 0.003,
- "new_tests": 41.0,
- "total_tests": 199.0,
- "total_tests_per_thousand": 0.004,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 22.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_per_case": 8.556000000000001,
- "positive_rate": 0.11699999999999999,
- "tests_units": "people tested",
- "stringency_index": 25.0
- },
- {
- "date": "2020-03-13",
- "total_cases": 31.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 0.686,
- "new_cases_per_million": 0.266,
- "new_cases_smoothed_per_million": 0.092,
- "total_deaths_per_million": 0.022,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.003,
- "new_tests": 82.0,
- "total_tests": 281.0,
- "total_tests_per_thousand": 0.006,
- "new_tests_per_thousand": 0.002,
- "new_tests_smoothed": 32.0,
- "new_tests_smoothed_per_thousand": 0.001,
- "tests_per_case": 7.724,
- "positive_rate": 0.129,
- "tests_units": "people tested",
- "stringency_index": 25.0
- },
- {
- "date": "2020-03-14",
- "total_cases": 34.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 2.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 0.752,
- "new_cases_per_million": 0.066,
- "new_cases_smoothed_per_million": 0.082,
- "total_deaths_per_million": 0.044,
- "new_deaths_per_million": 0.022,
- "new_deaths_smoothed_per_million": 0.006,
- "new_tests": 49.0,
- "total_tests": 330.0,
- "total_tests_per_thousand": 0.007,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 38.0,
- "new_tests_smoothed_per_thousand": 0.001,
- "tests_per_case": 10.231,
- "positive_rate": 0.098,
- "tests_units": "people tested",
- "stringency_index": 25.0
- },
- {
- "date": "2020-03-15",
- "total_cases": 45.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 0.996,
- "new_cases_per_million": 0.243,
- "new_cases_smoothed_per_million": 0.114,
- "total_deaths_per_million": 0.044,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.003,
- "new_tests": 78.0,
- "total_tests": 408.0,
- "total_tests_per_thousand": 0.009,
- "new_tests_per_thousand": 0.002,
- "new_tests_smoothed": 46.0,
- "new_tests_smoothed_per_thousand": 0.001,
- "tests_per_case": 8.943999999999999,
- "positive_rate": 0.11199999999999999,
- "tests_units": "people tested",
- "stringency_index": 25.0
- },
- {
- "date": "2020-03-16",
- "total_cases": 56.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 6.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1.239,
- "new_cases_per_million": 0.243,
- "new_cases_smoothed_per_million": 0.139,
- "total_deaths_per_million": 0.044,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.003,
- "new_tests": 99.0,
- "total_tests": 507.0,
- "total_tests_per_thousand": 0.011,
- "new_tests_per_thousand": 0.002,
- "new_tests_smoothed": 58.0,
- "new_tests_smoothed_per_thousand": 0.001,
- "tests_per_case": 9.227,
- "positive_rate": 0.10800000000000001,
- "tests_units": "people tested",
- "stringency_index": 41.67
- },
- {
- "date": "2020-03-17",
- "total_cases": 65.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 7.571,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1.438,
- "new_cases_per_million": 0.199,
- "new_cases_smoothed_per_million": 0.168,
- "total_deaths_per_million": 0.044,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.003,
- "new_tests": 120.0,
- "total_tests": 627.0,
- "total_tests_per_thousand": 0.014,
- "new_tests_per_thousand": 0.003,
- "new_tests_smoothed": 71.0,
- "new_tests_smoothed_per_thousand": 0.002,
- "tests_per_case": 9.377,
- "positive_rate": 0.107,
- "tests_units": "people tested",
- "stringency_index": 41.67
- },
- {
- "date": "2020-03-18",
- "total_cases": 79.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 8.571,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1.748,
- "new_cases_per_million": 0.31,
- "new_cases_smoothed_per_million": 0.19,
- "total_deaths_per_million": 0.044,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.003,
- "new_tests": 189.0,
- "total_tests": 816.0,
- "total_tests_per_thousand": 0.018,
- "new_tests_per_thousand": 0.004,
- "new_tests_smoothed": 94.0,
- "new_tests_smoothed_per_thousand": 0.002,
- "tests_per_case": 10.967,
- "positive_rate": 0.091,
- "tests_units": "people tested",
- "stringency_index": 41.67
- },
- {
- "date": "2020-03-19",
- "total_cases": 97.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 11.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2.146,
- "new_cases_per_million": 0.398,
- "new_cases_smoothed_per_million": 0.247,
- "total_deaths_per_million": 0.044,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.003,
- "new_tests": 137.0,
- "total_tests": 953.0,
- "total_tests_per_thousand": 0.021,
- "new_tests_per_thousand": 0.003,
- "new_tests_smoothed": 108.0,
- "new_tests_smoothed_per_thousand": 0.002,
- "tests_per_case": 9.692,
- "positive_rate": 0.10300000000000001,
- "tests_units": "people tested",
- "stringency_index": 75.0
- },
- {
- "date": "2020-03-20",
- "total_cases": 128.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 13.857,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2.832,
- "new_cases_per_million": 0.686,
- "new_cases_smoothed_per_million": 0.307,
- "total_deaths_per_million": 0.066,
- "new_deaths_per_million": 0.022,
- "new_deaths_smoothed_per_million": 0.006,
- "new_tests": 213.0,
- "total_tests": 1166.0,
- "total_tests_per_thousand": 0.026,
- "new_tests_per_thousand": 0.005,
- "new_tests_smoothed": 126.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "tests_per_case": 9.093,
- "positive_rate": 0.11,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-03-21",
- "total_cases": 158.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 17.714,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 3.496,
- "new_cases_per_million": 0.664,
- "new_cases_smoothed_per_million": 0.392,
- "total_deaths_per_million": 0.066,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.003,
- "new_tests": 291.0,
- "total_tests": 1457.0,
- "total_tests_per_thousand": 0.032,
- "new_tests_per_thousand": 0.006,
- "new_tests_smoothed": 161.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_per_case": 9.089,
- "positive_rate": 0.11,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-03-22",
- "total_cases": 225.0,
- "new_cases": 67.0,
- "new_cases_smoothed": 25.714,
- "total_deaths": 4.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 4.978,
- "new_cases_per_million": 1.482,
- "new_cases_smoothed_per_million": 0.569,
- "total_deaths_per_million": 0.089,
- "new_deaths_per_million": 0.022,
- "new_deaths_smoothed_per_million": 0.006,
- "new_tests": 218.0,
- "total_tests": 1675.0,
- "total_tests_per_thousand": 0.037,
- "new_tests_per_thousand": 0.005,
- "new_tests_smoothed": 181.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_per_case": 7.039,
- "positive_rate": 0.142,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-03-23",
- "total_cases": 266.0,
- "new_cases": 41.0,
- "new_cases_smoothed": 30.0,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 5.886,
- "new_cases_per_million": 0.907,
- "new_cases_smoothed_per_million": 0.664,
- "total_deaths_per_million": 0.089,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.006,
- "new_tests": 258.0,
- "total_tests": 1933.0,
- "total_tests_per_thousand": 0.043,
- "new_tests_per_thousand": 0.006,
- "new_tests_smoothed": 204.0,
- "new_tests_smoothed_per_thousand": 0.005,
- "tests_per_case": 6.8,
- "positive_rate": 0.147,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-03-24",
- "total_cases": 301.0,
- "new_cases": 35.0,
- "new_cases_smoothed": 33.714,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 6.66,
- "new_cases_per_million": 0.774,
- "new_cases_smoothed_per_million": 0.746,
- "total_deaths_per_million": 0.089,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.006,
- "new_tests": 388.0,
- "total_tests": 2321.0,
- "total_tests_per_thousand": 0.051,
- "new_tests_per_thousand": 0.009,
- "new_tests_smoothed": 242.0,
- "new_tests_smoothed_per_thousand": 0.005,
- "tests_per_case": 7.178,
- "positive_rate": 0.139,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-03-25",
- "total_cases": 387.0,
- "new_cases": 86.0,
- "new_cases_smoothed": 44.0,
- "total_deaths": 6.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 8.563,
- "new_cases_per_million": 1.903,
- "new_cases_smoothed_per_million": 0.974,
- "total_deaths_per_million": 0.133,
- "new_deaths_per_million": 0.044,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 442.0,
- "total_tests": 2763.0,
- "total_tests_per_thousand": 0.061,
- "new_tests_per_thousand": 0.01,
- "new_tests_smoothed": 278.0,
- "new_tests_smoothed_per_thousand": 0.006,
- "tests_per_case": 6.318,
- "positive_rate": 0.158,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-03-26",
- "total_cases": 502.0,
- "new_cases": 115.0,
- "new_cases_smoothed": 57.857,
- "total_deaths": 8.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 11.107,
- "new_cases_per_million": 2.544,
- "new_cases_smoothed_per_million": 1.28,
- "total_deaths_per_million": 0.177,
- "new_deaths_per_million": 0.044,
- "new_deaths_smoothed_per_million": 0.019,
- "new_tests": 483.0,
- "total_tests": 3246.0,
- "total_tests_per_thousand": 0.072,
- "new_tests_per_thousand": 0.011,
- "new_tests_smoothed": 328.0,
- "new_tests_smoothed_per_thousand": 0.007,
- "tests_per_case": 5.669,
- "positive_rate": 0.17600000000000002,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-03-27",
- "total_cases": 589.0,
- "new_cases": 87.0,
- "new_cases_smoothed": 65.857,
- "total_deaths": 12.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 13.032,
- "new_cases_per_million": 1.925,
- "new_cases_smoothed_per_million": 1.457,
- "total_deaths_per_million": 0.266,
- "new_deaths_per_million": 0.089,
- "new_deaths_smoothed_per_million": 0.028,
- "new_tests": 362.0,
- "total_tests": 3608.0,
- "total_tests_per_thousand": 0.08,
- "new_tests_per_thousand": 0.008,
- "new_tests_smoothed": 349.0,
- "new_tests_smoothed_per_thousand": 0.008,
- "tests_per_case": 5.2989999999999995,
- "positive_rate": 0.18899999999999997,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-03-28",
- "total_cases": 690.0,
- "new_cases": 101.0,
- "new_cases_smoothed": 76.0,
- "total_deaths": 17.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 15.267,
- "new_cases_per_million": 2.235,
- "new_cases_smoothed_per_million": 1.682,
- "total_deaths_per_million": 0.376,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.044,
- "new_tests": 411.0,
- "total_tests": 4019.0,
- "total_tests_per_thousand": 0.089,
- "new_tests_per_thousand": 0.009,
- "new_tests_smoothed": 366.0,
- "new_tests_smoothed_per_thousand": 0.008,
- "tests_per_case": 4.816,
- "positive_rate": 0.20800000000000002,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-03-29",
- "total_cases": 745.0,
- "new_cases": 55.0,
- "new_cases_smoothed": 74.286,
- "total_deaths": 19.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 16.484,
- "new_cases_per_million": 1.217,
- "new_cases_smoothed_per_million": 1.644,
- "total_deaths_per_million": 0.42,
- "new_deaths_per_million": 0.044,
- "new_deaths_smoothed_per_million": 0.047,
- "new_tests": 622.0,
- "total_tests": 4641.0,
- "total_tests_per_thousand": 0.103,
- "new_tests_per_thousand": 0.014,
- "new_tests_smoothed": 424.0,
- "new_tests_smoothed_per_thousand": 0.009,
- "tests_per_case": 5.707999999999999,
- "positive_rate": 0.175,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-03-30",
- "total_cases": 820.0,
- "new_cases": 75.0,
- "new_cases_smoothed": 79.143,
- "total_deaths": 20.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 18.143,
- "new_cases_per_million": 1.659,
- "new_cases_smoothed_per_million": 1.751,
- "total_deaths_per_million": 0.443,
- "new_deaths_per_million": 0.022,
- "new_deaths_smoothed_per_million": 0.051,
- "new_tests": 532.0,
- "total_tests": 5173.0,
- "total_tests_per_thousand": 0.114,
- "new_tests_per_thousand": 0.012,
- "new_tests_smoothed": 463.0,
- "new_tests_smoothed_per_thousand": 0.01,
- "tests_per_case": 5.85,
- "positive_rate": 0.171,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-03-31",
- "total_cases": 966.0,
- "new_cases": 146.0,
- "new_cases_smoothed": 95.0,
- "total_deaths": 24.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 21.374,
- "new_cases_per_million": 3.23,
- "new_cases_smoothed_per_million": 2.102,
- "total_deaths_per_million": 0.531,
- "new_deaths_per_million": 0.089,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests": 587.0,
- "total_tests": 5760.0,
- "total_tests_per_thousand": 0.127,
- "new_tests_per_thousand": 0.013,
- "new_tests_smoothed": 491.0,
- "new_tests_smoothed_per_thousand": 0.011,
- "tests_per_case": 5.167999999999999,
- "positive_rate": 0.193,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-01",
- "total_cases": 966.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 82.714,
- "total_deaths": 24.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 21.374,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.83,
- "total_deaths_per_million": 0.531,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.057,
- "new_tests": 929.0,
- "total_tests": 6689.0,
- "total_tests_per_thousand": 0.148,
- "new_tests_per_thousand": 0.021,
- "new_tests_smoothed": 561.0,
- "new_tests_smoothed_per_thousand": 0.012,
- "tests_per_case": 6.782,
- "positive_rate": 0.147,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-02",
- "total_cases": 1133.0,
- "new_cases": 167.0,
- "new_cases_smoothed": 90.143,
- "total_deaths": 31.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 25.069,
- "new_cases_per_million": 3.695,
- "new_cases_smoothed_per_million": 1.994,
- "total_deaths_per_million": 0.686,
- "new_deaths_per_million": 0.155,
- "new_deaths_smoothed_per_million": 0.073,
- "new_tests": 1287.0,
- "total_tests": 7976.0,
- "total_tests_per_thousand": 0.176,
- "new_tests_per_thousand": 0.028,
- "new_tests_smoothed": 676.0,
- "new_tests_smoothed_per_thousand": 0.015,
- "tests_per_case": 7.499,
- "positive_rate": 0.133,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-03",
- "total_cases": 1133.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 77.714,
- "total_deaths": 34.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 25.069,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.72,
- "total_deaths_per_million": 0.752,
- "new_deaths_per_million": 0.066,
- "new_deaths_smoothed_per_million": 0.07,
- "new_tests": 1255.0,
- "total_tests": 9231.0,
- "total_tests_per_thousand": 0.204,
- "new_tests_per_thousand": 0.028,
- "new_tests_smoothed": 803.0,
- "new_tests_smoothed_per_thousand": 0.018,
- "tests_per_case": 10.333,
- "positive_rate": 0.09699999999999999,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-04",
- "total_cases": 1265.0,
- "new_cases": 132.0,
- "new_cases_smoothed": 82.143,
- "total_deaths": 37.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 27.989,
- "new_cases_per_million": 2.921,
- "new_cases_smoothed_per_million": 1.817,
- "total_deaths_per_million": 0.819,
- "new_deaths_per_million": 0.066,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests": 1092.0,
- "total_tests": 10323.0,
- "total_tests_per_thousand": 0.228,
- "new_tests_per_thousand": 0.024,
- "new_tests_smoothed": 901.0,
- "new_tests_smoothed_per_thousand": 0.02,
- "tests_per_case": 10.969000000000001,
- "positive_rate": 0.091,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-05",
- "total_cases": 1451.0,
- "new_cases": 186.0,
- "new_cases_smoothed": 100.857,
- "total_deaths": 43.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 32.105,
- "new_cases_per_million": 4.115,
- "new_cases_smoothed_per_million": 2.232,
- "total_deaths_per_million": 0.951,
- "new_deaths_per_million": 0.133,
- "new_deaths_smoothed_per_million": 0.076,
- "new_tests": 820.0,
- "total_tests": 11143.0,
- "total_tests_per_thousand": 0.247,
- "new_tests_per_thousand": 0.018,
- "new_tests_smoothed": 929.0,
- "new_tests_smoothed_per_thousand": 0.021,
- "tests_per_case": 9.211,
- "positive_rate": 0.109,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-06",
- "total_cases": 1554.0,
- "new_cases": 103.0,
- "new_cases_smoothed": 104.857,
- "total_deaths": 46.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 34.384,
- "new_cases_per_million": 2.279,
- "new_cases_smoothed_per_million": 2.32,
- "total_deaths_per_million": 1.018,
- "new_deaths_per_million": 0.066,
- "new_deaths_smoothed_per_million": 0.082,
- "new_tests": 1094.0,
- "total_tests": 12237.0,
- "total_tests_per_thousand": 0.271,
- "new_tests_per_thousand": 0.024,
- "new_tests_smoothed": 1009.0,
- "new_tests_smoothed_per_thousand": 0.022,
- "tests_per_case": 9.623,
- "positive_rate": 0.10400000000000001,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-07",
- "total_cases": 1628.0,
- "new_cases": 74.0,
- "new_cases_smoothed": 94.571,
- "total_deaths": 53.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 36.021,
- "new_cases_per_million": 1.637,
- "new_cases_smoothed_per_million": 2.092,
- "total_deaths_per_million": 1.173,
- "new_deaths_per_million": 0.155,
- "new_deaths_smoothed_per_million": 0.092,
- "new_tests": 1383.0,
- "total_tests": 13620.0,
- "total_tests_per_thousand": 0.301,
- "new_tests_per_thousand": 0.031,
- "new_tests_smoothed": 1123.0,
- "new_tests_smoothed_per_thousand": 0.025,
- "tests_per_case": 11.875,
- "positive_rate": 0.084,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-08",
- "total_cases": 1715.0,
- "new_cases": 87.0,
- "new_cases_smoothed": 107.0,
- "total_deaths": 60.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 37.946,
- "new_cases_per_million": 1.925,
- "new_cases_smoothed_per_million": 2.367,
- "total_deaths_per_million": 1.328,
- "new_deaths_per_million": 0.155,
- "new_deaths_smoothed_per_million": 0.114,
- "new_tests": 1540.0,
- "total_tests": 15160.0,
- "total_tests_per_thousand": 0.335,
- "new_tests_per_thousand": 0.034,
- "new_tests_smoothed": 1210.0,
- "new_tests_smoothed_per_thousand": 0.027,
- "tests_per_case": 11.308,
- "positive_rate": 0.08800000000000001,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-09",
- "total_cases": 1795.0,
- "new_cases": 80.0,
- "new_cases_smoothed": 94.571,
- "total_deaths": 65.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 39.716,
- "new_cases_per_million": 1.77,
- "new_cases_smoothed_per_million": 2.092,
- "total_deaths_per_million": 1.438,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.107,
- "new_tests": 1440.0,
- "total_tests": 16600.0,
- "total_tests_per_thousand": 0.367,
- "new_tests_per_thousand": 0.032,
- "new_tests_smoothed": 1232.0,
- "new_tests_smoothed_per_thousand": 0.027,
- "tests_per_case": 13.027000000000001,
- "positive_rate": 0.077,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-10",
- "total_cases": 1894.0,
- "new_cases": 99.0,
- "new_cases_smoothed": 108.714,
- "total_deaths": 79.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 6.429,
- "total_cases_per_million": 41.907,
- "new_cases_per_million": 2.19,
- "new_cases_smoothed_per_million": 2.405,
- "total_deaths_per_million": 1.748,
- "new_deaths_per_million": 0.31,
- "new_deaths_smoothed_per_million": 0.142,
- "new_tests": 1241.0,
- "total_tests": 17841.0,
- "total_tests_per_thousand": 0.395,
- "new_tests_per_thousand": 0.027,
- "new_tests_smoothed": 1230.0,
- "new_tests_smoothed_per_thousand": 0.027,
- "tests_per_case": 11.314,
- "positive_rate": 0.08800000000000001,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-11",
- "total_cases": 1975.0,
- "new_cases": 81.0,
- "new_cases_smoothed": 101.429,
- "total_deaths": 82.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 6.429,
- "total_cases_per_million": 43.699,
- "new_cases_per_million": 1.792,
- "new_cases_smoothed_per_million": 2.244,
- "total_deaths_per_million": 1.814,
- "new_deaths_per_million": 0.066,
- "new_deaths_smoothed_per_million": 0.142,
- "new_tests": 1338.0,
- "total_tests": 19179.0,
- "total_tests_per_thousand": 0.424,
- "new_tests_per_thousand": 0.03,
- "new_tests_smoothed": 1265.0,
- "new_tests_smoothed_per_thousand": 0.028,
- "tests_per_case": 12.472000000000001,
- "positive_rate": 0.08,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-12",
- "total_cases": 2137.0,
- "new_cases": 162.0,
- "new_cases_smoothed": 98.0,
- "total_deaths": 89.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 47.283,
- "new_cases_per_million": 3.584,
- "new_cases_smoothed_per_million": 2.168,
- "total_deaths_per_million": 1.969,
- "new_deaths_per_million": 0.155,
- "new_deaths_smoothed_per_million": 0.145,
- "new_tests": 1070.0,
- "total_tests": 20249.0,
- "total_tests_per_thousand": 0.448,
- "new_tests_per_thousand": 0.024,
- "new_tests_smoothed": 1301.0,
- "new_tests_smoothed_per_thousand": 0.029,
- "tests_per_case": 13.276,
- "positive_rate": 0.075,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-13",
- "total_cases": 2203.0,
- "new_cases": 66.0,
- "new_cases_smoothed": 92.714,
- "total_deaths": 95.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 7.0,
- "total_cases_per_million": 48.743,
- "new_cases_per_million": 1.46,
- "new_cases_smoothed_per_million": 2.051,
- "total_deaths_per_million": 2.102,
- "new_deaths_per_million": 0.133,
- "new_deaths_smoothed_per_million": 0.155,
- "new_tests": 1412.0,
- "total_tests": 21661.0,
- "total_tests_per_thousand": 0.479,
- "new_tests_per_thousand": 0.031,
- "new_tests_smoothed": 1346.0,
- "new_tests_smoothed_per_thousand": 0.03,
- "tests_per_case": 14.517999999999999,
- "positive_rate": 0.069,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-14",
- "total_cases": 2272.0,
- "new_cases": 69.0,
- "new_cases_smoothed": 92.0,
- "total_deaths": 98.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 6.429,
- "total_cases_per_million": 50.27,
- "new_cases_per_million": 1.527,
- "new_cases_smoothed_per_million": 2.036,
- "total_deaths_per_million": 2.168,
- "new_deaths_per_million": 0.066,
- "new_deaths_smoothed_per_million": 0.142,
- "new_tests": 1668.0,
- "total_tests": 23329.0,
- "total_tests_per_thousand": 0.516,
- "new_tests_per_thousand": 0.037,
- "new_tests_smoothed": 1387.0,
- "new_tests_smoothed_per_thousand": 0.031,
- "tests_per_case": 15.075999999999999,
- "positive_rate": 0.066,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-15",
- "total_cases": 2432.0,
- "new_cases": 160.0,
- "new_cases_smoothed": 102.429,
- "total_deaths": 105.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 6.429,
- "total_cases_per_million": 53.81,
- "new_cases_per_million": 3.54,
- "new_cases_smoothed_per_million": 2.266,
- "total_deaths_per_million": 2.323,
- "new_deaths_per_million": 0.155,
- "new_deaths_smoothed_per_million": 0.142,
- "new_tests": 1694.0,
- "total_tests": 25023.0,
- "total_tests_per_thousand": 0.554,
- "new_tests_per_thousand": 0.037,
- "new_tests_smoothed": 1409.0,
- "new_tests_smoothed_per_thousand": 0.031,
- "tests_per_case": 13.755999999999998,
- "positive_rate": 0.073,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-16",
- "total_cases": 2432.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 91.0,
- "total_deaths": 109.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 6.286,
- "total_cases_per_million": 53.81,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.013,
- "total_deaths_per_million": 2.412,
- "new_deaths_per_million": 0.089,
- "new_deaths_smoothed_per_million": 0.139,
- "new_tests": 1730.0,
- "total_tests": 26753.0,
- "total_tests_per_thousand": 0.592,
- "new_tests_per_thousand": 0.038,
- "new_tests_smoothed": 1450.0,
- "new_tests_smoothed_per_thousand": 0.032,
- "tests_per_case": 15.934000000000001,
- "positive_rate": 0.063,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-17",
- "total_cases": 2560.0,
- "new_cases": 128.0,
- "new_cases_smoothed": 95.143,
- "total_deaths": 115.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 56.642,
- "new_cases_per_million": 2.832,
- "new_cases_smoothed_per_million": 2.105,
- "total_deaths_per_million": 2.544,
- "new_deaths_per_million": 0.133,
- "new_deaths_smoothed_per_million": 0.114,
- "new_tests": 1702.0,
- "total_tests": 28455.0,
- "total_tests_per_thousand": 0.63,
- "new_tests_per_thousand": 0.038,
- "new_tests_smoothed": 1516.0,
- "new_tests_smoothed_per_thousand": 0.034,
- "tests_per_case": 15.934000000000001,
- "positive_rate": 0.063,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-18",
- "total_cases": 2658.0,
- "new_cases": 98.0,
- "new_cases_smoothed": 97.571,
- "total_deaths": 122.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 5.714,
- "total_cases_per_million": 58.811,
- "new_cases_per_million": 2.168,
- "new_cases_smoothed_per_million": 2.159,
- "total_deaths_per_million": 2.699,
- "new_deaths_per_million": 0.155,
- "new_deaths_smoothed_per_million": 0.126,
- "new_tests": 1645.0,
- "total_tests": 30100.0,
- "total_tests_per_thousand": 0.666,
- "new_tests_per_thousand": 0.036,
- "new_tests_smoothed": 1560.0,
- "new_tests_smoothed_per_thousand": 0.035,
- "tests_per_case": 15.988,
- "positive_rate": 0.063,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-19",
- "total_cases": 2828.0,
- "new_cases": 170.0,
- "new_cases_smoothed": 98.714,
- "total_deaths": 132.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 6.143,
- "total_cases_per_million": 62.572,
- "new_cases_per_million": 3.761,
- "new_cases_smoothed_per_million": 2.184,
- "total_deaths_per_million": 2.921,
- "new_deaths_per_million": 0.221,
- "new_deaths_smoothed_per_million": 0.136,
- "new_tests": 1176.0,
- "total_tests": 31276.0,
- "total_tests_per_thousand": 0.692,
- "new_tests_per_thousand": 0.026,
- "new_tests_smoothed": 1575.0,
- "new_tests_smoothed_per_thousand": 0.035,
- "tests_per_case": 15.955,
- "positive_rate": 0.063,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-20",
- "total_cases": 2930.0,
- "new_cases": 102.0,
- "new_cases_smoothed": 103.857,
- "total_deaths": 134.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 64.829,
- "new_cases_per_million": 2.257,
- "new_cases_smoothed_per_million": 2.298,
- "total_deaths_per_million": 2.965,
- "new_deaths_per_million": 0.044,
- "new_deaths_smoothed_per_million": 0.123,
- "new_tests": 1808.0,
- "total_tests": 33084.0,
- "total_tests_per_thousand": 0.732,
- "new_tests_per_thousand": 0.04,
- "new_tests_smoothed": 1632.0,
- "new_tests_smoothed_per_thousand": 0.036,
- "tests_per_case": 15.714,
- "positive_rate": 0.064,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-21",
- "total_cases": 3020.0,
- "new_cases": 90.0,
- "new_cases_smoothed": 106.857,
- "total_deaths": 142.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 6.286,
- "total_cases_per_million": 66.82,
- "new_cases_per_million": 1.991,
- "new_cases_smoothed_per_million": 2.364,
- "total_deaths_per_million": 3.142,
- "new_deaths_per_million": 0.177,
- "new_deaths_smoothed_per_million": 0.139,
- "new_tests": 2273.0,
- "total_tests": 35357.0,
- "total_tests_per_thousand": 0.782,
- "new_tests_per_thousand": 0.05,
- "new_tests_smoothed": 1718.0,
- "new_tests_smoothed_per_thousand": 0.038,
- "tests_per_case": 16.078,
- "positive_rate": 0.062,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-22",
- "total_cases": 3132.0,
- "new_cases": 112.0,
- "new_cases_smoothed": 100.0,
- "total_deaths": 151.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 69.299,
- "new_cases_per_million": 2.478,
- "new_cases_smoothed_per_million": 2.213,
- "total_deaths_per_million": 3.341,
- "new_deaths_per_million": 0.199,
- "new_deaths_smoothed_per_million": 0.145,
- "new_tests": 1999.0,
- "total_tests": 37356.0,
- "total_tests_per_thousand": 0.827,
- "new_tests_per_thousand": 0.044,
- "new_tests_smoothed": 1762.0,
- "new_tests_smoothed_per_thousand": 0.039,
- "tests_per_case": 17.62,
- "positive_rate": 0.057,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-23",
- "total_cases": 3276.0,
- "new_cases": 144.0,
- "new_cases_smoothed": 120.571,
- "total_deaths": 159.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 7.143,
- "total_cases_per_million": 72.485,
- "new_cases_per_million": 3.186,
- "new_cases_smoothed_per_million": 2.668,
- "total_deaths_per_million": 3.518,
- "new_deaths_per_million": 0.177,
- "new_deaths_smoothed_per_million": 0.158,
- "new_tests": 2183.0,
- "total_tests": 39539.0,
- "total_tests_per_thousand": 0.875,
- "new_tests_per_thousand": 0.048,
- "new_tests_smoothed": 1827.0,
- "new_tests_smoothed_per_thousand": 0.04,
- "tests_per_case": 15.152999999999999,
- "positive_rate": 0.066,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-24",
- "total_cases": 3423.0,
- "new_cases": 147.0,
- "new_cases_smoothed": 123.286,
- "total_deaths": 165.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 7.143,
- "total_cases_per_million": 75.737,
- "new_cases_per_million": 3.253,
- "new_cases_smoothed_per_million": 2.728,
- "total_deaths_per_million": 3.651,
- "new_deaths_per_million": 0.133,
- "new_deaths_smoothed_per_million": 0.158,
- "new_tests": 2458.0,
- "total_tests": 41997.0,
- "total_tests_per_thousand": 0.929,
- "new_tests_per_thousand": 0.054,
- "new_tests_smoothed": 1935.0,
- "new_tests_smoothed_per_thousand": 0.043,
- "tests_per_case": 15.695,
- "positive_rate": 0.064,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-25",
- "total_cases": 3423.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 109.286,
- "total_deaths": 167.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 6.429,
- "total_cases_per_million": 75.737,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.418,
- "total_deaths_per_million": 3.695,
- "new_deaths_per_million": 0.044,
- "new_deaths_smoothed_per_million": 0.142,
- "new_tests": 2058.0,
- "total_tests": 44055.0,
- "total_tests_per_thousand": 0.975,
- "new_tests_per_thousand": 0.046,
- "new_tests_smoothed": 1994.0,
- "new_tests_smoothed_per_thousand": 0.044,
- "tests_per_case": 18.246,
- "positive_rate": 0.055,
- "tests_units": "people tested",
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-26",
- "total_cases": 3767.0,
- "new_cases": 344.0,
- "new_cases_smoothed": 134.143,
- "total_deaths": 185.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 7.571,
- "total_cases_per_million": 83.348,
- "new_cases_per_million": 7.611,
- "new_cases_smoothed_per_million": 2.968,
- "total_deaths_per_million": 4.093,
- "new_deaths_per_million": 0.398,
- "new_deaths_smoothed_per_million": 0.168,
- "new_tests": 1413.0,
- "total_tests": 45468.0,
- "total_tests_per_thousand": 1.006,
- "new_tests_per_thousand": 0.031,
- "new_tests_smoothed": 2027.0,
- "new_tests_smoothed_per_thousand": 0.045,
- "tests_per_case": 15.110999999999999,
- "positive_rate": 0.066,
- "tests_units": "people tested",
- "stringency_index": 98.15
- },
- {
- "date": "2020-04-27",
- "total_cases": 3767.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 119.571,
- "total_deaths": 186.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 7.429,
- "total_cases_per_million": 83.348,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.646,
- "total_deaths_per_million": 4.115,
- "new_deaths_per_million": 0.022,
- "new_deaths_smoothed_per_million": 0.164,
- "new_tests": 1781.0,
- "total_tests": 47249.0,
- "total_tests_per_thousand": 1.045,
- "new_tests_per_thousand": 0.039,
- "new_tests_smoothed": 2024.0,
- "new_tests_smoothed_per_thousand": 0.045,
- "tests_per_case": 16.927,
- "positive_rate": 0.059000000000000004,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-28",
- "total_cases": 3990.0,
- "new_cases": 223.0,
- "new_cases_smoothed": 138.571,
- "total_deaths": 197.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 7.857,
- "total_cases_per_million": 88.283,
- "new_cases_per_million": 4.934,
- "new_cases_smoothed_per_million": 3.066,
- "total_deaths_per_million": 4.359,
- "new_deaths_per_million": 0.243,
- "new_deaths_smoothed_per_million": 0.174,
- "new_tests": 2100.0,
- "total_tests": 49349.0,
- "total_tests_per_thousand": 1.092,
- "new_tests_per_thousand": 0.046,
- "new_tests_smoothed": 1999.0,
- "new_tests_smoothed_per_thousand": 0.044,
- "tests_per_case": 14.425999999999998,
- "positive_rate": 0.069,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-29",
- "total_cases": 4114.0,
- "new_cases": 124.0,
- "new_cases_smoothed": 140.286,
- "total_deaths": 207.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 8.0,
- "total_cases_per_million": 91.026,
- "new_cases_per_million": 2.744,
- "new_cases_smoothed_per_million": 3.104,
- "total_deaths_per_million": 4.58,
- "new_deaths_per_million": 0.221,
- "new_deaths_smoothed_per_million": 0.177,
- "new_tests": 2388.0,
- "total_tests": 51737.0,
- "total_tests_per_thousand": 1.145,
- "new_tests_per_thousand": 0.053,
- "new_tests_smoothed": 2054.0,
- "new_tests_smoothed_per_thousand": 0.045,
- "tests_per_case": 14.642000000000001,
- "positive_rate": 0.068,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-30",
- "total_cases": 4272.0,
- "new_cases": 158.0,
- "new_cases_smoothed": 142.286,
- "total_deaths": 214.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 7.857,
- "total_cases_per_million": 94.522,
- "new_cases_per_million": 3.496,
- "new_cases_smoothed_per_million": 3.148,
- "total_deaths_per_million": 4.735,
- "new_deaths_per_million": 0.155,
- "new_deaths_smoothed_per_million": 0.174,
- "new_tests": 2180.0,
- "total_tests": 53917.0,
- "total_tests_per_thousand": 1.193,
- "new_tests_per_thousand": 0.048,
- "new_tests_smoothed": 2054.0,
- "new_tests_smoothed_per_thousand": 0.045,
- "tests_per_case": 14.436,
- "positive_rate": 0.069,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-05-01",
- "total_cases": 4415.0,
- "new_cases": 143.0,
- "new_cases_smoothed": 141.714,
- "total_deaths": 218.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 7.571,
- "total_cases_per_million": 97.686,
- "new_cases_per_million": 3.164,
- "new_cases_smoothed_per_million": 3.136,
- "total_deaths_per_million": 4.823,
- "new_deaths_per_million": 0.089,
- "new_deaths_smoothed_per_million": 0.168,
- "new_tests": 1971.0,
- "total_tests": 55888.0,
- "total_tests_per_thousand": 1.237,
- "new_tests_per_thousand": 0.044,
- "new_tests_smoothed": 1984.0,
- "new_tests_smoothed_per_thousand": 0.044,
- "tests_per_case": 14.0,
- "positive_rate": 0.071,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-05-02",
- "total_cases": 4519.0,
- "new_cases": 104.0,
- "new_cases_smoothed": 156.571,
- "total_deaths": 225.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 8.286,
- "total_cases_per_million": 99.987,
- "new_cases_per_million": 2.301,
- "new_cases_smoothed_per_million": 3.464,
- "total_deaths_per_million": 4.978,
- "new_deaths_per_million": 0.155,
- "new_deaths_smoothed_per_million": 0.183,
- "new_tests": 1500.0,
- "total_tests": 57388.0,
- "total_tests_per_thousand": 1.27,
- "new_tests_per_thousand": 0.033,
- "new_tests_smoothed": 1905.0,
- "new_tests_smoothed_per_thousand": 0.042,
- "tests_per_case": 12.167,
- "positive_rate": 0.08199999999999999,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-05-03",
- "total_cases": 4668.0,
- "new_cases": 149.0,
- "new_cases_smoothed": 128.714,
- "total_deaths": 237.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 7.429,
- "total_cases_per_million": 103.284,
- "new_cases_per_million": 3.297,
- "new_cases_smoothed_per_million": 2.848,
- "total_deaths_per_million": 5.244,
- "new_deaths_per_million": 0.266,
- "new_deaths_smoothed_per_million": 0.164,
- "new_tests": 1324.0,
- "total_tests": 58712.0,
- "total_tests_per_thousand": 1.299,
- "new_tests_per_thousand": 0.029,
- "new_tests_smoothed": 1892.0,
- "new_tests_smoothed_per_thousand": 0.042,
- "tests_per_case": 14.699000000000002,
- "positive_rate": 0.068,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-05-04",
- "total_cases": 4770.0,
- "new_cases": 102.0,
- "new_cases_smoothed": 143.286,
- "total_deaths": 246.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 105.541,
- "new_cases_per_million": 2.257,
- "new_cases_smoothed_per_million": 3.17,
- "total_deaths_per_million": 5.443,
- "new_deaths_per_million": 0.199,
- "new_deaths_smoothed_per_million": 0.19,
- "new_tests": 1876.0,
- "total_tests": 60588.0,
- "total_tests_per_thousand": 1.341,
- "new_tests_per_thousand": 0.042,
- "new_tests_smoothed": 1906.0,
- "new_tests_smoothed_per_thousand": 0.042,
- "tests_per_case": 13.302,
- "positive_rate": 0.075,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-05-05",
- "total_cases": 4874.0,
- "new_cases": 104.0,
- "new_cases_smoothed": 126.286,
- "total_deaths": 260.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 9.0,
- "total_cases_per_million": 107.842,
- "new_cases_per_million": 2.301,
- "new_cases_smoothed_per_million": 2.794,
- "total_deaths_per_million": 5.753,
- "new_deaths_per_million": 0.31,
- "new_deaths_smoothed_per_million": 0.199,
- "new_tests": 2345.0,
- "total_tests": 62933.0,
- "total_tests_per_thousand": 1.392,
- "new_tests_per_thousand": 0.052,
- "new_tests_smoothed": 1941.0,
- "new_tests_smoothed_per_thousand": 0.043,
- "tests_per_case": 15.37,
- "positive_rate": 0.065,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-05-06",
- "total_cases": 5007.0,
- "new_cases": 133.0,
- "new_cases_smoothed": 127.571,
- "total_deaths": 264.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 110.785,
- "new_cases_per_million": 2.943,
- "new_cases_smoothed_per_million": 2.823,
- "total_deaths_per_million": 5.841,
- "new_deaths_per_million": 0.089,
- "new_deaths_smoothed_per_million": 0.18,
- "new_tests": 2163.0,
- "total_tests": 65096.0,
- "total_tests_per_thousand": 1.44,
- "new_tests_per_thousand": 0.048,
- "new_tests_smoothed": 1908.0,
- "new_tests_smoothed_per_thousand": 0.042,
- "tests_per_case": 14.956,
- "positive_rate": 0.067,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-05-07",
- "total_cases": 5195.0,
- "new_cases": 188.0,
- "new_cases_smoothed": 131.857,
- "total_deaths": 273.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 8.429,
- "total_cases_per_million": 114.944,
- "new_cases_per_million": 4.16,
- "new_cases_smoothed_per_million": 2.917,
- "total_deaths_per_million": 6.04,
- "new_deaths_per_million": 0.199,
- "new_deaths_smoothed_per_million": 0.186,
- "new_tests": 2274.0,
- "total_tests": 67370.0,
- "total_tests_per_thousand": 1.491,
- "new_tests_per_thousand": 0.05,
- "new_tests_smoothed": 1922.0,
- "new_tests_smoothed_per_thousand": 0.043,
- "tests_per_case": 14.575999999999999,
- "positive_rate": 0.069,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-05-08",
- "total_cases": 5358.0,
- "new_cases": 163.0,
- "new_cases_smoothed": 134.714,
- "total_deaths": 282.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 9.143,
- "total_cases_per_million": 118.551,
- "new_cases_per_million": 3.607,
- "new_cases_smoothed_per_million": 2.981,
- "total_deaths_per_million": 6.24,
- "new_deaths_per_million": 0.199,
- "new_deaths_smoothed_per_million": 0.202,
- "new_tests": 2073.0,
- "total_tests": 69443.0,
- "total_tests_per_thousand": 1.536,
- "new_tests_per_thousand": 0.046,
- "new_tests_smoothed": 1936.0,
- "new_tests_smoothed_per_thousand": 0.043,
- "tests_per_case": 14.370999999999999,
- "positive_rate": 0.07,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-05-09",
- "total_cases": 5598.0,
- "new_cases": 240.0,
- "new_cases_smoothed": 154.143,
- "total_deaths": 293.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 9.714,
- "total_cases_per_million": 123.861,
- "new_cases_per_million": 5.31,
- "new_cases_smoothed_per_million": 3.411,
- "total_deaths_per_million": 6.483,
- "new_deaths_per_million": 0.243,
- "new_deaths_smoothed_per_million": 0.215,
- "new_tests": 1944.0,
- "total_tests": 71387.0,
- "total_tests_per_thousand": 1.58,
- "new_tests_per_thousand": 0.043,
- "new_tests_smoothed": 2000.0,
- "new_tests_smoothed_per_thousand": 0.044,
- "tests_per_case": 12.975,
- "positive_rate": 0.077,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-05-10",
- "total_cases": 5763.0,
- "new_cases": 165.0,
- "new_cases_smoothed": 156.429,
- "total_deaths": 300.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 9.0,
- "total_cases_per_million": 127.512,
- "new_cases_per_million": 3.651,
- "new_cases_smoothed_per_million": 3.461,
- "total_deaths_per_million": 6.638,
- "new_deaths_per_million": 0.155,
- "new_deaths_smoothed_per_million": 0.199,
- "new_tests": 1426.0,
- "total_tests": 72813.0,
- "total_tests_per_thousand": 1.611,
- "new_tests_per_thousand": 0.032,
- "new_tests_smoothed": 2014.0,
- "new_tests_smoothed_per_thousand": 0.045,
- "tests_per_case": 12.875,
- "positive_rate": 0.078,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-05-11",
- "total_cases": 5776.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 143.714,
- "total_deaths": 300.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 7.714,
- "total_cases_per_million": 127.8,
- "new_cases_per_million": 0.288,
- "new_cases_smoothed_per_million": 3.18,
- "total_deaths_per_million": 6.638,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.171,
- "new_tests": 2360.0,
- "total_tests": 75173.0,
- "total_tests_per_thousand": 1.663,
- "new_tests_per_thousand": 0.052,
- "new_tests_smoothed": 2084.0,
- "new_tests_smoothed_per_thousand": 0.046,
- "tests_per_case": 14.501,
- "positive_rate": 0.069,
- "tests_units": "people tested",
- "stringency_index": 94.44
- },
- {
- "date": "2020-05-12",
- "total_cases": 6021.0,
- "new_cases": 245.0,
- "new_cases_smoothed": 163.857,
- "total_deaths": 305.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 6.429,
- "total_cases_per_million": 133.22,
- "new_cases_per_million": 5.421,
- "new_cases_smoothed_per_million": 3.625,
- "total_deaths_per_million": 6.748,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.142,
- "new_tests": 2441.0,
- "total_tests": 77614.0,
- "total_tests_per_thousand": 1.717,
- "new_tests_per_thousand": 0.054,
- "new_tests_smoothed": 2097.0,
- "new_tests_smoothed_per_thousand": 0.046,
- "tests_per_case": 12.798,
- "positive_rate": 0.078,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-13",
- "total_cases": 6550.0,
- "new_cases": 529.0,
- "new_cases_smoothed": 220.429,
- "total_deaths": 319.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 7.857,
- "total_cases_per_million": 144.925,
- "new_cases_per_million": 11.705,
- "new_cases_smoothed_per_million": 4.877,
- "total_deaths_per_million": 7.058,
- "new_deaths_per_million": 0.31,
- "new_deaths_smoothed_per_million": 0.174,
- "new_tests": 2732.0,
- "total_tests": 80346.0,
- "total_tests_per_thousand": 1.778,
- "new_tests_per_thousand": 0.06,
- "new_tests_smoothed": 2179.0,
- "new_tests_smoothed_per_thousand": 0.048,
- "tests_per_case": 9.885,
- "positive_rate": 0.10099999999999999,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-14",
- "total_cases": 6866.0,
- "new_cases": 316.0,
- "new_cases_smoothed": 238.714,
- "total_deaths": 329.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 8.0,
- "total_cases_per_million": 151.917,
- "new_cases_per_million": 6.992,
- "new_cases_smoothed_per_million": 5.282,
- "total_deaths_per_million": 7.279,
- "new_deaths_per_million": 0.221,
- "new_deaths_smoothed_per_million": 0.177,
- "new_tests": 2536.0,
- "total_tests": 82882.0,
- "total_tests_per_thousand": 1.834,
- "new_tests_per_thousand": 0.056,
- "new_tests_smoothed": 2216.0,
- "new_tests_smoothed_per_thousand": 0.049,
- "tests_per_case": 9.283,
- "positive_rate": 0.10800000000000001,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-15",
- "total_cases": 7121.0,
- "new_cases": 255.0,
- "new_cases_smoothed": 251.857,
- "total_deaths": 353.0,
- "new_deaths": 24.0,
- "new_deaths_smoothed": 10.143,
- "total_cases_per_million": 157.559,
- "new_cases_per_million": 5.642,
- "new_cases_smoothed_per_million": 5.573,
- "total_deaths_per_million": 7.81,
- "new_deaths_per_million": 0.531,
- "new_deaths_smoothed_per_million": 0.224,
- "new_tests": 2803.0,
- "total_tests": 85685.0,
- "total_tests_per_thousand": 1.896,
- "new_tests_per_thousand": 0.062,
- "new_tests_smoothed": 2320.0,
- "new_tests_smoothed_per_thousand": 0.051,
- "tests_per_case": 9.212,
- "positive_rate": 0.109,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-16",
- "total_cases": 7466.0,
- "new_cases": 345.0,
- "new_cases_smoothed": 266.857,
- "total_deaths": 356.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 9.0,
- "total_cases_per_million": 165.192,
- "new_cases_per_million": 7.633,
- "new_cases_smoothed_per_million": 5.904,
- "total_deaths_per_million": 7.877,
- "new_deaths_per_million": 0.066,
- "new_deaths_smoothed_per_million": 0.199,
- "new_tests": 2443.0,
- "total_tests": 88128.0,
- "total_tests_per_thousand": 1.95,
- "new_tests_per_thousand": 0.054,
- "new_tests_smoothed": 2392.0,
- "new_tests_smoothed_per_thousand": 0.053,
- "tests_per_case": 8.964,
- "positive_rate": 0.11199999999999999,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-17",
- "total_cases": 7792.0,
- "new_cases": 326.0,
- "new_cases_smoothed": 289.857,
- "total_deaths": 363.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 9.0,
- "total_cases_per_million": 172.405,
- "new_cases_per_million": 7.213,
- "new_cases_smoothed_per_million": 6.413,
- "total_deaths_per_million": 8.032,
- "new_deaths_per_million": 0.155,
- "new_deaths_smoothed_per_million": 0.199,
- "new_tests": 1806.0,
- "total_tests": 89934.0,
- "total_tests_per_thousand": 1.99,
- "new_tests_per_thousand": 0.04,
- "new_tests_smoothed": 2446.0,
- "new_tests_smoothed_per_thousand": 0.054,
- "tests_per_case": 8.439,
- "positive_rate": 0.11900000000000001,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-18",
- "total_cases": 7792.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 288.0,
- "total_deaths": 366.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 9.429,
- "total_cases_per_million": 172.405,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.372,
- "total_deaths_per_million": 8.098,
- "new_deaths_per_million": 0.066,
- "new_deaths_smoothed_per_million": 0.209,
- "new_tests": 2776.0,
- "total_tests": 92710.0,
- "total_tests_per_thousand": 2.051,
- "new_tests_per_thousand": 0.061,
- "new_tests_smoothed": 2505.0,
- "new_tests_smoothed_per_thousand": 0.055,
- "tests_per_case": 8.698,
- "positive_rate": 0.115,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-19",
- "total_cases": 8358.0,
- "new_cases": 566.0,
- "new_cases_smoothed": 333.857,
- "total_deaths": 382.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 11.0,
- "total_cases_per_million": 184.929,
- "new_cases_per_million": 12.523,
- "new_cases_smoothed_per_million": 7.387,
- "total_deaths_per_million": 8.452,
- "new_deaths_per_million": 0.354,
- "new_deaths_smoothed_per_million": 0.243,
- "new_tests": 3781.0,
- "total_tests": 96491.0,
- "total_tests_per_thousand": 2.135,
- "new_tests_per_thousand": 0.084,
- "new_tests_smoothed": 2697.0,
- "new_tests_smoothed_per_thousand": 0.06,
- "tests_per_case": 8.078,
- "positive_rate": 0.124,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-20",
- "total_cases": 8796.0,
- "new_cases": 438.0,
- "new_cases_smoothed": 320.857,
- "total_deaths": 393.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 10.571,
- "total_cases_per_million": 194.62,
- "new_cases_per_million": 9.691,
- "new_cases_smoothed_per_million": 7.099,
- "total_deaths_per_million": 8.696,
- "new_deaths_per_million": 0.243,
- "new_deaths_smoothed_per_million": 0.234,
- "new_tests": 3659.0,
- "total_tests": 100150.0,
- "total_tests_per_thousand": 2.216,
- "new_tests_per_thousand": 0.081,
- "new_tests_smoothed": 2829.0,
- "new_tests_smoothed_per_thousand": 0.063,
- "tests_per_case": 8.817,
- "positive_rate": 0.113,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-21",
- "total_cases": 9270.0,
- "new_cases": 474.0,
- "new_cases_smoothed": 343.429,
- "total_deaths": 403.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 10.571,
- "total_cases_per_million": 205.108,
- "new_cases_per_million": 10.488,
- "new_cases_smoothed_per_million": 7.599,
- "total_deaths_per_million": 8.917,
- "new_deaths_per_million": 0.221,
- "new_deaths_smoothed_per_million": 0.234,
- "new_tests": 3902.0,
- "total_tests": 104052.0,
- "total_tests_per_thousand": 2.302,
- "new_tests_per_thousand": 0.086,
- "new_tests_smoothed": 3024.0,
- "new_tests_smoothed_per_thousand": 0.067,
- "tests_per_case": 8.805,
- "positive_rate": 0.114,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-22",
- "total_cases": 9918.0,
- "new_cases": 648.0,
- "new_cases_smoothed": 399.571,
- "total_deaths": 416.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 9.0,
- "total_cases_per_million": 219.445,
- "new_cases_per_million": 14.338,
- "new_cases_smoothed_per_million": 8.841,
- "total_deaths_per_million": 9.204,
- "new_deaths_per_million": 0.288,
- "new_deaths_smoothed_per_million": 0.199,
- "new_tests": 3980.0,
- "total_tests": 108032.0,
- "total_tests_per_thousand": 2.39,
- "new_tests_per_thousand": 0.088,
- "new_tests_smoothed": 3192.0,
- "new_tests_smoothed_per_thousand": 0.071,
- "tests_per_case": 7.989,
- "positive_rate": 0.125,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-23",
- "total_cases": 10636.0,
- "new_cases": 718.0,
- "new_cases_smoothed": 452.857,
- "total_deaths": 433.0,
- "new_deaths": 17.0,
- "new_deaths_smoothed": 11.0,
- "total_cases_per_million": 235.332,
- "new_cases_per_million": 15.886,
- "new_cases_smoothed_per_million": 10.02,
- "total_deaths_per_million": 9.581,
- "new_deaths_per_million": 0.376,
- "new_deaths_smoothed_per_million": 0.243,
- "new_tests": 2979.0,
- "total_tests": 111011.0,
- "total_tests_per_thousand": 2.456,
- "new_tests_per_thousand": 0.066,
- "new_tests_smoothed": 3269.0,
- "new_tests_smoothed_per_thousand": 0.072,
- "tests_per_case": 7.218999999999999,
- "positive_rate": 0.139,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-24",
- "total_cases": 11340.0,
- "new_cases": 704.0,
- "new_cases_smoothed": 506.857,
- "total_deaths": 445.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 11.714,
- "total_cases_per_million": 250.908,
- "new_cases_per_million": 15.577,
- "new_cases_smoothed_per_million": 11.215,
- "total_deaths_per_million": 9.846,
- "new_deaths_per_million": 0.266,
- "new_deaths_smoothed_per_million": 0.259,
- "new_tests": 2428.0,
- "total_tests": 113439.0,
- "total_tests_per_thousand": 2.51,
- "new_tests_per_thousand": 0.054,
- "new_tests_smoothed": 3358.0,
- "new_tests_smoothed_per_thousand": 0.074,
- "tests_per_case": 6.625,
- "positive_rate": 0.151,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-25",
- "total_cases": 12063.0,
- "new_cases": 723.0,
- "new_cases_smoothed": 610.143,
- "total_deaths": 452.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 12.286,
- "total_cases_per_million": 266.905,
- "new_cases_per_million": 15.997,
- "new_cases_smoothed_per_million": 13.5,
- "total_deaths_per_million": 10.001,
- "new_deaths_per_million": 0.155,
- "new_deaths_smoothed_per_million": 0.272,
- "new_tests": 2942.0,
- "total_tests": 116381.0,
- "total_tests_per_thousand": 2.575,
- "new_tests_per_thousand": 0.065,
- "new_tests_smoothed": 3382.0,
- "new_tests_smoothed_per_thousand": 0.075,
- "tests_per_case": 5.542999999999999,
- "positive_rate": 0.18,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-26",
- "total_cases": 12615.0,
- "new_cases": 552.0,
- "new_cases_smoothed": 608.143,
- "total_deaths": 467.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 12.143,
- "total_cases_per_million": 279.119,
- "new_cases_per_million": 12.214,
- "new_cases_smoothed_per_million": 13.456,
- "total_deaths_per_million": 10.333,
- "new_deaths_per_million": 0.332,
- "new_deaths_smoothed_per_million": 0.269,
- "new_tests": 3392.0,
- "total_tests": 119773.0,
- "total_tests_per_thousand": 2.65,
- "new_tests_per_thousand": 0.075,
- "new_tests_smoothed": 3326.0,
- "new_tests_smoothed_per_thousand": 0.074,
- "tests_per_case": 5.468999999999999,
- "positive_rate": 0.183,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-27",
- "total_cases": 13215.0,
- "new_cases": 600.0,
- "new_cases_smoothed": 631.286,
- "total_deaths": 484.0,
- "new_deaths": 17.0,
- "new_deaths_smoothed": 13.0,
- "total_cases_per_million": 292.395,
- "new_cases_per_million": 13.276,
- "new_cases_smoothed_per_million": 13.968,
- "total_deaths_per_million": 10.709,
- "new_deaths_per_million": 0.376,
- "new_deaths_smoothed_per_million": 0.288,
- "new_tests": 3969.0,
- "total_tests": 123742.0,
- "total_tests_per_thousand": 2.738,
- "new_tests_per_thousand": 0.088,
- "new_tests_smoothed": 3370.0,
- "new_tests_smoothed_per_thousand": 0.075,
- "tests_per_case": 5.337999999999999,
- "positive_rate": 0.187,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-28",
- "total_cases": 13920.0,
- "new_cases": 705.0,
- "new_cases_smoothed": 664.286,
- "total_deaths": 500.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 13.857,
- "total_cases_per_million": 307.993,
- "new_cases_per_million": 15.599,
- "new_cases_smoothed_per_million": 14.698,
- "total_deaths_per_million": 11.063,
- "new_deaths_per_million": 0.354,
- "new_deaths_smoothed_per_million": 0.307,
- "new_tests": 4143.0,
- "total_tests": 127885.0,
- "total_tests_per_thousand": 2.83,
- "new_tests_per_thousand": 0.092,
- "new_tests_smoothed": 3405.0,
- "new_tests_smoothed_per_thousand": 0.075,
- "tests_per_case": 5.126,
- "positive_rate": 0.195,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-29",
- "total_cases": 14689.0,
- "new_cases": 769.0,
- "new_cases_smoothed": 681.571,
- "total_deaths": 508.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 13.143,
- "total_cases_per_million": 325.008,
- "new_cases_per_million": 17.015,
- "new_cases_smoothed_per_million": 15.08,
- "total_deaths_per_million": 11.24,
- "new_deaths_per_million": 0.177,
- "new_deaths_smoothed_per_million": 0.291,
- "new_tests": 4486.0,
- "total_tests": 132371.0,
- "total_tests_per_thousand": 2.929,
- "new_tests_per_thousand": 0.099,
- "new_tests_smoothed": 3477.0,
- "new_tests_smoothed_per_thousand": 0.077,
- "tests_per_case": 5.101,
- "positive_rate": 0.196,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-30",
- "total_cases": 15406.0,
- "new_cases": 717.0,
- "new_cases_smoothed": 681.429,
- "total_deaths": 520.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 12.429,
- "total_cases_per_million": 340.873,
- "new_cases_per_million": 15.864,
- "new_cases_smoothed_per_million": 15.077,
- "total_deaths_per_million": 11.505,
- "new_deaths_per_million": 0.266,
- "new_deaths_smoothed_per_million": 0.275,
- "new_tests": 3505.0,
- "total_tests": 135876.0,
- "total_tests_per_thousand": 3.006,
- "new_tests_per_thousand": 0.078,
- "new_tests_smoothed": 3552.0,
- "new_tests_smoothed_per_thousand": 0.079,
- "tests_per_case": 5.212999999999999,
- "positive_rate": 0.192,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-31",
- "total_cases": 16201.0,
- "new_cases": 795.0,
- "new_cases_smoothed": 694.429,
- "total_deaths": 528.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 11.857,
- "total_cases_per_million": 358.463,
- "new_cases_per_million": 17.59,
- "new_cases_smoothed_per_million": 15.365,
- "total_deaths_per_million": 11.683,
- "new_deaths_per_million": 0.177,
- "new_deaths_smoothed_per_million": 0.262,
- "new_tests": 2537.0,
- "total_tests": 138413.0,
- "total_tests_per_thousand": 3.063,
- "new_tests_per_thousand": 0.056,
- "new_tests_smoothed": 3568.0,
- "new_tests_smoothed_per_thousand": 0.079,
- "tests_per_case": 5.138,
- "positive_rate": 0.195,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-06-01",
- "total_cases": 16838.0,
- "new_cases": 637.0,
- "new_cases_smoothed": 682.143,
- "total_deaths": 539.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 12.429,
- "total_cases_per_million": 372.557,
- "new_cases_per_million": 14.094,
- "new_cases_smoothed_per_million": 15.093,
- "total_deaths_per_million": 11.926,
- "new_deaths_per_million": 0.243,
- "new_deaths_smoothed_per_million": 0.275,
- "new_tests": 3567.0,
- "total_tests": 141980.0,
- "total_tests_per_thousand": 3.141,
- "new_tests_per_thousand": 0.079,
- "new_tests_smoothed": 3657.0,
- "new_tests_smoothed_per_thousand": 0.081,
- "tests_per_case": 5.361000000000001,
- "positive_rate": 0.187,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-06-02",
- "total_cases": 17402.0,
- "new_cases": 564.0,
- "new_cases_smoothed": 683.857,
- "total_deaths": 556.0,
- "new_deaths": 17.0,
- "new_deaths_smoothed": 12.714,
- "total_cases_per_million": 385.036,
- "new_cases_per_million": 12.479,
- "new_cases_smoothed_per_million": 15.131,
- "total_deaths_per_million": 12.302,
- "new_deaths_per_million": 0.376,
- "new_deaths_smoothed_per_million": 0.281,
- "new_tests": 4000.0,
- "total_tests": 145980.0,
- "total_tests_per_thousand": 3.23,
- "new_tests_per_thousand": 0.089,
- "new_tests_smoothed": 3744.0,
- "new_tests_smoothed_per_thousand": 0.083,
- "tests_per_case": 5.475,
- "positive_rate": 0.183,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-06-03",
- "total_cases": 18306.0,
- "new_cases": 904.0,
- "new_cases_smoothed": 727.286,
- "total_deaths": 569.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 12.143,
- "total_cases_per_million": 405.038,
- "new_cases_per_million": 20.002,
- "new_cases_smoothed_per_million": 16.092,
- "total_deaths_per_million": 12.59,
- "new_deaths_per_million": 0.288,
- "new_deaths_smoothed_per_million": 0.269,
- "new_tests": 4532.0,
- "total_tests": 150512.0,
- "total_tests_per_thousand": 3.33,
- "new_tests_per_thousand": 0.1,
- "new_tests_smoothed": 3824.0,
- "new_tests_smoothed_per_thousand": 0.085,
- "tests_per_case": 5.257999999999999,
- "positive_rate": 0.19,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-06-04",
- "total_cases": 19255.0,
- "new_cases": 949.0,
- "new_cases_smoothed": 762.143,
- "total_deaths": 583.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 11.857,
- "total_cases_per_million": 426.035,
- "new_cases_per_million": 20.998,
- "new_cases_smoothed_per_million": 16.863,
- "total_deaths_per_million": 12.899,
- "new_deaths_per_million": 0.31,
- "new_deaths_smoothed_per_million": 0.262,
- "new_tests": 4158.0,
- "total_tests": 154670.0,
- "total_tests_per_thousand": 3.422,
- "new_tests_per_thousand": 0.092,
- "new_tests_smoothed": 3826.0,
- "new_tests_smoothed_per_thousand": 0.085,
- "tests_per_case": 5.02,
- "positive_rate": 0.19899999999999998,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-06-05",
- "total_cases": 19255.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 652.286,
- "total_deaths": 588.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 11.429,
- "total_cases_per_million": 426.035,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 14.432,
- "total_deaths_per_million": 13.01,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.253,
- "new_tests": 4526.0,
- "total_tests": 159196.0,
- "total_tests_per_thousand": 3.522,
- "new_tests_per_thousand": 0.1,
- "new_tests_smoothed": 3832.0,
- "new_tests_smoothed_per_thousand": 0.085,
- "tests_per_case": 5.875,
- "positive_rate": 0.17,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-06",
- "total_cases": 21024.0,
- "new_cases": 1769.0,
- "new_cases_smoothed": 802.571,
- "total_deaths": 632.0,
- "new_deaths": 44.0,
- "new_deaths_smoothed": 16.0,
- "total_cases_per_million": 465.176,
- "new_cases_per_million": 39.141,
- "new_cases_smoothed_per_million": 17.758,
- "total_deaths_per_million": 13.984,
- "new_deaths_per_million": 0.974,
- "new_deaths_smoothed_per_million": 0.354,
- "new_tests": 4240.0,
- "total_tests": 163436.0,
- "total_tests_per_thousand": 3.616,
- "new_tests_per_thousand": 0.094,
- "new_tests_smoothed": 3937.0,
- "new_tests_smoothed_per_thousand": 0.087,
- "tests_per_case": 4.905,
- "positive_rate": 0.204,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-07",
- "total_cases": 22007.0,
- "new_cases": 983.0,
- "new_cases_smoothed": 829.429,
- "total_deaths": 648.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 17.143,
- "total_cases_per_million": 486.926,
- "new_cases_per_million": 21.75,
- "new_cases_smoothed_per_million": 18.352,
- "total_deaths_per_million": 14.338,
- "new_deaths_per_million": 0.354,
- "new_deaths_smoothed_per_million": 0.379,
- "new_tests": 2414.0,
- "total_tests": 165850.0,
- "total_tests_per_thousand": 3.67,
- "new_tests_per_thousand": 0.053,
- "new_tests_smoothed": 3920.0,
- "new_tests_smoothed_per_thousand": 0.087,
- "tests_per_case": 4.726,
- "positive_rate": 0.212,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-08",
- "total_cases": 22781.0,
- "new_cases": 774.0,
- "new_cases_smoothed": 849.0,
- "total_deaths": 664.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 17.857,
- "total_cases_per_million": 504.052,
- "new_cases_per_million": 17.125,
- "new_cases_smoothed_per_million": 18.785,
- "total_deaths_per_million": 14.692,
- "new_deaths_per_million": 0.354,
- "new_deaths_smoothed_per_million": 0.395,
- "new_tests": 4282.0,
- "total_tests": 170132.0,
- "total_tests_per_thousand": 3.764,
- "new_tests_per_thousand": 0.095,
- "new_tests_smoothed": 4022.0,
- "new_tests_smoothed_per_thousand": 0.089,
- "tests_per_case": 4.737,
- "positive_rate": 0.21100000000000002,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-09",
- "total_cases": 23607.0,
- "new_cases": 826.0,
- "new_cases_smoothed": 886.429,
- "total_deaths": 693.0,
- "new_deaths": 29.0,
- "new_deaths_smoothed": 19.571,
- "total_cases_per_million": 522.328,
- "new_cases_per_million": 18.276,
- "new_cases_smoothed_per_million": 19.613,
- "total_deaths_per_million": 15.333,
- "new_deaths_per_million": 0.642,
- "new_deaths_smoothed_per_million": 0.433,
- "new_tests": 4851.0,
- "total_tests": 174983.0,
- "total_tests_per_thousand": 3.872,
- "new_tests_per_thousand": 0.107,
- "new_tests_smoothed": 4143.0,
- "new_tests_smoothed_per_thousand": 0.092,
- "tests_per_case": 4.6739999999999995,
- "positive_rate": 0.214,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-10",
- "total_cases": 24748.0,
- "new_cases": 1141.0,
- "new_cases_smoothed": 920.286,
- "total_deaths": 717.0,
- "new_deaths": 24.0,
- "new_deaths_smoothed": 21.143,
- "total_cases_per_million": 547.573,
- "new_cases_per_million": 25.246,
- "new_cases_smoothed_per_million": 20.362,
- "total_deaths_per_million": 15.864,
- "new_deaths_per_million": 0.531,
- "new_deaths_smoothed_per_million": 0.468,
- "new_tests": 5148.0,
- "total_tests": 180131.0,
- "total_tests_per_thousand": 3.986,
- "new_tests_per_thousand": 0.114,
- "new_tests_smoothed": 4231.0,
- "new_tests_smoothed_per_thousand": 0.094,
- "tests_per_case": 4.5969999999999995,
- "positive_rate": 0.218,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-11",
- "total_cases": 25987.0,
- "new_cases": 1239.0,
- "new_cases_smoothed": 961.714,
- "total_deaths": 735.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 21.714,
- "total_cases_per_million": 574.987,
- "new_cases_per_million": 27.414,
- "new_cases_smoothed_per_million": 21.279,
- "total_deaths_per_million": 16.263,
- "new_deaths_per_million": 0.398,
- "new_deaths_smoothed_per_million": 0.48,
- "new_tests": 5490.0,
- "total_tests": 185621.0,
- "total_tests_per_thousand": 4.107,
- "new_tests_per_thousand": 0.121,
- "new_tests_smoothed": 4422.0,
- "new_tests_smoothed_per_thousand": 0.098,
- "tests_per_case": 4.598,
- "positive_rate": 0.217,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-12",
- "total_cases": 27360.0,
- "new_cases": 1373.0,
- "new_cases_smoothed": 1157.857,
- "total_deaths": 765.0,
- "new_deaths": 30.0,
- "new_deaths_smoothed": 25.286,
- "total_cases_per_million": 605.366,
- "new_cases_per_million": 30.379,
- "new_cases_smoothed_per_million": 25.619,
- "total_deaths_per_million": 16.926,
- "new_deaths_per_million": 0.664,
- "new_deaths_smoothed_per_million": 0.559,
- "new_tests": 6130.0,
- "total_tests": 191751.0,
- "total_tests_per_thousand": 4.243,
- "new_tests_per_thousand": 0.136,
- "new_tests_smoothed": 4651.0,
- "new_tests_smoothed_per_thousand": 0.103,
- "tests_per_case": 4.0169999999999995,
- "positive_rate": 0.249,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-13",
- "total_cases": 28751.0,
- "new_cases": 1391.0,
- "new_cases_smoothed": 1103.857,
- "total_deaths": 785.0,
- "new_deaths": 20.0,
- "new_deaths_smoothed": 21.857,
- "total_cases_per_million": 636.144,
- "new_cases_per_million": 30.777,
- "new_cases_smoothed_per_million": 24.424,
- "total_deaths_per_million": 17.369,
- "new_deaths_per_million": 0.443,
- "new_deaths_smoothed_per_million": 0.484,
- "new_tests": 5575.0,
- "total_tests": 197326.0,
- "total_tests_per_thousand": 4.366,
- "new_tests_per_thousand": 0.123,
- "new_tests_smoothed": 4841.0,
- "new_tests_smoothed_per_thousand": 0.107,
- "tests_per_case": 4.386,
- "positive_rate": 0.228,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-14",
- "total_cases": 30282.0,
- "new_cases": 1531.0,
- "new_cases_smoothed": 1182.143,
- "total_deaths": 815.0,
- "new_deaths": 30.0,
- "new_deaths_smoothed": 23.857,
- "total_cases_per_million": 670.018,
- "new_cases_per_million": 33.875,
- "new_cases_smoothed_per_million": 26.156,
- "total_deaths_per_million": 18.033,
- "new_deaths_per_million": 0.664,
- "new_deaths_smoothed_per_million": 0.528,
- "new_tests": 3690.0,
- "total_tests": 201016.0,
- "total_tests_per_thousand": 4.448,
- "new_tests_per_thousand": 0.082,
- "new_tests_smoothed": 5024.0,
- "new_tests_smoothed_per_thousand": 0.111,
- "tests_per_case": 4.25,
- "positive_rate": 0.235,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-15",
- "total_cases": 31564.0,
- "new_cases": 1282.0,
- "new_cases_smoothed": 1254.714,
- "total_deaths": 833.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 24.143,
- "total_cases_per_million": 698.384,
- "new_cases_per_million": 28.365,
- "new_cases_smoothed_per_million": 27.762,
- "total_deaths_per_million": 18.431,
- "new_deaths_per_million": 0.398,
- "new_deaths_smoothed_per_million": 0.534,
- "new_tests": 4132.0,
- "total_tests": 205148.0,
- "total_tests_per_thousand": 4.539,
- "new_tests_per_thousand": 0.091,
- "new_tests_smoothed": 5002.0,
- "new_tests_smoothed_per_thousand": 0.111,
- "tests_per_case": 3.987,
- "positive_rate": 0.251,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-16",
- "total_cases": 32772.0,
- "new_cases": 1208.0,
- "new_cases_smoothed": 1309.286,
- "total_deaths": 854.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 23.0,
- "total_cases_per_million": 725.112,
- "new_cases_per_million": 26.728,
- "new_cases_smoothed_per_million": 28.969,
- "total_deaths_per_million": 18.896,
- "new_deaths_per_million": 0.465,
- "new_deaths_smoothed_per_million": 0.509,
- "new_tests": 5294.0,
- "total_tests": 210442.0,
- "total_tests_per_thousand": 4.656,
- "new_tests_per_thousand": 0.117,
- "new_tests_smoothed": 5066.0,
- "new_tests_smoothed_per_thousand": 0.112,
- "tests_per_case": 3.8689999999999998,
- "positive_rate": 0.258,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-17",
- "total_cases": 34146.0,
- "new_cases": 1374.0,
- "new_cases_smoothed": 1342.571,
- "total_deaths": 878.0,
- "new_deaths": 24.0,
- "new_deaths_smoothed": 23.0,
- "total_cases_per_million": 755.513,
- "new_cases_per_million": 30.401,
- "new_cases_smoothed_per_million": 29.706,
- "total_deaths_per_million": 19.427,
- "new_deaths_per_million": 0.531,
- "new_deaths_smoothed_per_million": 0.509,
- "new_tests": 6498.0,
- "total_tests": 216940.0,
- "total_tests_per_thousand": 4.8,
- "new_tests_per_thousand": 0.144,
- "new_tests_smoothed": 5258.0,
- "new_tests_smoothed_per_thousand": 0.116,
- "tests_per_case": 3.9160000000000004,
- "positive_rate": 0.255,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-18",
- "total_cases": 35539.0,
- "new_cases": 1393.0,
- "new_cases_smoothed": 1364.571,
- "total_deaths": 913.0,
- "new_deaths": 35.0,
- "new_deaths_smoothed": 25.429,
- "total_cases_per_million": 786.335,
- "new_cases_per_million": 30.821,
- "new_cases_smoothed_per_million": 30.192,
- "total_deaths_per_million": 20.201,
- "new_deaths_per_million": 0.774,
- "new_deaths_smoothed_per_million": 0.563,
- "new_tests": 6928.0,
- "total_tests": 223868.0,
- "total_tests_per_thousand": 4.953,
- "new_tests_per_thousand": 0.153,
- "new_tests_smoothed": 5464.0,
- "new_tests_smoothed_per_thousand": 0.121,
- "tests_per_case": 4.004,
- "positive_rate": 0.25,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-19",
- "total_cases": 35539.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1168.429,
- "total_deaths": 929.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 23.429,
- "total_cases_per_million": 786.335,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 25.853,
- "total_deaths_per_million": 20.555,
- "new_deaths_per_million": 0.354,
- "new_deaths_smoothed_per_million": 0.518,
- "new_tests": 7068.0,
- "total_tests": 230936.0,
- "total_tests_per_thousand": 5.11,
- "new_tests_per_thousand": 0.156,
- "new_tests_smoothed": 5598.0,
- "new_tests_smoothed_per_thousand": 0.124,
- "tests_per_case": 4.791,
- "positive_rate": 0.209,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-20",
- "total_cases": 39557.0,
- "new_cases": 4018.0,
- "new_cases_smoothed": 1543.714,
- "total_deaths": 979.0,
- "new_deaths": 50.0,
- "new_deaths_smoothed": 27.714,
- "total_cases_per_million": 875.237,
- "new_cases_per_million": 88.902,
- "new_cases_smoothed_per_million": 34.156,
- "total_deaths_per_million": 21.661,
- "new_deaths_per_million": 1.106,
- "new_deaths_smoothed_per_million": 0.613,
- "new_tests": 7052.0,
- "total_tests": 237988.0,
- "total_tests_per_thousand": 5.266,
- "new_tests_per_thousand": 0.156,
- "new_tests_smoothed": 5809.0,
- "new_tests_smoothed_per_thousand": 0.129,
- "tests_per_case": 3.763,
- "positive_rate": 0.266,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-21",
- "total_cases": 41191.0,
- "new_cases": 1634.0,
- "new_cases_smoothed": 1558.429,
- "total_deaths": 992.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 25.286,
- "total_cases_per_million": 911.39,
- "new_cases_per_million": 36.154,
- "new_cases_smoothed_per_million": 34.482,
- "total_deaths_per_million": 21.949,
- "new_deaths_per_million": 0.288,
- "new_deaths_smoothed_per_million": 0.559,
- "new_tests": 4405.0,
- "total_tests": 242393.0,
- "total_tests_per_thousand": 5.363,
- "new_tests_per_thousand": 0.097,
- "new_tests_smoothed": 5911.0,
- "new_tests_smoothed_per_thousand": 0.131,
- "tests_per_case": 3.793,
- "positive_rate": 0.264,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-22",
- "total_cases": 42772.0,
- "new_cases": 1581.0,
- "new_cases_smoothed": 1601.143,
- "total_deaths": 1011.0,
- "new_deaths": 19.0,
- "new_deaths_smoothed": 25.429,
- "total_cases_per_million": 946.372,
- "new_cases_per_million": 34.981,
- "new_cases_smoothed_per_million": 35.427,
- "total_deaths_per_million": 22.369,
- "new_deaths_per_million": 0.42,
- "new_deaths_smoothed_per_million": 0.563,
- "new_tests": 6565.0,
- "total_tests": 248958.0,
- "total_tests_per_thousand": 5.508,
- "new_tests_per_thousand": 0.145,
- "new_tests_smoothed": 6259.0,
- "new_tests_smoothed_per_thousand": 0.138,
- "tests_per_case": 3.909,
- "positive_rate": 0.256,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-23",
- "total_cases": 44918.0,
- "new_cases": 2146.0,
- "new_cases_smoothed": 1735.143,
- "total_deaths": 1043.0,
- "new_deaths": 32.0,
- "new_deaths_smoothed": 27.0,
- "total_cases_per_million": 993.854,
- "new_cases_per_million": 47.482,
- "new_cases_smoothed_per_million": 38.392,
- "total_deaths_per_million": 23.077,
- "new_deaths_per_million": 0.708,
- "new_deaths_smoothed_per_million": 0.597,
- "new_tests": 7973.0,
- "total_tests": 256931.0,
- "total_tests_per_thousand": 5.685,
- "new_tests_per_thousand": 0.176,
- "new_tests_smoothed": 6641.0,
- "new_tests_smoothed_per_thousand": 0.147,
- "tests_per_case": 3.827,
- "positive_rate": 0.261,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-24",
- "total_cases": 44918.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1538.857,
- "total_deaths": 1049.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 24.429,
- "total_cases_per_million": 993.854,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 34.049,
- "total_deaths_per_million": 23.21,
- "new_deaths_per_million": 0.133,
- "new_deaths_smoothed_per_million": 0.541,
- "new_tests": 7781.0,
- "total_tests": 264712.0,
- "total_tests_per_thousand": 5.857,
- "new_tests_per_thousand": 0.172,
- "new_tests_smoothed": 6825.0,
- "new_tests_smoothed_per_thousand": 0.151,
- "tests_per_case": 4.435,
- "positive_rate": 0.225,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-25",
- "total_cases": 49838.0,
- "new_cases": 4920.0,
- "new_cases_smoothed": 2042.714,
- "total_deaths": 1085.0,
- "new_deaths": 36.0,
- "new_deaths_smoothed": 24.571,
- "total_cases_per_million": 1102.714,
- "new_cases_per_million": 108.86,
- "new_cases_smoothed_per_million": 45.197,
- "total_deaths_per_million": 24.007,
- "new_deaths_per_million": 0.797,
- "new_deaths_smoothed_per_million": 0.544,
- "new_tests": 8461.0,
- "total_tests": 273173.0,
- "total_tests_per_thousand": 6.044,
- "new_tests_per_thousand": 0.187,
- "new_tests_smoothed": 7044.0,
- "new_tests_smoothed_per_thousand": 0.156,
- "tests_per_case": 3.448,
- "positive_rate": 0.29,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-26",
- "total_cases": 52444.0,
- "new_cases": 2606.0,
- "new_cases_smoothed": 2415.0,
- "total_deaths": 1124.0,
- "new_deaths": 39.0,
- "new_deaths_smoothed": 27.857,
- "total_cases_per_million": 1160.374,
- "new_cases_per_million": 57.66,
- "new_cases_smoothed_per_million": 53.434,
- "total_deaths_per_million": 24.87,
- "new_deaths_per_million": 0.863,
- "new_deaths_smoothed_per_million": 0.616,
- "new_tests": 8749.0,
- "total_tests": 281922.0,
- "total_tests_per_thousand": 6.238,
- "new_tests_per_thousand": 0.194,
- "new_tests_smoothed": 7284.0,
- "new_tests_smoothed_per_thousand": 0.161,
- "tests_per_case": 3.016,
- "positive_rate": 0.332,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-27",
- "total_cases": 52444.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1841.0,
- "total_deaths": 1167.0,
- "new_deaths": 43.0,
- "new_deaths_smoothed": 26.857,
- "total_cases_per_million": 1160.374,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 40.734,
- "total_deaths_per_million": 25.821,
- "new_deaths_per_million": 0.951,
- "new_deaths_smoothed_per_million": 0.594,
- "new_tests": 7267.0,
- "total_tests": 289189.0,
- "total_tests_per_thousand": 6.399,
- "new_tests_per_thousand": 0.161,
- "new_tests_smoothed": 7314.0,
- "new_tests_smoothed_per_thousand": 0.162,
- "tests_per_case": 3.9730000000000003,
- "positive_rate": 0.252,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-28",
- "total_cases": 57731.0,
- "new_cases": 5287.0,
- "new_cases_smoothed": 2362.857,
- "total_deaths": 1207.0,
- "new_deaths": 40.0,
- "new_deaths_smoothed": 30.714,
- "total_cases_per_million": 1277.354,
- "new_cases_per_million": 116.98,
- "new_cases_smoothed_per_million": 52.28,
- "total_deaths_per_million": 26.706,
- "new_deaths_per_million": 0.885,
- "new_deaths_smoothed_per_million": 0.68,
- "new_tests": 4700.0,
- "total_tests": 293889.0,
- "total_tests_per_thousand": 6.503,
- "new_tests_per_thousand": 0.104,
- "new_tests_smoothed": 7357.0,
- "new_tests_smoothed_per_thousand": 0.163,
- "tests_per_case": 3.114,
- "positive_rate": 0.321,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-29",
- "total_cases": 57731.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2137.0,
- "total_deaths": 1217.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 29.429,
- "total_cases_per_million": 1277.354,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 47.283,
- "total_deaths_per_million": 26.927,
- "new_deaths_per_million": 0.221,
- "new_deaths_smoothed_per_million": 0.651,
- "new_tests": 7138.0,
- "total_tests": 301027.0,
- "total_tests_per_thousand": 6.661,
- "new_tests_per_thousand": 0.158,
- "new_tests_smoothed": 7438.0,
- "new_tests_smoothed_per_thousand": 0.165,
- "tests_per_case": 3.4810000000000003,
- "positive_rate": 0.287,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-30",
- "total_cases": 62255.0,
- "new_cases": 4524.0,
- "new_cases_smoothed": 2476.714,
- "total_deaths": 1280.0,
- "new_deaths": 63.0,
- "new_deaths_smoothed": 33.857,
- "total_cases_per_million": 1377.452,
- "new_cases_per_million": 100.098,
- "new_cases_smoothed_per_million": 54.8,
- "total_deaths_per_million": 28.321,
- "new_deaths_per_million": 1.394,
- "new_deaths_smoothed_per_million": 0.749,
- "new_tests": 7791.0,
- "total_tests": 308818.0,
- "total_tests_per_thousand": 6.833,
- "new_tests_per_thousand": 0.172,
- "new_tests_smoothed": 7412.0,
- "new_tests_smoothed_per_thousand": 0.164,
- "tests_per_case": 2.9930000000000003,
- "positive_rate": 0.33399999999999996,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-07-01",
- "total_cases": 64517.0,
- "new_cases": 2262.0,
- "new_cases_smoothed": 2799.857,
- "total_deaths": 1307.0,
- "new_deaths": 27.0,
- "new_deaths_smoothed": 36.857,
- "total_cases_per_million": 1427.501,
- "new_cases_per_million": 50.049,
- "new_cases_smoothed_per_million": 61.95,
- "total_deaths_per_million": 28.919,
- "new_deaths_per_million": 0.597,
- "new_deaths_smoothed_per_million": 0.815,
- "new_tests": 7843.0,
- "total_tests": 316661.0,
- "total_tests_per_thousand": 7.006,
- "new_tests_per_thousand": 0.174,
- "new_tests_smoothed": 7421.0,
- "new_tests_smoothed_per_thousand": 0.164,
- "tests_per_case": 2.65,
- "positive_rate": 0.377,
- "tests_units": "people tested",
- "stringency_index": 92.59
- },
- {
- "date": "2020-07-02",
- "total_cases": 67184.0,
- "new_cases": 2667.0,
- "new_cases_smoothed": 2478.0,
- "total_deaths": 1351.0,
- "new_deaths": 44.0,
- "new_deaths_smoothed": 38.0,
- "total_cases_per_million": 1486.511,
- "new_cases_per_million": 59.01,
- "new_cases_smoothed_per_million": 54.828,
- "total_deaths_per_million": 29.892,
- "new_deaths_per_million": 0.974,
- "new_deaths_smoothed_per_million": 0.841,
- "new_tests": 7815.0,
- "total_tests": 324476.0,
- "total_tests_per_thousand": 7.179,
- "new_tests_per_thousand": 0.173,
- "new_tests_smoothed": 7329.0,
- "new_tests_smoothed_per_thousand": 0.162,
- "tests_per_case": 2.958,
- "positive_rate": 0.33799999999999997,
- "tests_units": "people tested",
- "stringency_index": 81.48
- },
- {
- "date": "2020-07-03",
- "total_cases": 69928.0,
- "new_cases": 2744.0,
- "new_cases_smoothed": 2497.714,
- "total_deaths": 1385.0,
- "new_deaths": 34.0,
- "new_deaths_smoothed": 37.286,
- "total_cases_per_million": 1547.224,
- "new_cases_per_million": 60.714,
- "new_cases_smoothed_per_million": 55.264,
- "total_deaths_per_million": 30.644,
- "new_deaths_per_million": 0.752,
- "new_deaths_smoothed_per_million": 0.825,
- "new_tests": 8697.0,
- "total_tests": 333173.0,
- "total_tests_per_thousand": 7.372,
- "new_tests_per_thousand": 0.192,
- "new_tests_smoothed": 7322.0,
- "new_tests_smoothed_per_thousand": 0.162,
- "tests_per_case": 2.931,
- "positive_rate": 0.341,
- "tests_units": "people tested",
- "stringency_index": 92.59
- },
- {
- "date": "2020-07-04",
- "total_cases": 72773.0,
- "new_cases": 2845.0,
- "new_cases_smoothed": 2904.143,
- "total_deaths": 1437.0,
- "new_deaths": 52.0,
- "new_deaths_smoothed": 38.571,
- "total_cases_per_million": 1610.173,
- "new_cases_per_million": 62.948,
- "new_cases_smoothed_per_million": 64.257,
- "total_deaths_per_million": 31.795,
- "new_deaths_per_million": 1.151,
- "new_deaths_smoothed_per_million": 0.853,
- "new_tests": 8510.0,
- "total_tests": 341683.0,
- "total_tests_per_thousand": 7.56,
- "new_tests_per_thousand": 0.188,
- "new_tests_smoothed": 7499.0,
- "new_tests_smoothed_per_thousand": 0.166,
- "tests_per_case": 2.582,
- "positive_rate": 0.387,
- "tests_units": "people tested",
- "stringency_index": 92.59
- },
- {
- "date": "2020-07-05",
- "total_cases": 72773.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2148.857,
- "total_deaths": 1453.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 35.143,
- "total_cases_per_million": 1610.173,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 47.546,
- "total_deaths_per_million": 32.149,
- "new_deaths_per_million": 0.354,
- "new_deaths_smoothed_per_million": 0.778,
- "new_tests": 5184.0,
- "total_tests": 346867.0,
- "total_tests_per_thousand": 7.675,
- "new_tests_per_thousand": 0.115,
- "new_tests_smoothed": 7568.0,
- "new_tests_smoothed_per_thousand": 0.167,
- "tests_per_case": 3.522,
- "positive_rate": 0.284,
- "tests_units": "people tested",
- "stringency_index": 92.59
- },
- {
- "date": "2020-07-06",
- "total_cases": 75363.0,
- "new_cases": 2590.0,
- "new_cases_smoothed": 2518.857,
- "total_deaths": 1490.0,
- "new_deaths": 37.0,
- "new_deaths_smoothed": 39.0,
- "total_cases_per_million": 1667.479,
- "new_cases_per_million": 57.306,
- "new_cases_smoothed_per_million": 55.732,
- "total_deaths_per_million": 32.968,
- "new_deaths_per_million": 0.819,
- "new_deaths_smoothed_per_million": 0.863,
- "new_tests": 7526.0,
- "total_tests": 354393.0,
- "total_tests_per_thousand": 7.841,
- "new_tests_per_thousand": 0.167,
- "new_tests_smoothed": 7624.0,
- "new_tests_smoothed_per_thousand": 0.169,
- "tests_per_case": 3.0269999999999997,
- "positive_rate": 0.33,
- "tests_units": "people tested",
- "stringency_index": 92.59
- },
- {
- "date": "2020-07-07",
- "total_cases": 77802.0,
- "new_cases": 2439.0,
- "new_cases_smoothed": 2221.0,
- "total_deaths": 1523.0,
- "new_deaths": 33.0,
- "new_deaths_smoothed": 34.714,
- "total_cases_per_million": 1721.444,
- "new_cases_per_million": 53.965,
- "new_cases_smoothed_per_million": 49.142,
- "total_deaths_per_million": 33.698,
- "new_deaths_per_million": 0.73,
- "new_deaths_smoothed_per_million": 0.768,
- "new_tests": 8832.0,
- "total_tests": 363225.0,
- "total_tests_per_thousand": 8.037,
- "new_tests_per_thousand": 0.195,
- "new_tests_smoothed": 7772.0,
- "new_tests_smoothed_per_thousand": 0.172,
- "tests_per_case": 3.4989999999999997,
- "positive_rate": 0.28600000000000003,
- "tests_units": "people tested",
- "stringency_index": 92.59
- },
- {
- "date": "2020-07-08",
- "total_cases": 80434.0,
- "new_cases": 2632.0,
- "new_cases_smoothed": 2273.857,
- "total_deaths": 1602.0,
- "new_deaths": 79.0,
- "new_deaths_smoothed": 42.143,
- "total_cases_per_million": 1779.68,
- "new_cases_per_million": 58.236,
- "new_cases_smoothed_per_million": 50.311,
- "total_deaths_per_million": 35.446,
- "new_deaths_per_million": 1.748,
- "new_deaths_smoothed_per_million": 0.932,
- "new_tests": 10392.0,
- "total_tests": 373617.0,
- "total_tests_per_thousand": 8.267,
- "new_tests_per_thousand": 0.23,
- "new_tests_smoothed": 8137.0,
- "new_tests_smoothed_per_thousand": 0.18,
- "tests_per_case": 3.5789999999999997,
- "positive_rate": 0.27899999999999997,
- "tests_units": "people tested",
- "stringency_index": 92.59
- },
- {
- "date": "2020-07-09",
- "total_cases": 83413.0,
- "new_cases": 2979.0,
- "new_cases_smoothed": 2318.429,
- "total_deaths": 1654.0,
- "new_deaths": 52.0,
- "new_deaths_smoothed": 43.286,
- "total_cases_per_million": 1845.593,
- "new_cases_per_million": 65.913,
- "new_cases_smoothed_per_million": 51.297,
- "total_deaths_per_million": 36.596,
- "new_deaths_per_million": 1.151,
- "new_deaths_smoothed_per_million": 0.958,
- "new_tests": 9576.0,
- "total_tests": 383193.0,
- "total_tests_per_thousand": 8.479,
- "new_tests_per_thousand": 0.212,
- "new_tests_smoothed": 8388.0,
- "new_tests_smoothed_per_thousand": 0.186,
- "tests_per_case": 3.6180000000000003,
- "positive_rate": 0.276,
- "tests_units": "people tested",
- "stringency_index": 92.59
- },
- {
- "date": "2020-07-10",
- "total_cases": 87017.0,
- "new_cases": 3604.0,
- "new_cases_smoothed": 2441.286,
- "total_deaths": 1707.0,
- "new_deaths": 53.0,
- "new_deaths_smoothed": 46.0,
- "total_cases_per_million": 1925.335,
- "new_cases_per_million": 79.742,
- "new_cases_smoothed_per_million": 54.016,
- "total_deaths_per_million": 37.769,
- "new_deaths_per_million": 1.173,
- "new_deaths_smoothed_per_million": 1.018,
- "new_tests": 8722.0,
- "total_tests": 391915.0,
- "total_tests_per_thousand": 8.671,
- "new_tests_per_thousand": 0.193,
- "new_tests_smoothed": 8392.0,
- "new_tests_smoothed_per_thousand": 0.186,
- "tests_per_case": 3.438,
- "positive_rate": 0.29100000000000004,
- "tests_units": "people tested",
- "stringency_index": 92.59
- },
- {
- "date": "2020-07-11",
- "total_cases": 90680.0,
- "new_cases": 3663.0,
- "new_cases_smoothed": 2558.143,
- "total_deaths": 1749.0,
- "new_deaths": 42.0,
- "new_deaths_smoothed": 44.571,
- "total_cases_per_million": 2006.382,
- "new_cases_per_million": 81.047,
- "new_cases_smoothed_per_million": 56.601,
- "total_deaths_per_million": 38.698,
- "new_deaths_per_million": 0.929,
- "new_deaths_smoothed_per_million": 0.986,
- "new_tests": 8301.0,
- "total_tests": 400216.0,
- "total_tests_per_thousand": 8.855,
- "new_tests_per_thousand": 0.184,
- "new_tests_smoothed": 8362.0,
- "new_tests_smoothed_per_thousand": 0.185,
- "tests_per_case": 3.2689999999999997,
- "positive_rate": 0.306,
- "tests_units": "people tested",
- "stringency_index": 92.59
- },
- {
- "date": "2020-07-12",
- "total_cases": 94047.0,
- "new_cases": 3367.0,
- "new_cases_smoothed": 3039.143,
- "total_deaths": 1810.0,
- "new_deaths": 61.0,
- "new_deaths_smoothed": 51.0,
- "total_cases_per_million": 2080.88,
- "new_cases_per_million": 74.498,
- "new_cases_smoothed_per_million": 67.244,
- "total_deaths_per_million": 40.048,
- "new_deaths_per_million": 1.35,
- "new_deaths_smoothed_per_million": 1.128,
- "new_tests": 5584.0,
- "total_tests": 405800.0,
- "total_tests_per_thousand": 8.979,
- "new_tests_per_thousand": 0.124,
- "new_tests_smoothed": 8419.0,
- "new_tests_smoothed_per_thousand": 0.186,
- "tests_per_case": 2.77,
- "positive_rate": 0.361,
- "tests_units": "people tested",
- "stringency_index": 92.59
- },
- {
- "date": "2020-07-13",
- "total_cases": 97496.0,
- "new_cases": 3449.0,
- "new_cases_smoothed": 3161.857,
- "total_deaths": 1818.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 46.857,
- "total_cases_per_million": 2157.193,
- "new_cases_per_million": 76.312,
- "new_cases_smoothed_per_million": 69.959,
- "total_deaths_per_million": 40.225,
- "new_deaths_per_million": 0.177,
- "new_deaths_smoothed_per_million": 1.037,
- "new_tests": 8714.0,
- "total_tests": 414514.0,
- "total_tests_per_thousand": 9.172,
- "new_tests_per_thousand": 0.193,
- "new_tests_smoothed": 8589.0,
- "new_tests_smoothed_per_thousand": 0.19,
- "tests_per_case": 2.716,
- "positive_rate": 0.368,
- "tests_units": "people tested",
- "stringency_index": 92.59
- },
- {
- "date": "2020-07-14",
- "total_cases": 100153.0,
- "new_cases": 2657.0,
- "new_cases_smoothed": 3193.0,
- "total_deaths": 1903.0,
- "new_deaths": 85.0,
- "new_deaths_smoothed": 54.286,
- "total_cases_per_million": 2215.981,
- "new_cases_per_million": 58.789,
- "new_cases_smoothed_per_million": 70.648,
- "total_deaths_per_million": 42.106,
- "new_deaths_per_million": 1.881,
- "new_deaths_smoothed_per_million": 1.201,
- "new_tests": 10652.0,
- "total_tests": 425166.0,
- "total_tests_per_thousand": 9.407,
- "new_tests_per_thousand": 0.236,
- "new_tests_smoothed": 8849.0,
- "new_tests_smoothed_per_thousand": 0.196,
- "tests_per_case": 2.7710000000000004,
- "positive_rate": 0.361,
- "tests_units": "people tested",
- "stringency_index": 92.59
- },
- {
- "date": "2020-07-15",
- "total_cases": 103252.0,
- "new_cases": 3099.0,
- "new_cases_smoothed": 3259.714,
- "total_deaths": 1926.0,
- "new_deaths": 23.0,
- "new_deaths_smoothed": 46.286,
- "total_cases_per_million": 2284.55,
- "new_cases_per_million": 68.568,
- "new_cases_smoothed_per_million": 72.124,
- "total_deaths_per_million": 42.615,
- "new_deaths_per_million": 0.509,
- "new_deaths_smoothed_per_million": 1.024,
- "new_tests": 10899.0,
- "total_tests": 436065.0,
- "total_tests_per_thousand": 9.648,
- "new_tests_per_thousand": 0.241,
- "new_tests_smoothed": 8921.0,
- "new_tests_smoothed_per_thousand": 0.197,
- "tests_per_case": 2.737,
- "positive_rate": 0.365,
- "tests_units": "people tested",
- "stringency_index": 92.59
- },
- {
- "date": "2020-07-16",
- "total_cases": 106897.0,
- "new_cases": 3645.0,
- "new_cases_smoothed": 3354.857,
- "total_deaths": 2050.0,
- "new_deaths": 124.0,
- "new_deaths_smoothed": 56.571,
- "total_cases_per_million": 2365.199,
- "new_cases_per_million": 80.649,
- "new_cases_smoothed_per_million": 74.229,
- "total_deaths_per_million": 45.358,
- "new_deaths_per_million": 2.744,
- "new_deaths_smoothed_per_million": 1.252,
- "new_tests": 10843.0,
- "total_tests": 446908.0,
- "total_tests_per_thousand": 9.888,
- "new_tests_per_thousand": 0.24,
- "new_tests_smoothed": 9102.0,
- "new_tests_smoothed_per_thousand": 0.201,
- "tests_per_case": 2.713,
- "positive_rate": 0.369,
- "tests_units": "people tested",
- "stringency_index": 92.59
- },
- {
- "date": "2020-07-17",
- "total_cases": 111147.0,
- "new_cases": 4250.0,
- "new_cases_smoothed": 3447.143,
- "total_deaths": 2112.0,
- "new_deaths": 62.0,
- "new_deaths_smoothed": 57.857,
- "total_cases_per_million": 2459.234,
- "new_cases_per_million": 94.035,
- "new_cases_smoothed_per_million": 76.271,
- "total_deaths_per_million": 46.73,
- "new_deaths_per_million": 1.372,
- "new_deaths_smoothed_per_million": 1.28,
- "new_tests": 12066.0,
- "total_tests": 458974.0,
- "total_tests_per_thousand": 10.155,
- "new_tests_per_thousand": 0.267,
- "new_tests_smoothed": 9580.0,
- "new_tests_smoothed_per_thousand": 0.212,
- "tests_per_case": 2.779,
- "positive_rate": 0.36,
- "tests_units": "people tested",
- "stringency_index": 92.59
- },
- {
- "date": "2020-07-18",
- "total_cases": 114770.0,
- "new_cases": 3623.0,
- "new_cases_smoothed": 3441.429,
- "total_deaths": 2133.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 54.857,
- "total_cases_per_million": 2539.397,
- "new_cases_per_million": 80.162,
- "new_cases_smoothed_per_million": 76.145,
- "total_deaths_per_million": 47.195,
- "new_deaths_per_million": 0.465,
- "new_deaths_smoothed_per_million": 1.214,
- "new_tests": 10473.0,
- "total_tests": 469447.0,
- "total_tests_per_thousand": 10.387,
- "new_tests_per_thousand": 0.232,
- "new_tests_smoothed": 9890.0,
- "new_tests_smoothed_per_thousand": 0.219,
- "tests_per_case": 2.8739999999999997,
- "positive_rate": 0.348,
- "tests_units": "people tested",
- "stringency_index": 92.59
- },
- {
- "date": "2020-07-19",
- "total_cases": 119288.0,
- "new_cases": 4518.0,
- "new_cases_smoothed": 3605.857,
- "total_deaths": 2204.0,
- "new_deaths": 71.0,
- "new_deaths_smoothed": 56.286,
- "total_cases_per_million": 2639.362,
- "new_cases_per_million": 99.965,
- "new_cases_smoothed_per_million": 79.783,
- "total_deaths_per_million": 48.766,
- "new_deaths_per_million": 1.571,
- "new_deaths_smoothed_per_million": 1.245,
- "new_tests": 7267.0,
- "total_tests": 476714.0,
- "total_tests_per_thousand": 10.548,
- "new_tests_per_thousand": 0.161,
- "new_tests_smoothed": 10131.0,
- "new_tests_smoothed_per_thousand": 0.224,
- "tests_per_case": 2.81,
- "positive_rate": 0.35600000000000004,
- "tests_units": "people tested",
- "stringency_index": 92.59
- },
- {
- "date": "2020-07-20",
- "total_cases": 122511.0,
- "new_cases": 3223.0,
- "new_cases_smoothed": 3573.571,
- "total_deaths": 2246.0,
- "new_deaths": 42.0,
- "new_deaths_smoothed": 61.143,
- "total_cases_per_million": 2710.674,
- "new_cases_per_million": 71.312,
- "new_cases_smoothed_per_million": 79.069,
- "total_deaths_per_million": 49.695,
- "new_deaths_per_million": 0.929,
- "new_deaths_smoothed_per_million": 1.353,
- "new_tests": 10978.0,
- "total_tests": 487692.0,
- "total_tests_per_thousand": 10.791,
- "new_tests_per_thousand": 0.243,
- "new_tests_smoothed": 10454.0,
- "new_tests_smoothed_per_thousand": 0.231,
- "tests_per_case": 2.925,
- "positive_rate": 0.342,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-07-21",
- "total_cases": 126742.0,
- "new_cases": 4231.0,
- "new_cases_smoothed": 3798.429,
- "total_deaths": 2373.0,
- "new_deaths": 127.0,
- "new_deaths_smoothed": 67.143,
- "total_cases_per_million": 2804.289,
- "new_cases_per_million": 93.615,
- "new_cases_smoothed_per_million": 84.044,
- "total_deaths_per_million": 52.505,
- "new_deaths_per_million": 2.81,
- "new_deaths_smoothed_per_million": 1.486,
- "new_tests": 12633.0,
- "total_tests": 500325.0,
- "total_tests_per_thousand": 11.07,
- "new_tests_per_thousand": 0.28,
- "new_tests_smoothed": 10737.0,
- "new_tests_smoothed_per_thousand": 0.238,
- "tests_per_case": 2.827,
- "positive_rate": 0.354,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-07-22",
- "total_cases": 130761.0,
- "new_cases": 4019.0,
- "new_cases_smoothed": 3929.857,
- "total_deaths": 2373.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 63.857,
- "total_cases_per_million": 2893.213,
- "new_cases_per_million": 88.924,
- "new_cases_smoothed_per_million": 86.952,
- "total_deaths_per_million": 52.505,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.413,
- "new_tests": 13646.0,
- "total_tests": 513971.0,
- "total_tests_per_thousand": 11.372,
- "new_tests_per_thousand": 0.302,
- "new_tests_smoothed": 11129.0,
- "new_tests_smoothed_per_thousand": 0.246,
- "tests_per_case": 2.832,
- "positive_rate": 0.353,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-07-23",
- "total_cases": 136105.0,
- "new_cases": 5344.0,
- "new_cases_smoothed": 4172.571,
- "total_deaths": 2506.0,
- "new_deaths": 133.0,
- "new_deaths_smoothed": 65.143,
- "total_cases_per_million": 3011.454,
- "new_cases_per_million": 118.241,
- "new_cases_smoothed_per_million": 92.322,
- "total_deaths_per_million": 55.448,
- "new_deaths_per_million": 2.943,
- "new_deaths_smoothed_per_million": 1.441,
- "new_tests": 13448.0,
- "total_tests": 527419.0,
- "total_tests_per_thousand": 11.67,
- "new_tests_per_thousand": 0.298,
- "new_tests_smoothed": 11502.0,
- "new_tests_smoothed_per_thousand": 0.254,
- "tests_per_case": 2.7569999999999997,
- "positive_rate": 0.363,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-07-24",
- "total_cases": 141887.0,
- "new_cases": 5782.0,
- "new_cases_smoothed": 4391.429,
- "total_deaths": 2617.0,
- "new_deaths": 111.0,
- "new_deaths_smoothed": 72.143,
- "total_cases_per_million": 3139.386,
- "new_cases_per_million": 127.932,
- "new_cases_smoothed_per_million": 97.165,
- "total_deaths_per_million": 57.904,
- "new_deaths_per_million": 2.456,
- "new_deaths_smoothed_per_million": 1.596,
- "new_tests": 14205.0,
- "total_tests": 541624.0,
- "total_tests_per_thousand": 11.984,
- "new_tests_per_thousand": 0.314,
- "new_tests_smoothed": 11807.0,
- "new_tests_smoothed_per_thousand": 0.261,
- "tests_per_case": 2.6889999999999996,
- "positive_rate": 0.37200000000000005,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-07-25",
- "total_cases": 148014.0,
- "new_cases": 6127.0,
- "new_cases_smoothed": 4749.143,
- "total_deaths": 2722.0,
- "new_deaths": 105.0,
- "new_deaths_smoothed": 84.143,
- "total_cases_per_million": 3274.952,
- "new_cases_per_million": 135.566,
- "new_cases_smoothed_per_million": 105.079,
- "total_deaths_per_million": 60.227,
- "new_deaths_per_million": 2.323,
- "new_deaths_smoothed_per_million": 1.862,
- "new_tests": 11640.0,
- "total_tests": 553264.0,
- "total_tests_per_thousand": 12.241,
- "new_tests_per_thousand": 0.258,
- "new_tests_smoothed": 11974.0,
- "new_tests_smoothed_per_thousand": 0.265,
- "tests_per_case": 2.521,
- "positive_rate": 0.397,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-07-26",
- "total_cases": 153507.0,
- "new_cases": 5493.0,
- "new_cases_smoothed": 4888.429,
- "total_deaths": 2847.0,
- "new_deaths": 125.0,
- "new_deaths_smoothed": 91.857,
- "total_cases_per_million": 3396.49,
- "new_cases_per_million": 121.538,
- "new_cases_smoothed_per_million": 108.161,
- "total_deaths_per_million": 62.993,
- "new_deaths_per_million": 2.766,
- "new_deaths_smoothed_per_million": 2.032,
- "new_tests": 7967.0,
- "total_tests": 561231.0,
- "total_tests_per_thousand": 12.418,
- "new_tests_per_thousand": 0.176,
- "new_tests_smoothed": 12074.0,
- "new_tests_smoothed_per_thousand": 0.267,
- "tests_per_case": 2.47,
- "positive_rate": 0.405,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-07-27",
- "total_cases": 162513.0,
- "new_cases": 9006.0,
- "new_cases_smoothed": 5714.571,
- "total_deaths": 2939.0,
- "new_deaths": 92.0,
- "new_deaths_smoothed": 99.0,
- "total_cases_per_million": 3595.756,
- "new_cases_per_million": 199.266,
- "new_cases_smoothed_per_million": 126.44,
- "total_deaths_per_million": 65.028,
- "new_deaths_per_million": 2.036,
- "new_deaths_smoothed_per_million": 2.19,
- "new_tests": 12094.0,
- "total_tests": 573325.0,
- "total_tests_per_thousand": 12.685,
- "new_tests_per_thousand": 0.268,
- "new_tests_smoothed": 12233.0,
- "new_tests_smoothed_per_thousand": 0.271,
- "tests_per_case": 2.141,
- "positive_rate": 0.467,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-07-28",
- "total_cases": 162513.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5110.143,
- "total_deaths": 2956.0,
- "new_deaths": 17.0,
- "new_deaths_smoothed": 83.286,
- "total_cases_per_million": 3595.756,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 113.067,
- "total_deaths_per_million": 65.404,
- "new_deaths_per_million": 0.376,
- "new_deaths_smoothed_per_million": 1.843,
- "new_tests": 14731.0,
- "total_tests": 588056.0,
- "total_tests_per_thousand": 13.011,
- "new_tests_per_thousand": 0.326,
- "new_tests_smoothed": 12533.0,
- "new_tests_smoothed_per_thousand": 0.277,
- "tests_per_case": 2.4530000000000003,
- "positive_rate": 0.408,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-07-29",
- "total_cases": 167403.0,
- "new_cases": 4890.0,
- "new_cases_smoothed": 5234.571,
- "total_deaths": 3082.0,
- "new_deaths": 126.0,
- "new_deaths_smoothed": 101.286,
- "total_cases_per_million": 3703.952,
- "new_cases_per_million": 108.196,
- "new_cases_smoothed_per_million": 115.82,
- "total_deaths_per_million": 68.192,
- "new_deaths_per_million": 2.788,
- "new_deaths_smoothed_per_million": 2.241,
- "new_tests": 14994.0,
- "total_tests": 603050.0,
- "total_tests_per_thousand": 13.343,
- "new_tests_per_thousand": 0.332,
- "new_tests_smoothed": 12726.0,
- "new_tests_smoothed_per_thousand": 0.282,
- "tests_per_case": 2.431,
- "positive_rate": 0.41100000000000003,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-07-30",
- "total_cases": 173342.0,
- "new_cases": 5939.0,
- "new_cases_smoothed": 5319.571,
- "total_deaths": 3200.0,
- "new_deaths": 118.0,
- "new_deaths_smoothed": 99.143,
- "total_cases_per_million": 3835.358,
- "new_cases_per_million": 131.406,
- "new_cases_smoothed_per_million": 117.701,
- "total_deaths_per_million": 70.803,
- "new_deaths_per_million": 2.611,
- "new_deaths_smoothed_per_million": 2.194,
- "new_tests": 14474.0,
- "total_tests": 617524.0,
- "total_tests_per_thousand": 13.663,
- "new_tests_per_thousand": 0.32,
- "new_tests_smoothed": 12872.0,
- "new_tests_smoothed_per_thousand": 0.285,
- "tests_per_case": 2.42,
- "positive_rate": 0.413,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-07-31",
- "total_cases": 178983.0,
- "new_cases": 5641.0,
- "new_cases_smoothed": 5299.429,
- "total_deaths": 3311.0,
- "new_deaths": 111.0,
- "new_deaths_smoothed": 99.143,
- "total_cases_per_million": 3960.171,
- "new_cases_per_million": 124.813,
- "new_cases_smoothed_per_million": 117.255,
- "total_deaths_per_million": 73.259,
- "new_deaths_per_million": 2.456,
- "new_deaths_smoothed_per_million": 2.194,
- "new_tests": 15764.0,
- "total_tests": 633288.0,
- "total_tests_per_thousand": 14.012,
- "new_tests_per_thousand": 0.349,
- "new_tests_smoothed": 13095.0,
- "new_tests_smoothed_per_thousand": 0.29,
- "tests_per_case": 2.471,
- "positive_rate": 0.405,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-08-01",
- "total_cases": 185360.0,
- "new_cases": 6377.0,
- "new_cases_smoothed": 5335.143,
- "total_deaths": 3466.0,
- "new_deaths": 155.0,
- "new_deaths_smoothed": 106.286,
- "total_cases_per_million": 4101.268,
- "new_cases_per_million": 141.097,
- "new_cases_smoothed_per_million": 118.045,
- "total_deaths_per_million": 76.689,
- "new_deaths_per_million": 3.43,
- "new_deaths_smoothed_per_million": 2.352,
- "new_tests": 12073.0,
- "total_tests": 645361.0,
- "total_tests_per_thousand": 14.279,
- "new_tests_per_thousand": 0.267,
- "new_tests_smoothed": 13157.0,
- "new_tests_smoothed_per_thousand": 0.291,
- "tests_per_case": 2.4659999999999997,
- "positive_rate": 0.405,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-08-02",
- "total_cases": 191289.0,
- "new_cases": 5929.0,
- "new_cases_smoothed": 5397.429,
- "total_deaths": 3558.0,
- "new_deaths": 92.0,
- "new_deaths_smoothed": 101.571,
- "total_cases_per_million": 4232.453,
- "new_cases_per_million": 131.185,
- "new_cases_smoothed_per_million": 119.423,
- "total_deaths_per_million": 78.724,
- "new_deaths_per_million": 2.036,
- "new_deaths_smoothed_per_million": 2.247,
- "new_tests": 10427.0,
- "total_tests": 655788.0,
- "total_tests_per_thousand": 14.51,
- "new_tests_per_thousand": 0.231,
- "new_tests_smoothed": 13508.0,
- "new_tests_smoothed_per_thousand": 0.299,
- "tests_per_case": 2.503,
- "positive_rate": 0.4,
- "tests_units": "people tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-08-03",
- "total_cases": 196530.0,
- "new_cases": 5241.0,
- "new_cases_smoothed": 4859.571,
- "total_deaths": 3612.0,
- "new_deaths": 54.0,
- "new_deaths_smoothed": 96.143,
- "total_cases_per_million": 4348.415,
- "new_cases_per_million": 115.962,
- "new_cases_smoothed_per_million": 107.523,
- "total_deaths_per_million": 79.919,
- "new_deaths_per_million": 1.195,
- "new_deaths_smoothed_per_million": 2.127,
- "new_tests": 13729.0,
- "total_tests": 669517.0,
- "total_tests_per_thousand": 14.814,
- "new_tests_per_thousand": 0.304,
- "new_tests_smoothed": 13742.0,
- "new_tests_smoothed_per_thousand": 0.304,
- "tests_per_case": 2.8280000000000003,
- "positive_rate": 0.354,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-08-04",
- "total_cases": 201906.0,
- "new_cases": 5376.0,
- "new_cases_smoothed": 5627.571,
- "total_deaths": 3667.0,
- "new_deaths": 55.0,
- "new_deaths_smoothed": 101.571,
- "total_cases_per_million": 4467.364,
- "new_cases_per_million": 118.949,
- "new_cases_smoothed_per_million": 124.515,
- "total_deaths_per_million": 81.136,
- "new_deaths_per_million": 1.217,
- "new_deaths_smoothed_per_million": 2.247,
- "new_tests": 16623.0,
- "total_tests": 686140.0,
- "total_tests_per_thousand": 15.182,
- "new_tests_per_thousand": 0.368,
- "new_tests_smoothed": 14012.0,
- "new_tests_smoothed_per_thousand": 0.31,
- "tests_per_case": 2.49,
- "positive_rate": 0.402,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-08-05",
- "total_cases": 206730.0,
- "new_cases": 4824.0,
- "new_cases_smoothed": 5618.143,
- "total_deaths": 3863.0,
- "new_deaths": 196.0,
- "new_deaths_smoothed": 111.571,
- "total_cases_per_million": 4574.1,
- "new_cases_per_million": 106.736,
- "new_cases_smoothed_per_million": 124.307,
- "total_deaths_per_million": 85.473,
- "new_deaths_per_million": 4.337,
- "new_deaths_smoothed_per_million": 2.469,
- "new_tests": 17566.0,
- "total_tests": 703706.0,
- "total_tests_per_thousand": 15.57,
- "new_tests_per_thousand": 0.389,
- "new_tests_smoothed": 14379.0,
- "new_tests_smoothed_per_thousand": 0.318,
- "tests_per_case": 2.559,
- "positive_rate": 0.391,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-08-06",
- "total_cases": 213522.0,
- "new_cases": 6792.0,
- "new_cases_smoothed": 5740.0,
- "total_deaths": 4009.0,
- "new_deaths": 146.0,
- "new_deaths_smoothed": 115.571,
- "total_cases_per_million": 4724.379,
- "new_cases_per_million": 150.28,
- "new_cases_smoothed_per_million": 127.003,
- "total_deaths_per_million": 88.703,
- "new_deaths_per_million": 3.23,
- "new_deaths_smoothed_per_million": 2.557,
- "new_tests": 17769.0,
- "total_tests": 721475.0,
- "total_tests_per_thousand": 15.963,
- "new_tests_per_thousand": 0.393,
- "new_tests_smoothed": 14850.0,
- "new_tests_smoothed_per_thousand": 0.329,
- "tests_per_case": 2.5869999999999997,
- "positive_rate": 0.387,
- "tests_units": "people tested",
- "stringency_index": 88.89
- },
- {
- "date": "2020-08-07",
- "total_cases": 220669.0,
- "new_cases": 7147.0,
- "new_cases_smoothed": 5955.143,
- "total_deaths": 4135.0,
- "new_deaths": 126.0,
- "new_deaths_smoothed": 117.714,
- "total_cases_per_million": 4882.514,
- "new_cases_per_million": 158.134,
- "new_cases_smoothed_per_million": 131.763,
- "total_deaths_per_million": 91.491,
- "new_deaths_per_million": 2.788,
- "new_deaths_smoothed_per_million": 2.605,
- "new_tests": 18119.0,
- "total_tests": 739594.0,
- "total_tests_per_thousand": 16.364,
- "new_tests_per_thousand": 0.401,
- "new_tests_smoothed": 15187.0,
- "new_tests_smoothed_per_thousand": 0.336,
- "tests_per_case": 2.55,
- "positive_rate": 0.392,
- "tests_units": "people tested",
- "stringency_index": 87.96
- },
- {
- "date": "2020-08-08",
- "total_cases": 228182.0,
- "new_cases": 7513.0,
- "new_cases_smoothed": 6117.429,
- "total_deaths": 4291.0,
- "new_deaths": 156.0,
- "new_deaths_smoothed": 117.857,
- "total_cases_per_million": 5048.746,
- "new_cases_per_million": 166.232,
- "new_cases_smoothed_per_million": 135.354,
- "total_deaths_per_million": 94.942,
- "new_deaths_per_million": 3.452,
- "new_deaths_smoothed_per_million": 2.608,
- "new_tests": 15278.0,
- "total_tests": 754872.0,
- "total_tests_per_thousand": 16.702,
- "new_tests_per_thousand": 0.338,
- "new_tests_smoothed": 15644.0,
- "new_tests_smoothed_per_thousand": 0.346,
- "tests_per_case": 2.557,
- "positive_rate": 0.391,
- "tests_units": "people tested",
- "stringency_index": 87.96
- },
- {
- "date": "2020-08-09",
- "total_cases": 235664.0,
- "new_cases": 7482.0,
- "new_cases_smoothed": 6339.286,
- "total_deaths": 4450.0,
- "new_deaths": 159.0,
- "new_deaths_smoothed": 127.429,
- "total_cases_per_million": 5214.292,
- "new_cases_per_million": 165.546,
- "new_cases_smoothed_per_million": 140.263,
- "total_deaths_per_million": 98.461,
- "new_deaths_per_million": 3.518,
- "new_deaths_smoothed_per_million": 2.819,
- "new_tests": 9961.0,
- "total_tests": 764833.0,
- "total_tests_per_thousand": 16.923,
- "new_tests_per_thousand": 0.22,
- "new_tests_smoothed": 15578.0,
- "new_tests_smoothed_per_thousand": 0.345,
- "tests_per_case": 2.457,
- "positive_rate": 0.40700000000000003,
- "tests_units": "people tested",
- "stringency_index": 87.96
- },
- {
- "date": "2020-08-10",
- "total_cases": 241798.0,
- "new_cases": 6134.0,
- "new_cases_smoothed": 6466.857,
- "total_deaths": 4556.0,
- "new_deaths": 106.0,
- "new_deaths_smoothed": 134.857,
- "total_cases_per_million": 5350.013,
- "new_cases_per_million": 135.721,
- "new_cases_smoothed_per_million": 143.085,
- "total_deaths_per_million": 100.806,
- "new_deaths_per_million": 2.345,
- "new_deaths_smoothed_per_million": 2.984,
- "new_tests": 16258.0,
- "total_tests": 781091.0,
- "total_tests_per_thousand": 17.282,
- "new_tests_per_thousand": 0.36,
- "new_tests_smoothed": 15939.0,
- "new_tests_smoothed_per_thousand": 0.353,
- "tests_per_case": 2.465,
- "positive_rate": 0.406,
- "tests_units": "people tested",
- "stringency_index": 87.96
- },
- {
- "date": "2020-08-11",
- "total_cases": 246486.0,
- "new_cases": 4688.0,
- "new_cases_smoothed": 6368.571,
- "total_deaths": 4634.0,
- "new_deaths": 78.0,
- "new_deaths_smoothed": 138.143,
- "total_cases_per_million": 5453.74,
- "new_cases_per_million": 103.727,
- "new_cases_smoothed_per_million": 140.911,
- "total_deaths_per_million": 102.532,
- "new_deaths_per_million": 1.726,
- "new_deaths_smoothed_per_million": 3.057,
- "new_tests": 19301.0,
- "total_tests": 800392.0,
- "total_tests_per_thousand": 17.709,
- "new_tests_per_thousand": 0.427,
- "new_tests_smoothed": 16322.0,
- "new_tests_smoothed_per_thousand": 0.361,
- "tests_per_case": 2.563,
- "positive_rate": 0.39,
- "tests_units": "people tested",
- "stringency_index": 87.96
- },
- {
- "date": "2020-08-12",
- "total_cases": 253855.0,
- "new_cases": 7369.0,
- "new_cases_smoothed": 6732.143,
- "total_deaths": 4785.0,
- "new_deaths": 151.0,
- "new_deaths_smoothed": 131.714,
- "total_cases_per_million": 5616.786,
- "new_cases_per_million": 163.046,
- "new_cases_smoothed_per_million": 148.955,
- "total_deaths_per_million": 105.873,
- "new_deaths_per_million": 3.341,
- "new_deaths_smoothed_per_million": 2.914,
- "new_tests": 19143.0,
- "total_tests": 819535.0,
- "total_tests_per_thousand": 18.133,
- "new_tests_per_thousand": 0.424,
- "new_tests_smoothed": 16547.0,
- "new_tests_smoothed_per_thousand": 0.366,
- "tests_per_case": 2.458,
- "positive_rate": 0.40700000000000003,
- "tests_units": "people tested",
- "stringency_index": 87.96
- },
- {
- "date": "2020-08-13",
- "total_cases": 260898.0,
- "new_cases": 7043.0,
- "new_cases_smoothed": 6768.0,
- "total_deaths": 5088.0,
- "new_deaths": 303.0,
- "new_deaths_smoothed": 154.143,
- "total_cases_per_million": 5772.619,
- "new_cases_per_million": 155.833,
- "new_cases_smoothed_per_million": 149.749,
- "total_deaths_per_million": 112.577,
- "new_deaths_per_million": 6.704,
- "new_deaths_smoothed_per_million": 3.411,
- "new_tests": 18621.0,
- "total_tests": 838156.0,
- "total_tests_per_thousand": 18.545,
- "new_tests_per_thousand": 0.412,
- "new_tests_smoothed": 16669.0,
- "new_tests_smoothed_per_thousand": 0.369,
- "tests_per_case": 2.463,
- "positive_rate": 0.406,
- "tests_units": "people tested",
- "stringency_index": 87.96
- },
- {
- "date": "2020-08-14",
- "total_cases": 268561.0,
- "new_cases": 7663.0,
- "new_cases_smoothed": 6841.714,
- "total_deaths": 5246.0,
- "new_deaths": 158.0,
- "new_deaths_smoothed": 158.714,
- "total_cases_per_million": 5942.17,
- "new_cases_per_million": 169.551,
- "new_cases_smoothed_per_million": 151.38,
- "total_deaths_per_million": 116.073,
- "new_deaths_per_million": 3.496,
- "new_deaths_smoothed_per_million": 3.512,
- "new_tests": 19092.0,
- "total_tests": 857248.0,
- "total_tests_per_thousand": 18.967,
- "new_tests_per_thousand": 0.422,
- "new_tests_smoothed": 16808.0,
- "new_tests_smoothed_per_thousand": 0.372,
- "tests_per_case": 2.457,
- "positive_rate": 0.40700000000000003,
- "tests_units": "people tested",
- "stringency_index": 87.96
- },
- {
- "date": "2020-08-15",
- "total_cases": 276059.0,
- "new_cases": 7498.0,
- "new_cases_smoothed": 6839.571,
- "total_deaths": 5428.0,
- "new_deaths": 182.0,
- "new_deaths_smoothed": 162.429,
- "total_cases_per_million": 6108.071,
- "new_cases_per_million": 165.9,
- "new_cases_smoothed_per_million": 151.332,
- "total_deaths_per_million": 120.1,
- "new_deaths_per_million": 4.027,
- "new_deaths_smoothed_per_million": 3.594,
- "new_tests": 16452.0,
- "total_tests": 873700.0,
- "total_tests_per_thousand": 19.331,
- "new_tests_per_thousand": 0.364,
- "new_tests_smoothed": 16975.0,
- "new_tests_smoothed_per_thousand": 0.376,
- "tests_per_case": 2.4819999999999998,
- "positive_rate": 0.40299999999999997,
- "tests_units": "people tested",
- "stringency_index": 87.96
- },
- {
- "date": "2020-08-16",
- "total_cases": 282424.0,
- "new_cases": 6365.0,
- "new_cases_smoothed": 6680.0,
- "total_deaths": 5565.0,
- "new_deaths": 137.0,
- "new_deaths_smoothed": 159.286,
- "total_cases_per_million": 6248.902,
- "new_cases_per_million": 140.832,
- "new_cases_smoothed_per_million": 147.801,
- "total_deaths_per_million": 123.131,
- "new_deaths_per_million": 3.031,
- "new_deaths_smoothed_per_million": 3.524,
- "new_tests": 9988.0,
- "total_tests": 883688.0,
- "total_tests_per_thousand": 19.552,
- "new_tests_per_thousand": 0.221,
- "new_tests_smoothed": 16979.0,
- "new_tests_smoothed_per_thousand": 0.376,
- "tests_per_case": 2.542,
- "positive_rate": 0.39299999999999996,
- "tests_units": "people tested",
- "stringency_index": 87.96
- },
- {
- "date": "2020-08-17",
- "total_cases": 289087.0,
- "new_cases": 6663.0,
- "new_cases_smoothed": 6755.571,
- "total_deaths": 5657.0,
- "new_deaths": 92.0,
- "new_deaths_smoothed": 157.286,
- "total_cases_per_million": 6396.328,
- "new_cases_per_million": 147.425,
- "new_cases_smoothed_per_million": 149.474,
- "total_deaths_per_million": 125.167,
- "new_deaths_per_million": 2.036,
- "new_deaths_smoothed_per_million": 3.48,
- "new_tests": 12732.0,
- "total_tests": 896420.0,
- "total_tests_per_thousand": 19.834,
- "new_tests_per_thousand": 0.282,
- "new_tests_smoothed": 16476.0,
- "new_tests_smoothed_per_thousand": 0.365,
- "tests_per_case": 2.439,
- "positive_rate": 0.41,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-08-18",
- "total_cases": 294556.0,
- "new_cases": 5469.0,
- "new_cases_smoothed": 6867.143,
- "total_deaths": 5750.0,
- "new_deaths": 93.0,
- "new_deaths_smoothed": 159.429,
- "total_cases_per_million": 6517.335,
- "new_cases_per_million": 121.007,
- "new_cases_smoothed_per_million": 151.942,
- "total_deaths_per_million": 127.224,
- "new_deaths_per_million": 2.058,
- "new_deaths_smoothed_per_million": 3.528,
- "new_tests": 15816.0,
- "total_tests": 912236.0,
- "total_tests_per_thousand": 20.184,
- "new_tests_per_thousand": 0.35,
- "new_tests_smoothed": 15978.0,
- "new_tests_smoothed_per_thousand": 0.354,
- "tests_per_case": 2.327,
- "positive_rate": 0.43,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-08-19",
- "total_cases": 299113.0,
- "new_cases": 4557.0,
- "new_cases_smoothed": 6465.429,
- "total_deaths": 5877.0,
- "new_deaths": 127.0,
- "new_deaths_smoothed": 156.0,
- "total_cases_per_million": 6618.163,
- "new_cases_per_million": 100.828,
- "new_cases_smoothed_per_million": 143.054,
- "total_deaths_per_million": 130.034,
- "new_deaths_per_million": 2.81,
- "new_deaths_smoothed_per_million": 3.452,
- "new_tests": 18151.0,
- "total_tests": 930387.0,
- "total_tests_per_thousand": 20.586,
- "new_tests_per_thousand": 0.402,
- "new_tests_smoothed": 15836.0,
- "new_tests_smoothed_per_thousand": 0.35,
- "tests_per_case": 2.449,
- "positive_rate": 0.408,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-08-20",
- "total_cases": 305953.0,
- "new_cases": 6840.0,
- "new_cases_smoothed": 6436.429,
- "total_deaths": 6114.0,
- "new_deaths": 237.0,
- "new_deaths_smoothed": 146.571,
- "total_cases_per_million": 6769.504,
- "new_cases_per_million": 151.342,
- "new_cases_smoothed_per_million": 142.412,
- "total_deaths_per_million": 135.278,
- "new_deaths_per_million": 5.244,
- "new_deaths_smoothed_per_million": 3.243,
- "new_tests": 19035.0,
- "total_tests": 949422.0,
- "total_tests_per_thousand": 21.007,
- "new_tests_per_thousand": 0.421,
- "new_tests_smoothed": 15895.0,
- "new_tests_smoothed_per_thousand": 0.352,
- "tests_per_case": 2.47,
- "positive_rate": 0.405,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-08-21",
- "total_cases": 312646.0,
- "new_cases": 6693.0,
- "new_cases_smoothed": 6297.857,
- "total_deaths": 6406.0,
- "new_deaths": 292.0,
- "new_deaths_smoothed": 165.714,
- "total_cases_per_million": 6917.593,
- "new_cases_per_million": 148.089,
- "new_cases_smoothed_per_million": 139.346,
- "total_deaths_per_million": 141.739,
- "new_deaths_per_million": 6.461,
- "new_deaths_smoothed_per_million": 3.667,
- "new_tests": 18964.0,
- "total_tests": 968386.0,
- "total_tests_per_thousand": 21.426,
- "new_tests_per_thousand": 0.42,
- "new_tests_smoothed": 15877.0,
- "new_tests_smoothed_per_thousand": 0.351,
- "tests_per_case": 2.521,
- "positive_rate": 0.397,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-08-22",
- "total_cases": 320871.0,
- "new_cases": 8225.0,
- "new_cases_smoothed": 6401.714,
- "total_deaths": 6567.0,
- "new_deaths": 161.0,
- "new_deaths_smoothed": 162.714,
- "total_cases_per_million": 7099.579,
- "new_cases_per_million": 181.986,
- "new_cases_smoothed_per_million": 141.644,
- "total_deaths_per_million": 145.301,
- "new_deaths_per_million": 3.562,
- "new_deaths_smoothed_per_million": 3.6,
- "new_tests": 15890.0,
- "total_tests": 984276.0,
- "total_tests_per_thousand": 21.778,
- "new_tests_per_thousand": 0.352,
- "new_tests_smoothed": 15797.0,
- "new_tests_smoothed_per_thousand": 0.35,
- "tests_per_case": 2.468,
- "positive_rate": 0.405,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-08-23",
- "total_cases": 329030.0,
- "new_cases": 8159.0,
- "new_cases_smoothed": 6658.0,
- "total_deaths": 6795.0,
- "new_deaths": 228.0,
- "new_deaths_smoothed": 175.714,
- "total_cases_per_million": 7280.105,
- "new_cases_per_million": 180.526,
- "new_cases_smoothed_per_million": 147.315,
- "total_deaths_per_million": 150.346,
- "new_deaths_per_million": 5.045,
- "new_deaths_smoothed_per_million": 3.888,
- "new_tests": 10488.0,
- "total_tests": 994764.0,
- "total_tests_per_thousand": 22.01,
- "new_tests_per_thousand": 0.232,
- "new_tests_smoothed": 15868.0,
- "new_tests_smoothed_per_thousand": 0.351,
- "tests_per_case": 2.383,
- "positive_rate": 0.42,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-08-24",
- "total_cases": 336789.0,
- "new_cases": 7759.0,
- "new_cases_smoothed": 6814.571,
- "total_deaths": 6848.0,
- "new_deaths": 53.0,
- "new_deaths_smoothed": 170.143,
- "total_cases_per_million": 7451.78,
- "new_cases_per_million": 171.675,
- "new_cases_smoothed_per_million": 150.779,
- "total_deaths_per_million": 151.519,
- "new_deaths_per_million": 1.173,
- "new_deaths_smoothed_per_million": 3.765,
- "new_tests": 17581.0,
- "total_tests": 1012345.0,
- "total_tests_per_thousand": 22.399,
- "new_tests_per_thousand": 0.389,
- "new_tests_smoothed": 16561.0,
- "new_tests_smoothed_per_thousand": 0.366,
- "tests_per_case": 2.43,
- "positive_rate": 0.41100000000000003,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-08-25",
- "total_cases": 342141.0,
- "new_cases": 5352.0,
- "new_cases_smoothed": 6797.857,
- "total_deaths": 7079.0,
- "new_deaths": 231.0,
- "new_deaths_smoothed": 189.857,
- "total_cases_per_million": 7570.198,
- "new_cases_per_million": 118.418,
- "new_cases_smoothed_per_million": 150.409,
- "total_deaths_per_million": 156.63,
- "new_deaths_per_million": 5.111,
- "new_deaths_smoothed_per_million": 4.201,
- "new_tests": 19484.0,
- "total_tests": 1031829.0,
- "total_tests_per_thousand": 22.83,
- "new_tests_per_thousand": 0.431,
- "new_tests_smoothed": 17085.0,
- "new_tests_smoothed_per_thousand": 0.378,
- "tests_per_case": 2.513,
- "positive_rate": 0.39799999999999996,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-08-26",
- "total_cases": 350854.0,
- "new_cases": 8713.0,
- "new_cases_smoothed": 7391.571,
- "total_deaths": 7402.0,
- "new_deaths": 323.0,
- "new_deaths_smoothed": 217.857,
- "total_cases_per_million": 7762.982,
- "new_cases_per_million": 192.783,
- "new_cases_smoothed_per_million": 163.546,
- "total_deaths_per_million": 163.776,
- "new_deaths_per_million": 7.147,
- "new_deaths_smoothed_per_million": 4.82,
- "new_tests": 21301.0,
- "total_tests": 1053130.0,
- "total_tests_per_thousand": 23.302,
- "new_tests_per_thousand": 0.471,
- "new_tests_smoothed": 17535.0,
- "new_tests_smoothed_per_thousand": 0.388,
- "tests_per_case": 2.372,
- "positive_rate": 0.42200000000000004,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-08-27",
- "total_cases": 359625.0,
- "new_cases": 8771.0,
- "new_cases_smoothed": 7667.429,
- "total_deaths": 7661.0,
- "new_deaths": 259.0,
- "new_deaths_smoothed": 221.0,
- "total_cases_per_million": 7957.049,
- "new_cases_per_million": 194.067,
- "new_cases_smoothed_per_million": 169.649,
- "total_deaths_per_million": 169.507,
- "new_deaths_per_million": 5.731,
- "new_deaths_smoothed_per_million": 4.89,
- "new_tests": 21913.0,
- "total_tests": 1075043.0,
- "total_tests_per_thousand": 23.786,
- "new_tests_per_thousand": 0.485,
- "new_tests_smoothed": 17946.0,
- "new_tests_smoothed_per_thousand": 0.397,
- "tests_per_case": 2.3409999999999997,
- "positive_rate": 0.42700000000000005,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-08-28",
- "total_cases": 370175.0,
- "new_cases": 10550.0,
- "new_cases_smoothed": 8218.429,
- "total_deaths": 7944.0,
- "new_deaths": 283.0,
- "new_deaths_smoothed": 219.714,
- "total_cases_per_million": 8190.478,
- "new_cases_per_million": 233.429,
- "new_cases_smoothed_per_million": 181.841,
- "total_deaths_per_million": 175.769,
- "new_deaths_per_million": 6.262,
- "new_deaths_smoothed_per_million": 4.861,
- "new_tests": 21360.0,
- "total_tests": 1096403.0,
- "total_tests_per_thousand": 24.259,
- "new_tests_per_thousand": 0.473,
- "new_tests_smoothed": 18288.0,
- "new_tests_smoothed_per_thousand": 0.405,
- "tests_per_case": 2.225,
- "positive_rate": 0.449,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-08-29",
- "total_cases": 380279.0,
- "new_cases": 10104.0,
- "new_cases_smoothed": 8486.857,
- "total_deaths": 8129.0,
- "new_deaths": 185.0,
- "new_deaths_smoothed": 223.143,
- "total_cases_per_million": 8414.038,
- "new_cases_per_million": 223.561,
- "new_cases_smoothed_per_million": 187.78,
- "total_deaths_per_million": 179.862,
- "new_deaths_per_million": 4.093,
- "new_deaths_smoothed_per_million": 4.937,
- "new_tests": 17396.0,
- "total_tests": 1113799.0,
- "total_tests_per_thousand": 24.644,
- "new_tests_per_thousand": 0.385,
- "new_tests_smoothed": 18503.0,
- "new_tests_smoothed_per_thousand": 0.409,
- "tests_per_case": 2.18,
- "positive_rate": 0.45899999999999996,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-08-30",
- "total_cases": 392009.0,
- "new_cases": 11730.0,
- "new_cases_smoothed": 8997.0,
- "total_deaths": 8305.0,
- "new_deaths": 176.0,
- "new_deaths_smoothed": 215.714,
- "total_cases_per_million": 8673.576,
- "new_cases_per_million": 259.538,
- "new_cases_smoothed_per_million": 199.067,
- "total_deaths_per_million": 183.756,
- "new_deaths_per_million": 3.894,
- "new_deaths_smoothed_per_million": 4.773,
- "new_tests": 13565.0,
- "total_tests": 1127364.0,
- "total_tests_per_thousand": 24.944,
- "new_tests_per_thousand": 0.3,
- "new_tests_smoothed": 18943.0,
- "new_tests_smoothed_per_thousand": 0.419,
- "tests_per_case": 2.105,
- "positive_rate": 0.475,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-08-31",
- "total_cases": 401226.0,
- "new_cases": 9217.0,
- "new_cases_smoothed": 9205.286,
- "total_deaths": 8401.0,
- "new_deaths": 96.0,
- "new_deaths_smoothed": 221.857,
- "total_cases_per_million": 8877.511,
- "new_cases_per_million": 203.935,
- "new_cases_smoothed_per_million": 203.676,
- "total_deaths_per_million": 185.88,
- "new_deaths_per_million": 2.124,
- "new_deaths_smoothed_per_million": 4.909,
- "new_tests": 18149.0,
- "total_tests": 1145513.0,
- "total_tests_per_thousand": 25.346,
- "new_tests_per_thousand": 0.402,
- "new_tests_smoothed": 19024.0,
- "new_tests_smoothed_per_thousand": 0.421,
- "tests_per_case": 2.0669999999999997,
- "positive_rate": 0.484,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-09-01",
- "total_cases": 408413.0,
- "new_cases": 7187.0,
- "new_cases_smoothed": 9467.429,
- "total_deaths": 8498.0,
- "new_deaths": 97.0,
- "new_deaths_smoothed": 202.714,
- "total_cases_per_million": 9036.53,
- "new_cases_per_million": 159.019,
- "new_cases_smoothed_per_million": 209.476,
- "total_deaths_per_million": 188.026,
- "new_deaths_per_million": 2.146,
- "new_deaths_smoothed_per_million": 4.485,
- "new_tests": 21212.0,
- "total_tests": 1166725.0,
- "total_tests_per_thousand": 25.815,
- "new_tests_per_thousand": 0.469,
- "new_tests_smoothed": 19271.0,
- "new_tests_smoothed_per_thousand": 0.426,
- "tests_per_case": 2.036,
- "positive_rate": 0.491,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-09-02",
- "total_cases": 417722.0,
- "new_cases": 9309.0,
- "new_cases_smoothed": 9552.571,
- "total_deaths": 8730.0,
- "new_deaths": 232.0,
- "new_deaths_smoothed": 189.714,
- "total_cases_per_million": 9242.501,
- "new_cases_per_million": 205.971,
- "new_cases_smoothed_per_million": 211.36,
- "total_deaths_per_million": 193.16,
- "new_deaths_per_million": 5.133,
- "new_deaths_smoothed_per_million": 4.198,
- "new_tests": 21203.0,
- "total_tests": 1187928.0,
- "total_tests_per_thousand": 26.284,
- "new_tests_per_thousand": 0.469,
- "new_tests_smoothed": 19257.0,
- "new_tests_smoothed_per_thousand": 0.426,
- "tests_per_case": 2.016,
- "positive_rate": 0.496,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-09-03",
- "total_cases": 428226.0,
- "new_cases": 10504.0,
- "new_cases_smoothed": 9800.143,
- "total_deaths": 8971.0,
- "new_deaths": 241.0,
- "new_deaths_smoothed": 187.143,
- "total_cases_per_million": 9474.912,
- "new_cases_per_million": 232.411,
- "new_cases_smoothed_per_million": 216.838,
- "total_deaths_per_million": 198.492,
- "new_deaths_per_million": 5.332,
- "new_deaths_smoothed_per_million": 4.141,
- "new_tests": 21771.0,
- "total_tests": 1209699.0,
- "total_tests_per_thousand": 26.766,
- "new_tests_per_thousand": 0.482,
- "new_tests_smoothed": 19237.0,
- "new_tests_smoothed_per_thousand": 0.426,
- "tests_per_case": 1.963,
- "positive_rate": 0.509,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-09-04",
- "total_cases": 439159.0,
- "new_cases": 10933.0,
- "new_cases_smoothed": 9854.857,
- "total_deaths": 9155.0,
- "new_deaths": 184.0,
- "new_deaths_smoothed": 173.0,
- "total_cases_per_million": 9716.815,
- "new_cases_per_million": 241.903,
- "new_cases_smoothed_per_million": 218.048,
- "total_deaths_per_million": 202.563,
- "new_deaths_per_million": 4.071,
- "new_deaths_smoothed_per_million": 3.828,
- "new_tests": 21746.0,
- "total_tests": 1231445.0,
- "total_tests_per_thousand": 27.247,
- "new_tests_per_thousand": 0.481,
- "new_tests_smoothed": 19292.0,
- "new_tests_smoothed_per_thousand": 0.427,
- "tests_per_case": 1.9580000000000002,
- "positive_rate": 0.511,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-09-05",
- "total_cases": 451185.0,
- "new_cases": 12026.0,
- "new_cases_smoothed": 10129.429,
- "total_deaths": 9468.0,
- "new_deaths": 313.0,
- "new_deaths_smoothed": 191.286,
- "total_cases_per_million": 9982.902,
- "new_cases_per_million": 266.087,
- "new_cases_smoothed_per_million": 224.123,
- "total_deaths_per_million": 209.489,
- "new_deaths_per_million": 6.925,
- "new_deaths_smoothed_per_million": 4.232,
- "new_tests": 19320.0,
- "total_tests": 1250765.0,
- "total_tests_per_thousand": 27.674,
- "new_tests_per_thousand": 0.427,
- "new_tests_smoothed": 19567.0,
- "new_tests_smoothed_per_thousand": 0.433,
- "tests_per_case": 1.932,
- "positive_rate": 0.518,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-09-06",
- "total_cases": 461869.0,
- "new_cases": 10684.0,
- "new_cases_smoothed": 9980.0,
- "total_deaths": 9685.0,
- "new_deaths": 217.0,
- "new_deaths_smoothed": 197.143,
- "total_cases_per_million": 10219.295,
- "new_cases_per_million": 236.394,
- "new_cases_smoothed_per_million": 220.817,
- "total_deaths_per_million": 214.29,
- "new_deaths_per_million": 4.801,
- "new_deaths_smoothed_per_million": 4.362,
- "new_tests": 12385.0,
- "total_tests": 1263150.0,
- "total_tests_per_thousand": 27.948,
- "new_tests_per_thousand": 0.274,
- "new_tests_smoothed": 19398.0,
- "new_tests_smoothed_per_thousand": 0.429,
- "tests_per_case": 1.944,
- "positive_rate": 0.514,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-09-07",
- "total_cases": 471793.0,
- "new_cases": 9924.0,
- "new_cases_smoothed": 10081.0,
- "total_deaths": 9807.0,
- "new_deaths": 122.0,
- "new_deaths_smoothed": 200.857,
- "total_cases_per_million": 10438.874,
- "new_cases_per_million": 219.578,
- "new_cases_smoothed_per_million": 223.052,
- "total_deaths_per_million": 216.989,
- "new_deaths_per_million": 2.699,
- "new_deaths_smoothed_per_million": 4.444,
- "new_tests": 19601.0,
- "total_tests": 1282751.0,
- "total_tests_per_thousand": 28.382,
- "new_tests_per_thousand": 0.434,
- "new_tests_smoothed": 19605.0,
- "new_tests_smoothed_per_thousand": 0.434,
- "tests_per_case": 1.945,
- "positive_rate": 0.514,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-09-08",
- "total_cases": 478779.0,
- "new_cases": 6986.0,
- "new_cases_smoothed": 10052.286,
- "total_deaths": 9912.0,
- "new_deaths": 105.0,
- "new_deaths_smoothed": 202.0,
- "total_cases_per_million": 10593.445,
- "new_cases_per_million": 154.572,
- "new_cases_smoothed_per_million": 222.416,
- "total_deaths_per_million": 219.313,
- "new_deaths_per_million": 2.323,
- "new_deaths_smoothed_per_million": 4.469,
- "new_tests": 22946.0,
- "total_tests": 1305697.0,
- "total_tests_per_thousand": 28.89,
- "new_tests_per_thousand": 0.508,
- "new_tests_smoothed": 19853.0,
- "new_tests_smoothed_per_thousand": 0.439,
- "tests_per_case": 1.975,
- "positive_rate": 0.506,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-09-09",
- "total_cases": 487994.0,
- "new_cases": 9215.0,
- "new_cases_smoothed": 10038.857,
- "total_deaths": 10179.0,
- "new_deaths": 267.0,
- "new_deaths_smoothed": 207.0,
- "total_cases_per_million": 10797.336,
- "new_cases_per_million": 203.891,
- "new_cases_smoothed_per_million": 222.119,
- "total_deaths_per_million": 225.22,
- "new_deaths_per_million": 5.908,
- "new_deaths_smoothed_per_million": 4.58,
- "new_tests": 24475.0,
- "total_tests": 1330172.0,
- "total_tests_per_thousand": 29.431,
- "new_tests_per_thousand": 0.542,
- "new_tests_smoothed": 20321.0,
- "new_tests_smoothed_per_thousand": 0.45,
- "tests_per_case": 2.024,
- "positive_rate": 0.494,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-09-10",
- "total_cases": 500021.0,
- "new_cases": 12027.0,
- "new_cases_smoothed": 10256.429,
- "total_deaths": 10457.0,
- "new_deaths": 278.0,
- "new_deaths_smoothed": 212.286,
- "total_cases_per_million": 11063.445,
- "new_cases_per_million": 266.109,
- "new_cases_smoothed_per_million": 226.933,
- "total_deaths_per_million": 231.371,
- "new_deaths_per_million": 6.151,
- "new_deaths_smoothed_per_million": 4.697,
- "new_tests": 23726.0,
- "total_tests": 1353898.0,
- "total_tests_per_thousand": 29.956,
- "new_tests_per_thousand": 0.525,
- "new_tests_smoothed": 20600.0,
- "new_tests_smoothed_per_thousand": 0.456,
- "tests_per_case": 2.008,
- "positive_rate": 0.498,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-09-11",
- "total_cases": 512280.0,
- "new_cases": 12259.0,
- "new_cases_smoothed": 10445.857,
- "total_deaths": 10713.0,
- "new_deaths": 256.0,
- "new_deaths_smoothed": 222.571,
- "total_cases_per_million": 11334.687,
- "new_cases_per_million": 271.242,
- "new_cases_smoothed_per_million": 231.125,
- "total_deaths_per_million": 237.035,
- "new_deaths_per_million": 5.664,
- "new_deaths_smoothed_per_million": 4.925,
- "new_tests": 24984.0,
- "total_tests": 1378882.0,
- "total_tests_per_thousand": 30.509,
- "new_tests_per_thousand": 0.553,
- "new_tests_smoothed": 21062.0,
- "new_tests_smoothed_per_thousand": 0.466,
- "tests_per_case": 2.016,
- "positive_rate": 0.496,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-09-12",
- "total_cases": 524185.0,
- "new_cases": 11905.0,
- "new_cases_smoothed": 10428.571,
- "total_deaths": 10994.0,
- "new_deaths": 281.0,
- "new_deaths_smoothed": 218.0,
- "total_cases_per_million": 11598.097,
- "new_cases_per_million": 263.41,
- "new_cases_smoothed_per_million": 230.742,
- "total_deaths_per_million": 243.253,
- "new_deaths_per_million": 6.217,
- "new_deaths_smoothed_per_million": 4.823,
- "new_tests": 18940.0,
- "total_tests": 1397822.0,
- "total_tests_per_thousand": 30.928,
- "new_tests_per_thousand": 0.419,
- "new_tests_smoothed": 21008.0,
- "new_tests_smoothed_per_thousand": 0.465,
- "tests_per_case": 2.0140000000000002,
- "positive_rate": 0.496,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-09-13",
- "total_cases": 535690.0,
- "new_cases": 11505.0,
- "new_cases_smoothed": 10545.857,
- "total_deaths": 11206.0,
- "new_deaths": 212.0,
- "new_deaths_smoothed": 217.286,
- "total_cases_per_million": 11852.656,
- "new_cases_per_million": 254.559,
- "new_cases_smoothed_per_million": 233.337,
- "total_deaths_per_million": 247.944,
- "new_deaths_per_million": 4.691,
- "new_deaths_smoothed_per_million": 4.808,
- "new_tests": 12930.0,
- "total_tests": 1410752.0,
- "total_tests_per_thousand": 31.214,
- "new_tests_per_thousand": 0.286,
- "new_tests_smoothed": 21086.0,
- "new_tests_smoothed_per_thousand": 0.467,
- "tests_per_case": 1.999,
- "positive_rate": 0.5,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-09-14",
- "total_cases": 546468.0,
- "new_cases": 10778.0,
- "new_cases_smoothed": 10667.857,
- "total_deaths": 11307.0,
- "new_deaths": 101.0,
- "new_deaths_smoothed": 214.286,
- "total_cases_per_million": 12091.13,
- "new_cases_per_million": 238.474,
- "new_cases_smoothed_per_million": 236.037,
- "total_deaths_per_million": 250.178,
- "new_deaths_per_million": 2.235,
- "new_deaths_smoothed_per_million": 4.741,
- "new_tests": 20509.0,
- "total_tests": 1431261.0,
- "total_tests_per_thousand": 31.668,
- "new_tests_per_thousand": 0.454,
- "new_tests_smoothed": 21216.0,
- "new_tests_smoothed_per_thousand": 0.469,
- "tests_per_case": 1.989,
- "positive_rate": 0.503,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-09-15",
- "total_cases": 555524.0,
- "new_cases": 9056.0,
- "new_cases_smoothed": 10963.571,
- "total_deaths": 11412.0,
- "new_deaths": 105.0,
- "new_deaths_smoothed": 214.286,
- "total_cases_per_million": 12291.502,
- "new_cases_per_million": 200.373,
- "new_cases_smoothed_per_million": 242.58,
- "total_deaths_per_million": 252.501,
- "new_deaths_per_million": 2.323,
- "new_deaths_smoothed_per_million": 4.741,
- "new_tests": 21843.0,
- "total_tests": 1453104.0,
- "total_tests_per_thousand": 32.151,
- "new_tests_per_thousand": 0.483,
- "new_tests_smoothed": 21058.0,
- "new_tests_smoothed_per_thousand": 0.466,
- "tests_per_case": 1.921,
- "positive_rate": 0.521,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-09-16",
- "total_cases": 565432.0,
- "new_cases": 9908.0,
- "new_cases_smoothed": 11062.571,
- "total_deaths": 11710.0,
- "new_deaths": 298.0,
- "new_deaths_smoothed": 218.714,
- "total_cases_per_million": 12510.726,
- "new_cases_per_million": 219.224,
- "new_cases_smoothed_per_million": 244.77,
- "total_deaths_per_million": 259.095,
- "new_deaths_per_million": 6.594,
- "new_deaths_smoothed_per_million": 4.839,
- "new_tests": 22858.0,
- "total_tests": 1475962.0,
- "total_tests_per_thousand": 32.657,
- "new_tests_per_thousand": 0.506,
- "new_tests_smoothed": 20827.0,
- "new_tests_smoothed_per_thousand": 0.461,
- "tests_per_case": 1.883,
- "positive_rate": 0.531,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-09-17",
- "total_cases": 577325.0,
- "new_cases": 11893.0,
- "new_cases_smoothed": 11043.429,
- "total_deaths": 11910.0,
- "new_deaths": 200.0,
- "new_deaths_smoothed": 207.571,
- "total_cases_per_million": 12773.87,
- "new_cases_per_million": 263.144,
- "new_cases_smoothed_per_million": 244.346,
- "total_deaths_per_million": 263.52,
- "new_deaths_per_million": 4.425,
- "new_deaths_smoothed_per_million": 4.593,
- "new_tests": 22853.0,
- "total_tests": 1498815.0,
- "total_tests_per_thousand": 33.163,
- "new_tests_per_thousand": 0.506,
- "new_tests_smoothed": 20702.0,
- "new_tests_smoothed_per_thousand": 0.458,
- "tests_per_case": 1.875,
- "positive_rate": 0.5329999999999999,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-09-18",
- "total_cases": 588999.0,
- "new_cases": 11674.0,
- "new_cases_smoothed": 10959.857,
- "total_deaths": 12229.0,
- "new_deaths": 319.0,
- "new_deaths_smoothed": 216.571,
- "total_cases_per_million": 13032.169,
- "new_cases_per_million": 258.298,
- "new_cases_smoothed_per_million": 242.497,
- "total_deaths_per_million": 270.578,
- "new_deaths_per_million": 7.058,
- "new_deaths_smoothed_per_million": 4.792,
- "new_tests": 23465.0,
- "total_tests": 1522280.0,
- "total_tests_per_thousand": 33.682,
- "new_tests_per_thousand": 0.519,
- "new_tests_smoothed": 20485.0,
- "new_tests_smoothed_per_thousand": 0.453,
- "tests_per_case": 1.869,
- "positive_rate": 0.535,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-09-19",
- "total_cases": 601700.0,
- "new_cases": 12701.0,
- "new_cases_smoothed": 11073.571,
- "total_deaths": 12491.0,
- "new_deaths": 262.0,
- "new_deaths_smoothed": 213.857,
- "total_cases_per_million": 13313.191,
- "new_cases_per_million": 281.022,
- "new_cases_smoothed_per_million": 245.013,
- "total_deaths_per_million": 276.375,
- "new_deaths_per_million": 5.797,
- "new_deaths_smoothed_per_million": 4.732,
- "new_tests": 17612.0,
- "total_tests": 1539892.0,
- "total_tests_per_thousand": 34.072,
- "new_tests_per_thousand": 0.39,
- "new_tests_smoothed": 20296.0,
- "new_tests_smoothed_per_thousand": 0.449,
- "tests_per_case": 1.8330000000000002,
- "positive_rate": 0.546,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-09-20",
- "total_cases": 613645.0,
- "new_cases": 11945.0,
- "new_cases_smoothed": 11136.429,
- "total_deaths": 12705.0,
- "new_deaths": 214.0,
- "new_deaths_smoothed": 214.143,
- "total_cases_per_million": 13577.485,
- "new_cases_per_million": 264.295,
- "new_cases_smoothed_per_million": 246.404,
- "total_deaths_per_million": 281.11,
- "new_deaths_per_million": 4.735,
- "new_deaths_smoothed_per_million": 4.738,
- "new_tests": 10326.0,
- "total_tests": 1550218.0,
- "total_tests_per_thousand": 34.3,
- "new_tests_per_thousand": 0.228,
- "new_tests_smoothed": 19924.0,
- "new_tests_smoothed_per_thousand": 0.441,
- "tests_per_case": 1.7890000000000001,
- "positive_rate": 0.5589999999999999,
- "tests_units": "people tested",
- "stringency_index": 91.67
- },
- {
- "date": "2020-09-21",
- "total_cases": 622921.0,
- "new_cases": 9276.0,
- "new_cases_smoothed": 10921.857,
- "total_deaths": 12909.0,
- "new_deaths": 204.0,
- "new_deaths_smoothed": 228.857,
- "total_cases_per_million": 13782.726,
- "new_cases_per_million": 205.24,
- "new_cases_smoothed_per_million": 241.657,
- "total_deaths_per_million": 285.624,
- "new_deaths_per_million": 4.514,
- "new_deaths_smoothed_per_million": 5.064
- },
- {
- "date": "2020-09-22",
- "total_cases": 640134.0,
- "new_cases": 17213.0,
- "new_cases_smoothed": 12087.143,
- "total_deaths": 13482.0,
- "new_deaths": 573.0,
- "new_deaths_smoothed": 295.714,
- "total_cases_per_million": 14163.58,
- "new_cases_per_million": 380.854,
- "new_cases_smoothed_per_million": 267.44,
- "total_deaths_per_million": 298.302,
- "new_deaths_per_million": 12.678,
- "new_deaths_smoothed_per_million": 6.543
- },
- {
- "date": "2020-09-23",
- "total_cases": 652161.0,
- "new_cases": 12027.0,
- "new_cases_smoothed": 12389.857,
- "total_deaths": 13952.0,
- "new_deaths": 470.0,
- "new_deaths_smoothed": 320.286,
- "total_cases_per_million": 14429.689,
- "new_cases_per_million": 266.109,
- "new_cases_smoothed_per_million": 274.137,
- "total_deaths_per_million": 308.701,
- "new_deaths_per_million": 10.399,
- "new_deaths_smoothed_per_million": 7.087
- },
- {
- "date": "2020-09-24",
- "total_cases": 664799.0,
- "new_cases": 12638.0,
- "new_cases_smoothed": 12496.286,
- "total_deaths": 14376.0,
- "new_deaths": 424.0,
- "new_deaths_smoothed": 352.286,
- "total_cases_per_million": 14709.317,
- "new_cases_per_million": 279.628,
- "new_cases_smoothed_per_million": 276.492,
- "total_deaths_per_million": 318.083,
- "new_deaths_per_million": 9.381,
- "new_deaths_smoothed_per_million": 7.795
- },
- {
- "date": "2020-09-25",
- "total_cases": 678266.0,
- "new_cases": 13467.0,
- "new_cases_smoothed": 12752.429,
- "total_deaths": 14766.0,
- "new_deaths": 390.0,
- "new_deaths_smoothed": 362.429,
- "total_cases_per_million": 15007.287,
- "new_cases_per_million": 297.97,
- "new_cases_smoothed_per_million": 282.16,
- "total_deaths_per_million": 326.712,
- "new_deaths_per_million": 8.629,
- "new_deaths_smoothed_per_million": 8.019
- }
- ]
- },
- "ARM": {
- "continent": "Asia",
- "location": "Armenia",
- "population": 2963234.0,
- "population_density": 102.931,
- "median_age": 35.7,
- "aged_65_older": 11.232,
- "aged_70_older": 7.571,
- "gdp_per_capita": 8787.58,
- "extreme_poverty": 1.8,
- "cardiovasc_death_rate": 341.01,
- "diabetes_prevalence": 7.11,
- "female_smokers": 1.5,
- "male_smokers": 52.1,
- "handwashing_facilities": 94.043,
- "hospital_beds_per_thousand": 4.2,
- "life_expectancy": 75.09,
- "human_development_index": 0.755,
- "data": [
- {
- "date": "2019-12-31",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-01-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-01-02",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-01-03",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-01-04",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-01-05",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-01-06",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-01-07",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-01-08",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-01-09",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-01-10",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-01-11",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-01-12",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-01-13",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-01-14",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-01-15",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-01-16",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-01-17",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-01-18",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-01-19",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-01-20",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-01-21",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-01-22",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-01-23",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-01-24",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-01-25",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-01-26",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-01-27",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-01-28",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-01-29",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-01-30",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-01-31",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-02-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-02-02",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-02-03",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-02-04",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-02-05",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-02-06",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-02-07",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-02-08",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-02-09",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-02-10",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-02-11",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-02-12",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-02-13",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-02-14",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-02-15",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-02-16",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-02-17",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-02-18",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-02-19",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-02-20",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-02-21",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-02-22",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-02-23",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-02-24",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-02-25",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-02-26",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-02-27",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-02-28",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-02-29",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-01",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.337,
- "new_cases_per_million": 0.337,
- "new_cases_smoothed_per_million": 0.048,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-02",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.337,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.048,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-03",
- "new_cases_smoothed": 0.143,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-04",
- "new_cases_smoothed": 0.143,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-05",
- "new_cases_smoothed": 0.143,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-06",
- "new_cases_smoothed": 0.143,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-07",
- "new_cases_smoothed": 0.143,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-08",
- "new_cases_smoothed": 0.0,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-09",
- "new_cases_smoothed": 0.0,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-10",
- "new_cases_smoothed": 0.0,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-11",
- "new_cases_smoothed": 0.0,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-12",
- "total_cases": 4.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.35,
- "new_cases_per_million": 1.012,
- "new_cases_smoothed_per_million": 0.145,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-13",
- "total_cases": 6.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.025,
- "new_cases_per_million": 0.675,
- "new_cases_smoothed_per_million": 0.241,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-14",
- "total_cases": 13.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 4.387,
- "new_cases_per_million": 2.362,
- "new_cases_smoothed_per_million": 0.579,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-15",
- "total_cases": 20.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.749,
- "new_cases_per_million": 2.362,
- "new_cases_smoothed_per_million": 0.916,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-16",
- "total_cases": 28.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 3.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.449,
- "new_cases_per_million": 2.7,
- "new_cases_smoothed_per_million": 1.302,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-17",
- "total_cases": 45.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 6.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 15.186,
- "new_cases_per_million": 5.737,
- "new_cases_smoothed_per_million": 2.121,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-18",
- "total_cases": 78.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 11.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 26.323,
- "new_cases_per_million": 11.136,
- "new_cases_smoothed_per_million": 3.712,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-19",
- "total_cases": 110.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 15.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 37.122,
- "new_cases_per_million": 10.799,
- "new_cases_smoothed_per_million": 5.11,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-20",
- "total_cases": 136.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 18.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.896,
- "new_cases_per_million": 8.774,
- "new_cases_smoothed_per_million": 6.267,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-21",
- "total_cases": 160.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 21.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 53.995,
- "new_cases_per_million": 8.099,
- "new_cases_smoothed_per_million": 7.087,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-22",
- "total_cases": 190.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 24.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 64.119,
- "new_cases_per_million": 10.124,
- "new_cases_smoothed_per_million": 8.196,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-23",
- "total_cases": 194.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 23.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 65.469,
- "new_cases_per_million": 1.35,
- "new_cases_smoothed_per_million": 8.003,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-24",
- "total_cases": 235.0,
- "new_cases": 41.0,
- "new_cases_smoothed": 27.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 79.305,
- "new_cases_per_million": 13.836,
- "new_cases_smoothed_per_million": 9.16,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-25",
- "total_cases": 265.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 26.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 89.429,
- "new_cases_per_million": 10.124,
- "new_cases_smoothed_per_million": 9.015,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-26",
- "total_cases": 290.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 25.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 97.866,
- "new_cases_per_million": 8.437,
- "new_cases_smoothed_per_million": 8.678,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-27",
- "total_cases": 329.0,
- "new_cases": 39.0,
- "new_cases_smoothed": 27.571,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 111.027,
- "new_cases_per_million": 13.161,
- "new_cases_smoothed_per_million": 9.305,
- "total_deaths_per_million": 0.337,
- "new_deaths_per_million": 0.337,
- "new_deaths_smoothed_per_million": 0.048
- },
- {
- "date": "2020-03-28",
- "total_cases": 372.0,
- "new_cases": 43.0,
- "new_cases_smoothed": 30.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 125.539,
- "new_cases_per_million": 14.511,
- "new_cases_smoothed_per_million": 10.22,
- "total_deaths_per_million": 0.337,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.048
- },
- {
- "date": "2020-03-29",
- "total_cases": 424.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 33.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 143.087,
- "new_cases_per_million": 17.548,
- "new_cases_smoothed_per_million": 11.281,
- "total_deaths_per_million": 0.337,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.048
- },
- {
- "date": "2020-03-30",
- "total_cases": 482.0,
- "new_cases": 58.0,
- "new_cases_smoothed": 41.143,
- "total_deaths": 3.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 162.66,
- "new_cases_per_million": 19.573,
- "new_cases_smoothed_per_million": 13.884,
- "total_deaths_per_million": 1.012,
- "new_deaths_per_million": 0.675,
- "new_deaths_smoothed_per_million": 0.145
- },
- {
- "date": "2020-03-31",
- "total_cases": 532.0,
- "new_cases": 50.0,
- "new_cases_smoothed": 42.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 179.534,
- "new_cases_per_million": 16.873,
- "new_cases_smoothed_per_million": 14.318,
- "total_deaths_per_million": 1.012,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145
- },
- {
- "date": "2020-04-01",
- "total_cases": 571.0,
- "new_cases": 39.0,
- "new_cases_smoothed": 43.714,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 192.695,
- "new_cases_per_million": 13.161,
- "new_cases_smoothed_per_million": 14.752,
- "total_deaths_per_million": 1.012,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145
- },
- {
- "date": "2020-04-02",
- "total_cases": 663.0,
- "new_cases": 92.0,
- "new_cases_smoothed": 53.286,
- "total_deaths": 4.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 223.742,
- "new_cases_per_million": 31.047,
- "new_cases_smoothed_per_million": 17.982,
- "total_deaths_per_million": 1.35,
- "new_deaths_per_million": 0.337,
- "new_deaths_smoothed_per_million": 0.193
- },
- {
- "date": "2020-04-03",
- "total_cases": 736.0,
- "new_cases": 73.0,
- "new_cases_smoothed": 58.143,
- "total_deaths": 7.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 248.377,
- "new_cases_per_million": 24.635,
- "new_cases_smoothed_per_million": 19.621,
- "total_deaths_per_million": 2.362,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 0.289
- },
- {
- "date": "2020-04-04",
- "total_cases": 770.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 56.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 259.851,
- "new_cases_per_million": 11.474,
- "new_cases_smoothed_per_million": 19.188,
- "total_deaths_per_million": 2.362,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.289
- },
- {
- "date": "2020-04-05",
- "total_cases": 822.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 56.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 277.4,
- "new_cases_per_million": 17.548,
- "new_cases_smoothed_per_million": 19.188,
- "total_deaths_per_million": 2.362,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.289
- },
- {
- "date": "2020-04-06",
- "total_cases": 833.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 50.143,
- "total_deaths": 8.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 281.112,
- "new_cases_per_million": 3.712,
- "new_cases_smoothed_per_million": 16.922,
- "total_deaths_per_million": 2.7,
- "new_deaths_per_million": 0.337,
- "new_deaths_smoothed_per_million": 0.241
- },
- {
- "date": "2020-04-07",
- "total_cases": 853.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 45.857,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 287.861,
- "new_cases_per_million": 6.749,
- "new_cases_smoothed_per_million": 15.475,
- "total_deaths_per_million": 2.7,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.241
- },
- {
- "date": "2020-04-08",
- "total_cases": 881.0,
- "new_cases": 28.0,
- "new_cases_smoothed": 44.286,
- "total_deaths": 9.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 297.31,
- "new_cases_per_million": 9.449,
- "new_cases_smoothed_per_million": 14.945,
- "total_deaths_per_million": 3.037,
- "new_deaths_per_million": 0.337,
- "new_deaths_smoothed_per_million": 0.289
- },
- {
- "date": "2020-04-09",
- "total_cases": 921.0,
- "new_cases": 40.0,
- "new_cases_smoothed": 36.857,
- "total_deaths": 10.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 310.809,
- "new_cases_per_million": 13.499,
- "new_cases_smoothed_per_million": 12.438,
- "total_deaths_per_million": 3.375,
- "new_deaths_per_million": 0.337,
- "new_deaths_smoothed_per_million": 0.289
- },
- {
- "date": "2020-04-10",
- "total_cases": 937.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 28.714,
- "total_deaths": 11.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 316.209,
- "new_cases_per_million": 5.4,
- "new_cases_smoothed_per_million": 9.69,
- "total_deaths_per_million": 3.712,
- "new_deaths_per_million": 0.337,
- "new_deaths_smoothed_per_million": 0.193
- },
- {
- "date": "2020-04-11",
- "total_cases": 967.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 28.143,
- "total_deaths": 13.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 326.333,
- "new_cases_per_million": 10.124,
- "new_cases_smoothed_per_million": 9.497,
- "total_deaths_per_million": 4.387,
- "new_deaths_per_million": 0.675,
- "new_deaths_smoothed_per_million": 0.289
- },
- {
- "date": "2020-04-12",
- "total_cases": 1013.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 27.286,
- "total_deaths": 13.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 341.856,
- "new_cases_per_million": 15.524,
- "new_cases_smoothed_per_million": 9.208,
- "total_deaths_per_million": 4.387,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.289
- },
- {
- "date": "2020-04-13",
- "total_cases": 1039.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 29.429,
- "total_deaths": 14.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 350.63,
- "new_cases_per_million": 8.774,
- "new_cases_smoothed_per_million": 9.931,
- "total_deaths_per_million": 4.725,
- "new_deaths_per_million": 0.337,
- "new_deaths_smoothed_per_million": 0.289
- },
- {
- "date": "2020-04-14",
- "total_cases": 1067.0,
- "new_cases": 28.0,
- "new_cases_smoothed": 30.571,
- "total_deaths": 16.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 360.08,
- "new_cases_per_million": 9.449,
- "new_cases_smoothed_per_million": 10.317,
- "total_deaths_per_million": 5.4,
- "new_deaths_per_million": 0.675,
- "new_deaths_smoothed_per_million": 0.386
- },
- {
- "date": "2020-04-15",
- "total_cases": 1111.0,
- "new_cases": 44.0,
- "new_cases_smoothed": 32.857,
- "total_deaths": 17.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 374.928,
- "new_cases_per_million": 14.849,
- "new_cases_smoothed_per_million": 11.088,
- "total_deaths_per_million": 5.737,
- "new_deaths_per_million": 0.337,
- "new_deaths_smoothed_per_million": 0.386
- },
- {
- "date": "2020-04-16",
- "total_cases": 1159.0,
- "new_cases": 48.0,
- "new_cases_smoothed": 34.0,
- "total_deaths": 18.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 391.127,
- "new_cases_per_million": 16.199,
- "new_cases_smoothed_per_million": 11.474,
- "total_deaths_per_million": 6.074,
- "new_deaths_per_million": 0.337,
- "new_deaths_smoothed_per_million": 0.386
- },
- {
- "date": "2020-04-17",
- "total_cases": 1201.0,
- "new_cases": 42.0,
- "new_cases_smoothed": 37.714,
- "total_deaths": 19.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 405.3,
- "new_cases_per_million": 14.174,
- "new_cases_smoothed_per_million": 12.727,
- "total_deaths_per_million": 6.412,
- "new_deaths_per_million": 0.337,
- "new_deaths_smoothed_per_million": 0.386
- },
- {
- "date": "2020-04-18",
- "total_cases": 1248.0,
- "new_cases": 47.0,
- "new_cases_smoothed": 40.143,
- "total_deaths": 20.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 421.161,
- "new_cases_per_million": 15.861,
- "new_cases_smoothed_per_million": 13.547,
- "total_deaths_per_million": 6.749,
- "new_deaths_per_million": 0.337,
- "new_deaths_smoothed_per_million": 0.337
- },
- {
- "date": "2020-04-19",
- "total_cases": 1291.0,
- "new_cases": 43.0,
- "new_cases_smoothed": 39.714,
- "total_deaths": 20.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 435.673,
- "new_cases_per_million": 14.511,
- "new_cases_smoothed_per_million": 13.402,
- "total_deaths_per_million": 6.749,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.337
- },
- {
- "date": "2020-04-20",
- "total_cases": 1339.0,
- "new_cases": 48.0,
- "new_cases_smoothed": 42.857,
- "total_deaths": 22.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 451.871,
- "new_cases_per_million": 16.199,
- "new_cases_smoothed_per_million": 14.463,
- "total_deaths_per_million": 7.424,
- "new_deaths_per_million": 0.675,
- "new_deaths_smoothed_per_million": 0.386
- },
- {
- "date": "2020-04-21",
- "total_cases": 1401.0,
- "new_cases": 62.0,
- "new_cases_smoothed": 47.714,
- "total_deaths": 24.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 472.794,
- "new_cases_per_million": 20.923,
- "new_cases_smoothed_per_million": 16.102,
- "total_deaths_per_million": 8.099,
- "new_deaths_per_million": 0.675,
- "new_deaths_smoothed_per_million": 0.386
- },
- {
- "date": "2020-04-22",
- "total_cases": 1473.0,
- "new_cases": 72.0,
- "new_cases_smoothed": 51.714,
- "total_deaths": 24.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 497.092,
- "new_cases_per_million": 24.298,
- "new_cases_smoothed_per_million": 17.452,
- "total_deaths_per_million": 8.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.337
- },
- {
- "date": "2020-04-23",
- "total_cases": 1523.0,
- "new_cases": 50.0,
- "new_cases_smoothed": 52.0,
- "total_deaths": 24.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 513.965,
- "new_cases_per_million": 16.873,
- "new_cases_smoothed_per_million": 17.548,
- "total_deaths_per_million": 8.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.289
- },
- {
- "date": "2020-04-24",
- "total_cases": 1596.0,
- "new_cases": 73.0,
- "new_cases_smoothed": 56.429,
- "total_deaths": 27.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 538.601,
- "new_cases_per_million": 24.635,
- "new_cases_smoothed_per_million": 19.043,
- "total_deaths_per_million": 9.112,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 0.386
- },
- {
- "date": "2020-04-25",
- "total_cases": 1677.0,
- "new_cases": 81.0,
- "new_cases_smoothed": 61.286,
- "total_deaths": 28.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 565.936,
- "new_cases_per_million": 27.335,
- "new_cases_smoothed_per_million": 20.682,
- "total_deaths_per_million": 9.449,
- "new_deaths_per_million": 0.337,
- "new_deaths_smoothed_per_million": 0.386
- },
- {
- "date": "2020-04-26",
- "total_cases": 1746.0,
- "new_cases": 69.0,
- "new_cases_smoothed": 65.0,
- "total_deaths": 28.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 589.221,
- "new_cases_per_million": 23.285,
- "new_cases_smoothed_per_million": 21.935,
- "total_deaths_per_million": 9.449,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.386
- },
- {
- "date": "2020-04-27",
- "total_cases": 1808.0,
- "new_cases": 62.0,
- "new_cases_smoothed": 67.0,
- "total_deaths": 29.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 610.144,
- "new_cases_per_million": 20.923,
- "new_cases_smoothed_per_million": 22.61,
- "total_deaths_per_million": 9.787,
- "new_deaths_per_million": 0.337,
- "new_deaths_smoothed_per_million": 0.337
- },
- {
- "date": "2020-04-28",
- "total_cases": 1867.0,
- "new_cases": 59.0,
- "new_cases_smoothed": 66.571,
- "total_deaths": 30.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 630.055,
- "new_cases_per_million": 19.911,
- "new_cases_smoothed_per_million": 22.466,
- "total_deaths_per_million": 10.124,
- "new_deaths_per_million": 0.337,
- "new_deaths_smoothed_per_million": 0.289
- },
- {
- "date": "2020-04-29",
- "total_cases": 1932.0,
- "new_cases": 65.0,
- "new_cases_smoothed": 65.571,
- "total_deaths": 30.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 651.99,
- "new_cases_per_million": 21.935,
- "new_cases_smoothed_per_million": 22.128,
- "total_deaths_per_million": 10.124,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.289
- },
- {
- "date": "2020-04-30",
- "total_cases": 2066.0,
- "new_cases": 134.0,
- "new_cases_smoothed": 77.571,
- "total_deaths": 32.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 697.211,
- "new_cases_per_million": 45.221,
- "new_cases_smoothed_per_million": 26.178,
- "total_deaths_per_million": 10.799,
- "new_deaths_per_million": 0.675,
- "new_deaths_smoothed_per_million": 0.386
- },
- {
- "date": "2020-05-01",
- "total_cases": 2148.0,
- "new_cases": 82.0,
- "new_cases_smoothed": 78.857,
- "total_deaths": 33.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 724.884,
- "new_cases_per_million": 27.672,
- "new_cases_smoothed_per_million": 26.612,
- "total_deaths_per_million": 11.136,
- "new_deaths_per_million": 0.337,
- "new_deaths_smoothed_per_million": 0.289
- },
- {
- "date": "2020-05-02",
- "total_cases": 2273.0,
- "new_cases": 125.0,
- "new_cases_smoothed": 85.143,
- "total_deaths": 33.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 767.067,
- "new_cases_per_million": 42.184,
- "new_cases_smoothed_per_million": 28.733,
- "total_deaths_per_million": 11.136,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.241
- },
- {
- "date": "2020-05-03",
- "total_cases": 2386.0,
- "new_cases": 113.0,
- "new_cases_smoothed": 91.429,
- "total_deaths": 35.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 805.201,
- "new_cases_per_million": 38.134,
- "new_cases_smoothed_per_million": 30.854,
- "total_deaths_per_million": 11.811,
- "new_deaths_per_million": 0.675,
- "new_deaths_smoothed_per_million": 0.337
- },
- {
- "date": "2020-05-04",
- "total_cases": 2507.0,
- "new_cases": 121.0,
- "new_cases_smoothed": 99.857,
- "total_deaths": 39.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 846.035,
- "new_cases_per_million": 40.834,
- "new_cases_smoothed_per_million": 33.699,
- "total_deaths_per_million": 13.161,
- "new_deaths_per_million": 1.35,
- "new_deaths_smoothed_per_million": 0.482
- },
- {
- "date": "2020-05-05",
- "total_cases": 2619.0,
- "new_cases": 112.0,
- "new_cases_smoothed": 107.429,
- "total_deaths": 40.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 883.832,
- "new_cases_per_million": 37.797,
- "new_cases_smoothed_per_million": 36.254,
- "total_deaths_per_million": 13.499,
- "new_deaths_per_million": 0.337,
- "new_deaths_smoothed_per_million": 0.482
- },
- {
- "date": "2020-05-06",
- "total_cases": 2782.0,
- "new_cases": 163.0,
- "new_cases_smoothed": 121.429,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 938.839,
- "new_cases_per_million": 55.007,
- "new_cases_smoothed_per_million": 40.978,
- "total_deaths_per_million": 13.499,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.482
- },
- {
- "date": "2020-05-07",
- "total_cases": 2884.0,
- "new_cases": 102.0,
- "new_cases_smoothed": 116.857,
- "total_deaths": 42.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 973.261,
- "new_cases_per_million": 34.422,
- "new_cases_smoothed_per_million": 39.436,
- "total_deaths_per_million": 14.174,
- "new_deaths_per_million": 0.675,
- "new_deaths_smoothed_per_million": 0.482
- },
- {
- "date": "2020-05-08",
- "total_cases": 3029.0,
- "new_cases": 145.0,
- "new_cases_smoothed": 125.857,
- "total_deaths": 43.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 1022.194,
- "new_cases_per_million": 48.933,
- "new_cases_smoothed_per_million": 42.473,
- "total_deaths_per_million": 14.511,
- "new_deaths_per_million": 0.337,
- "new_deaths_smoothed_per_million": 0.482
- },
- {
- "date": "2020-05-09",
- "total_cases": 3175.0,
- "new_cases": 146.0,
- "new_cases_smoothed": 128.857,
- "total_deaths": 44.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 1071.464,
- "new_cases_per_million": 49.27,
- "new_cases_smoothed_per_million": 43.485,
- "total_deaths_per_million": 14.849,
- "new_deaths_per_million": 0.337,
- "new_deaths_smoothed_per_million": 0.53
- },
- {
- "date": "2020-05-10",
- "total_cases": 3313.0,
- "new_cases": 138.0,
- "new_cases_smoothed": 132.429,
- "total_deaths": 45.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 1118.035,
- "new_cases_per_million": 46.571,
- "new_cases_smoothed_per_million": 44.691,
- "total_deaths_per_million": 15.186,
- "new_deaths_per_million": 0.337,
- "new_deaths_smoothed_per_million": 0.482
- },
- {
- "date": "2020-05-11",
- "total_cases": 3392.0,
- "new_cases": 79.0,
- "new_cases_smoothed": 126.429,
- "total_deaths": 46.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 1144.695,
- "new_cases_per_million": 26.66,
- "new_cases_smoothed_per_million": 42.666,
- "total_deaths_per_million": 15.524,
- "new_deaths_per_million": 0.337,
- "new_deaths_smoothed_per_million": 0.337
- },
- {
- "date": "2020-05-12",
- "total_cases": 3538.0,
- "new_cases": 146.0,
- "new_cases_smoothed": 131.286,
- "total_deaths": 47.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 1193.966,
- "new_cases_per_million": 49.27,
- "new_cases_smoothed_per_million": 44.305,
- "total_deaths_per_million": 15.861,
- "new_deaths_per_million": 0.337,
- "new_deaths_smoothed_per_million": 0.337
- },
- {
- "date": "2020-05-13",
- "total_cases": 3718.0,
- "new_cases": 180.0,
- "new_cases_smoothed": 133.714,
- "total_deaths": 48.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 1254.71,
- "new_cases_per_million": 60.744,
- "new_cases_smoothed_per_million": 45.124,
- "total_deaths_per_million": 16.199,
- "new_deaths_per_million": 0.337,
- "new_deaths_smoothed_per_million": 0.386
- },
- {
- "date": "2020-05-14",
- "total_cases": 3860.0,
- "new_cases": 142.0,
- "new_cases_smoothed": 139.429,
- "total_deaths": 49.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 1302.631,
- "new_cases_per_million": 47.921,
- "new_cases_smoothed_per_million": 47.053,
- "total_deaths_per_million": 16.536,
- "new_deaths_per_million": 0.337,
- "new_deaths_smoothed_per_million": 0.337
- },
- {
- "date": "2020-05-15",
- "total_cases": 4044.0,
- "new_cases": 184.0,
- "new_cases_smoothed": 145.0,
- "total_deaths": 52.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 1364.725,
- "new_cases_per_million": 62.094,
- "new_cases_smoothed_per_million": 48.933,
- "total_deaths_per_million": 17.548,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 0.434
- },
- {
- "date": "2020-05-16",
- "total_cases": 4283.0,
- "new_cases": 239.0,
- "new_cases_smoothed": 158.286,
- "total_deaths": 55.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 1445.38,
- "new_cases_per_million": 80.655,
- "new_cases_smoothed_per_million": 53.417,
- "total_deaths_per_million": 18.561,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 0.53
- },
- {
- "date": "2020-05-17",
- "total_cases": 4472.0,
- "new_cases": 189.0,
- "new_cases_smoothed": 165.571,
- "total_deaths": 60.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 1509.162,
- "new_cases_per_million": 63.782,
- "new_cases_smoothed_per_million": 55.875,
- "total_deaths_per_million": 20.248,
- "new_deaths_per_million": 1.687,
- "new_deaths_smoothed_per_million": 0.723
- },
- {
- "date": "2020-05-18",
- "total_cases": 4823.0,
- "new_cases": 351.0,
- "new_cases_smoothed": 204.429,
- "total_deaths": 61.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 1627.614,
- "new_cases_per_million": 118.452,
- "new_cases_smoothed_per_million": 68.988,
- "total_deaths_per_million": 20.586,
- "new_deaths_per_million": 0.337,
- "new_deaths_smoothed_per_million": 0.723
- },
- {
- "date": "2020-05-19",
- "total_cases": 5041.0,
- "new_cases": 218.0,
- "new_cases_smoothed": 214.714,
- "total_deaths": 64.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 1701.182,
- "new_cases_per_million": 73.568,
- "new_cases_smoothed_per_million": 72.459,
- "total_deaths_per_million": 21.598,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 0.82
- },
- {
- "date": "2020-05-20",
- "total_cases": 5271.0,
- "new_cases": 230.0,
- "new_cases_smoothed": 221.857,
- "total_deaths": 67.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 1778.8,
- "new_cases_per_million": 77.618,
- "new_cases_smoothed_per_million": 74.87,
- "total_deaths_per_million": 22.61,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 0.916
- },
- {
- "date": "2020-05-21",
- "total_cases": 5606.0,
- "new_cases": 335.0,
- "new_cases_smoothed": 249.429,
- "total_deaths": 70.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 1891.852,
- "new_cases_per_million": 113.052,
- "new_cases_smoothed_per_million": 84.174,
- "total_deaths_per_million": 23.623,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 1.012
- },
- {
- "date": "2020-05-22",
- "total_cases": 5928.0,
- "new_cases": 322.0,
- "new_cases_smoothed": 269.143,
- "total_deaths": 74.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 2000.517,
- "new_cases_per_million": 108.665,
- "new_cases_smoothed_per_million": 90.827,
- "total_deaths_per_million": 24.973,
- "new_deaths_per_million": 1.35,
- "new_deaths_smoothed_per_million": 1.061
- },
- {
- "date": "2020-05-23",
- "total_cases": 6302.0,
- "new_cases": 374.0,
- "new_cases_smoothed": 288.429,
- "total_deaths": 77.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 2126.73,
- "new_cases_per_million": 126.213,
- "new_cases_smoothed_per_million": 97.336,
- "total_deaths_per_million": 25.985,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 1.061
- },
- {
- "date": "2020-05-24",
- "total_cases": 6661.0,
- "new_cases": 359.0,
- "new_cases_smoothed": 312.714,
- "total_deaths": 81.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 2247.882,
- "new_cases_per_million": 121.151,
- "new_cases_smoothed_per_million": 105.531,
- "total_deaths_per_million": 27.335,
- "new_deaths_per_million": 1.35,
- "new_deaths_smoothed_per_million": 1.012
- },
- {
- "date": "2020-05-25",
- "total_cases": 7113.0,
- "new_cases": 452.0,
- "new_cases_smoothed": 327.143,
- "total_deaths": 87.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 2400.418,
- "new_cases_per_million": 152.536,
- "new_cases_smoothed_per_million": 110.401,
- "total_deaths_per_million": 29.36,
- "new_deaths_per_million": 2.025,
- "new_deaths_smoothed_per_million": 1.253
- },
- {
- "date": "2020-05-26",
- "total_cases": 7402.0,
- "new_cases": 289.0,
- "new_cases_smoothed": 337.286,
- "total_deaths": 91.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 2497.947,
- "new_cases_per_million": 97.529,
- "new_cases_smoothed_per_million": 113.824,
- "total_deaths_per_million": 30.71,
- "new_deaths_per_million": 1.35,
- "new_deaths_smoothed_per_million": 1.302
- },
- {
- "date": "2020-05-27",
- "total_cases": 7774.0,
- "new_cases": 372.0,
- "new_cases_smoothed": 357.571,
- "total_deaths": 98.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 2623.485,
- "new_cases_per_million": 125.539,
- "new_cases_smoothed_per_million": 120.669,
- "total_deaths_per_million": 33.072,
- "new_deaths_per_million": 2.362,
- "new_deaths_smoothed_per_million": 1.495
- },
- {
- "date": "2020-05-28",
- "total_cases": 8216.0,
- "new_cases": 442.0,
- "new_cases_smoothed": 372.857,
- "total_deaths": 113.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 6.143,
- "total_cases_per_million": 2772.646,
- "new_cases_per_million": 149.161,
- "new_cases_smoothed_per_million": 125.828,
- "total_deaths_per_million": 38.134,
- "new_deaths_per_million": 5.062,
- "new_deaths_smoothed_per_million": 2.073
- },
- {
- "date": "2020-05-29",
- "total_cases": 8676.0,
- "new_cases": 460.0,
- "new_cases_smoothed": 392.571,
- "total_deaths": 120.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 2927.882,
- "new_cases_per_million": 155.236,
- "new_cases_smoothed_per_million": 132.481,
- "total_deaths_per_million": 40.496,
- "new_deaths_per_million": 2.362,
- "new_deaths_smoothed_per_million": 2.218
- },
- {
- "date": "2020-05-30",
- "total_cases": 8927.0,
- "new_cases": 251.0,
- "new_cases_smoothed": 375.0,
- "total_deaths": 127.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 7.143,
- "total_cases_per_million": 3012.587,
- "new_cases_per_million": 84.705,
- "new_cases_smoothed_per_million": 126.551,
- "total_deaths_per_million": 42.859,
- "new_deaths_per_million": 2.362,
- "new_deaths_smoothed_per_million": 2.41
- },
- {
- "date": "2020-05-31",
- "total_cases": 9282.0,
- "new_cases": 355.0,
- "new_cases_smoothed": 374.429,
- "total_deaths": 131.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 7.143,
- "total_cases_per_million": 3132.388,
- "new_cases_per_million": 119.802,
- "new_cases_smoothed_per_million": 126.358,
- "total_deaths_per_million": 44.208,
- "new_deaths_per_million": 1.35,
- "new_deaths_smoothed_per_million": 2.41
- },
- {
- "date": "2020-06-01",
- "total_cases": 9492.0,
- "new_cases": 210.0,
- "new_cases_smoothed": 339.857,
- "total_deaths": 139.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 7.429,
- "total_cases_per_million": 3203.257,
- "new_cases_per_million": 70.869,
- "new_cases_smoothed_per_million": 114.691,
- "total_deaths_per_million": 46.908,
- "new_deaths_per_million": 2.7,
- "new_deaths_smoothed_per_million": 2.507
- },
- {
- "date": "2020-06-02",
- "total_cases": 10009.0,
- "new_cases": 517.0,
- "new_cases_smoothed": 372.429,
- "total_deaths": 158.0,
- "new_deaths": 19.0,
- "new_deaths_smoothed": 9.571,
- "total_cases_per_million": 3377.729,
- "new_cases_per_million": 174.472,
- "new_cases_smoothed_per_million": 125.683,
- "total_deaths_per_million": 53.32,
- "new_deaths_per_million": 6.412,
- "new_deaths_smoothed_per_million": 3.23
- },
- {
- "date": "2020-06-03",
- "total_cases": 10524.0,
- "new_cases": 515.0,
- "new_cases_smoothed": 392.857,
- "total_deaths": 170.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 10.286,
- "total_cases_per_million": 3551.525,
- "new_cases_per_million": 173.797,
- "new_cases_smoothed_per_million": 132.577,
- "total_deaths_per_million": 57.37,
- "new_deaths_per_million": 4.05,
- "new_deaths_smoothed_per_million": 3.471
- },
- {
- "date": "2020-06-04",
- "total_cases": 11221.0,
- "new_cases": 697.0,
- "new_cases_smoothed": 429.286,
- "total_deaths": 176.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 9.0,
- "total_cases_per_million": 3786.741,
- "new_cases_per_million": 235.216,
- "new_cases_smoothed_per_million": 144.871,
- "total_deaths_per_million": 59.395,
- "new_deaths_per_million": 2.025,
- "new_deaths_smoothed_per_million": 3.037
- },
- {
- "date": "2020-06-05",
- "total_cases": 11817.0,
- "new_cases": 596.0,
- "new_cases_smoothed": 448.714,
- "total_deaths": 183.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 9.0,
- "total_cases_per_million": 3987.873,
- "new_cases_per_million": 201.132,
- "new_cases_smoothed_per_million": 151.427,
- "total_deaths_per_million": 61.757,
- "new_deaths_per_million": 2.362,
- "new_deaths_smoothed_per_million": 3.037
- },
- {
- "date": "2020-06-06",
- "total_cases": 12364.0,
- "new_cases": 547.0,
- "new_cases_smoothed": 491.0,
- "total_deaths": 190.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 9.0,
- "total_cases_per_million": 4172.468,
- "new_cases_per_million": 184.596,
- "new_cases_smoothed_per_million": 165.697,
- "total_deaths_per_million": 64.119,
- "new_deaths_per_million": 2.362,
- "new_deaths_smoothed_per_million": 3.037
- },
- {
- "date": "2020-06-07",
- "total_cases": 13130.0,
- "new_cases": 766.0,
- "new_cases_smoothed": 549.714,
- "total_deaths": 200.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 9.857,
- "total_cases_per_million": 4430.97,
- "new_cases_per_million": 258.501,
- "new_cases_smoothed_per_million": 185.512,
- "total_deaths_per_million": 67.494,
- "new_deaths_per_million": 3.375,
- "new_deaths_smoothed_per_million": 3.326
- },
- {
- "date": "2020-06-08",
- "total_cases": 13325.0,
- "new_cases": 195.0,
- "new_cases_smoothed": 547.571,
- "total_deaths": 211.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 10.286,
- "total_cases_per_million": 4496.776,
- "new_cases_per_million": 65.806,
- "new_cases_smoothed_per_million": 184.788,
- "total_deaths_per_million": 71.206,
- "new_deaths_per_million": 3.712,
- "new_deaths_smoothed_per_million": 3.471
- },
- {
- "date": "2020-06-09",
- "total_cases": 13675.0,
- "new_cases": 350.0,
- "new_cases_smoothed": 523.714,
- "total_deaths": 217.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 8.429,
- "total_cases_per_million": 4614.89,
- "new_cases_per_million": 118.114,
- "new_cases_smoothed_per_million": 176.737,
- "total_deaths_per_million": 73.231,
- "new_deaths_per_million": 2.025,
- "new_deaths_smoothed_per_million": 2.844
- },
- {
- "date": "2020-06-10",
- "total_cases": 14103.0,
- "new_cases": 428.0,
- "new_cases_smoothed": 511.286,
- "total_deaths": 227.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 4759.327,
- "new_cases_per_million": 144.437,
- "new_cases_smoothed_per_million": 172.543,
- "total_deaths_per_million": 76.605,
- "new_deaths_per_million": 3.375,
- "new_deaths_smoothed_per_million": 2.748
- },
- {
- "date": "2020-06-11",
- "total_cases": 14669.0,
- "new_cases": 566.0,
- "new_cases_smoothed": 492.571,
- "total_deaths": 245.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 9.857,
- "total_cases_per_million": 4950.335,
- "new_cases_per_million": 191.008,
- "new_cases_smoothed_per_million": 166.228,
- "total_deaths_per_million": 82.68,
- "new_deaths_per_million": 6.074,
- "new_deaths_smoothed_per_million": 3.326
- },
- {
- "date": "2020-06-12",
- "total_cases": 15281.0,
- "new_cases": 612.0,
- "new_cases_smoothed": 494.857,
- "total_deaths": 258.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 10.714,
- "total_cases_per_million": 5156.866,
- "new_cases_per_million": 206.531,
- "new_cases_smoothed_per_million": 166.999,
- "total_deaths_per_million": 87.067,
- "new_deaths_per_million": 4.387,
- "new_deaths_smoothed_per_million": 3.616
- },
- {
- "date": "2020-06-13",
- "total_cases": 16004.0,
- "new_cases": 723.0,
- "new_cases_smoothed": 520.0,
- "total_deaths": 264.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 10.571,
- "total_cases_per_million": 5400.856,
- "new_cases_per_million": 243.99,
- "new_cases_smoothed_per_million": 175.484,
- "total_deaths_per_million": 89.092,
- "new_deaths_per_million": 2.025,
- "new_deaths_smoothed_per_million": 3.568
- },
- {
- "date": "2020-06-14",
- "total_cases": 16667.0,
- "new_cases": 663.0,
- "new_cases_smoothed": 505.286,
- "total_deaths": 269.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 9.857,
- "total_cases_per_million": 5624.598,
- "new_cases_per_million": 223.742,
- "new_cases_smoothed_per_million": 170.518,
- "total_deaths_per_million": 90.779,
- "new_deaths_per_million": 1.687,
- "new_deaths_smoothed_per_million": 3.326
- },
- {
- "date": "2020-06-15",
- "total_cases": 17064.0,
- "new_cases": 397.0,
- "new_cases_smoothed": 534.143,
- "total_deaths": 285.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 10.571,
- "total_cases_per_million": 5758.573,
- "new_cases_per_million": 133.975,
- "new_cases_smoothed_per_million": 180.257,
- "total_deaths_per_million": 96.179,
- "new_deaths_per_million": 5.4,
- "new_deaths_smoothed_per_million": 3.568
- },
- {
- "date": "2020-06-16",
- "total_cases": 17489.0,
- "new_cases": 425.0,
- "new_cases_smoothed": 544.857,
- "total_deaths": 293.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 10.857,
- "total_cases_per_million": 5901.998,
- "new_cases_per_million": 143.424,
- "new_cases_smoothed_per_million": 183.872,
- "total_deaths_per_million": 98.878,
- "new_deaths_per_million": 2.7,
- "new_deaths_smoothed_per_million": 3.664
- },
- {
- "date": "2020-06-17",
- "total_cases": 18033.0,
- "new_cases": 544.0,
- "new_cases_smoothed": 561.429,
- "total_deaths": 302.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 10.714,
- "total_cases_per_million": 6085.581,
- "new_cases_per_million": 183.583,
- "new_cases_smoothed_per_million": 189.465,
- "total_deaths_per_million": 101.916,
- "new_deaths_per_million": 3.037,
- "new_deaths_smoothed_per_million": 3.616
- },
- {
- "date": "2020-06-18",
- "total_cases": 18698.0,
- "new_cases": 665.0,
- "new_cases_smoothed": 575.571,
- "total_deaths": 309.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 9.143,
- "total_cases_per_million": 6309.998,
- "new_cases_per_million": 224.417,
- "new_cases_smoothed_per_million": 194.238,
- "total_deaths_per_million": 104.278,
- "new_deaths_per_million": 2.362,
- "new_deaths_smoothed_per_million": 3.085
- },
- {
- "date": "2020-06-19",
- "total_cases": 19157.0,
- "new_cases": 459.0,
- "new_cases_smoothed": 553.714,
- "total_deaths": 319.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 8.714,
- "total_cases_per_million": 6464.896,
- "new_cases_per_million": 154.898,
- "new_cases_smoothed_per_million": 186.861,
- "total_deaths_per_million": 107.653,
- "new_deaths_per_million": 3.375,
- "new_deaths_smoothed_per_million": 2.941
- },
- {
- "date": "2020-06-20",
- "total_cases": 19708.0,
- "new_cases": 551.0,
- "new_cases_smoothed": 529.143,
- "total_deaths": 332.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 9.714,
- "total_cases_per_million": 6650.842,
- "new_cases_per_million": 185.945,
- "new_cases_smoothed_per_million": 178.569,
- "total_deaths_per_million": 112.04,
- "new_deaths_per_million": 4.387,
- "new_deaths_smoothed_per_million": 3.278
- },
- {
- "date": "2020-06-21",
- "total_cases": 20268.0,
- "new_cases": 560.0,
- "new_cases_smoothed": 514.429,
- "total_deaths": 350.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 11.571,
- "total_cases_per_million": 6839.824,
- "new_cases_per_million": 188.983,
- "new_cases_smoothed_per_million": 173.604,
- "total_deaths_per_million": 118.114,
- "new_deaths_per_million": 6.074,
- "new_deaths_smoothed_per_million": 3.905
- },
- {
- "date": "2020-06-22",
- "total_cases": 20588.0,
- "new_cases": 320.0,
- "new_cases_smoothed": 503.429,
- "total_deaths": 360.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 10.714,
- "total_cases_per_million": 6947.814,
- "new_cases_per_million": 107.99,
- "new_cases_smoothed_per_million": 169.892,
- "total_deaths_per_million": 121.489,
- "new_deaths_per_million": 3.375,
- "new_deaths_smoothed_per_million": 3.616
- },
- {
- "date": "2020-06-23",
- "total_cases": 21006.0,
- "new_cases": 418.0,
- "new_cases_smoothed": 502.429,
- "total_deaths": 372.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 11.286,
- "total_cases_per_million": 7088.877,
- "new_cases_per_million": 141.062,
- "new_cases_smoothed_per_million": 169.554,
- "total_deaths_per_million": 125.539,
- "new_deaths_per_million": 4.05,
- "new_deaths_smoothed_per_million": 3.809
- },
- {
- "date": "2020-06-24",
- "total_cases": 21717.0,
- "new_cases": 711.0,
- "new_cases_smoothed": 526.286,
- "total_deaths": 386.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 12.0,
- "total_cases_per_million": 7328.817,
- "new_cases_per_million": 239.941,
- "new_cases_smoothed_per_million": 177.605,
- "total_deaths_per_million": 130.263,
- "new_deaths_per_million": 4.725,
- "new_deaths_smoothed_per_million": 4.05
- },
- {
- "date": "2020-06-25",
- "total_cases": 22488.0,
- "new_cases": 771.0,
- "new_cases_smoothed": 541.429,
- "total_deaths": 397.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 12.571,
- "total_cases_per_million": 7589.006,
- "new_cases_per_million": 260.189,
- "new_cases_smoothed_per_million": 182.715,
- "total_deaths_per_million": 133.975,
- "new_deaths_per_million": 3.712,
- "new_deaths_smoothed_per_million": 4.242
- },
- {
- "date": "2020-06-26",
- "total_cases": 23247.0,
- "new_cases": 759.0,
- "new_cases_smoothed": 584.286,
- "total_deaths": 410.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 13.0,
- "total_cases_per_million": 7845.145,
- "new_cases_per_million": 256.139,
- "new_cases_smoothed_per_million": 197.178,
- "total_deaths_per_million": 138.362,
- "new_deaths_per_million": 4.387,
- "new_deaths_smoothed_per_million": 4.387
- },
- {
- "date": "2020-06-27",
- "total_cases": 23909.0,
- "new_cases": 662.0,
- "new_cases_smoothed": 600.143,
- "total_deaths": 420.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 12.571,
- "total_cases_per_million": 8068.549,
- "new_cases_per_million": 223.405,
- "new_cases_smoothed_per_million": 202.53,
- "total_deaths_per_million": 141.737,
- "new_deaths_per_million": 3.375,
- "new_deaths_smoothed_per_million": 4.242
- },
- {
- "date": "2020-06-28",
- "total_cases": 24645.0,
- "new_cases": 736.0,
- "new_cases_smoothed": 625.286,
- "total_deaths": 426.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 10.857,
- "total_cases_per_million": 8316.927,
- "new_cases_per_million": 248.377,
- "new_cases_smoothed_per_million": 211.015,
- "total_deaths_per_million": 143.762,
- "new_deaths_per_million": 2.025,
- "new_deaths_smoothed_per_million": 3.664
- },
- {
- "date": "2020-06-29",
- "total_cases": 25127.0,
- "new_cases": 482.0,
- "new_cases_smoothed": 648.429,
- "total_deaths": 433.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 10.429,
- "total_cases_per_million": 8479.587,
- "new_cases_per_million": 162.66,
- "new_cases_smoothed_per_million": 218.825,
- "total_deaths_per_million": 146.124,
- "new_deaths_per_million": 2.362,
- "new_deaths_smoothed_per_million": 3.519
- },
- {
- "date": "2020-06-30",
- "total_cases": 25542.0,
- "new_cases": 415.0,
- "new_cases_smoothed": 648.0,
- "total_deaths": 443.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 10.143,
- "total_cases_per_million": 8619.637,
- "new_cases_per_million": 140.05,
- "new_cases_smoothed_per_million": 218.68,
- "total_deaths_per_million": 149.499,
- "new_deaths_per_million": 3.375,
- "new_deaths_smoothed_per_million": 3.423
- },
- {
- "date": "2020-07-01",
- "total_cases": 26065.0,
- "new_cases": 523.0,
- "new_cases_smoothed": 621.143,
- "total_deaths": 453.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 9.571,
- "total_cases_per_million": 8796.133,
- "new_cases_per_million": 176.496,
- "new_cases_smoothed_per_million": 209.617,
- "total_deaths_per_million": 152.874,
- "new_deaths_per_million": 3.375,
- "new_deaths_smoothed_per_million": 3.23
- },
- {
- "date": "2020-07-02",
- "total_cases": 26658.0,
- "new_cases": 593.0,
- "new_cases_smoothed": 595.714,
- "total_deaths": 459.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 8.857,
- "total_cases_per_million": 8996.252,
- "new_cases_per_million": 200.119,
- "new_cases_smoothed_per_million": 201.035,
- "total_deaths_per_million": 154.898,
- "new_deaths_per_million": 2.025,
- "new_deaths_smoothed_per_million": 2.989
- },
- {
- "date": "2020-07-03",
- "total_cases": 27320.0,
- "new_cases": 662.0,
- "new_cases_smoothed": 581.857,
- "total_deaths": 469.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 8.429,
- "total_cases_per_million": 9219.657,
- "new_cases_per_million": 223.405,
- "new_cases_smoothed_per_million": 196.359,
- "total_deaths_per_million": 158.273,
- "new_deaths_per_million": 3.375,
- "new_deaths_smoothed_per_million": 2.844
- },
- {
- "date": "2020-07-04",
- "total_cases": 27900.0,
- "new_cases": 580.0,
- "new_cases_smoothed": 570.143,
- "total_deaths": 477.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 9415.389,
- "new_cases_per_million": 195.732,
- "new_cases_smoothed_per_million": 192.406,
- "total_deaths_per_million": 160.973,
- "new_deaths_per_million": 2.7,
- "new_deaths_smoothed_per_million": 2.748
- },
- {
- "date": "2020-07-05",
- "total_cases": 28606.0,
- "new_cases": 706.0,
- "new_cases_smoothed": 565.857,
- "total_deaths": 484.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 8.286,
- "total_cases_per_million": 9653.642,
- "new_cases_per_million": 238.253,
- "new_cases_smoothed_per_million": 190.959,
- "total_deaths_per_million": 163.335,
- "new_deaths_per_million": 2.362,
- "new_deaths_smoothed_per_million": 2.796
- },
- {
- "date": "2020-07-06",
- "total_cases": 28936.0,
- "new_cases": 330.0,
- "new_cases_smoothed": 544.143,
- "total_deaths": 491.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 8.286,
- "total_cases_per_million": 9765.007,
- "new_cases_per_million": 111.365,
- "new_cases_smoothed_per_million": 183.631,
- "total_deaths_per_million": 165.697,
- "new_deaths_per_million": 2.362,
- "new_deaths_smoothed_per_million": 2.796
- },
- {
- "date": "2020-07-07",
- "total_cases": 29285.0,
- "new_cases": 349.0,
- "new_cases_smoothed": 534.714,
- "total_deaths": 503.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 9882.783,
- "new_cases_per_million": 117.777,
- "new_cases_smoothed_per_million": 180.45,
- "total_deaths_per_million": 169.747,
- "new_deaths_per_million": 4.05,
- "new_deaths_smoothed_per_million": 2.893
- },
- {
- "date": "2020-07-08",
- "total_cases": 29820.0,
- "new_cases": 535.0,
- "new_cases_smoothed": 536.429,
- "total_deaths": 521.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 9.714,
- "total_cases_per_million": 10063.329,
- "new_cases_per_million": 180.546,
- "new_cases_smoothed_per_million": 181.028,
- "total_deaths_per_million": 175.821,
- "new_deaths_per_million": 6.074,
- "new_deaths_smoothed_per_million": 3.278
- },
- {
- "date": "2020-07-09",
- "total_cases": 30346.0,
- "new_cases": 526.0,
- "new_cases_smoothed": 526.857,
- "total_deaths": 535.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 10.857,
- "total_cases_per_million": 10240.838,
- "new_cases_per_million": 177.509,
- "new_cases_smoothed_per_million": 177.798,
- "total_deaths_per_million": 180.546,
- "new_deaths_per_million": 4.725,
- "new_deaths_smoothed_per_million": 3.664
- },
- {
- "date": "2020-07-10",
- "total_cases": 30903.0,
- "new_cases": 557.0,
- "new_cases_smoothed": 511.857,
- "total_deaths": 546.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 11.0,
- "total_cases_per_million": 10428.809,
- "new_cases_per_million": 187.97,
- "new_cases_smoothed_per_million": 172.736,
- "total_deaths_per_million": 184.258,
- "new_deaths_per_million": 3.712,
- "new_deaths_smoothed_per_million": 3.712
- },
- {
- "date": "2020-07-11",
- "total_cases": 31392.0,
- "new_cases": 489.0,
- "new_cases_smoothed": 498.857,
- "total_deaths": 559.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 11.714,
- "total_cases_per_million": 10593.831,
- "new_cases_per_million": 165.022,
- "new_cases_smoothed_per_million": 168.349,
- "total_deaths_per_million": 188.645,
- "new_deaths_per_million": 4.387,
- "new_deaths_smoothed_per_million": 3.953
- },
- {
- "date": "2020-07-12",
- "total_cases": 31969.0,
- "new_cases": 577.0,
- "new_cases_smoothed": 480.429,
- "total_deaths": 565.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 11.571,
- "total_cases_per_million": 10788.551,
- "new_cases_per_million": 194.72,
- "new_cases_smoothed_per_million": 162.13,
- "total_deaths_per_million": 190.67,
- "new_deaths_per_million": 2.025,
- "new_deaths_smoothed_per_million": 3.905
- },
- {
- "date": "2020-07-13",
- "total_cases": 32151.0,
- "new_cases": 182.0,
- "new_cases_smoothed": 459.286,
- "total_deaths": 573.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 11.714,
- "total_cases_per_million": 10849.97,
- "new_cases_per_million": 61.419,
- "new_cases_smoothed_per_million": 154.995,
- "total_deaths_per_million": 193.37,
- "new_deaths_per_million": 2.7,
- "new_deaths_smoothed_per_million": 3.953
- },
- {
- "date": "2020-07-14",
- "total_cases": 32490.0,
- "new_cases": 339.0,
- "new_cases_smoothed": 457.857,
- "total_deaths": 581.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 11.143,
- "total_cases_per_million": 10964.372,
- "new_cases_per_million": 114.402,
- "new_cases_smoothed_per_million": 154.513,
- "total_deaths_per_million": 196.07,
- "new_deaths_per_million": 2.7,
- "new_deaths_smoothed_per_million": 3.76
- },
- {
- "date": "2020-07-15",
- "total_cases": 33005.0,
- "new_cases": 515.0,
- "new_cases_smoothed": 455.0,
- "total_deaths": 592.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 10.143,
- "total_cases_per_million": 11138.169,
- "new_cases_per_million": 173.797,
- "new_cases_smoothed_per_million": 153.548,
- "total_deaths_per_million": 199.782,
- "new_deaths_per_million": 3.712,
- "new_deaths_smoothed_per_million": 3.423
- },
- {
- "date": "2020-07-16",
- "total_cases": 33559.0,
- "new_cases": 554.0,
- "new_cases_smoothed": 459.0,
- "total_deaths": 607.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 10.286,
- "total_cases_per_million": 11325.127,
- "new_cases_per_million": 186.958,
- "new_cases_smoothed_per_million": 154.898,
- "total_deaths_per_million": 204.844,
- "new_deaths_per_million": 5.062,
- "new_deaths_smoothed_per_million": 3.471
- },
- {
- "date": "2020-07-17",
- "total_cases": 34001.0,
- "new_cases": 442.0,
- "new_cases_smoothed": 442.571,
- "total_deaths": 620.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 10.571,
- "total_cases_per_million": 11474.288,
- "new_cases_per_million": 149.161,
- "new_cases_smoothed_per_million": 149.354,
- "total_deaths_per_million": 209.231,
- "new_deaths_per_million": 4.387,
- "new_deaths_smoothed_per_million": 3.568
- },
- {
- "date": "2020-07-18",
- "total_cases": 34462.0,
- "new_cases": 461.0,
- "new_cases_smoothed": 438.571,
- "total_deaths": 631.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 10.286,
- "total_cases_per_million": 11629.861,
- "new_cases_per_million": 155.573,
- "new_cases_smoothed_per_million": 148.004,
- "total_deaths_per_million": 212.943,
- "new_deaths_per_million": 3.712,
- "new_deaths_smoothed_per_million": 3.471
- },
- {
- "date": "2020-07-19",
- "total_cases": 34877.0,
- "new_cases": 415.0,
- "new_cases_smoothed": 415.429,
- "total_deaths": 641.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 10.857,
- "total_cases_per_million": 11769.911,
- "new_cases_per_million": 140.05,
- "new_cases_smoothed_per_million": 140.194,
- "total_deaths_per_million": 216.318,
- "new_deaths_per_million": 3.375,
- "new_deaths_smoothed_per_million": 3.664
- },
- {
- "date": "2020-07-20",
- "total_cases": 34981.0,
- "new_cases": 104.0,
- "new_cases_smoothed": 404.286,
- "total_deaths": 650.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 11.0,
- "total_cases_per_million": 11805.008,
- "new_cases_per_million": 35.097,
- "new_cases_smoothed_per_million": 136.434,
- "total_deaths_per_million": 219.355,
- "new_deaths_per_million": 3.037,
- "new_deaths_smoothed_per_million": 3.712
- },
- {
- "date": "2020-07-21",
- "total_cases": 35254.0,
- "new_cases": 273.0,
- "new_cases_smoothed": 394.857,
- "total_deaths": 662.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 11.571,
- "total_cases_per_million": 11897.137,
- "new_cases_per_million": 92.129,
- "new_cases_smoothed_per_million": 133.252,
- "total_deaths_per_million": 223.405,
- "new_deaths_per_million": 4.05,
- "new_deaths_smoothed_per_million": 3.905
- },
- {
- "date": "2020-07-22",
- "total_cases": 35693.0,
- "new_cases": 439.0,
- "new_cases_smoothed": 384.0,
- "total_deaths": 678.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 12.286,
- "total_cases_per_million": 12045.286,
- "new_cases_per_million": 148.149,
- "new_cases_smoothed_per_million": 129.588,
- "total_deaths_per_million": 228.804,
- "new_deaths_per_million": 5.4,
- "new_deaths_smoothed_per_million": 4.146
- },
- {
- "date": "2020-07-23",
- "total_cases": 36162.0,
- "new_cases": 469.0,
- "new_cases_smoothed": 371.857,
- "total_deaths": 688.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 11.571,
- "total_cases_per_million": 12203.559,
- "new_cases_per_million": 158.273,
- "new_cases_smoothed_per_million": 125.49,
- "total_deaths_per_million": 232.179,
- "new_deaths_per_million": 3.375,
- "new_deaths_smoothed_per_million": 3.905
- },
- {
- "date": "2020-07-24",
- "total_cases": 36613.0,
- "new_cases": 451.0,
- "new_cases_smoothed": 373.143,
- "total_deaths": 692.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 10.286,
- "total_cases_per_million": 12355.757,
- "new_cases_per_million": 152.199,
- "new_cases_smoothed_per_million": 125.924,
- "total_deaths_per_million": 233.529,
- "new_deaths_per_million": 1.35,
- "new_deaths_smoothed_per_million": 3.471
- },
- {
- "date": "2020-07-25",
- "total_cases": 36996.0,
- "new_cases": 383.0,
- "new_cases_smoothed": 362.0,
- "total_deaths": 700.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 9.857,
- "total_cases_per_million": 12485.008,
- "new_cases_per_million": 129.251,
- "new_cases_smoothed_per_million": 122.164,
- "total_deaths_per_million": 236.228,
- "new_deaths_per_million": 2.7,
- "new_deaths_smoothed_per_million": 3.326
- },
- {
- "date": "2020-07-26",
- "total_cases": 37317.0,
- "new_cases": 321.0,
- "new_cases_smoothed": 348.571,
- "total_deaths": 705.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 9.143,
- "total_cases_per_million": 12593.336,
- "new_cases_per_million": 108.328,
- "new_cases_smoothed_per_million": 117.632,
- "total_deaths_per_million": 237.916,
- "new_deaths_per_million": 1.687,
- "new_deaths_smoothed_per_million": 3.085
- },
- {
- "date": "2020-07-27",
- "total_cases": 37390.0,
- "new_cases": 73.0,
- "new_cases_smoothed": 344.143,
- "total_deaths": 711.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 8.714,
- "total_cases_per_million": 12617.971,
- "new_cases_per_million": 24.635,
- "new_cases_smoothed_per_million": 116.138,
- "total_deaths_per_million": 239.941,
- "new_deaths_per_million": 2.025,
- "new_deaths_smoothed_per_million": 2.941
- },
- {
- "date": "2020-07-28",
- "total_cases": 37629.0,
- "new_cases": 239.0,
- "new_cases_smoothed": 339.286,
- "total_deaths": 719.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 12698.626,
- "new_cases_per_million": 80.655,
- "new_cases_smoothed_per_million": 114.498,
- "total_deaths_per_million": 242.64,
- "new_deaths_per_million": 2.7,
- "new_deaths_smoothed_per_million": 2.748
- },
- {
- "date": "2020-07-29",
- "total_cases": 37937.0,
- "new_cases": 308.0,
- "new_cases_smoothed": 320.571,
- "total_deaths": 723.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 6.429,
- "total_cases_per_million": 12802.566,
- "new_cases_per_million": 103.94,
- "new_cases_smoothed_per_million": 108.183,
- "total_deaths_per_million": 243.99,
- "new_deaths_per_million": 1.35,
- "new_deaths_smoothed_per_million": 2.169
- },
- {
- "date": "2020-07-30",
- "total_cases": 38196.0,
- "new_cases": 259.0,
- "new_cases_smoothed": 290.571,
- "total_deaths": 728.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.714,
- "total_cases_per_million": 12889.971,
- "new_cases_per_million": 87.405,
- "new_cases_smoothed_per_million": 98.059,
- "total_deaths_per_million": 245.678,
- "new_deaths_per_million": 1.687,
- "new_deaths_smoothed_per_million": 1.928
- },
- {
- "date": "2020-07-31",
- "total_cases": 38550.0,
- "new_cases": 354.0,
- "new_cases_smoothed": 276.714,
- "total_deaths": 738.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 13009.435,
- "new_cases_per_million": 119.464,
- "new_cases_smoothed_per_million": 93.383,
- "total_deaths_per_million": 249.052,
- "new_deaths_per_million": 3.375,
- "new_deaths_smoothed_per_million": 2.218
- },
- {
- "date": "2020-08-01",
- "total_cases": 38841.0,
- "new_cases": 291.0,
- "new_cases_smoothed": 263.571,
- "total_deaths": 749.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 7.0,
- "total_cases_per_million": 13107.638,
- "new_cases_per_million": 98.204,
- "new_cases_smoothed_per_million": 88.947,
- "total_deaths_per_million": 252.764,
- "new_deaths_per_million": 3.712,
- "new_deaths_smoothed_per_million": 2.362
- },
- {
- "date": "2020-08-02",
- "total_cases": 39050.0,
- "new_cases": 209.0,
- "new_cases_smoothed": 247.571,
- "total_deaths": 754.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 7.0,
- "total_cases_per_million": 13178.17,
- "new_cases_per_million": 70.531,
- "new_cases_smoothed_per_million": 83.548,
- "total_deaths_per_million": 254.452,
- "new_deaths_per_million": 1.687,
- "new_deaths_smoothed_per_million": 2.362
- },
- {
- "date": "2020-08-03",
- "total_cases": 39102.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 244.571,
- "total_deaths": 762.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 7.286,
- "total_cases_per_million": 13195.718,
- "new_cases_per_million": 17.548,
- "new_cases_smoothed_per_million": 82.535,
- "total_deaths_per_million": 257.151,
- "new_deaths_per_million": 2.7,
- "new_deaths_smoothed_per_million": 2.459
- },
- {
- "date": "2020-08-04",
- "total_cases": 39102.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 210.429,
- "total_deaths": 762.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 6.143,
- "total_cases_per_million": 13195.718,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 71.013,
- "total_deaths_per_million": 257.151,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.073
- },
- {
- "date": "2020-08-05",
- "total_cases": 39298.0,
- "new_cases": 196.0,
- "new_cases_smoothed": 194.429,
- "total_deaths": 768.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 6.429,
- "total_cases_per_million": 13261.862,
- "new_cases_per_million": 66.144,
- "new_cases_smoothed_per_million": 65.614,
- "total_deaths_per_million": 259.176,
- "new_deaths_per_million": 2.025,
- "new_deaths_smoothed_per_million": 2.169
- },
- {
- "date": "2020-08-06",
- "total_cases": 39586.0,
- "new_cases": 288.0,
- "new_cases_smoothed": 198.571,
- "total_deaths": 770.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 6.0,
- "total_cases_per_million": 13359.053,
- "new_cases_per_million": 97.191,
- "new_cases_smoothed_per_million": 67.012,
- "total_deaths_per_million": 259.851,
- "new_deaths_per_million": 0.675,
- "new_deaths_smoothed_per_million": 2.025
- },
- {
- "date": "2020-08-07",
- "total_cases": 39819.0,
- "new_cases": 233.0,
- "new_cases_smoothed": 181.286,
- "total_deaths": 772.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 13437.683,
- "new_cases_per_million": 78.63,
- "new_cases_smoothed_per_million": 61.178,
- "total_deaths_per_million": 260.526,
- "new_deaths_per_million": 0.675,
- "new_deaths_smoothed_per_million": 1.639
- },
- {
- "date": "2020-08-08",
- "total_cases": 39885.0,
- "new_cases": 66.0,
- "new_cases_smoothed": 149.143,
- "total_deaths": 777.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 13459.956,
- "new_cases_per_million": 22.273,
- "new_cases_smoothed_per_million": 50.331,
- "total_deaths_per_million": 262.214,
- "new_deaths_per_million": 1.687,
- "new_deaths_smoothed_per_million": 1.35
- },
- {
- "date": "2020-08-09",
- "total_cases": 40185.0,
- "new_cases": 300.0,
- "new_cases_smoothed": 162.143,
- "total_deaths": 785.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 13561.197,
- "new_cases_per_million": 101.241,
- "new_cases_smoothed_per_million": 54.718,
- "total_deaths_per_million": 264.913,
- "new_deaths_per_million": 2.7,
- "new_deaths_smoothed_per_million": 1.495
- },
- {
- "date": "2020-08-10",
- "total_cases": 40410.0,
- "new_cases": 225.0,
- "new_cases_smoothed": 186.857,
- "total_deaths": 791.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 13637.128,
- "new_cases_per_million": 75.931,
- "new_cases_smoothed_per_million": 63.059,
- "total_deaths_per_million": 266.938,
- "new_deaths_per_million": 2.025,
- "new_deaths_smoothed_per_million": 1.398
- },
- {
- "date": "2020-08-11",
- "total_cases": 40433.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 190.143,
- "total_deaths": 796.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 13644.889,
- "new_cases_per_million": 7.762,
- "new_cases_smoothed_per_million": 64.167,
- "total_deaths_per_million": 268.625,
- "new_deaths_per_million": 1.687,
- "new_deaths_smoothed_per_million": 1.639
- },
- {
- "date": "2020-08-12",
- "total_cases": 40593.0,
- "new_cases": 160.0,
- "new_cases_smoothed": 185.0,
- "total_deaths": 803.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 13698.884,
- "new_cases_per_million": 53.995,
- "new_cases_smoothed_per_million": 62.432,
- "total_deaths_per_million": 270.988,
- "new_deaths_per_million": 2.362,
- "new_deaths_smoothed_per_million": 1.687
- },
- {
- "date": "2020-08-13",
- "total_cases": 40794.0,
- "new_cases": 201.0,
- "new_cases_smoothed": 172.571,
- "total_deaths": 806.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 13766.716,
- "new_cases_per_million": 67.831,
- "new_cases_smoothed_per_million": 58.238,
- "total_deaths_per_million": 272.0,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 1.736
- },
- {
- "date": "2020-08-14",
- "total_cases": 41023.0,
- "new_cases": 229.0,
- "new_cases_smoothed": 172.0,
- "total_deaths": 809.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 5.286,
- "total_cases_per_million": 13843.996,
- "new_cases_per_million": 77.28,
- "new_cases_smoothed_per_million": 58.045,
- "total_deaths_per_million": 273.013,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 1.784
- },
- {
- "date": "2020-08-15",
- "total_cases": 41299.0,
- "new_cases": 276.0,
- "new_cases_smoothed": 202.0,
- "total_deaths": 814.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.286,
- "total_cases_per_million": 13937.138,
- "new_cases_per_million": 93.141,
- "new_cases_smoothed_per_million": 68.169,
- "total_deaths_per_million": 274.7,
- "new_deaths_per_million": 1.687,
- "new_deaths_smoothed_per_million": 1.784
- },
- {
- "date": "2020-08-16",
- "total_cases": 41495.0,
- "new_cases": 196.0,
- "new_cases_smoothed": 187.143,
- "total_deaths": 817.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 14003.282,
- "new_cases_per_million": 66.144,
- "new_cases_smoothed_per_million": 63.155,
- "total_deaths_per_million": 275.712,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 1.543
- },
- {
- "date": "2020-08-17",
- "total_cases": 41663.0,
- "new_cases": 168.0,
- "new_cases_smoothed": 179.0,
- "total_deaths": 818.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 14059.976,
- "new_cases_per_million": 56.695,
- "new_cases_smoothed_per_million": 60.407,
- "total_deaths_per_million": 276.05,
- "new_deaths_per_million": 0.337,
- "new_deaths_smoothed_per_million": 1.302
- },
- {
- "date": "2020-08-18",
- "total_cases": 41701.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 181.143,
- "total_deaths": 824.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 14072.8,
- "new_cases_per_million": 12.824,
- "new_cases_smoothed_per_million": 61.13,
- "total_deaths_per_million": 278.075,
- "new_deaths_per_million": 2.025,
- "new_deaths_smoothed_per_million": 1.35
- },
- {
- "date": "2020-08-19",
- "total_cases": 41846.0,
- "new_cases": 145.0,
- "new_cases_smoothed": 179.0,
- "total_deaths": 832.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 14121.733,
- "new_cases_per_million": 48.933,
- "new_cases_smoothed_per_million": 60.407,
- "total_deaths_per_million": 280.774,
- "new_deaths_per_million": 2.7,
- "new_deaths_smoothed_per_million": 1.398
- },
- {
- "date": "2020-08-20",
- "total_cases": 42056.0,
- "new_cases": 210.0,
- "new_cases_smoothed": 180.286,
- "total_deaths": 833.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 14192.602,
- "new_cases_per_million": 70.869,
- "new_cases_smoothed_per_million": 60.841,
- "total_deaths_per_million": 281.112,
- "new_deaths_per_million": 0.337,
- "new_deaths_smoothed_per_million": 1.302
- },
- {
- "date": "2020-08-21",
- "total_cases": 42319.0,
- "new_cases": 263.0,
- "new_cases_smoothed": 185.143,
- "total_deaths": 836.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 14281.356,
- "new_cases_per_million": 88.754,
- "new_cases_smoothed_per_million": 62.48,
- "total_deaths_per_million": 282.124,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 1.302
- },
- {
- "date": "2020-08-22",
- "total_cases": 42477.0,
- "new_cases": 158.0,
- "new_cases_smoothed": 168.286,
- "total_deaths": 842.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 14334.676,
- "new_cases_per_million": 53.32,
- "new_cases_smoothed_per_million": 56.791,
- "total_deaths_per_million": 284.149,
- "new_deaths_per_million": 2.025,
- "new_deaths_smoothed_per_million": 1.35
- },
- {
- "date": "2020-08-23",
- "total_cases": 42616.0,
- "new_cases": 139.0,
- "new_cases_smoothed": 160.143,
- "total_deaths": 850.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 14381.584,
- "new_cases_per_million": 46.908,
- "new_cases_smoothed_per_million": 54.043,
- "total_deaths_per_million": 286.849,
- "new_deaths_per_million": 2.7,
- "new_deaths_smoothed_per_million": 1.591
- },
- {
- "date": "2020-08-24",
- "total_cases": 42792.0,
- "new_cases": 176.0,
- "new_cases_smoothed": 161.286,
- "total_deaths": 852.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 14440.979,
- "new_cases_per_million": 59.395,
- "new_cases_smoothed_per_million": 54.429,
- "total_deaths_per_million": 287.524,
- "new_deaths_per_million": 0.675,
- "new_deaths_smoothed_per_million": 1.639
- },
- {
- "date": "2020-08-25",
- "total_cases": 42825.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 160.571,
- "total_deaths": 854.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 14452.115,
- "new_cases_per_million": 11.136,
- "new_cases_smoothed_per_million": 54.188,
- "total_deaths_per_million": 288.199,
- "new_deaths_per_million": 0.675,
- "new_deaths_smoothed_per_million": 1.446
- },
- {
- "date": "2020-08-26",
- "total_cases": 42936.0,
- "new_cases": 111.0,
- "new_cases_smoothed": 155.714,
- "total_deaths": 858.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 14489.575,
- "new_cases_per_million": 37.459,
- "new_cases_smoothed_per_million": 52.549,
- "total_deaths_per_million": 289.549,
- "new_deaths_per_million": 1.35,
- "new_deaths_smoothed_per_million": 1.253
- },
- {
- "date": "2020-08-27",
- "total_cases": 43067.0,
- "new_cases": 131.0,
- "new_cases_smoothed": 144.429,
- "total_deaths": 861.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 14533.783,
- "new_cases_per_million": 44.208,
- "new_cases_smoothed_per_million": 48.74,
- "total_deaths_per_million": 290.561,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 1.35
- },
- {
- "date": "2020-08-28",
- "total_cases": 43270.0,
- "new_cases": 203.0,
- "new_cases_smoothed": 135.857,
- "total_deaths": 864.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 14602.289,
- "new_cases_per_million": 68.506,
- "new_cases_smoothed_per_million": 45.848,
- "total_deaths_per_million": 291.573,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 1.35
- },
- {
- "date": "2020-08-29",
- "total_cases": 43451.0,
- "new_cases": 181.0,
- "new_cases_smoothed": 139.143,
- "total_deaths": 869.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 14663.371,
- "new_cases_per_million": 61.082,
- "new_cases_smoothed_per_million": 46.956,
- "total_deaths_per_million": 293.261,
- "new_deaths_per_million": 1.687,
- "new_deaths_smoothed_per_million": 1.302
- },
- {
- "date": "2020-08-30",
- "total_cases": 43626.0,
- "new_cases": 175.0,
- "new_cases_smoothed": 144.286,
- "total_deaths": 872.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 14722.428,
- "new_cases_per_million": 59.057,
- "new_cases_smoothed_per_million": 48.692,
- "total_deaths_per_million": 294.273,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 1.061
- },
- {
- "date": "2020-08-31",
- "total_cases": 43750.0,
- "new_cases": 124.0,
- "new_cases_smoothed": 136.857,
- "total_deaths": 877.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 14764.274,
- "new_cases_per_million": 41.846,
- "new_cases_smoothed_per_million": 46.185,
- "total_deaths_per_million": 295.96,
- "new_deaths_per_million": 1.687,
- "new_deaths_smoothed_per_million": 1.205
- },
- {
- "date": "2020-09-01",
- "total_cases": 43781.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 136.571,
- "total_deaths": 879.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 14774.736,
- "new_cases_per_million": 10.462,
- "new_cases_smoothed_per_million": 46.089,
- "total_deaths_per_million": 296.635,
- "new_deaths_per_million": 0.675,
- "new_deaths_smoothed_per_million": 1.205
- },
- {
- "date": "2020-09-02",
- "total_cases": 43878.0,
- "new_cases": 97.0,
- "new_cases_smoothed": 134.571,
- "total_deaths": 881.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 14807.47,
- "new_cases_per_million": 32.735,
- "new_cases_smoothed_per_million": 45.414,
- "total_deaths_per_million": 297.31,
- "new_deaths_per_million": 0.675,
- "new_deaths_smoothed_per_million": 1.109
- },
- {
- "date": "2020-09-03",
- "total_cases": 44075.0,
- "new_cases": 197.0,
- "new_cases_smoothed": 144.0,
- "total_deaths": 884.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 14873.952,
- "new_cases_per_million": 66.481,
- "new_cases_smoothed_per_million": 48.596,
- "total_deaths_per_million": 298.323,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 1.109
- },
- {
- "date": "2020-09-04",
- "total_cases": 44271.0,
- "new_cases": 196.0,
- "new_cases_smoothed": 143.0,
- "total_deaths": 887.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 14940.096,
- "new_cases_per_million": 66.144,
- "new_cases_smoothed_per_million": 48.258,
- "total_deaths_per_million": 299.335,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 1.109
- },
- {
- "date": "2020-09-05",
- "total_cases": 44461.0,
- "new_cases": 190.0,
- "new_cases_smoothed": 144.286,
- "total_deaths": 891.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 15004.215,
- "new_cases_per_million": 64.119,
- "new_cases_smoothed_per_million": 48.692,
- "total_deaths_per_million": 300.685,
- "new_deaths_per_million": 1.35,
- "new_deaths_smoothed_per_million": 1.061
- },
- {
- "date": "2020-09-06",
- "total_cases": 44649.0,
- "new_cases": 188.0,
- "new_cases_smoothed": 146.143,
- "total_deaths": 895.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 15067.659,
- "new_cases_per_million": 63.444,
- "new_cases_smoothed_per_million": 49.319,
- "total_deaths_per_million": 302.035,
- "new_deaths_per_million": 1.35,
- "new_deaths_smoothed_per_million": 1.109
- },
- {
- "date": "2020-09-07",
- "total_cases": 44783.0,
- "new_cases": 134.0,
- "new_cases_smoothed": 147.571,
- "total_deaths": 897.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 15112.88,
- "new_cases_per_million": 45.221,
- "new_cases_smoothed_per_million": 49.801,
- "total_deaths_per_million": 302.71,
- "new_deaths_per_million": 0.675,
- "new_deaths_smoothed_per_million": 0.964
- },
- {
- "date": "2020-09-08",
- "total_cases": 44845.0,
- "new_cases": 62.0,
- "new_cases_smoothed": 152.0,
- "total_deaths": 900.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 15133.803,
- "new_cases_per_million": 20.923,
- "new_cases_smoothed_per_million": 51.295,
- "total_deaths_per_million": 303.722,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 1.012
- },
- {
- "date": "2020-09-09",
- "total_cases": 44953.0,
- "new_cases": 108.0,
- "new_cases_smoothed": 153.571,
- "total_deaths": 903.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 15170.25,
- "new_cases_per_million": 36.447,
- "new_cases_smoothed_per_million": 51.826,
- "total_deaths_per_million": 304.735,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 1.061
- },
- {
- "date": "2020-09-10",
- "total_cases": 45152.0,
- "new_cases": 199.0,
- "new_cases_smoothed": 153.857,
- "total_deaths": 905.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 15237.406,
- "new_cases_per_million": 67.156,
- "new_cases_smoothed_per_million": 51.922,
- "total_deaths_per_million": 305.41,
- "new_deaths_per_million": 0.675,
- "new_deaths_smoothed_per_million": 1.012
- },
- {
- "date": "2020-09-11",
- "total_cases": 45326.0,
- "new_cases": 174.0,
- "new_cases_smoothed": 150.714,
- "total_deaths": 906.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 15296.126,
- "new_cases_per_million": 58.72,
- "new_cases_smoothed_per_million": 50.861,
- "total_deaths_per_million": 305.747,
- "new_deaths_per_million": 0.337,
- "new_deaths_smoothed_per_million": 0.916
- },
- {
- "date": "2020-09-12",
- "total_cases": 45503.0,
- "new_cases": 177.0,
- "new_cases_smoothed": 148.857,
- "total_deaths": 909.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 15355.858,
- "new_cases_per_million": 59.732,
- "new_cases_smoothed_per_million": 50.235,
- "total_deaths_per_million": 306.759,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 0.868
- },
- {
- "date": "2020-09-13",
- "total_cases": 45675.0,
- "new_cases": 172.0,
- "new_cases_smoothed": 146.571,
- "total_deaths": 911.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 15413.903,
- "new_cases_per_million": 58.045,
- "new_cases_smoothed_per_million": 49.463,
- "total_deaths_per_million": 307.434,
- "new_deaths_per_million": 0.675,
- "new_deaths_smoothed_per_million": 0.771
- },
- {
- "date": "2020-09-14",
- "total_cases": 45862.0,
- "new_cases": 187.0,
- "new_cases_smoothed": 154.143,
- "total_deaths": 916.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 15477.009,
- "new_cases_per_million": 63.107,
- "new_cases_smoothed_per_million": 52.018,
- "total_deaths_per_million": 309.122,
- "new_deaths_per_million": 1.687,
- "new_deaths_smoothed_per_million": 0.916
- },
- {
- "date": "2020-09-15",
- "total_cases": 45969.0,
- "new_cases": 107.0,
- "new_cases_smoothed": 160.571,
- "total_deaths": 919.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 15513.118,
- "new_cases_per_million": 36.109,
- "new_cases_smoothed_per_million": 54.188,
- "total_deaths_per_million": 310.134,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 0.916
- },
- {
- "date": "2020-09-16",
- "total_cases": 46119.0,
- "new_cases": 150.0,
- "new_cases_smoothed": 166.571,
- "total_deaths": 920.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 15563.739,
- "new_cases_per_million": 50.62,
- "new_cases_smoothed_per_million": 56.213,
- "total_deaths_per_million": 310.472,
- "new_deaths_per_million": 0.337,
- "new_deaths_smoothed_per_million": 0.82
- },
- {
- "date": "2020-09-17",
- "total_cases": 46376.0,
- "new_cases": 257.0,
- "new_cases_smoothed": 174.857,
- "total_deaths": 923.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 15650.468,
- "new_cases_per_million": 86.73,
- "new_cases_smoothed_per_million": 59.009,
- "total_deaths_per_million": 311.484,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 0.868
- },
- {
- "date": "2020-09-18",
- "total_cases": 46671.0,
- "new_cases": 295.0,
- "new_cases_smoothed": 192.143,
- "total_deaths": 925.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 15750.022,
- "new_cases_per_million": 99.553,
- "new_cases_smoothed_per_million": 64.842,
- "total_deaths_per_million": 312.159,
- "new_deaths_per_million": 0.675,
- "new_deaths_smoothed_per_million": 0.916
- },
- {
- "date": "2020-09-19",
- "total_cases": 46910.0,
- "new_cases": 239.0,
- "new_cases_smoothed": 201.0,
- "total_deaths": 926.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 15830.677,
- "new_cases_per_million": 80.655,
- "new_cases_smoothed_per_million": 67.831,
- "total_deaths_per_million": 312.496,
- "new_deaths_per_million": 0.337,
- "new_deaths_smoothed_per_million": 0.82
- },
- {
- "date": "2020-09-20",
- "total_cases": 47154.0,
- "new_cases": 244.0,
- "new_cases_smoothed": 211.286,
- "total_deaths": 928.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 15913.019,
- "new_cases_per_million": 82.342,
- "new_cases_smoothed_per_million": 71.302,
- "total_deaths_per_million": 313.171,
- "new_deaths_per_million": 0.675,
- "new_deaths_smoothed_per_million": 0.82
- },
- {
- "date": "2020-09-21",
- "total_cases": 47431.0,
- "new_cases": 277.0,
- "new_cases_smoothed": 224.143,
- "total_deaths": 930.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 16006.498,
- "new_cases_per_million": 93.479,
- "new_cases_smoothed_per_million": 75.641,
- "total_deaths_per_million": 313.846,
- "new_deaths_per_million": 0.675,
- "new_deaths_smoothed_per_million": 0.675
- },
- {
- "date": "2020-09-22",
- "total_cases": 47552.0,
- "new_cases": 121.0,
- "new_cases_smoothed": 226.143,
- "total_deaths": 936.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 16047.332,
- "new_cases_per_million": 40.834,
- "new_cases_smoothed_per_million": 76.316,
- "total_deaths_per_million": 315.871,
- "new_deaths_per_million": 2.025,
- "new_deaths_smoothed_per_million": 0.82
- },
- {
- "date": "2020-09-23",
- "total_cases": 47667.0,
- "new_cases": 115.0,
- "new_cases_smoothed": 221.143,
- "total_deaths": 938.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 16086.141,
- "new_cases_per_million": 38.809,
- "new_cases_smoothed_per_million": 74.629,
- "total_deaths_per_million": 316.546,
- "new_deaths_per_million": 0.675,
- "new_deaths_smoothed_per_million": 0.868
- },
- {
- "date": "2020-09-24",
- "total_cases": 47877.0,
- "new_cases": 210.0,
- "new_cases_smoothed": 214.429,
- "total_deaths": 942.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 16157.01,
- "new_cases_per_million": 70.869,
- "new_cases_smoothed_per_million": 72.363,
- "total_deaths_per_million": 317.896,
- "new_deaths_per_million": 1.35,
- "new_deaths_smoothed_per_million": 0.916
- },
- {
- "date": "2020-09-25",
- "total_cases": 48251.0,
- "new_cases": 374.0,
- "new_cases_smoothed": 225.714,
- "total_deaths": 945.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 16283.223,
- "new_cases_per_million": 126.213,
- "new_cases_smoothed_per_million": 76.172,
- "total_deaths_per_million": 318.908,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 0.964
- }
- ]
- },
- "ATG": {
- "continent": "North America",
- "location": "Antigua and Barbuda",
- "population": 97928.0,
- "population_density": 231.845,
- "median_age": 32.1,
- "aged_65_older": 6.933,
- "aged_70_older": 4.631,
- "gdp_per_capita": 21490.943,
- "cardiovasc_death_rate": 191.511,
- "diabetes_prevalence": 13.17,
- "hospital_beds_per_thousand": 3.8,
- "life_expectancy": 77.02,
- "human_development_index": 0.78,
- "data": [
- {
- "date": "2020-03-15",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 10.212,
- "new_cases_per_million": 10.212,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-03-21",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.212,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-22",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.212,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-23",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.212,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-24",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.212,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-25",
- "total_cases": 3.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 30.635,
- "new_cases_per_million": 20.423,
- "new_cases_smoothed_per_million": 2.918,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-26",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 30.635,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.918,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-27",
- "total_cases": 7.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 71.481,
- "new_cases_per_million": 40.846,
- "new_cases_smoothed_per_million": 8.753,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-28",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 71.481,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.753,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-29",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 71.481,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.753,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-30",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 71.481,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.753,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-31",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 71.481,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.753,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-01",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 71.481,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.835,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-02",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 71.481,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.835,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-03",
- "total_cases": 9.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 91.904,
- "new_cases_per_million": 20.423,
- "new_cases_smoothed_per_million": 2.918,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-04",
- "total_cases": 15.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 153.174,
- "new_cases_per_million": 61.27,
- "new_cases_smoothed_per_million": 11.67,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-05",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 153.174,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 11.67,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-06",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 153.174,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 11.67,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-07",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 153.174,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 11.67,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-08",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 153.174,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 11.67,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-09",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 153.174,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 11.67,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-10",
- "total_cases": 19.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 2.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 194.02,
- "new_cases_per_million": 40.846,
- "new_cases_smoothed_per_million": 14.588,
- "total_deaths_per_million": 20.423,
- "new_deaths_per_million": 20.423,
- "new_deaths_smoothed_per_million": 2.918
- },
- {
- "date": "2020-04-11",
- "total_cases": 21.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 214.443,
- "new_cases_per_million": 20.423,
- "new_cases_smoothed_per_million": 8.753,
- "total_deaths_per_million": 20.423,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.918
- },
- {
- "date": "2020-04-12",
- "total_cases": 21.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 214.443,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.753,
- "total_deaths_per_million": 20.423,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.918
- },
- {
- "date": "2020-04-13",
- "total_cases": 21.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 214.443,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.753,
- "total_deaths_per_million": 20.423,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.918
- },
- {
- "date": "2020-04-14",
- "total_cases": 23.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 234.866,
- "new_cases_per_million": 20.423,
- "new_cases_smoothed_per_million": 11.67,
- "total_deaths_per_million": 20.423,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.918
- },
- {
- "date": "2020-04-15",
- "total_cases": 23.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 234.866,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 11.67,
- "total_deaths_per_million": 20.423,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.918
- },
- {
- "date": "2020-04-16",
- "total_cases": 23.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 234.866,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 11.67,
- "total_deaths_per_million": 20.423,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.918
- },
- {
- "date": "2020-04-17",
- "total_cases": 23.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 234.866,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.835,
- "total_deaths_per_million": 20.423,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-18",
- "total_cases": 23.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 234.866,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.918,
- "total_deaths_per_million": 20.423,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-19",
- "total_cases": 23.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 234.866,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.918,
- "total_deaths_per_million": 20.423,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-20",
- "total_cases": 23.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 234.866,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.918,
- "total_deaths_per_million": 20.423,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-21",
- "total_cases": 23.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 234.866,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 10.212,
- "new_deaths_smoothed_per_million": 1.459
- },
- {
- "date": "2020-04-22",
- "total_cases": 24.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 245.078,
- "new_cases_per_million": 10.212,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.459
- },
- {
- "date": "2020-04-23",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 245.078,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.459
- },
- {
- "date": "2020-04-24",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 245.078,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.459
- },
- {
- "date": "2020-04-25",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 245.078,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.459
- },
- {
- "date": "2020-04-26",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 245.078,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.459
- },
- {
- "date": "2020-04-27",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 245.078,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.459
- },
- {
- "date": "2020-04-28",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 245.078,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-29",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 245.078,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-30",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 245.078,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-01",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 245.078,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-02",
- "total_cases": 25.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 10.212,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-03",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-04",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-05",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-06",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-07",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-08",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-09",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-10",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-11",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-12",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-13",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-14",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-15",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-16",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-17",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-18",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-19",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-20",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-21",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-22",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-23",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-24",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-25",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-26",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-27",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-28",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-29",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-30",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-31",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-01",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-02",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-03",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 255.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-04",
- "total_cases": 26.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 265.501,
- "new_cases_per_million": 10.212,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-05",
- "total_cases": 26.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 265.501,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-06",
- "total_cases": 26.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 265.501,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-07",
- "total_cases": 26.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 265.501,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-08",
- "total_cases": 26.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 265.501,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-09",
- "total_cases": 26.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 265.501,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-10",
- "total_cases": 26.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 265.501,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-11",
- "total_cases": 26.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 265.501,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-12",
- "total_cases": 26.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 265.501,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-13",
- "total_cases": 26.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 265.501,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-14",
- "total_cases": 26.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 265.501,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-15",
- "total_cases": 26.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 265.501,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-16",
- "total_cases": 26.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 265.501,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-17",
- "total_cases": 26.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 265.501,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-18",
- "total_cases": 26.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 265.501,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-19",
- "total_cases": 26.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 265.501,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-20",
- "total_cases": 26.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 265.501,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-21",
- "total_cases": 26.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 265.501,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-22",
- "total_cases": 26.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 265.501,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-23",
- "total_cases": 26.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 265.501,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-24",
- "total_cases": 26.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 265.501,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-25",
- "total_cases": 65.0,
- "new_cases": 39.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 663.753,
- "new_cases_per_million": 398.252,
- "new_cases_smoothed_per_million": 56.893,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-26",
- "total_cases": 65.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 663.753,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 56.893,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-27",
- "total_cases": 65.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 663.753,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 56.893,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-28",
- "total_cases": 65.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 663.753,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 56.893,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-29",
- "total_cases": 65.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 663.753,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 56.893,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-30",
- "total_cases": 66.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 5.714,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 673.965,
- "new_cases_per_million": 10.212,
- "new_cases_smoothed_per_million": 58.352,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-01",
- "total_cases": 66.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.714,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 673.965,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 58.352,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-02",
- "total_cases": 66.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 673.965,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-03",
- "total_cases": 68.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 694.388,
- "new_cases_per_million": 20.423,
- "new_cases_smoothed_per_million": 4.376,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-04",
- "total_cases": 68.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 694.388,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.376,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-05",
- "total_cases": 68.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 694.388,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.376,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-06",
- "total_cases": 68.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 694.388,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.376,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-07",
- "total_cases": 70.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 714.811,
- "new_cases_per_million": 20.423,
- "new_cases_smoothed_per_million": 5.835,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-08",
- "total_cases": 70.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 714.811,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.835,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-09",
- "total_cases": 73.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 745.446,
- "new_cases_per_million": 30.635,
- "new_cases_smoothed_per_million": 10.212,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-10",
- "total_cases": 73.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 745.446,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.294,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-11",
- "total_cases": 74.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 755.657,
- "new_cases_per_million": 10.212,
- "new_cases_smoothed_per_million": 8.753,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-12",
- "total_cases": 74.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 755.657,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.753,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-13",
- "total_cases": 74.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 755.657,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.753,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-14",
- "total_cases": 74.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 755.657,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.835,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-15",
- "total_cases": 74.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 755.657,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.835,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-16",
- "total_cases": 74.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 755.657,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-17",
- "total_cases": 74.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 755.657,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-18",
- "total_cases": 76.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 776.08,
- "new_cases_per_million": 20.423,
- "new_cases_smoothed_per_million": 2.918,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-19",
- "total_cases": 76.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 776.08,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.918,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-20",
- "total_cases": 76.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 776.08,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.918,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-21",
- "total_cases": 76.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 776.08,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.918,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-22",
- "total_cases": 76.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 776.08,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.918,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-23",
- "total_cases": 76.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 776.08,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.918,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-24",
- "total_cases": 76.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 776.08,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.918,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-25",
- "total_cases": 82.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 837.35,
- "new_cases_per_million": 61.27,
- "new_cases_smoothed_per_million": 8.753,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-26",
- "total_cases": 82.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 837.35,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.753,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-27",
- "total_cases": 82.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 837.35,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.753,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-28",
- "total_cases": 86.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 878.196,
- "new_cases_per_million": 40.846,
- "new_cases_smoothed_per_million": 14.588,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-29",
- "total_cases": 86.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 878.196,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 14.588,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-30",
- "total_cases": 91.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 929.254,
- "new_cases_per_million": 51.058,
- "new_cases_smoothed_per_million": 21.882,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-31",
- "total_cases": 91.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 929.254,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 21.882,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-01",
- "total_cases": 91.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 929.254,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 13.129,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-02",
- "total_cases": 91.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 929.254,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 13.129,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-03",
- "total_cases": 91.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 929.254,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 13.129,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-04",
- "total_cases": 92.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 939.466,
- "new_cases_per_million": 10.212,
- "new_cases_smoothed_per_million": 8.753,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-05",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 939.466,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.753,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-06",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 939.466,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-07",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 939.466,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-08",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 939.466,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-09",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 939.466,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-10",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 939.466,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-11",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 939.466,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-12",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 939.466,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-13",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 939.466,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-14",
- "total_cases": 93.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 949.677,
- "new_cases_per_million": 10.212,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-15",
- "total_cases": 93.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 949.677,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-16",
- "total_cases": 93.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 949.677,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-17",
- "total_cases": 93.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 949.677,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-18",
- "total_cases": 93.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 949.677,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-19",
- "total_cases": 93.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 949.677,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-20",
- "total_cases": 94.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 959.889,
- "new_cases_per_million": 10.212,
- "new_cases_smoothed_per_million": 2.918,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-21",
- "total_cases": 94.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 959.889,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-22",
- "total_cases": 94.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 959.889,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-23",
- "total_cases": 94.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 959.889,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-24",
- "total_cases": 94.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 959.889,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-25",
- "total_cases": 94.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 959.889,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-26",
- "total_cases": 94.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 959.889,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-27",
- "total_cases": 94.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 959.889,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-28",
- "total_cases": 94.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 959.889,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-29",
- "total_cases": 94.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 959.889,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-30",
- "total_cases": 94.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 959.889,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-31",
- "total_cases": 94.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 959.889,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-01",
- "total_cases": 94.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 959.889,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-02",
- "total_cases": 94.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 959.889,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-03",
- "total_cases": 94.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 959.889,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-04",
- "total_cases": 95.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 970.1,
- "new_cases_per_million": 10.212,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-05",
- "total_cases": 95.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 970.1,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-06",
- "total_cases": 95.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 970.1,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-07",
- "total_cases": 95.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 970.1,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-08",
- "total_cases": 95.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 970.1,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-09",
- "total_cases": 95.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 970.1,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-10",
- "total_cases": 95.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 970.1,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-11",
- "total_cases": 95.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 970.1,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-12",
- "total_cases": 95.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 970.1,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-13",
- "total_cases": 95.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 970.1,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-14",
- "total_cases": 95.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 970.1,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-15",
- "total_cases": 95.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 970.1,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-16",
- "total_cases": 95.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 970.1,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-17",
- "total_cases": 95.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 970.1,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-18",
- "total_cases": 95.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 970.1,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-19",
- "total_cases": 95.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 970.1,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-20",
- "total_cases": 96.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 980.312,
- "new_cases_per_million": 10.212,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-21",
- "total_cases": 96.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 980.312,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-22",
- "total_cases": 96.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 980.312,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-23",
- "total_cases": 96.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 980.312,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.459,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-24",
- "total_cases": 97.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 990.524,
- "new_cases_per_million": 10.212,
- "new_cases_smoothed_per_million": 2.918,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-25",
- "total_cases": 98.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1000.735,
- "new_cases_per_million": 10.212,
- "new_cases_smoothed_per_million": 4.376,
- "total_deaths_per_million": 30.635,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- }
- ]
- },
- "AUS": {
- "continent": "Oceania",
- "location": "Australia",
- "population": 25499881.0,
- "population_density": 3.202,
- "median_age": 37.9,
- "aged_65_older": 15.504,
- "aged_70_older": 10.129,
- "gdp_per_capita": 44648.71,
- "extreme_poverty": 0.5,
- "cardiovasc_death_rate": 107.791,
- "diabetes_prevalence": 5.07,
- "female_smokers": 13.0,
- "male_smokers": 16.5,
- "hospital_beds_per_thousand": 3.84,
- "life_expectancy": 83.44,
- "human_development_index": 0.939,
- "data": [
- {
- "date": "2019-12-31",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-01-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-02",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-03",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-04",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-05",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-06",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-07",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-08",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-09",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-10",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-11",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-12",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-13",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-14",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-15",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-16",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-17",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-18",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-19",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-20",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-21",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-22",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-23",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-24",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-25",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.039,
- "new_cases_per_million": 0.039,
- "new_cases_smoothed_per_million": 0.006,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-01-26",
- "total_cases": 4.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.157,
- "new_cases_per_million": 0.118,
- "new_cases_smoothed_per_million": 0.022,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-01-27",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.157,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.022,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-01-28",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.157,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.022,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-01-29",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.157,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.022,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-01-30",
- "total_cases": 6.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.235,
- "new_cases_per_million": 0.078,
- "new_cases_smoothed_per_million": 0.034,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-01-31",
- "total_cases": 7.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.275,
- "new_cases_per_million": 0.039,
- "new_cases_smoothed_per_million": 0.039,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-01",
- "total_cases": 9.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.353,
- "new_cases_per_million": 0.078,
- "new_cases_smoothed_per_million": 0.045,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-02",
- "total_cases": 11.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.431,
- "new_cases_per_million": 0.078,
- "new_cases_smoothed_per_million": 0.039,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-03",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.431,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.039,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-04",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.431,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.039,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-05",
- "total_cases": 12.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.471,
- "new_cases_per_million": 0.039,
- "new_cases_smoothed_per_million": 0.045,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-06",
- "total_cases": 13.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.51,
- "new_cases_per_million": 0.039,
- "new_cases_smoothed_per_million": 0.039,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-07",
- "total_cases": 14.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.549,
- "new_cases_per_million": 0.039,
- "new_cases_smoothed_per_million": 0.039,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-08",
- "total_cases": 14.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.549,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.028,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-09",
- "total_cases": 14.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.549,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.017,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-10",
- "total_cases": 14.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.549,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.017,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-11",
- "total_cases": 14.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.549,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.017,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-12",
- "total_cases": 14.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.549,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.011,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-13",
- "total_cases": 14.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.549,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.006,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-14",
- "total_cases": 15.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.588,
- "new_cases_per_million": 0.039,
- "new_cases_smoothed_per_million": 0.006,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-15",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.588,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.006,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-16",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.588,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.006,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-17",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.588,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.006,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-18",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.588,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.006,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-19",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.588,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.006,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-20",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.588,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.006,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-21",
- "total_cases": 17.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.667,
- "new_cases_per_million": 0.078,
- "new_cases_smoothed_per_million": 0.011,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-22",
- "total_cases": 21.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.824,
- "new_cases_per_million": 0.157,
- "new_cases_smoothed_per_million": 0.034,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-23",
- "total_cases": 22.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.863,
- "new_cases_per_million": 0.039,
- "new_cases_smoothed_per_million": 0.039,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-24",
- "total_cases": 22.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.863,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.039,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-25",
- "total_cases": 22.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.863,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.039,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-26",
- "total_cases": 22.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.863,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.039,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-27",
- "total_cases": 23.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.902,
- "new_cases_per_million": 0.039,
- "new_cases_smoothed_per_million": 0.045,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-28",
- "total_cases": 23.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.902,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.034,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-29",
- "total_cases": 25.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.98,
- "new_cases_per_million": 0.078,
- "new_cases_smoothed_per_million": 0.022,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-01",
- "total_cases": 26.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1.02,
- "new_cases_per_million": 0.039,
- "new_cases_smoothed_per_million": 0.022,
- "total_deaths_per_million": 0.039,
- "new_deaths_per_million": 0.039,
- "new_deaths_smoothed_per_million": 0.006,
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-02",
- "total_cases": 29.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1.137,
- "new_cases_per_million": 0.118,
- "new_cases_smoothed_per_million": 0.039,
- "total_deaths_per_million": 0.039,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.006,
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-03",
- "total_cases": 33.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1.294,
- "new_cases_per_million": 0.157,
- "new_cases_smoothed_per_million": 0.062,
- "total_deaths_per_million": 0.039,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.006,
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-04",
- "total_cases": 41.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1.608,
- "new_cases_per_million": 0.314,
- "new_cases_smoothed_per_million": 0.106,
- "total_deaths_per_million": 0.039,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.006,
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-05",
- "total_cases": 52.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 2.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2.039,
- "new_cases_per_million": 0.431,
- "new_cases_smoothed_per_million": 0.162,
- "total_deaths_per_million": 0.078,
- "new_deaths_per_million": 0.039,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-06",
- "total_cases": 59.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2.314,
- "new_cases_per_million": 0.275,
- "new_cases_smoothed_per_million": 0.202,
- "total_deaths_per_million": 0.078,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-07",
- "total_cases": 63.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2.471,
- "new_cases_per_million": 0.157,
- "new_cases_smoothed_per_million": 0.213,
- "total_deaths_per_million": 0.078,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-08",
- "total_cases": 74.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 6.857,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2.902,
- "new_cases_per_million": 0.431,
- "new_cases_smoothed_per_million": 0.269,
- "total_deaths_per_million": 0.118,
- "new_deaths_per_million": 0.039,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-09",
- "total_cases": 80.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 7.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3.137,
- "new_cases_per_million": 0.235,
- "new_cases_smoothed_per_million": 0.286,
- "total_deaths_per_million": 0.118,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-10",
- "total_cases": 100.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 9.571,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3.922,
- "new_cases_per_million": 0.784,
- "new_cases_smoothed_per_million": 0.375,
- "total_deaths_per_million": 0.118,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-11",
- "total_cases": 112.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 10.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 4.392,
- "new_cases_per_million": 0.471,
- "new_cases_smoothed_per_million": 0.398,
- "total_deaths_per_million": 0.118,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-12",
- "total_cases": 126.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 10.571,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 4.941,
- "new_cases_per_million": 0.549,
- "new_cases_smoothed_per_million": 0.415,
- "total_deaths_per_million": 0.118,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.006,
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-13",
- "total_cases": 156.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 13.857,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 6.118,
- "new_cases_per_million": 1.176,
- "new_cases_smoothed_per_million": 0.543,
- "total_deaths_per_million": 0.118,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.006,
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-14",
- "total_cases": 197.0,
- "new_cases": 41.0,
- "new_cases_smoothed": 19.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 7.726,
- "new_cases_per_million": 1.608,
- "new_cases_smoothed_per_million": 0.751,
- "total_deaths_per_million": 0.118,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.006,
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-15",
- "total_cases": 249.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 25.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.765,
- "new_cases_per_million": 2.039,
- "new_cases_smoothed_per_million": 0.98,
- "total_deaths_per_million": 0.118,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-16",
- "total_cases": 298.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 31.143,
- "total_deaths": 5.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 11.686,
- "new_cases_per_million": 1.922,
- "new_cases_smoothed_per_million": 1.221,
- "total_deaths_per_million": 0.196,
- "new_deaths_per_million": 0.078,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-17",
- "total_cases": 375.0,
- "new_cases": 77.0,
- "new_cases_smoothed": 39.286,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 14.706,
- "new_cases_per_million": 3.02,
- "new_cases_smoothed_per_million": 1.541,
- "total_deaths_per_million": 0.196,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-18",
- "total_cases": 454.0,
- "new_cases": 79.0,
- "new_cases_smoothed": 48.857,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 17.804,
- "new_cases_per_million": 3.098,
- "new_cases_smoothed_per_million": 1.916,
- "total_deaths_per_million": 0.196,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 36.11
- },
- {
- "date": "2020-03-19",
- "total_cases": 565.0,
- "new_cases": 111.0,
- "new_cases_smoothed": 62.714,
- "total_deaths": 6.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 22.157,
- "new_cases_per_million": 4.353,
- "new_cases_smoothed_per_million": 2.459,
- "total_deaths_per_million": 0.235,
- "new_deaths_per_million": 0.039,
- "new_deaths_smoothed_per_million": 0.017,
- "stringency_index": 44.44
- },
- {
- "date": "2020-03-20",
- "total_cases": 709.0,
- "new_cases": 144.0,
- "new_cases_smoothed": 79.0,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 27.804,
- "new_cases_per_million": 5.647,
- "new_cases_smoothed_per_million": 3.098,
- "total_deaths_per_million": 0.235,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.017,
- "stringency_index": 47.22
- },
- {
- "date": "2020-03-21",
- "total_cases": 874.0,
- "new_cases": 165.0,
- "new_cases_smoothed": 96.714,
- "total_deaths": 7.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 34.275,
- "new_cases_per_million": 6.471,
- "new_cases_smoothed_per_million": 3.793,
- "total_deaths_per_million": 0.275,
- "new_deaths_per_million": 0.039,
- "new_deaths_smoothed_per_million": 0.022,
- "stringency_index": 47.22
- },
- {
- "date": "2020-03-22",
- "total_cases": 1098.0,
- "new_cases": 224.0,
- "new_cases_smoothed": 121.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 43.059,
- "new_cases_per_million": 8.784,
- "new_cases_smoothed_per_million": 4.756,
- "total_deaths_per_million": 0.275,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.022,
- "total_tests": 143056.0,
- "total_tests_per_thousand": 5.61,
- "tests_units": "tests performed",
- "stringency_index": 47.22
- },
- {
- "date": "2020-03-23",
- "total_cases": 1709.0,
- "new_cases": 611.0,
- "new_cases_smoothed": 201.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 67.02,
- "new_cases_per_million": 23.961,
- "new_cases_smoothed_per_million": 7.905,
- "total_deaths_per_million": 0.275,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "tests_units": "tests performed",
- "stringency_index": 52.78
- },
- {
- "date": "2020-03-24",
- "total_cases": 1823.0,
- "new_cases": 114.0,
- "new_cases_smoothed": 206.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 71.491,
- "new_cases_per_million": 4.471,
- "new_cases_smoothed_per_million": 8.112,
- "total_deaths_per_million": 0.275,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "tests_units": "tests performed",
- "stringency_index": 68.52
- },
- {
- "date": "2020-03-25",
- "total_cases": 2423.0,
- "new_cases": 600.0,
- "new_cases_smoothed": 281.286,
- "total_deaths": 8.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 95.02,
- "new_cases_per_million": 23.53,
- "new_cases_smoothed_per_million": 11.031,
- "total_deaths_per_million": 0.314,
- "new_deaths_per_million": 0.039,
- "new_deaths_smoothed_per_million": 0.017,
- "tests_units": "tests performed",
- "stringency_index": 68.52
- },
- {
- "date": "2020-03-26",
- "total_cases": 2799.0,
- "new_cases": 376.0,
- "new_cases_smoothed": 319.143,
- "total_deaths": 11.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 109.765,
- "new_cases_per_million": 14.745,
- "new_cases_smoothed_per_million": 12.515,
- "total_deaths_per_million": 0.431,
- "new_deaths_per_million": 0.118,
- "new_deaths_smoothed_per_million": 0.028,
- "tests_units": "tests performed",
- "stringency_index": 68.52
- },
- {
- "date": "2020-03-27",
- "total_cases": 3166.0,
- "new_cases": 367.0,
- "new_cases_smoothed": 351.0,
- "total_deaths": 13.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 124.157,
- "new_cases_per_million": 14.392,
- "new_cases_smoothed_per_million": 13.765,
- "total_deaths_per_million": 0.51,
- "new_deaths_per_million": 0.078,
- "new_deaths_smoothed_per_million": 0.039,
- "tests_units": "tests performed",
- "stringency_index": 68.52
- },
- {
- "date": "2020-03-28",
- "total_cases": 3378.0,
- "new_cases": 212.0,
- "new_cases_smoothed": 357.714,
- "total_deaths": 13.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 132.471,
- "new_cases_per_million": 8.314,
- "new_cases_smoothed_per_million": 14.028,
- "total_deaths_per_million": 0.51,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.034,
- "tests_units": "tests performed",
- "stringency_index": 68.52
- },
- {
- "date": "2020-03-29",
- "total_cases": 3809.0,
- "new_cases": 431.0,
- "new_cases_smoothed": 387.286,
- "total_deaths": 14.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 149.373,
- "new_cases_per_million": 16.902,
- "new_cases_smoothed_per_million": 15.188,
- "total_deaths_per_million": 0.549,
- "new_deaths_per_million": 0.039,
- "new_deaths_smoothed_per_million": 0.039,
- "total_tests": 211261.0,
- "total_tests_per_thousand": 8.285,
- "new_tests_smoothed": 9744.0,
- "new_tests_smoothed_per_thousand": 0.382,
- "tests_per_case": 25.16,
- "positive_rate": 0.04,
- "tests_units": "tests performed",
- "stringency_index": 71.3
- },
- {
- "date": "2020-03-30",
- "total_cases": 4093.0,
- "new_cases": 284.0,
- "new_cases_smoothed": 340.571,
- "total_deaths": 16.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 160.511,
- "new_cases_per_million": 11.137,
- "new_cases_smoothed_per_million": 13.356,
- "total_deaths_per_million": 0.627,
- "new_deaths_per_million": 0.078,
- "new_deaths_smoothed_per_million": 0.05,
- "new_tests_smoothed": 10105.0,
- "new_tests_smoothed_per_thousand": 0.396,
- "tests_per_case": 29.671,
- "positive_rate": 0.034,
- "tests_units": "tests performed",
- "stringency_index": 71.3
- },
- {
- "date": "2020-03-31",
- "total_cases": 4557.0,
- "new_cases": 464.0,
- "new_cases_smoothed": 390.571,
- "total_deaths": 19.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 178.707,
- "new_cases_per_million": 18.196,
- "new_cases_smoothed_per_million": 15.317,
- "total_deaths_per_million": 0.745,
- "new_deaths_per_million": 0.118,
- "new_deaths_smoothed_per_million": 0.067,
- "new_tests_smoothed": 10466.0,
- "new_tests_smoothed_per_thousand": 0.41,
- "tests_per_case": 26.796999999999997,
- "positive_rate": 0.037000000000000005,
- "tests_units": "tests performed",
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-01",
- "total_cases": 4707.0,
- "new_cases": 150.0,
- "new_cases_smoothed": 326.286,
- "total_deaths": 20.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 184.589,
- "new_cases_per_million": 5.882,
- "new_cases_smoothed_per_million": 12.796,
- "total_deaths_per_million": 0.784,
- "new_deaths_per_million": 0.039,
- "new_deaths_smoothed_per_million": 0.067,
- "new_tests_smoothed": 10827.0,
- "new_tests_smoothed_per_thousand": 0.425,
- "tests_per_case": 33.183,
- "positive_rate": 0.03,
- "tests_units": "tests performed",
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-02",
- "total_cases": 4976.0,
- "new_cases": 269.0,
- "new_cases_smoothed": 311.0,
- "total_deaths": 21.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 195.138,
- "new_cases_per_million": 10.549,
- "new_cases_smoothed_per_million": 12.196,
- "total_deaths_per_million": 0.824,
- "new_deaths_per_million": 0.039,
- "new_deaths_smoothed_per_million": 0.056,
- "new_tests_smoothed": 11187.0,
- "new_tests_smoothed_per_thousand": 0.439,
- "tests_per_case": 35.971,
- "positive_rate": 0.027999999999999997,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-03",
- "total_cases": 5224.0,
- "new_cases": 248.0,
- "new_cases_smoothed": 294.0,
- "total_deaths": 23.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 204.864,
- "new_cases_per_million": 9.726,
- "new_cases_smoothed_per_million": 11.529,
- "total_deaths_per_million": 0.902,
- "new_deaths_per_million": 0.078,
- "new_deaths_smoothed_per_million": 0.056,
- "new_tests_smoothed": 11548.0,
- "new_tests_smoothed_per_thousand": 0.453,
- "tests_per_case": 39.279,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-04",
- "total_cases": 5548.0,
- "new_cases": 324.0,
- "new_cases_smoothed": 310.0,
- "total_deaths": 30.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 217.57,
- "new_cases_per_million": 12.706,
- "new_cases_smoothed_per_million": 12.157,
- "total_deaths_per_million": 1.176,
- "new_deaths_per_million": 0.275,
- "new_deaths_smoothed_per_million": 0.095,
- "new_tests_smoothed": 11909.0,
- "new_tests_smoothed_per_thousand": 0.467,
- "tests_per_case": 38.416,
- "positive_rate": 0.026000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-05",
- "total_cases": 5687.0,
- "new_cases": 139.0,
- "new_cases_smoothed": 268.286,
- "total_deaths": 34.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 223.021,
- "new_cases_per_million": 5.451,
- "new_cases_smoothed_per_million": 10.521,
- "total_deaths_per_million": 1.333,
- "new_deaths_per_million": 0.157,
- "new_deaths_smoothed_per_million": 0.112,
- "total_tests": 297154.0,
- "total_tests_per_thousand": 11.653,
- "new_tests_smoothed": 12270.0,
- "new_tests_smoothed_per_thousand": 0.481,
- "tests_per_case": 45.735,
- "positive_rate": 0.022000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-06",
- "total_cases": 5744.0,
- "new_cases": 57.0,
- "new_cases_smoothed": 235.857,
- "total_deaths": 36.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 225.256,
- "new_cases_per_million": 2.235,
- "new_cases_smoothed_per_million": 9.249,
- "total_deaths_per_million": 1.412,
- "new_deaths_per_million": 0.078,
- "new_deaths_smoothed_per_million": 0.112,
- "new_tests": 5509.0,
- "total_tests": 302663.0,
- "total_tests_per_thousand": 11.869,
- "new_tests_per_thousand": 0.216,
- "new_tests_smoothed": 11305.0,
- "new_tests_smoothed_per_thousand": 0.443,
- "tests_per_case": 47.931999999999995,
- "positive_rate": 0.021,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-07",
- "total_cases": 5844.0,
- "new_cases": 100.0,
- "new_cases_smoothed": 183.857,
- "total_deaths": 42.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 229.178,
- "new_cases_per_million": 3.922,
- "new_cases_smoothed_per_million": 7.21,
- "total_deaths_per_million": 1.647,
- "new_deaths_per_million": 0.235,
- "new_deaths_smoothed_per_million": 0.129,
- "new_tests": 8037.0,
- "total_tests": 310700.0,
- "total_tests_per_thousand": 12.184,
- "new_tests_per_thousand": 0.315,
- "new_tests_smoothed": 10700.0,
- "new_tests_smoothed_per_thousand": 0.42,
- "tests_per_case": 58.196999999999996,
- "positive_rate": 0.017,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-08",
- "total_cases": 5956.0,
- "new_cases": 112.0,
- "new_cases_smoothed": 178.429,
- "total_deaths": 45.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 233.57,
- "new_cases_per_million": 4.392,
- "new_cases_smoothed_per_million": 6.997,
- "total_deaths_per_million": 1.765,
- "new_deaths_per_million": 0.118,
- "new_deaths_smoothed_per_million": 0.14,
- "new_tests": 8668.0,
- "total_tests": 319368.0,
- "total_tests_per_thousand": 12.524,
- "new_tests_per_thousand": 0.34,
- "new_tests_smoothed": 10185.0,
- "new_tests_smoothed_per_thousand": 0.399,
- "tests_per_case": 57.082,
- "positive_rate": 0.018000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-09",
- "total_cases": 6052.0,
- "new_cases": 96.0,
- "new_cases_smoothed": 153.714,
- "total_deaths": 50.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 237.334,
- "new_cases_per_million": 3.765,
- "new_cases_smoothed_per_million": 6.028,
- "total_deaths_per_million": 1.961,
- "new_deaths_per_million": 0.196,
- "new_deaths_smoothed_per_million": 0.162,
- "new_tests": 10766.0,
- "total_tests": 330134.0,
- "total_tests_per_thousand": 12.946,
- "new_tests_per_thousand": 0.422,
- "new_tests_smoothed": 9970.0,
- "new_tests_smoothed_per_thousand": 0.391,
- "tests_per_case": 64.861,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-10",
- "total_cases": 6152.0,
- "new_cases": 100.0,
- "new_cases_smoothed": 132.571,
- "total_deaths": 52.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 241.256,
- "new_cases_per_million": 3.922,
- "new_cases_smoothed_per_million": 5.199,
- "total_deaths_per_million": 2.039,
- "new_deaths_per_million": 0.078,
- "new_deaths_smoothed_per_million": 0.162,
- "new_tests": 8212.0,
- "total_tests": 338346.0,
- "total_tests_per_thousand": 13.269,
- "new_tests_per_thousand": 0.322,
- "new_tests_smoothed": 9390.0,
- "new_tests_smoothed_per_thousand": 0.368,
- "tests_per_case": 70.83,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-11",
- "total_cases": 6238.0,
- "new_cases": 86.0,
- "new_cases_smoothed": 98.571,
- "total_deaths": 54.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 244.629,
- "new_cases_per_million": 3.373,
- "new_cases_smoothed_per_million": 3.866,
- "total_deaths_per_million": 2.118,
- "new_deaths_per_million": 0.078,
- "new_deaths_smoothed_per_million": 0.134,
- "new_tests": 9501.0,
- "total_tests": 347847.0,
- "total_tests_per_thousand": 13.641,
- "new_tests_per_thousand": 0.373,
- "new_tests_smoothed": 8995.0,
- "new_tests_smoothed_per_thousand": 0.353,
- "tests_per_case": 91.25399999999999,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-12",
- "total_cases": 6289.0,
- "new_cases": 51.0,
- "new_cases_smoothed": 86.0,
- "total_deaths": 57.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 246.629,
- "new_cases_per_million": 2.0,
- "new_cases_smoothed_per_million": 3.373,
- "total_deaths_per_million": 2.235,
- "new_deaths_per_million": 0.118,
- "new_deaths_smoothed_per_million": 0.129,
- "new_tests": 6094.0,
- "total_tests": 353941.0,
- "total_tests_per_thousand": 13.88,
- "new_tests_per_thousand": 0.239,
- "new_tests_smoothed": 8112.0,
- "new_tests_smoothed_per_thousand": 0.318,
- "tests_per_case": 94.32600000000001,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-13",
- "total_cases": 6322.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 82.571,
- "total_deaths": 61.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 247.923,
- "new_cases_per_million": 1.294,
- "new_cases_smoothed_per_million": 3.238,
- "total_deaths_per_million": 2.392,
- "new_deaths_per_million": 0.157,
- "new_deaths_smoothed_per_million": 0.14,
- "new_tests": 8195.0,
- "total_tests": 362136.0,
- "total_tests_per_thousand": 14.201,
- "new_tests_per_thousand": 0.321,
- "new_tests_smoothed": 8496.0,
- "new_tests_smoothed_per_thousand": 0.333,
- "tests_per_case": 102.89299999999999,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-14",
- "total_cases": 6366.0,
- "new_cases": 44.0,
- "new_cases_smoothed": 74.571,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 249.648,
- "new_cases_per_million": 1.725,
- "new_cases_smoothed_per_million": 2.924,
- "total_deaths_per_million": 2.392,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.106,
- "new_tests": 4357.0,
- "total_tests": 366493.0,
- "total_tests_per_thousand": 14.372,
- "new_tests_per_thousand": 0.171,
- "new_tests_smoothed": 7970.0,
- "new_tests_smoothed_per_thousand": 0.313,
- "tests_per_case": 106.87700000000001,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-15",
- "total_cases": 6416.0,
- "new_cases": 50.0,
- "new_cases_smoothed": 65.714,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 251.609,
- "new_cases_per_million": 1.961,
- "new_cases_smoothed_per_million": 2.577,
- "total_deaths_per_million": 2.392,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.09,
- "new_tests": 4884.0,
- "total_tests": 371377.0,
- "total_tests_per_thousand": 14.564,
- "new_tests_per_thousand": 0.192,
- "new_tests_smoothed": 7430.0,
- "new_tests_smoothed_per_thousand": 0.291,
- "tests_per_case": 113.065,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-16",
- "total_cases": 6458.0,
- "new_cases": 42.0,
- "new_cases_smoothed": 58.0,
- "total_deaths": 63.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 253.256,
- "new_cases_per_million": 1.647,
- "new_cases_smoothed_per_million": 2.275,
- "total_deaths_per_million": 2.471,
- "new_deaths_per_million": 0.078,
- "new_deaths_smoothed_per_million": 0.073,
- "new_tests": 8626.0,
- "total_tests": 380003.0,
- "total_tests_per_thousand": 14.902,
- "new_tests_per_thousand": 0.338,
- "new_tests_smoothed": 7124.0,
- "new_tests_smoothed_per_thousand": 0.279,
- "tests_per_case": 122.82799999999999,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-17",
- "total_cases": 6497.0,
- "new_cases": 39.0,
- "new_cases_smoothed": 49.286,
- "total_deaths": 63.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 254.786,
- "new_cases_per_million": 1.529,
- "new_cases_smoothed_per_million": 1.933,
- "total_deaths_per_million": 2.471,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.062,
- "new_tests": 11527.0,
- "total_tests": 391530.0,
- "total_tests_per_thousand": 15.354,
- "new_tests_per_thousand": 0.452,
- "new_tests_smoothed": 7598.0,
- "new_tests_smoothed_per_thousand": 0.298,
- "tests_per_case": 154.162,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-18",
- "total_cases": 6533.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 42.143,
- "total_deaths": 67.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 256.197,
- "new_cases_per_million": 1.412,
- "new_cases_smoothed_per_million": 1.653,
- "total_deaths_per_million": 2.627,
- "new_deaths_per_million": 0.157,
- "new_deaths_smoothed_per_million": 0.073,
- "new_tests": 14980.0,
- "total_tests": 406510.0,
- "total_tests_per_thousand": 15.942,
- "new_tests_per_thousand": 0.587,
- "new_tests_smoothed": 8380.0,
- "new_tests_smoothed_per_thousand": 0.329,
- "tests_per_case": 198.847,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-04-19",
- "total_cases": 6586.0,
- "new_cases": 53.0,
- "new_cases_smoothed": 42.429,
- "total_deaths": 69.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 258.276,
- "new_cases_per_million": 2.078,
- "new_cases_smoothed_per_million": 1.664,
- "total_deaths_per_million": 2.706,
- "new_deaths_per_million": 0.078,
- "new_deaths_smoothed_per_million": 0.067,
- "new_tests": 14486.0,
- "total_tests": 420996.0,
- "total_tests_per_thousand": 16.51,
- "new_tests_per_thousand": 0.568,
- "new_tests_smoothed": 9579.0,
- "new_tests_smoothed_per_thousand": 0.376,
- "tests_per_case": 225.768,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-04-20",
- "total_cases": 6612.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 41.429,
- "total_deaths": 70.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 259.295,
- "new_cases_per_million": 1.02,
- "new_cases_smoothed_per_million": 1.625,
- "total_deaths_per_million": 2.745,
- "new_deaths_per_million": 0.039,
- "new_deaths_smoothed_per_million": 0.05,
- "new_tests": 10738.0,
- "total_tests": 431734.0,
- "total_tests_per_thousand": 16.931,
- "new_tests_per_thousand": 0.421,
- "new_tests_smoothed": 9943.0,
- "new_tests_smoothed_per_thousand": 0.39,
- "tests_per_case": 240.003,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-04-21",
- "total_cases": 6625.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 37.0,
- "total_deaths": 71.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 259.805,
- "new_cases_per_million": 0.51,
- "new_cases_smoothed_per_million": 1.451,
- "total_deaths_per_million": 2.784,
- "new_deaths_per_million": 0.039,
- "new_deaths_smoothed_per_million": 0.056,
- "new_tests": 8108.0,
- "total_tests": 439842.0,
- "total_tests_per_thousand": 17.249,
- "new_tests_per_thousand": 0.318,
- "new_tests_smoothed": 10478.0,
- "new_tests_smoothed_per_thousand": 0.411,
- "tests_per_case": 283.189,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-04-22",
- "total_cases": 6647.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 33.0,
- "total_deaths": 74.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 260.668,
- "new_cases_per_million": 0.863,
- "new_cases_smoothed_per_million": 1.294,
- "total_deaths_per_million": 2.902,
- "new_deaths_per_million": 0.118,
- "new_deaths_smoothed_per_million": 0.073,
- "new_tests": 12599.0,
- "total_tests": 452441.0,
- "total_tests_per_thousand": 17.743,
- "new_tests_per_thousand": 0.494,
- "new_tests_smoothed": 11581.0,
- "new_tests_smoothed_per_thousand": 0.454,
- "tests_per_case": 350.939,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-04-23",
- "total_cases": 6654.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 28.0,
- "total_deaths": 74.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 260.942,
- "new_cases_per_million": 0.275,
- "new_cases_smoothed_per_million": 1.098,
- "total_deaths_per_million": 2.902,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.062,
- "new_tests": 14218.0,
- "total_tests": 466659.0,
- "total_tests_per_thousand": 18.3,
- "new_tests_per_thousand": 0.558,
- "new_tests_smoothed": 12379.0,
- "new_tests_smoothed_per_thousand": 0.485,
- "tests_per_case": 442.10699999999997,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-04-24",
- "total_cases": 6667.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 24.286,
- "total_deaths": 75.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 261.452,
- "new_cases_per_million": 0.51,
- "new_cases_smoothed_per_million": 0.952,
- "total_deaths_per_million": 2.941,
- "new_deaths_per_million": 0.039,
- "new_deaths_smoothed_per_million": 0.067,
- "new_tests": 15711.0,
- "total_tests": 482370.0,
- "total_tests_per_thousand": 18.917,
- "new_tests_per_thousand": 0.616,
- "new_tests_smoothed": 12977.0,
- "new_tests_smoothed_per_thousand": 0.509,
- "tests_per_case": 534.347,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-04-25",
- "total_cases": 6687.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 22.0,
- "total_deaths": 79.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 262.237,
- "new_cases_per_million": 0.784,
- "new_cases_smoothed_per_million": 0.863,
- "total_deaths_per_million": 3.098,
- "new_deaths_per_million": 0.157,
- "new_deaths_smoothed_per_million": 0.067,
- "new_tests": 11887.0,
- "total_tests": 494257.0,
- "total_tests_per_thousand": 19.383,
- "new_tests_per_thousand": 0.466,
- "new_tests_smoothed": 12535.0,
- "new_tests_smoothed_per_thousand": 0.492,
- "tests_per_case": 569.773,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-04-26",
- "total_cases": 6703.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 16.714,
- "total_deaths": 81.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 262.864,
- "new_cases_per_million": 0.627,
- "new_cases_smoothed_per_million": 0.655,
- "total_deaths_per_million": 3.176,
- "new_deaths_per_million": 0.078,
- "new_deaths_smoothed_per_million": 0.067,
- "new_tests": 12192.0,
- "total_tests": 506449.0,
- "total_tests_per_thousand": 19.861,
- "new_tests_per_thousand": 0.478,
- "new_tests_smoothed": 12208.0,
- "new_tests_smoothed_per_thousand": 0.479,
- "tests_per_case": 730.393,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-04-27",
- "total_cases": 6713.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 14.429,
- "total_deaths": 83.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 263.256,
- "new_cases_per_million": 0.392,
- "new_cases_smoothed_per_million": 0.566,
- "total_deaths_per_million": 3.255,
- "new_deaths_per_million": 0.078,
- "new_deaths_smoothed_per_million": 0.073,
- "new_tests": 10614.0,
- "total_tests": 517063.0,
- "total_tests_per_thousand": 20.277,
- "new_tests_per_thousand": 0.416,
- "new_tests_smoothed": 12190.0,
- "new_tests_smoothed_per_thousand": 0.478,
- "tests_per_case": 844.8510000000001,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-04-28",
- "total_cases": 6725.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 14.286,
- "total_deaths": 84.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 263.727,
- "new_cases_per_million": 0.471,
- "new_cases_smoothed_per_million": 0.56,
- "total_deaths_per_million": 3.294,
- "new_deaths_per_million": 0.039,
- "new_deaths_smoothed_per_million": 0.073,
- "new_tests": 13616.0,
- "total_tests": 530679.0,
- "total_tests_per_thousand": 20.811,
- "new_tests_per_thousand": 0.534,
- "new_tests_smoothed": 12977.0,
- "new_tests_smoothed_per_thousand": 0.509,
- "tests_per_case": 908.39,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-04-29",
- "total_cases": 6738.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 13.0,
- "total_deaths": 88.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 264.237,
- "new_cases_per_million": 0.51,
- "new_cases_smoothed_per_million": 0.51,
- "total_deaths_per_million": 3.451,
- "new_deaths_per_million": 0.157,
- "new_deaths_smoothed_per_million": 0.078,
- "new_tests": 13731.0,
- "total_tests": 544410.0,
- "total_tests_per_thousand": 21.35,
- "new_tests_per_thousand": 0.538,
- "new_tests_smoothed": 13138.0,
- "new_tests_smoothed_per_thousand": 0.515,
- "tests_per_case": 1010.615,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-04-30",
- "total_cases": 6746.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 13.143,
- "total_deaths": 90.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 264.55,
- "new_cases_per_million": 0.314,
- "new_cases_smoothed_per_million": 0.515,
- "total_deaths_per_million": 3.529,
- "new_deaths_per_million": 0.078,
- "new_deaths_smoothed_per_million": 0.09,
- "new_tests": 19231.0,
- "total_tests": 563641.0,
- "total_tests_per_thousand": 22.104,
- "new_tests_per_thousand": 0.754,
- "new_tests_smoothed": 13855.0,
- "new_tests_smoothed_per_thousand": 0.543,
- "tests_per_case": 1054.185,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-05-01",
- "total_cases": 6762.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 13.571,
- "total_deaths": 92.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 265.178,
- "new_cases_per_million": 0.627,
- "new_cases_smoothed_per_million": 0.532,
- "total_deaths_per_million": 3.608,
- "new_deaths_per_million": 0.078,
- "new_deaths_smoothed_per_million": 0.095,
- "new_tests": 25227.0,
- "total_tests": 588868.0,
- "total_tests_per_thousand": 23.093,
- "new_tests_per_thousand": 0.989,
- "new_tests_smoothed": 15214.0,
- "new_tests_smoothed_per_thousand": 0.597,
- "tests_per_case": 1121.032,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-05-02",
- "total_cases": 6767.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 11.429,
- "total_deaths": 93.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 265.374,
- "new_cases_per_million": 0.196,
- "new_cases_smoothed_per_million": 0.448,
- "total_deaths_per_million": 3.647,
- "new_deaths_per_million": 0.039,
- "new_deaths_smoothed_per_million": 0.078,
- "new_tests": 22715.0,
- "total_tests": 611583.0,
- "total_tests_per_thousand": 23.984,
- "new_tests_per_thousand": 0.891,
- "new_tests_smoothed": 16761.0,
- "new_tests_smoothed_per_thousand": 0.657,
- "tests_per_case": 1466.5870000000002,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-05-03",
- "total_cases": 6783.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 11.429,
- "total_deaths": 93.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 266.001,
- "new_cases_per_million": 0.627,
- "new_cases_smoothed_per_million": 0.448,
- "total_deaths_per_million": 3.647,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.067,
- "new_tests": 21524.0,
- "total_tests": 633107.0,
- "total_tests_per_thousand": 24.828,
- "new_tests_per_thousand": 0.844,
- "new_tests_smoothed": 18094.0,
- "new_tests_smoothed_per_thousand": 0.71,
- "tests_per_case": 1583.225,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-05-04",
- "total_cases": 6801.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 12.571,
- "total_deaths": 95.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 266.707,
- "new_cases_per_million": 0.706,
- "new_cases_smoothed_per_million": 0.493,
- "total_deaths_per_million": 3.726,
- "new_deaths_per_million": 0.078,
- "new_deaths_smoothed_per_million": 0.067,
- "new_tests": 17107.0,
- "total_tests": 650214.0,
- "total_tests_per_thousand": 25.499,
- "new_tests_per_thousand": 0.671,
- "new_tests_smoothed": 19022.0,
- "new_tests_smoothed_per_thousand": 0.746,
- "tests_per_case": 1513.114,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-05-05",
- "total_cases": 6825.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 14.286,
- "total_deaths": 95.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 267.648,
- "new_cases_per_million": 0.941,
- "new_cases_smoothed_per_million": 0.56,
- "total_deaths_per_million": 3.726,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.062,
- "new_tests": 14542.0,
- "total_tests": 664756.0,
- "total_tests_per_thousand": 26.069,
- "new_tests_per_thousand": 0.57,
- "new_tests_smoothed": 19154.0,
- "new_tests_smoothed_per_thousand": 0.751,
- "tests_per_case": 1340.78,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-05-06",
- "total_cases": 6849.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 15.857,
- "total_deaths": 96.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 268.589,
- "new_cases_per_million": 0.941,
- "new_cases_smoothed_per_million": 0.622,
- "total_deaths_per_million": 3.765,
- "new_deaths_per_million": 0.039,
- "new_deaths_smoothed_per_million": 0.045,
- "new_tests": 23900.0,
- "total_tests": 688656.0,
- "total_tests_per_thousand": 27.006,
- "new_tests_per_thousand": 0.937,
- "new_tests_smoothed": 20607.0,
- "new_tests_smoothed_per_thousand": 0.808,
- "tests_per_case": 1299.5410000000002,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-05-07",
- "total_cases": 6875.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 18.429,
- "total_deaths": 97.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 269.609,
- "new_cases_per_million": 1.02,
- "new_cases_smoothed_per_million": 0.723,
- "total_deaths_per_million": 3.804,
- "new_deaths_per_million": 0.039,
- "new_deaths_smoothed_per_million": 0.039,
- "new_tests": 33893.0,
- "total_tests": 722549.0,
- "total_tests_per_thousand": 28.335,
- "new_tests_per_thousand": 1.329,
- "new_tests_smoothed": 22701.0,
- "new_tests_smoothed_per_thousand": 0.89,
- "tests_per_case": 1231.837,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-05-08",
- "total_cases": 6896.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 19.143,
- "total_deaths": 97.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 270.433,
- "new_cases_per_million": 0.824,
- "new_cases_smoothed_per_million": 0.751,
- "total_deaths_per_million": 3.804,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.028,
- "new_tests": 34701.0,
- "total_tests": 757250.0,
- "total_tests_per_thousand": 29.696,
- "new_tests_per_thousand": 1.361,
- "new_tests_smoothed": 24055.0,
- "new_tests_smoothed_per_thousand": 0.943,
- "tests_per_case": 1256.604,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-05-09",
- "total_cases": 6914.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 21.0,
- "total_deaths": 97.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 271.139,
- "new_cases_per_million": 0.706,
- "new_cases_smoothed_per_million": 0.824,
- "total_deaths_per_million": 3.804,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 38206.0,
- "total_tests": 795456.0,
- "total_tests_per_thousand": 31.194,
- "new_tests_per_thousand": 1.498,
- "new_tests_smoothed": 26268.0,
- "new_tests_smoothed_per_thousand": 1.03,
- "tests_per_case": 1250.857,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-05-10",
- "total_cases": 6929.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 20.857,
- "total_deaths": 97.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 271.727,
- "new_cases_per_million": 0.588,
- "new_cases_smoothed_per_million": 0.818,
- "total_deaths_per_million": 3.804,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 32416.0,
- "total_tests": 827872.0,
- "total_tests_per_thousand": 32.466,
- "new_tests_per_thousand": 1.271,
- "new_tests_smoothed": 27824.0,
- "new_tests_smoothed_per_thousand": 1.091,
- "tests_per_case": 1334.027,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-05-11",
- "total_cases": 6941.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 20.0,
- "total_deaths": 97.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 272.197,
- "new_cases_per_million": 0.471,
- "new_cases_smoothed_per_million": 0.784,
- "total_deaths_per_million": 3.804,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 27247.0,
- "total_tests": 855119.0,
- "total_tests_per_thousand": 33.534,
- "new_tests_per_thousand": 1.069,
- "new_tests_smoothed": 29272.0,
- "new_tests_smoothed_per_thousand": 1.148,
- "tests_per_case": 1463.6,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-05-12",
- "total_cases": 6948.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 17.571,
- "total_deaths": 97.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 272.472,
- "new_cases_per_million": 0.275,
- "new_cases_smoothed_per_million": 0.689,
- "total_deaths_per_million": 3.804,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 22808.0,
- "total_tests": 877927.0,
- "total_tests_per_thousand": 34.429,
- "new_tests_per_thousand": 0.894,
- "new_tests_smoothed": 30453.0,
- "new_tests_smoothed_per_thousand": 1.194,
- "tests_per_case": 1733.098,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-05-13",
- "total_cases": 6964.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 16.429,
- "total_deaths": 97.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 273.099,
- "new_cases_per_million": 0.627,
- "new_cases_smoothed_per_million": 0.644,
- "total_deaths_per_million": 3.804,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.006,
- "new_tests": 31098.0,
- "total_tests": 909025.0,
- "total_tests_per_thousand": 35.648,
- "new_tests_per_thousand": 1.22,
- "new_tests_smoothed": 31481.0,
- "new_tests_smoothed_per_thousand": 1.235,
- "tests_per_case": 1916.235,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-05-14",
- "total_cases": 6975.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 14.286,
- "total_deaths": 98.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 273.531,
- "new_cases_per_million": 0.431,
- "new_cases_smoothed_per_million": 0.56,
- "total_deaths_per_million": 3.843,
- "new_deaths_per_million": 0.039,
- "new_deaths_smoothed_per_million": 0.006,
- "new_tests": 34455.0,
- "total_tests": 943480.0,
- "total_tests_per_thousand": 36.999,
- "new_tests_per_thousand": 1.351,
- "new_tests_smoothed": 31562.0,
- "new_tests_smoothed_per_thousand": 1.238,
- "tests_per_case": 2209.34,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-05-15",
- "total_cases": 6989.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 13.286,
- "total_deaths": 98.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 274.08,
- "new_cases_per_million": 0.549,
- "new_cases_smoothed_per_million": 0.521,
- "total_deaths_per_million": 3.843,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.006,
- "new_tests": 40336.0,
- "total_tests": 983816.0,
- "total_tests_per_thousand": 38.581,
- "new_tests_per_thousand": 1.582,
- "new_tests_smoothed": 32367.0,
- "new_tests_smoothed_per_thousand": 1.269,
- "tests_per_case": 2436.226,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-16",
- "total_cases": 7019.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 15.0,
- "total_deaths": 98.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 275.256,
- "new_cases_per_million": 1.176,
- "new_cases_smoothed_per_million": 0.588,
- "total_deaths_per_million": 3.843,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.006,
- "new_tests": 31836.0,
- "total_tests": 1015652.0,
- "total_tests_per_thousand": 39.83,
- "new_tests_per_thousand": 1.248,
- "new_tests_smoothed": 31457.0,
- "new_tests_smoothed_per_thousand": 1.234,
- "tests_per_case": 2097.133,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 64.35
- },
- {
- "date": "2020-05-17",
- "total_cases": 7036.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 15.286,
- "total_deaths": 98.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 275.923,
- "new_cases_per_million": 0.667,
- "new_cases_smoothed_per_million": 0.599,
- "total_deaths_per_million": 3.843,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.006,
- "new_tests": 26474.0,
- "total_tests": 1042126.0,
- "total_tests_per_thousand": 40.868,
- "new_tests_per_thousand": 1.038,
- "new_tests_smoothed": 30608.0,
- "new_tests_smoothed_per_thousand": 1.2,
- "tests_per_case": 2002.3929999999998,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 64.35
- },
- {
- "date": "2020-05-18",
- "total_cases": 7045.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 14.857,
- "total_deaths": 98.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 276.276,
- "new_cases_per_million": 0.353,
- "new_cases_smoothed_per_million": 0.583,
- "total_deaths_per_million": 3.843,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.006,
- "new_tests": 19908.0,
- "total_tests": 1062034.0,
- "total_tests_per_thousand": 41.649,
- "new_tests_per_thousand": 0.781,
- "new_tests_smoothed": 29559.0,
- "new_tests_smoothed_per_thousand": 1.159,
- "tests_per_case": 1989.5479999999998,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 67.13
- },
- {
- "date": "2020-05-19",
- "total_cases": 7060.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 16.0,
- "total_deaths": 99.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 276.864,
- "new_cases_per_million": 0.588,
- "new_cases_smoothed_per_million": 0.627,
- "total_deaths_per_million": 3.882,
- "new_deaths_per_million": 0.039,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 23836.0,
- "total_tests": 1085870.0,
- "total_tests_per_thousand": 42.583,
- "new_tests_per_thousand": 0.935,
- "new_tests_smoothed": 29706.0,
- "new_tests_smoothed_per_thousand": 1.165,
- "tests_per_case": 1856.625,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 67.13
- },
- {
- "date": "2020-05-20",
- "total_cases": 7068.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 14.857,
- "total_deaths": 99.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 277.178,
- "new_cases_per_million": 0.314,
- "new_cases_smoothed_per_million": 0.583,
- "total_deaths_per_million": 3.882,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 25697.0,
- "total_tests": 1111567.0,
- "total_tests_per_thousand": 43.591,
- "new_tests_per_thousand": 1.008,
- "new_tests_smoothed": 28935.0,
- "new_tests_smoothed_per_thousand": 1.135,
- "tests_per_case": 1947.5479999999998,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 67.13
- },
- {
- "date": "2020-05-21",
- "total_cases": 7079.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 14.857,
- "total_deaths": 100.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 277.609,
- "new_cases_per_million": 0.431,
- "new_cases_smoothed_per_million": 0.583,
- "total_deaths_per_million": 3.922,
- "new_deaths_per_million": 0.039,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 26117.0,
- "total_tests": 1137684.0,
- "total_tests_per_thousand": 44.615,
- "new_tests_per_thousand": 1.024,
- "new_tests_smoothed": 27743.0,
- "new_tests_smoothed_per_thousand": 1.088,
- "tests_per_case": 1867.317,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 67.13
- },
- {
- "date": "2020-05-22",
- "total_cases": 7081.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 13.143,
- "total_deaths": 100.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 277.688,
- "new_cases_per_million": 0.078,
- "new_cases_smoothed_per_million": 0.515,
- "total_deaths_per_million": 3.922,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 32998.0,
- "total_tests": 1170682.0,
- "total_tests_per_thousand": 45.909,
- "new_tests_per_thousand": 1.294,
- "new_tests_smoothed": 26695.0,
- "new_tests_smoothed_per_thousand": 1.047,
- "tests_per_case": 2031.141,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 67.13
- },
- {
- "date": "2020-05-23",
- "total_cases": 7095.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 10.857,
- "total_deaths": 101.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 278.237,
- "new_cases_per_million": 0.549,
- "new_cases_smoothed_per_million": 0.426,
- "total_deaths_per_million": 3.961,
- "new_deaths_per_million": 0.039,
- "new_deaths_smoothed_per_million": 0.017,
- "new_tests": 21580.0,
- "total_tests": 1192262.0,
- "total_tests_per_thousand": 46.756,
- "new_tests_per_thousand": 0.846,
- "new_tests_smoothed": 25230.0,
- "new_tests_smoothed_per_thousand": 0.989,
- "tests_per_case": 2323.8160000000003,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 67.13
- },
- {
- "date": "2020-05-24",
- "total_cases": 7106.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 10.0,
- "total_deaths": 102.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 278.668,
- "new_cases_per_million": 0.431,
- "new_cases_smoothed_per_million": 0.392,
- "total_deaths_per_million": 4.0,
- "new_deaths_per_million": 0.039,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 32533.0,
- "total_tests": 1224795.0,
- "total_tests_per_thousand": 48.031,
- "new_tests_per_thousand": 1.276,
- "new_tests_smoothed": 26096.0,
- "new_tests_smoothed_per_thousand": 1.023,
- "tests_per_case": 2609.6,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 67.13
- },
- {
- "date": "2020-05-25",
- "total_cases": 7109.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 9.143,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 278.786,
- "new_cases_per_million": 0.118,
- "new_cases_smoothed_per_million": 0.359,
- "total_deaths_per_million": 4.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 19405.0,
- "total_tests": 1244200.0,
- "total_tests_per_thousand": 48.792,
- "new_tests_per_thousand": 0.761,
- "new_tests_smoothed": 26024.0,
- "new_tests_smoothed_per_thousand": 1.021,
- "tests_per_case": 2846.375,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 65.28
- },
- {
- "date": "2020-05-26",
- "total_cases": 7118.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 8.286,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 279.139,
- "new_cases_per_million": 0.353,
- "new_cases_smoothed_per_million": 0.325,
- "total_deaths_per_million": 4.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.017,
- "new_tests": 44023.0,
- "total_tests": 1288223.0,
- "total_tests_per_thousand": 50.519,
- "new_tests_per_thousand": 1.726,
- "new_tests_smoothed": 28908.0,
- "new_tests_smoothed_per_thousand": 1.134,
- "tests_per_case": 3488.897,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 65.28
- },
- {
- "date": "2020-05-27",
- "total_cases": 7133.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 9.286,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 279.727,
- "new_cases_per_million": 0.588,
- "new_cases_smoothed_per_million": 0.364,
- "total_deaths_per_million": 4.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.017,
- "new_tests": 50098.0,
- "total_tests": 1338321.0,
- "total_tests_per_thousand": 52.483,
- "new_tests_per_thousand": 1.965,
- "new_tests_smoothed": 32393.0,
- "new_tests_smoothed_per_thousand": 1.27,
- "tests_per_case": 3488.4770000000003,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 65.28
- },
- {
- "date": "2020-05-28",
- "total_cases": 7139.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 8.571,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 279.962,
- "new_cases_per_million": 0.235,
- "new_cases_smoothed_per_million": 0.336,
- "total_deaths_per_million": 4.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 29123.0,
- "total_tests": 1367444.0,
- "total_tests_per_thousand": 53.626,
- "new_tests_per_thousand": 1.142,
- "new_tests_smoothed": 32823.0,
- "new_tests_smoothed_per_thousand": 1.287,
- "tests_per_case": 3829.35,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 65.28
- },
- {
- "date": "2020-05-29",
- "total_cases": 7150.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 9.857,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 280.393,
- "new_cases_per_million": 0.431,
- "new_cases_smoothed_per_million": 0.387,
- "total_deaths_per_million": 4.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 30178.0,
- "total_tests": 1397622.0,
- "total_tests_per_thousand": 54.809,
- "new_tests_per_thousand": 1.183,
- "new_tests_smoothed": 32420.0,
- "new_tests_smoothed_per_thousand": 1.271,
- "tests_per_case": 3288.986,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 63.43
- },
- {
- "date": "2020-05-30",
- "total_cases": 7173.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 11.143,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 281.295,
- "new_cases_per_million": 0.902,
- "new_cases_smoothed_per_million": 0.437,
- "total_deaths_per_million": 4.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.006,
- "new_tests": 30916.0,
- "total_tests": 1428538.0,
- "total_tests_per_thousand": 56.021,
- "new_tests_per_thousand": 1.212,
- "new_tests_smoothed": 33754.0,
- "new_tests_smoothed_per_thousand": 1.324,
- "tests_per_case": 3029.205,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 63.43
- },
- {
- "date": "2020-05-31",
- "total_cases": 7185.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 11.286,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 281.766,
- "new_cases_per_million": 0.471,
- "new_cases_smoothed_per_million": 0.443,
- "total_deaths_per_million": 4.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 26030.0,
- "total_tests": 1454568.0,
- "total_tests_per_thousand": 57.042,
- "new_tests_per_thousand": 1.021,
- "new_tests_smoothed": 32825.0,
- "new_tests_smoothed_per_thousand": 1.287,
- "tests_per_case": 2908.5440000000003,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 63.43
- },
- {
- "date": "2020-06-01",
- "total_cases": 7195.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 12.286,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 282.158,
- "new_cases_per_million": 0.392,
- "new_cases_smoothed_per_million": 0.482,
- "total_deaths_per_million": 4.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 17652.0,
- "total_tests": 1472220.0,
- "total_tests_per_thousand": 57.734,
- "new_tests_per_thousand": 0.692,
- "new_tests_smoothed": 32574.0,
- "new_tests_smoothed_per_thousand": 1.277,
- "tests_per_case": 2651.3720000000003,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 62.04
- },
- {
- "date": "2020-06-02",
- "total_cases": 7204.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 12.286,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 282.511,
- "new_cases_per_million": 0.353,
- "new_cases_smoothed_per_million": 0.482,
- "total_deaths_per_million": 4.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 18167.0,
- "total_tests": 1490387.0,
- "total_tests_per_thousand": 58.447,
- "new_tests_per_thousand": 0.712,
- "new_tests_smoothed": 28881.0,
- "new_tests_smoothed_per_thousand": 1.133,
- "tests_per_case": 2350.779,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 62.04
- },
- {
- "date": "2020-06-03",
- "total_cases": 7221.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 12.571,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 283.178,
- "new_cases_per_million": 0.667,
- "new_cases_smoothed_per_million": 0.493,
- "total_deaths_per_million": 4.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 22313.0,
- "total_tests": 1512700.0,
- "total_tests_per_thousand": 59.322,
- "new_tests_per_thousand": 0.875,
- "new_tests_smoothed": 24911.0,
- "new_tests_smoothed_per_thousand": 0.977,
- "tests_per_case": 1981.557,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 62.04
- },
- {
- "date": "2020-06-04",
- "total_cases": 7229.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 12.857,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 283.492,
- "new_cases_per_million": 0.314,
- "new_cases_smoothed_per_million": 0.504,
- "total_deaths_per_million": 4.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 33629.0,
- "total_tests": 1546329.0,
- "total_tests_per_thousand": 60.641,
- "new_tests_per_thousand": 1.319,
- "new_tests_smoothed": 25555.0,
- "new_tests_smoothed_per_thousand": 1.002,
- "tests_per_case": 1987.611,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 62.04
- },
- {
- "date": "2020-06-05",
- "total_cases": 7240.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 12.857,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 283.923,
- "new_cases_per_million": 0.431,
- "new_cases_smoothed_per_million": 0.504,
- "total_deaths_per_million": 4.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 32863.0,
- "total_tests": 1579192.0,
- "total_tests_per_thousand": 61.929,
- "new_tests_per_thousand": 1.289,
- "new_tests_smoothed": 25939.0,
- "new_tests_smoothed_per_thousand": 1.017,
- "tests_per_case": 2017.4779999999998,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 62.04
- },
- {
- "date": "2020-06-06",
- "total_cases": 7251.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 11.143,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 284.354,
- "new_cases_per_million": 0.431,
- "new_cases_smoothed_per_million": 0.437,
- "total_deaths_per_million": 4.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 11396.0,
- "total_tests": 1590588.0,
- "total_tests_per_thousand": 62.376,
- "new_tests_per_thousand": 0.447,
- "new_tests_smoothed": 23150.0,
- "new_tests_smoothed_per_thousand": 0.908,
- "tests_per_case": 2077.564,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 62.04
- },
- {
- "date": "2020-06-07",
- "total_cases": 7255.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 10.0,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 284.511,
- "new_cases_per_million": 0.157,
- "new_cases_smoothed_per_million": 0.392,
- "total_deaths_per_million": 4.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 26874.0,
- "total_tests": 1617462.0,
- "total_tests_per_thousand": 63.43,
- "new_tests_per_thousand": 1.054,
- "new_tests_smoothed": 23271.0,
- "new_tests_smoothed_per_thousand": 0.913,
- "tests_per_case": 2327.1,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 62.04
- },
- {
- "date": "2020-06-08",
- "total_cases": 7260.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 9.286,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 284.707,
- "new_cases_per_million": 0.196,
- "new_cases_smoothed_per_million": 0.364,
- "total_deaths_per_million": 4.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 16053.0,
- "total_tests": 1633515.0,
- "total_tests_per_thousand": 64.06,
- "new_tests_per_thousand": 0.63,
- "new_tests_smoothed": 23042.0,
- "new_tests_smoothed_per_thousand": 0.904,
- "tests_per_case": 2481.446,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 62.04
- },
- {
- "date": "2020-06-09",
- "total_cases": 7265.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 8.714,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 284.903,
- "new_cases_per_million": 0.196,
- "new_cases_smoothed_per_million": 0.342,
- "total_deaths_per_million": 4.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 17169.0,
- "total_tests": 1650684.0,
- "total_tests_per_thousand": 64.733,
- "new_tests_per_thousand": 0.673,
- "new_tests_smoothed": 22900.0,
- "new_tests_smoothed_per_thousand": 0.898,
- "tests_per_case": 2627.869,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-06-10",
- "total_cases": 7267.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 6.571,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 284.982,
- "new_cases_per_million": 0.078,
- "new_cases_smoothed_per_million": 0.258,
- "total_deaths_per_million": 4.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 29270.0,
- "total_tests": 1679954.0,
- "total_tests_per_thousand": 65.881,
- "new_tests_per_thousand": 1.148,
- "new_tests_smoothed": 23893.0,
- "new_tests_smoothed_per_thousand": 0.937,
- "tests_per_case": 3635.8909999999996,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-06-11",
- "total_cases": 7276.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 6.714,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 285.335,
- "new_cases_per_million": 0.353,
- "new_cases_smoothed_per_million": 0.263,
- "total_deaths_per_million": 4.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 31269.0,
- "total_tests": 1711223.0,
- "total_tests_per_thousand": 67.107,
- "new_tests_per_thousand": 1.226,
- "new_tests_smoothed": 23556.0,
- "new_tests_smoothed_per_thousand": 0.924,
- "tests_per_case": 3508.34,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-06-12",
- "total_cases": 7285.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 6.429,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 285.688,
- "new_cases_per_million": 0.353,
- "new_cases_smoothed_per_million": 0.252,
- "total_deaths_per_million": 4.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 34327.0,
- "total_tests": 1745550.0,
- "total_tests_per_thousand": 68.453,
- "new_tests_per_thousand": 1.346,
- "new_tests_smoothed": 23765.0,
- "new_tests_smoothed_per_thousand": 0.932,
- "tests_per_case": 3696.778,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 46.76
- },
- {
- "date": "2020-06-13",
- "total_cases": 7290.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 285.884,
- "new_cases_per_million": 0.196,
- "new_cases_smoothed_per_million": 0.218,
- "total_deaths_per_million": 4.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 37101.0,
- "total_tests": 1782651.0,
- "total_tests_per_thousand": 69.908,
- "new_tests_per_thousand": 1.455,
- "new_tests_smoothed": 27438.0,
- "new_tests_smoothed_per_thousand": 1.076,
- "tests_per_case": 4924.769,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 46.76
- },
- {
- "date": "2020-06-14",
- "total_cases": 7302.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 6.714,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 286.354,
- "new_cases_per_million": 0.471,
- "new_cases_smoothed_per_million": 0.263,
- "total_deaths_per_million": 4.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 29702.0,
- "total_tests": 1812353.0,
- "total_tests_per_thousand": 71.073,
- "new_tests_per_thousand": 1.165,
- "new_tests_smoothed": 27842.0,
- "new_tests_smoothed_per_thousand": 1.092,
- "tests_per_case": 4146.681,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 46.76
- },
- {
- "date": "2020-06-15",
- "total_cases": 7320.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 8.571,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 287.06,
- "new_cases_per_million": 0.706,
- "new_cases_smoothed_per_million": 0.336,
- "total_deaths_per_million": 4.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 15796.0,
- "total_tests": 1828149.0,
- "total_tests_per_thousand": 71.692,
- "new_tests_per_thousand": 0.619,
- "new_tests_smoothed": 27805.0,
- "new_tests_smoothed_per_thousand": 1.09,
- "tests_per_case": 3243.917,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 46.76
- },
- {
- "date": "2020-06-16",
- "total_cases": 7335.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 10.0,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 287.648,
- "new_cases_per_million": 0.588,
- "new_cases_smoothed_per_million": 0.392,
- "total_deaths_per_million": 4.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 20198.0,
- "total_tests": 1848347.0,
- "total_tests_per_thousand": 72.485,
- "new_tests_per_thousand": 0.792,
- "new_tests_smoothed": 28238.0,
- "new_tests_smoothed_per_thousand": 1.107,
- "tests_per_case": 2823.8,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 46.76
- },
- {
- "date": "2020-06-17",
- "total_cases": 7347.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 11.429,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 288.119,
- "new_cases_per_million": 0.471,
- "new_cases_smoothed_per_million": 0.448,
- "total_deaths_per_million": 4.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 27770.0,
- "total_tests": 1876117.0,
- "total_tests_per_thousand": 73.574,
- "new_tests_per_thousand": 1.089,
- "new_tests_smoothed": 28023.0,
- "new_tests_smoothed_per_thousand": 1.099,
- "tests_per_case": 2452.012,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 46.76
- },
- {
- "date": "2020-06-18",
- "total_cases": 7370.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 13.429,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 289.021,
- "new_cases_per_million": 0.902,
- "new_cases_smoothed_per_million": 0.527,
- "total_deaths_per_million": 4.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 51380.0,
- "total_tests": 1927497.0,
- "total_tests_per_thousand": 75.588,
- "new_tests_per_thousand": 2.015,
- "new_tests_smoothed": 30896.0,
- "new_tests_smoothed_per_thousand": 1.212,
- "tests_per_case": 2300.766,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 46.76
- },
- {
- "date": "2020-06-19",
- "total_cases": 7391.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 15.143,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 289.844,
- "new_cases_per_million": 0.824,
- "new_cases_smoothed_per_million": 0.594,
- "total_deaths_per_million": 4.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 42708.0,
- "total_tests": 1970205.0,
- "total_tests_per_thousand": 77.263,
- "new_tests_per_thousand": 1.675,
- "new_tests_smoothed": 32094.0,
- "new_tests_smoothed_per_thousand": 1.259,
- "tests_per_case": 2119.415,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 46.76
- },
- {
- "date": "2020-06-20",
- "total_cases": 7409.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 17.0,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 290.55,
- "new_cases_per_million": 0.706,
- "new_cases_smoothed_per_million": 0.667,
- "total_deaths_per_million": 4.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 35173.0,
- "total_tests": 2005378.0,
- "total_tests_per_thousand": 78.643,
- "new_tests_per_thousand": 1.379,
- "new_tests_smoothed": 31818.0,
- "new_tests_smoothed_per_thousand": 1.248,
- "tests_per_case": 1871.6470000000002,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 46.76
- },
- {
- "date": "2020-06-21",
- "total_cases": 7436.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 19.143,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 291.609,
- "new_cases_per_million": 1.059,
- "new_cases_smoothed_per_million": 0.751,
- "total_deaths_per_million": 4.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 35946.0,
- "total_tests": 2041324.0,
- "total_tests_per_thousand": 80.052,
- "new_tests_per_thousand": 1.41,
- "new_tests_smoothed": 32710.0,
- "new_tests_smoothed_per_thousand": 1.283,
- "tests_per_case": 1708.731,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 46.76
- },
- {
- "date": "2020-06-22",
- "total_cases": 7461.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 20.143,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 292.59,
- "new_cases_per_million": 0.98,
- "new_cases_smoothed_per_million": 0.79,
- "total_deaths_per_million": 4.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 66525.0,
- "total_tests": 2107849.0,
- "total_tests_per_thousand": 82.661,
- "new_tests_per_thousand": 2.609,
- "new_tests_smoothed": 39957.0,
- "new_tests_smoothed_per_thousand": 1.567,
- "tests_per_case": 1983.681,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 46.76
- },
- {
- "date": "2020-06-23",
- "total_cases": 7474.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 19.857,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 293.099,
- "new_cases_per_million": 0.51,
- "new_cases_smoothed_per_million": 0.779,
- "total_deaths_per_million": 4.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 24972.0,
- "total_tests": 2132821.0,
- "total_tests_per_thousand": 83.64,
- "new_tests_per_thousand": 0.979,
- "new_tests_smoothed": 40639.0,
- "new_tests_smoothed_per_thousand": 1.594,
- "tests_per_case": 2046.568,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 52.31
- },
- {
- "date": "2020-06-24",
- "total_cases": 7492.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 20.714,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 293.805,
- "new_cases_per_million": 0.706,
- "new_cases_smoothed_per_million": 0.812,
- "total_deaths_per_million": 4.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 47603.0,
- "total_tests": 2180424.0,
- "total_tests_per_thousand": 85.507,
- "new_tests_per_thousand": 1.867,
- "new_tests_smoothed": 43472.0,
- "new_tests_smoothed_per_thousand": 1.705,
- "tests_per_case": 2098.6479999999997,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 52.31
- },
- {
- "date": "2020-06-25",
- "total_cases": 7521.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 21.571,
- "total_deaths": 103.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 294.943,
- "new_cases_per_million": 1.137,
- "new_cases_smoothed_per_million": 0.846,
- "total_deaths_per_million": 4.039,
- "new_deaths_per_million": 0.039,
- "new_deaths_smoothed_per_million": 0.006,
- "new_tests": 51917.0,
- "total_tests": 2232341.0,
- "total_tests_per_thousand": 87.543,
- "new_tests_per_thousand": 2.036,
- "new_tests_smoothed": 43549.0,
- "new_tests_smoothed_per_thousand": 1.708,
- "tests_per_case": 2018.828,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 52.31
- },
- {
- "date": "2020-06-26",
- "total_cases": 7558.0,
- "new_cases": 37.0,
- "new_cases_smoothed": 23.857,
- "total_deaths": 104.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 296.394,
- "new_cases_per_million": 1.451,
- "new_cases_smoothed_per_million": 0.936,
- "total_deaths_per_million": 4.078,
- "new_deaths_per_million": 0.039,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 49498.0,
- "total_tests": 2281839.0,
- "total_tests_per_thousand": 89.484,
- "new_tests_per_thousand": 1.941,
- "new_tests_smoothed": 44519.0,
- "new_tests_smoothed_per_thousand": 1.746,
- "tests_per_case": 1866.066,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 52.31
- },
- {
- "date": "2020-06-27",
- "total_cases": 7595.0,
- "new_cases": 37.0,
- "new_cases_smoothed": 26.571,
- "total_deaths": 104.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 297.845,
- "new_cases_per_million": 1.451,
- "new_cases_smoothed_per_million": 1.042,
- "total_deaths_per_million": 4.078,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 54222.0,
- "total_tests": 2336061.0,
- "total_tests_per_thousand": 91.611,
- "new_tests_per_thousand": 2.126,
- "new_tests_smoothed": 47240.0,
- "new_tests_smoothed_per_thousand": 1.853,
- "tests_per_case": 1777.849,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 52.31
- },
- {
- "date": "2020-06-28",
- "total_cases": 7641.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 29.286,
- "total_deaths": 104.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 299.648,
- "new_cases_per_million": 1.804,
- "new_cases_smoothed_per_million": 1.148,
- "total_deaths_per_million": 4.078,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 43114.0,
- "total_tests": 2379175.0,
- "total_tests_per_thousand": 93.301,
- "new_tests_per_thousand": 1.691,
- "new_tests_smoothed": 48264.0,
- "new_tests_smoothed_per_thousand": 1.893,
- "tests_per_case": 1648.039,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 52.31
- },
- {
- "date": "2020-06-29",
- "total_cases": 7686.0,
- "new_cases": 45.0,
- "new_cases_smoothed": 32.143,
- "total_deaths": 104.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 301.413,
- "new_cases_per_million": 1.765,
- "new_cases_smoothed_per_million": 1.261,
- "total_deaths_per_million": 4.078,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 36520.0,
- "total_tests": 2415695.0,
- "total_tests_per_thousand": 94.734,
- "new_tests_per_thousand": 1.432,
- "new_tests_smoothed": 43978.0,
- "new_tests_smoothed_per_thousand": 1.725,
- "tests_per_case": 1368.204,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 52.31
- },
- {
- "date": "2020-06-30",
- "total_cases": 7767.0,
- "new_cases": 81.0,
- "new_cases_smoothed": 41.857,
- "total_deaths": 104.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 304.59,
- "new_cases_per_million": 3.176,
- "new_cases_smoothed_per_million": 1.641,
- "total_deaths_per_million": 4.078,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 40287.0,
- "total_tests": 2455982.0,
- "total_tests_per_thousand": 96.313,
- "new_tests_per_thousand": 1.58,
- "new_tests_smoothed": 46166.0,
- "new_tests_smoothed_per_thousand": 1.81,
- "tests_per_case": 1102.942,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 52.31
- },
- {
- "date": "2020-07-01",
- "total_cases": 7834.0,
- "new_cases": 67.0,
- "new_cases_smoothed": 48.857,
- "total_deaths": 104.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 307.217,
- "new_cases_per_million": 2.627,
- "new_cases_smoothed_per_million": 1.916,
- "total_deaths_per_million": 4.078,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 49941.0,
- "total_tests": 2505923.0,
- "total_tests_per_thousand": 98.272,
- "new_tests_per_thousand": 1.958,
- "new_tests_smoothed": 46500.0,
- "new_tests_smoothed_per_thousand": 1.824,
- "tests_per_case": 951.7539999999999,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 68.98
- },
- {
- "date": "2020-07-02",
- "total_cases": 7920.0,
- "new_cases": 86.0,
- "new_cases_smoothed": 57.0,
- "total_deaths": 104.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 310.59,
- "new_cases_per_million": 3.373,
- "new_cases_smoothed_per_million": 2.235,
- "total_deaths_per_million": 4.078,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.006,
- "new_tests": 57859.0,
- "total_tests": 2563782.0,
- "total_tests_per_thousand": 100.541,
- "new_tests_per_thousand": 2.269,
- "new_tests_smoothed": 47349.0,
- "new_tests_smoothed_per_thousand": 1.857,
- "tests_per_case": 830.684,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 68.98
- },
- {
- "date": "2020-07-03",
- "total_cases": 8001.0,
- "new_cases": 81.0,
- "new_cases_smoothed": 63.286,
- "total_deaths": 104.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 313.766,
- "new_cases_per_million": 3.176,
- "new_cases_smoothed_per_million": 2.482,
- "total_deaths_per_million": 4.078,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 54078.0,
- "total_tests": 2617860.0,
- "total_tests_per_thousand": 102.662,
- "new_tests_per_thousand": 2.121,
- "new_tests_smoothed": 48003.0,
- "new_tests_smoothed_per_thousand": 1.882,
- "tests_per_case": 758.512,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 68.98
- },
- {
- "date": "2020-07-04",
- "total_cases": 8255.0,
- "new_cases": 254.0,
- "new_cases_smoothed": 94.286,
- "total_deaths": 104.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 323.727,
- "new_cases_per_million": 9.961,
- "new_cases_smoothed_per_million": 3.697,
- "total_deaths_per_million": 4.078,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 50176.0,
- "total_tests": 2668036.0,
- "total_tests_per_thousand": 104.629,
- "new_tests_per_thousand": 1.968,
- "new_tests_smoothed": 47425.0,
- "new_tests_smoothed_per_thousand": 1.86,
- "tests_per_case": 502.99199999999996,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 68.98
- },
- {
- "date": "2020-07-05",
- "total_cases": 8362.0,
- "new_cases": 107.0,
- "new_cases_smoothed": 103.0,
- "total_deaths": 104.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 327.923,
- "new_cases_per_million": 4.196,
- "new_cases_smoothed_per_million": 4.039,
- "total_deaths_per_million": 4.078,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 45399.0,
- "total_tests": 2713435.0,
- "total_tests_per_thousand": 106.41,
- "new_tests_per_thousand": 1.78,
- "new_tests_smoothed": 47751.0,
- "new_tests_smoothed_per_thousand": 1.873,
- "tests_per_case": 463.602,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 68.98
- },
- {
- "date": "2020-07-06",
- "total_cases": 8449.0,
- "new_cases": 87.0,
- "new_cases_smoothed": 109.0,
- "total_deaths": 104.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 331.335,
- "new_cases_per_million": 3.412,
- "new_cases_smoothed_per_million": 4.275,
- "total_deaths_per_million": 4.078,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 45730.0,
- "total_tests": 2759165.0,
- "total_tests_per_thousand": 108.203,
- "new_tests_per_thousand": 1.793,
- "new_tests_smoothed": 49067.0,
- "new_tests_smoothed_per_thousand": 1.924,
- "tests_per_case": 450.156,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 68.98
- },
- {
- "date": "2020-07-07",
- "total_cases": 8586.0,
- "new_cases": 137.0,
- "new_cases_smoothed": 117.0,
- "total_deaths": 106.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 336.707,
- "new_cases_per_million": 5.373,
- "new_cases_smoothed_per_million": 4.588,
- "total_deaths_per_million": 4.157,
- "new_deaths_per_million": 0.078,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 41942.0,
- "total_tests": 2801107.0,
- "total_tests_per_thousand": 109.848,
- "new_tests_per_thousand": 1.645,
- "new_tests_smoothed": 49304.0,
- "new_tests_smoothed_per_thousand": 1.933,
- "tests_per_case": 421.402,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 68.98
- },
- {
- "date": "2020-07-08",
- "total_cases": 8755.0,
- "new_cases": 169.0,
- "new_cases_smoothed": 131.571,
- "total_deaths": 106.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 343.335,
- "new_cases_per_million": 6.627,
- "new_cases_smoothed_per_million": 5.16,
- "total_deaths_per_million": 4.157,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 55299.0,
- "total_tests": 2856406.0,
- "total_tests_per_thousand": 112.016,
- "new_tests_per_thousand": 2.169,
- "new_tests_smoothed": 50069.0,
- "new_tests_smoothed_per_thousand": 1.963,
- "tests_per_case": 380.546,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 75.46
- },
- {
- "date": "2020-07-09",
- "total_cases": 8886.0,
- "new_cases": 131.0,
- "new_cases_smoothed": 138.0,
- "total_deaths": 106.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 348.472,
- "new_cases_per_million": 5.137,
- "new_cases_smoothed_per_million": 5.412,
- "total_deaths_per_million": 4.157,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 54425.0,
- "total_tests": 2910831.0,
- "total_tests_per_thousand": 114.151,
- "new_tests_per_thousand": 2.134,
- "new_tests_smoothed": 49578.0,
- "new_tests_smoothed_per_thousand": 1.944,
- "tests_per_case": 359.26099999999997,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 75.46
- },
- {
- "date": "2020-07-10",
- "total_cases": 9059.0,
- "new_cases": 173.0,
- "new_cases_smoothed": 151.143,
- "total_deaths": 106.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 355.257,
- "new_cases_per_million": 6.784,
- "new_cases_smoothed_per_million": 5.927,
- "total_deaths_per_million": 4.157,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 59437.0,
- "total_tests": 2970268.0,
- "total_tests_per_thousand": 116.482,
- "new_tests_per_thousand": 2.331,
- "new_tests_smoothed": 50344.0,
- "new_tests_smoothed_per_thousand": 1.974,
- "tests_per_case": 333.089,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 75.46
- },
- {
- "date": "2020-07-11",
- "total_cases": 9359.0,
- "new_cases": 300.0,
- "new_cases_smoothed": 157.714,
- "total_deaths": 106.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 367.021,
- "new_cases_per_million": 11.765,
- "new_cases_smoothed_per_million": 6.185,
- "total_deaths_per_million": 4.157,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 51225.0,
- "total_tests": 3021493.0,
- "total_tests_per_thousand": 118.49,
- "new_tests_per_thousand": 2.009,
- "new_tests_smoothed": 50494.0,
- "new_tests_smoothed_per_thousand": 1.98,
- "tests_per_case": 320.161,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 75.46
- },
- {
- "date": "2020-07-12",
- "total_cases": 9553.0,
- "new_cases": 194.0,
- "new_cases_smoothed": 170.143,
- "total_deaths": 107.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 374.629,
- "new_cases_per_million": 7.608,
- "new_cases_smoothed_per_million": 6.672,
- "total_deaths_per_million": 4.196,
- "new_deaths_per_million": 0.039,
- "new_deaths_smoothed_per_million": 0.017,
- "new_tests": 53995.0,
- "total_tests": 3075488.0,
- "total_tests_per_thousand": 120.608,
- "new_tests_per_thousand": 2.117,
- "new_tests_smoothed": 51722.0,
- "new_tests_smoothed_per_thousand": 2.028,
- "tests_per_case": 303.992,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 75.46
- },
- {
- "date": "2020-07-13",
- "total_cases": 9797.0,
- "new_cases": 244.0,
- "new_cases_smoothed": 192.571,
- "total_deaths": 108.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 384.198,
- "new_cases_per_million": 9.569,
- "new_cases_smoothed_per_million": 7.552,
- "total_deaths_per_million": 4.235,
- "new_deaths_per_million": 0.039,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 42300.0,
- "total_tests": 3117788.0,
- "total_tests_per_thousand": 122.267,
- "new_tests_per_thousand": 1.659,
- "new_tests_smoothed": 51232.0,
- "new_tests_smoothed_per_thousand": 2.009,
- "tests_per_case": 266.04200000000003,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 71.76
- },
- {
- "date": "2020-07-14",
- "total_cases": 9980.0,
- "new_cases": 183.0,
- "new_cases_smoothed": 199.143,
- "total_deaths": 108.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 391.374,
- "new_cases_per_million": 7.177,
- "new_cases_smoothed_per_million": 7.81,
- "total_deaths_per_million": 4.235,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 44449.0,
- "total_tests": 3162237.0,
- "total_tests_per_thousand": 124.01,
- "new_tests_per_thousand": 1.743,
- "new_tests_smoothed": 51590.0,
- "new_tests_smoothed_per_thousand": 2.023,
- "tests_per_case": 259.06,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 71.76
- },
- {
- "date": "2020-07-15",
- "total_cases": 10251.0,
- "new_cases": 271.0,
- "new_cases_smoothed": 213.714,
- "total_deaths": 108.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 402.002,
- "new_cases_per_million": 10.628,
- "new_cases_smoothed_per_million": 8.381,
- "total_deaths_per_million": 4.235,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 59904.0,
- "total_tests": 3222141.0,
- "total_tests_per_thousand": 126.359,
- "new_tests_per_thousand": 2.349,
- "new_tests_smoothed": 52248.0,
- "new_tests_smoothed_per_thousand": 2.049,
- "tests_per_case": 244.476,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 71.76
- },
- {
- "date": "2020-07-16",
- "total_cases": 10495.0,
- "new_cases": 244.0,
- "new_cases_smoothed": 229.857,
- "total_deaths": 111.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 411.571,
- "new_cases_per_million": 9.569,
- "new_cases_smoothed_per_million": 9.014,
- "total_deaths_per_million": 4.353,
- "new_deaths_per_million": 0.118,
- "new_deaths_smoothed_per_million": 0.028,
- "new_tests": 65575.0,
- "total_tests": 3287716.0,
- "total_tests_per_thousand": 128.931,
- "new_tests_per_thousand": 2.572,
- "new_tests_smoothed": 53841.0,
- "new_tests_smoothed_per_thousand": 2.111,
- "tests_per_case": 234.237,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 68.06
- },
- {
- "date": "2020-07-17",
- "total_cases": 10810.0,
- "new_cases": 315.0,
- "new_cases_smoothed": 250.143,
- "total_deaths": 113.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 423.924,
- "new_cases_per_million": 12.353,
- "new_cases_smoothed_per_million": 9.81,
- "total_deaths_per_million": 4.431,
- "new_deaths_per_million": 0.078,
- "new_deaths_smoothed_per_million": 0.039,
- "new_tests": 62728.0,
- "total_tests": 3350444.0,
- "total_tests_per_thousand": 131.391,
- "new_tests_per_thousand": 2.46,
- "new_tests_smoothed": 54311.0,
- "new_tests_smoothed_per_thousand": 2.13,
- "tests_per_case": 217.12,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 68.06
- },
- {
- "date": "2020-07-18",
- "total_cases": 11235.0,
- "new_cases": 425.0,
- "new_cases_smoothed": 268.0,
- "total_deaths": 116.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 440.59,
- "new_cases_per_million": 16.667,
- "new_cases_smoothed_per_million": 10.51,
- "total_deaths_per_million": 4.549,
- "new_deaths_per_million": 0.118,
- "new_deaths_smoothed_per_million": 0.056,
- "new_tests": 63387.0,
- "total_tests": 3413831.0,
- "total_tests_per_thousand": 133.876,
- "new_tests_per_thousand": 2.486,
- "new_tests_smoothed": 56048.0,
- "new_tests_smoothed_per_thousand": 2.198,
- "tests_per_case": 209.13400000000001,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 68.06
- },
- {
- "date": "2020-07-19",
- "total_cases": 11441.0,
- "new_cases": 206.0,
- "new_cases_smoothed": 269.714,
- "total_deaths": 118.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 448.669,
- "new_cases_per_million": 8.078,
- "new_cases_smoothed_per_million": 10.577,
- "total_deaths_per_million": 4.627,
- "new_deaths_per_million": 0.078,
- "new_deaths_smoothed_per_million": 0.062,
- "new_tests": 62632.0,
- "total_tests": 3476463.0,
- "total_tests_per_thousand": 136.333,
- "new_tests_per_thousand": 2.456,
- "new_tests_smoothed": 57282.0,
- "new_tests_smoothed_per_thousand": 2.246,
- "tests_per_case": 212.38,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 68.06
- },
- {
- "date": "2020-07-20",
- "total_cases": 11802.0,
- "new_cases": 361.0,
- "new_cases_smoothed": 286.429,
- "total_deaths": 122.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 462.826,
- "new_cases_per_million": 14.157,
- "new_cases_smoothed_per_million": 11.233,
- "total_deaths_per_million": 4.784,
- "new_deaths_per_million": 0.157,
- "new_deaths_smoothed_per_million": 0.078,
- "new_tests": 57962.0,
- "total_tests": 3534425.0,
- "total_tests_per_thousand": 138.606,
- "new_tests_per_thousand": 2.273,
- "new_tests_smoothed": 59520.0,
- "new_tests_smoothed_per_thousand": 2.334,
- "tests_per_case": 207.8,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 68.06
- },
- {
- "date": "2020-07-21",
- "total_cases": 12069.0,
- "new_cases": 267.0,
- "new_cases_smoothed": 298.429,
- "total_deaths": 123.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 473.296,
- "new_cases_per_million": 10.471,
- "new_cases_smoothed_per_million": 11.703,
- "total_deaths_per_million": 4.824,
- "new_deaths_per_million": 0.039,
- "new_deaths_smoothed_per_million": 0.084,
- "new_tests": 56310.0,
- "total_tests": 3590735.0,
- "total_tests_per_thousand": 140.814,
- "new_tests_per_thousand": 2.208,
- "new_tests_smoothed": 61214.0,
- "new_tests_smoothed_per_thousand": 2.401,
- "tests_per_case": 205.12099999999998,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 68.06
- },
- {
- "date": "2020-07-22",
- "total_cases": 12428.0,
- "new_cases": 359.0,
- "new_cases_smoothed": 311.0,
- "total_deaths": 126.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 487.375,
- "new_cases_per_million": 14.078,
- "new_cases_smoothed_per_million": 12.196,
- "total_deaths_per_million": 4.941,
- "new_deaths_per_million": 0.118,
- "new_deaths_smoothed_per_million": 0.101,
- "new_tests": 59794.0,
- "total_tests": 3650529.0,
- "total_tests_per_thousand": 143.159,
- "new_tests_per_thousand": 2.345,
- "new_tests_smoothed": 61198.0,
- "new_tests_smoothed_per_thousand": 2.4,
- "tests_per_case": 196.778,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 68.06
- },
- {
- "date": "2020-07-23",
- "total_cases": 12896.0,
- "new_cases": 468.0,
- "new_cases_smoothed": 343.0,
- "total_deaths": 128.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 505.728,
- "new_cases_per_million": 18.353,
- "new_cases_smoothed_per_million": 13.451,
- "total_deaths_per_million": 5.02,
- "new_deaths_per_million": 0.078,
- "new_deaths_smoothed_per_million": 0.095,
- "new_tests": 69308.0,
- "total_tests": 3719837.0,
- "total_tests_per_thousand": 145.877,
- "new_tests_per_thousand": 2.718,
- "new_tests_smoothed": 61732.0,
- "new_tests_smoothed_per_thousand": 2.421,
- "tests_per_case": 179.977,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 68.06
- },
- {
- "date": "2020-07-24",
- "total_cases": 13306.0,
- "new_cases": 410.0,
- "new_cases_smoothed": 356.571,
- "total_deaths": 133.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 521.806,
- "new_cases_per_million": 16.079,
- "new_cases_smoothed_per_million": 13.983,
- "total_deaths_per_million": 5.216,
- "new_deaths_per_million": 0.196,
- "new_deaths_smoothed_per_million": 0.112,
- "new_tests": 75584.0,
- "total_tests": 3795421.0,
- "total_tests_per_thousand": 148.841,
- "new_tests_per_thousand": 2.964,
- "new_tests_smoothed": 63568.0,
- "new_tests_smoothed_per_thousand": 2.493,
- "tests_per_case": 178.27599999999998,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 68.06
- },
- {
- "date": "2020-07-25",
- "total_cases": 13595.0,
- "new_cases": 289.0,
- "new_cases_smoothed": 337.143,
- "total_deaths": 139.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 533.14,
- "new_cases_per_million": 11.333,
- "new_cases_smoothed_per_million": 13.221,
- "total_deaths_per_million": 5.451,
- "new_deaths_per_million": 0.235,
- "new_deaths_smoothed_per_million": 0.129,
- "new_tests": 64084.0,
- "total_tests": 3859505.0,
- "total_tests_per_thousand": 151.354,
- "new_tests_per_thousand": 2.513,
- "new_tests_smoothed": 63668.0,
- "new_tests_smoothed_per_thousand": 2.497,
- "tests_per_case": 188.84599999999998,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 68.06
- },
- {
- "date": "2020-07-26",
- "total_cases": 13950.0,
- "new_cases": 355.0,
- "new_cases_smoothed": 358.429,
- "total_deaths": 145.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 547.061,
- "new_cases_per_million": 13.922,
- "new_cases_smoothed_per_million": 14.056,
- "total_deaths_per_million": 5.686,
- "new_deaths_per_million": 0.235,
- "new_deaths_smoothed_per_million": 0.151,
- "new_tests": 75619.0,
- "total_tests": 3935124.0,
- "total_tests_per_thousand": 154.319,
- "new_tests_per_thousand": 2.965,
- "new_tests_smoothed": 65523.0,
- "new_tests_smoothed_per_thousand": 2.57,
- "tests_per_case": 182.80599999999998,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 68.06
- },
- {
- "date": "2020-07-27",
- "total_cases": 14403.0,
- "new_cases": 453.0,
- "new_cases_smoothed": 371.571,
- "total_deaths": 155.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 564.826,
- "new_cases_per_million": 17.765,
- "new_cases_smoothed_per_million": 14.571,
- "total_deaths_per_million": 6.078,
- "new_deaths_per_million": 0.392,
- "new_deaths_smoothed_per_million": 0.185,
- "new_tests": 51966.0,
- "total_tests": 3987090.0,
- "total_tests_per_thousand": 156.357,
- "new_tests_per_thousand": 2.038,
- "new_tests_smoothed": 64666.0,
- "new_tests_smoothed_per_thousand": 2.536,
- "tests_per_case": 174.03400000000002,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 68.06
- },
- {
- "date": "2020-07-28",
- "total_cases": 14935.0,
- "new_cases": 532.0,
- "new_cases_smoothed": 409.429,
- "total_deaths": 161.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.429,
- "total_cases_per_million": 585.689,
- "new_cases_per_million": 20.863,
- "new_cases_smoothed_per_million": 16.056,
- "total_deaths_per_million": 6.314,
- "new_deaths_per_million": 0.235,
- "new_deaths_smoothed_per_million": 0.213,
- "new_tests_smoothed": 64562.0,
- "new_tests_smoothed_per_thousand": 2.532,
- "tests_per_case": 157.688,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 68.06
- },
- {
- "date": "2020-07-29",
- "total_cases": 15304.0,
- "new_cases": 369.0,
- "new_cases_smoothed": 410.857,
- "total_deaths": 167.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.857,
- "total_cases_per_million": 600.16,
- "new_cases_per_million": 14.471,
- "new_cases_smoothed_per_million": 16.112,
- "total_deaths_per_million": 6.549,
- "new_deaths_per_million": 0.235,
- "new_deaths_smoothed_per_million": 0.23,
- "total_tests": 4098249.0,
- "total_tests_per_thousand": 160.716,
- "new_tests_smoothed": 63960.0,
- "new_tests_smoothed_per_thousand": 2.508,
- "tests_per_case": 155.675,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 68.06
- },
- {
- "date": "2020-07-30",
- "total_cases": 15582.0,
- "new_cases": 278.0,
- "new_cases_smoothed": 383.714,
- "total_deaths": 176.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 6.857,
- "total_cases_per_million": 611.062,
- "new_cases_per_million": 10.902,
- "new_cases_smoothed_per_million": 15.048,
- "total_deaths_per_million": 6.902,
- "new_deaths_per_million": 0.353,
- "new_deaths_smoothed_per_million": 0.269,
- "new_tests": 66205.0,
- "total_tests": 4164454.0,
- "total_tests_per_thousand": 163.313,
- "new_tests_per_thousand": 2.596,
- "new_tests_smoothed": 63517.0,
- "new_tests_smoothed_per_thousand": 2.491,
- "tests_per_case": 165.532,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 68.06
- },
- {
- "date": "2020-07-31",
- "total_cases": 16303.0,
- "new_cases": 721.0,
- "new_cases_smoothed": 428.143,
- "total_deaths": 189.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 8.0,
- "total_cases_per_million": 639.336,
- "new_cases_per_million": 28.275,
- "new_cases_smoothed_per_million": 16.79,
- "total_deaths_per_million": 7.412,
- "new_deaths_per_million": 0.51,
- "new_deaths_smoothed_per_million": 0.314,
- "new_tests_smoothed": 62917.0,
- "new_tests_smoothed_per_thousand": 2.467,
- "tests_per_case": 146.953,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 68.06
- },
- {
- "date": "2020-08-01",
- "total_cases": 16905.0,
- "new_cases": 602.0,
- "new_cases_smoothed": 472.857,
- "total_deaths": 196.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 662.944,
- "new_cases_per_million": 23.608,
- "new_cases_smoothed_per_million": 18.544,
- "total_deaths_per_million": 7.686,
- "new_deaths_per_million": 0.275,
- "new_deaths_smoothed_per_million": 0.319,
- "total_tests": 4307224.0,
- "total_tests_per_thousand": 168.912,
- "new_tests_smoothed": 63960.0,
- "new_tests_smoothed_per_thousand": 2.508,
- "tests_per_case": 135.263,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 68.06
- },
- {
- "date": "2020-08-02",
- "total_cases": 17282.0,
- "new_cases": 377.0,
- "new_cases_smoothed": 476.0,
- "total_deaths": 200.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 7.857,
- "total_cases_per_million": 677.729,
- "new_cases_per_million": 14.784,
- "new_cases_smoothed_per_million": 18.667,
- "total_deaths_per_million": 7.843,
- "new_deaths_per_million": 0.157,
- "new_deaths_smoothed_per_million": 0.308,
- "new_tests": 39158.0,
- "total_tests": 4346382.0,
- "total_tests_per_thousand": 170.447,
- "new_tests_per_thousand": 1.536,
- "new_tests_smoothed": 58751.0,
- "new_tests_smoothed_per_thousand": 2.304,
- "tests_per_case": 123.426,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 75.46
- },
- {
- "date": "2020-08-03",
- "total_cases": 17923.0,
- "new_cases": 641.0,
- "new_cases_smoothed": 502.857,
- "total_deaths": 208.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 7.571,
- "total_cases_per_million": 702.866,
- "new_cases_per_million": 25.137,
- "new_cases_smoothed_per_million": 19.72,
- "total_deaths_per_million": 8.157,
- "new_deaths_per_million": 0.314,
- "new_deaths_smoothed_per_million": 0.297,
- "new_tests": 40529.0,
- "total_tests": 4386911.0,
- "total_tests_per_thousand": 172.037,
- "new_tests_per_thousand": 1.589,
- "new_tests_smoothed": 57117.0,
- "new_tests_smoothed_per_thousand": 2.24,
- "tests_per_case": 113.585,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-04",
- "total_cases": 18318.0,
- "new_cases": 395.0,
- "new_cases_smoothed": 483.286,
- "total_deaths": 221.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 718.356,
- "new_cases_per_million": 15.49,
- "new_cases_smoothed_per_million": 18.952,
- "total_deaths_per_million": 8.667,
- "new_deaths_per_million": 0.51,
- "new_deaths_smoothed_per_million": 0.336,
- "new_tests": 94706.0,
- "total_tests": 4481617.0,
- "total_tests_per_thousand": 175.751,
- "new_tests_per_thousand": 3.714,
- "new_tests_smoothed": 62707.0,
- "new_tests_smoothed_per_thousand": 2.459,
- "tests_per_case": 129.751,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-05",
- "total_cases": 18729.0,
- "new_cases": 411.0,
- "new_cases_smoothed": 489.286,
- "total_deaths": 232.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 9.286,
- "total_cases_per_million": 734.474,
- "new_cases_per_million": 16.118,
- "new_cases_smoothed_per_million": 19.188,
- "total_deaths_per_million": 9.098,
- "new_deaths_per_million": 0.431,
- "new_deaths_smoothed_per_million": 0.364,
- "new_tests": 70464.0,
- "total_tests": 4552081.0,
- "total_tests_per_thousand": 178.514,
- "new_tests_per_thousand": 2.763,
- "new_tests_smoothed": 64833.0,
- "new_tests_smoothed_per_thousand": 2.542,
- "tests_per_case": 132.505,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-06",
- "total_cases": 19444.0,
- "new_cases": 715.0,
- "new_cases_smoothed": 551.714,
- "total_deaths": 247.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 10.143,
- "total_cases_per_million": 762.513,
- "new_cases_per_million": 28.039,
- "new_cases_smoothed_per_million": 21.636,
- "total_deaths_per_million": 9.686,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 0.398,
- "new_tests": 80008.0,
- "total_tests": 4632089.0,
- "total_tests_per_thousand": 181.651,
- "new_tests_per_thousand": 3.138,
- "new_tests_smoothed": 66805.0,
- "new_tests_smoothed_per_thousand": 2.62,
- "tests_per_case": 121.086,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-07",
- "total_cases": 19862.0,
- "new_cases": 418.0,
- "new_cases_smoothed": 508.429,
- "total_deaths": 255.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 9.429,
- "total_cases_per_million": 778.906,
- "new_cases_per_million": 16.392,
- "new_cases_smoothed_per_million": 19.938,
- "total_deaths_per_million": 10.0,
- "new_deaths_per_million": 0.314,
- "new_deaths_smoothed_per_million": 0.37,
- "new_tests": 91937.0,
- "total_tests": 4724026.0,
- "total_tests_per_thousand": 185.257,
- "new_tests_per_thousand": 3.605,
- "new_tests_smoothed": 69741.0,
- "new_tests_smoothed_per_thousand": 2.735,
- "tests_per_case": 137.17,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-08",
- "total_cases": 20272.0,
- "new_cases": 410.0,
- "new_cases_smoothed": 481.0,
- "total_deaths": 266.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 10.0,
- "total_cases_per_million": 794.984,
- "new_cases_per_million": 16.079,
- "new_cases_smoothed_per_million": 18.863,
- "total_deaths_per_million": 10.431,
- "new_deaths_per_million": 0.431,
- "new_deaths_smoothed_per_million": 0.392,
- "new_tests": 40197.0,
- "total_tests": 4764223.0,
- "total_tests_per_thousand": 186.833,
- "new_tests_per_thousand": 1.576,
- "new_tests_smoothed": 65286.0,
- "new_tests_smoothed_per_thousand": 2.56,
- "tests_per_case": 135.73,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-09",
- "total_cases": 20698.0,
- "new_cases": 426.0,
- "new_cases_smoothed": 488.0,
- "total_deaths": 278.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 11.143,
- "total_cases_per_million": 811.69,
- "new_cases_per_million": 16.706,
- "new_cases_smoothed_per_million": 19.137,
- "total_deaths_per_million": 10.902,
- "new_deaths_per_million": 0.471,
- "new_deaths_smoothed_per_million": 0.437,
- "new_tests": 93191.0,
- "total_tests": 4857414.0,
- "total_tests_per_thousand": 190.488,
- "new_tests_per_thousand": 3.655,
- "new_tests_smoothed": 73005.0,
- "new_tests_smoothed_per_thousand": 2.863,
- "tests_per_case": 149.6,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-10",
- "total_cases": 21084.0,
- "new_cases": 386.0,
- "new_cases_smoothed": 451.571,
- "total_deaths": 295.0,
- "new_deaths": 17.0,
- "new_deaths_smoothed": 12.429,
- "total_cases_per_million": 826.827,
- "new_cases_per_million": 15.137,
- "new_cases_smoothed_per_million": 17.709,
- "total_deaths_per_million": 11.569,
- "new_deaths_per_million": 0.667,
- "new_deaths_smoothed_per_million": 0.487,
- "new_tests": 61132.0,
- "total_tests": 4918546.0,
- "total_tests_per_thousand": 192.885,
- "new_tests_per_thousand": 2.397,
- "new_tests_smoothed": 75948.0,
- "new_tests_smoothed_per_thousand": 2.978,
- "tests_per_case": 168.18599999999998,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-11",
- "total_cases": 21397.0,
- "new_cases": 313.0,
- "new_cases_smoothed": 439.857,
- "total_deaths": 313.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 13.143,
- "total_cases_per_million": 839.102,
- "new_cases_per_million": 12.275,
- "new_cases_smoothed_per_million": 17.249,
- "total_deaths_per_million": 12.275,
- "new_deaths_per_million": 0.706,
- "new_deaths_smoothed_per_million": 0.515,
- "new_tests": 61626.0,
- "total_tests": 4980172.0,
- "total_tests_per_thousand": 195.302,
- "new_tests_per_thousand": 2.417,
- "new_tests_smoothed": 71222.0,
- "new_tests_smoothed_per_thousand": 2.793,
- "tests_per_case": 161.921,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-12",
- "total_cases": 21713.0,
- "new_cases": 316.0,
- "new_cases_smoothed": 426.286,
- "total_deaths": 331.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 14.143,
- "total_cases_per_million": 851.494,
- "new_cases_per_million": 12.392,
- "new_cases_smoothed_per_million": 16.717,
- "total_deaths_per_million": 12.98,
- "new_deaths_per_million": 0.706,
- "new_deaths_smoothed_per_million": 0.555,
- "new_tests": 61172.0,
- "total_tests": 5041344.0,
- "total_tests_per_thousand": 197.701,
- "new_tests_per_thousand": 2.399,
- "new_tests_smoothed": 69895.0,
- "new_tests_smoothed_per_thousand": 2.741,
- "tests_per_case": 163.963,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-13",
- "total_cases": 22127.0,
- "new_cases": 414.0,
- "new_cases_smoothed": 383.286,
- "total_deaths": 352.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 15.0,
- "total_cases_per_million": 867.73,
- "new_cases_per_million": 16.235,
- "new_cases_smoothed_per_million": 15.031,
- "total_deaths_per_million": 13.804,
- "new_deaths_per_million": 0.824,
- "new_deaths_smoothed_per_million": 0.588,
- "new_tests": 68441.0,
- "total_tests": 5109785.0,
- "total_tests_per_thousand": 200.385,
- "new_tests_per_thousand": 2.684,
- "new_tests_smoothed": 68242.0,
- "new_tests_smoothed_per_thousand": 2.676,
- "tests_per_case": 178.045,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-14",
- "total_cases": 22358.0,
- "new_cases": 231.0,
- "new_cases_smoothed": 356.571,
- "total_deaths": 361.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 15.143,
- "total_cases_per_million": 876.788,
- "new_cases_per_million": 9.059,
- "new_cases_smoothed_per_million": 13.983,
- "total_deaths_per_million": 14.157,
- "new_deaths_per_million": 0.353,
- "new_deaths_smoothed_per_million": 0.594,
- "new_tests": 70629.0,
- "total_tests": 5180414.0,
- "total_tests_per_thousand": 203.154,
- "new_tests_per_thousand": 2.77,
- "new_tests_smoothed": 65198.0,
- "new_tests_smoothed_per_thousand": 2.557,
- "tests_per_case": 182.847,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-15",
- "total_cases": 22743.0,
- "new_cases": 385.0,
- "new_cases_smoothed": 353.0,
- "total_deaths": 375.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 15.571,
- "total_cases_per_million": 891.887,
- "new_cases_per_million": 15.098,
- "new_cases_smoothed_per_million": 13.843,
- "total_deaths_per_million": 14.706,
- "new_deaths_per_million": 0.549,
- "new_deaths_smoothed_per_million": 0.611,
- "new_tests": 63370.0,
- "total_tests": 5243784.0,
- "total_tests_per_thousand": 205.64,
- "new_tests_per_thousand": 2.485,
- "new_tests_smoothed": 68509.0,
- "new_tests_smoothed_per_thousand": 2.687,
- "tests_per_case": 194.076,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-16",
- "total_cases": 23035.0,
- "new_cases": 292.0,
- "new_cases_smoothed": 333.857,
- "total_deaths": 379.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 14.429,
- "total_cases_per_million": 903.338,
- "new_cases_per_million": 11.451,
- "new_cases_smoothed_per_million": 13.092,
- "total_deaths_per_million": 14.863,
- "new_deaths_per_million": 0.157,
- "new_deaths_smoothed_per_million": 0.566,
- "new_tests": 53774.0,
- "total_tests": 5297558.0,
- "total_tests_per_thousand": 207.748,
- "new_tests_per_thousand": 2.109,
- "new_tests_smoothed": 62878.0,
- "new_tests_smoothed_per_thousand": 2.466,
- "tests_per_case": 188.338,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-17",
- "total_cases": 23288.0,
- "new_cases": 253.0,
- "new_cases_smoothed": 314.857,
- "total_deaths": 396.0,
- "new_deaths": 17.0,
- "new_deaths_smoothed": 14.429,
- "total_cases_per_million": 913.259,
- "new_cases_per_million": 9.922,
- "new_cases_smoothed_per_million": 12.347,
- "total_deaths_per_million": 15.529,
- "new_deaths_per_million": 0.667,
- "new_deaths_smoothed_per_million": 0.566,
- "new_tests": 38539.0,
- "total_tests": 5336097.0,
- "total_tests_per_thousand": 209.26,
- "new_tests_per_thousand": 1.511,
- "new_tests_smoothed": 59650.0,
- "new_tests_smoothed_per_thousand": 2.339,
- "tests_per_case": 189.451,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-18",
- "total_cases": 23599.0,
- "new_cases": 311.0,
- "new_cases_smoothed": 314.571,
- "total_deaths": 421.0,
- "new_deaths": 25.0,
- "new_deaths_smoothed": 15.429,
- "total_cases_per_million": 925.455,
- "new_cases_per_million": 12.196,
- "new_cases_smoothed_per_million": 12.336,
- "total_deaths_per_million": 16.51,
- "new_deaths_per_million": 0.98,
- "new_deaths_smoothed_per_million": 0.605,
- "new_tests": 44516.0,
- "total_tests": 5380613.0,
- "total_tests_per_thousand": 211.005,
- "new_tests_per_thousand": 1.746,
- "new_tests_smoothed": 57206.0,
- "new_tests_smoothed_per_thousand": 2.243,
- "tests_per_case": 181.854,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-19",
- "total_cases": 23773.0,
- "new_cases": 174.0,
- "new_cases_smoothed": 294.286,
- "total_deaths": 438.0,
- "new_deaths": 17.0,
- "new_deaths_smoothed": 15.286,
- "total_cases_per_million": 932.279,
- "new_cases_per_million": 6.824,
- "new_cases_smoothed_per_million": 11.541,
- "total_deaths_per_million": 17.177,
- "new_deaths_per_million": 0.667,
- "new_deaths_smoothed_per_million": 0.599,
- "new_tests": 59882.0,
- "total_tests": 5440495.0,
- "total_tests_per_thousand": 213.354,
- "new_tests_per_thousand": 2.348,
- "new_tests_smoothed": 57022.0,
- "new_tests_smoothed_per_thousand": 2.236,
- "tests_per_case": 193.764,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-20",
- "total_cases": 23993.0,
- "new_cases": 220.0,
- "new_cases_smoothed": 266.571,
- "total_deaths": 450.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 14.0,
- "total_cases_per_million": 940.906,
- "new_cases_per_million": 8.627,
- "new_cases_smoothed_per_million": 10.454,
- "total_deaths_per_million": 17.647,
- "new_deaths_per_million": 0.471,
- "new_deaths_smoothed_per_million": 0.549,
- "new_tests": 68336.0,
- "total_tests": 5508831.0,
- "total_tests_per_thousand": 216.034,
- "new_tests_per_thousand": 2.68,
- "new_tests_smoothed": 57007.0,
- "new_tests_smoothed_per_thousand": 2.236,
- "tests_per_case": 213.85299999999998,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-21",
- "total_cases": 24236.0,
- "new_cases": 243.0,
- "new_cases_smoothed": 268.286,
- "total_deaths": 463.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 14.571,
- "total_cases_per_million": 950.436,
- "new_cases_per_million": 9.529,
- "new_cases_smoothed_per_million": 10.521,
- "total_deaths_per_million": 18.157,
- "new_deaths_per_million": 0.51,
- "new_deaths_smoothed_per_million": 0.571,
- "new_tests_smoothed": 56334.0,
- "new_tests_smoothed_per_thousand": 2.209,
- "tests_per_case": 209.97799999999998,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-22",
- "total_cases": 24407.0,
- "new_cases": 171.0,
- "new_cases_smoothed": 237.714,
- "total_deaths": 472.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 13.857,
- "total_cases_per_million": 957.142,
- "new_cases_per_million": 6.706,
- "new_cases_smoothed_per_million": 9.322,
- "total_deaths_per_million": 18.51,
- "new_deaths_per_million": 0.353,
- "new_deaths_smoothed_per_million": 0.543,
- "new_tests_smoothed": 56698.0,
- "new_tests_smoothed_per_thousand": 2.223,
- "tests_per_case": 238.513,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-23",
- "total_cases": 24602.0,
- "new_cases": 195.0,
- "new_cases_smoothed": 223.857,
- "total_deaths": 485.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 15.143,
- "total_cases_per_million": 964.789,
- "new_cases_per_million": 7.647,
- "new_cases_smoothed_per_million": 8.779,
- "total_deaths_per_million": 19.02,
- "new_deaths_per_million": 0.51,
- "new_deaths_smoothed_per_million": 0.594,
- "total_tests": 5706587.0,
- "total_tests_per_thousand": 223.789,
- "new_tests_smoothed": 58433.0,
- "new_tests_smoothed_per_thousand": 2.292,
- "tests_per_case": 261.028,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-24",
- "total_cases": 24812.0,
- "new_cases": 210.0,
- "new_cases_smoothed": 217.714,
- "total_deaths": 502.0,
- "new_deaths": 17.0,
- "new_deaths_smoothed": 15.143,
- "total_cases_per_million": 973.024,
- "new_cases_per_million": 8.235,
- "new_cases_smoothed_per_million": 8.538,
- "total_deaths_per_million": 19.686,
- "new_deaths_per_million": 0.667,
- "new_deaths_smoothed_per_million": 0.594,
- "new_tests": 51447.0,
- "total_tests": 5758034.0,
- "total_tests_per_thousand": 225.806,
- "new_tests_per_thousand": 2.018,
- "new_tests_smoothed": 60277.0,
- "new_tests_smoothed_per_thousand": 2.364,
- "tests_per_case": 276.863,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-25",
- "total_cases": 24916.0,
- "new_cases": 104.0,
- "new_cases_smoothed": 188.143,
- "total_deaths": 517.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 13.714,
- "total_cases_per_million": 977.103,
- "new_cases_per_million": 4.078,
- "new_cases_smoothed_per_million": 7.378,
- "total_deaths_per_million": 20.275,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 0.538,
- "new_tests": 56675.0,
- "total_tests": 5814709.0,
- "total_tests_per_thousand": 228.029,
- "new_tests_per_thousand": 2.223,
- "new_tests_smoothed": 62014.0,
- "new_tests_smoothed_per_thousand": 2.432,
- "tests_per_case": 329.611,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-26",
- "total_cases": 25053.0,
- "new_cases": 137.0,
- "new_cases_smoothed": 182.857,
- "total_deaths": 525.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 12.429,
- "total_cases_per_million": 982.475,
- "new_cases_per_million": 5.373,
- "new_cases_smoothed_per_million": 7.171,
- "total_deaths_per_million": 20.588,
- "new_deaths_per_million": 0.314,
- "new_deaths_smoothed_per_million": 0.487,
- "new_tests": 71703.0,
- "total_tests": 5886412.0,
- "total_tests_per_thousand": 230.841,
- "new_tests_per_thousand": 2.812,
- "new_tests_smoothed": 63702.0,
- "new_tests_smoothed_per_thousand": 2.498,
- "tests_per_case": 348.37,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-27",
- "total_cases": 25205.0,
- "new_cases": 152.0,
- "new_cases_smoothed": 173.143,
- "total_deaths": 549.0,
- "new_deaths": 24.0,
- "new_deaths_smoothed": 14.143,
- "total_cases_per_million": 988.436,
- "new_cases_per_million": 5.961,
- "new_cases_smoothed_per_million": 6.79,
- "total_deaths_per_million": 21.53,
- "new_deaths_per_million": 0.941,
- "new_deaths_smoothed_per_million": 0.555,
- "new_tests": 86268.0,
- "total_tests": 5972680.0,
- "total_tests_per_thousand": 234.224,
- "new_tests_per_thousand": 3.383,
- "new_tests_smoothed": 66264.0,
- "new_tests_smoothed_per_thousand": 2.599,
- "tests_per_case": 382.713,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 79.17
- },
- {
- "date": "2020-08-28",
- "total_cases": 25322.0,
- "new_cases": 117.0,
- "new_cases_smoothed": 155.143,
- "total_deaths": 572.0,
- "new_deaths": 23.0,
- "new_deaths_smoothed": 15.571,
- "total_cases_per_million": 993.024,
- "new_cases_per_million": 4.588,
- "new_cases_smoothed_per_million": 6.084,
- "total_deaths_per_million": 22.431,
- "new_deaths_per_million": 0.902,
- "new_deaths_smoothed_per_million": 0.611,
- "new_tests_smoothed": 66159.0,
- "new_tests_smoothed_per_thousand": 2.594,
- "tests_per_case": 426.439,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 75.46
- },
- {
- "date": "2020-08-29",
- "total_cases": 25448.0,
- "new_cases": 126.0,
- "new_cases_smoothed": 148.714,
- "total_deaths": 583.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 15.857,
- "total_cases_per_million": 997.965,
- "new_cases_per_million": 4.941,
- "new_cases_smoothed_per_million": 5.832,
- "total_deaths_per_million": 22.863,
- "new_deaths_per_million": 0.431,
- "new_deaths_smoothed_per_million": 0.622,
- "new_tests_smoothed": 66054.0,
- "new_tests_smoothed_per_thousand": 2.59,
- "tests_per_case": 444.167,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 75.46
- },
- {
- "date": "2020-08-30",
- "total_cases": 25547.0,
- "new_cases": 99.0,
- "new_cases_smoothed": 135.0,
- "total_deaths": 600.0,
- "new_deaths": 17.0,
- "new_deaths_smoothed": 16.429,
- "total_cases_per_million": 1001.848,
- "new_cases_per_million": 3.882,
- "new_cases_smoothed_per_million": 5.294,
- "total_deaths_per_million": 23.53,
- "new_deaths_per_million": 0.667,
- "new_deaths_smoothed_per_million": 0.644,
- "total_tests": 6168229.0,
- "total_tests_per_thousand": 241.892,
- "new_tests_smoothed": 65949.0,
- "new_tests_smoothed_per_thousand": 2.586,
- "tests_per_case": 488.51099999999997,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 75.46
- },
- {
- "date": "2020-08-31",
- "total_cases": 25670.0,
- "new_cases": 123.0,
- "new_cases_smoothed": 122.571,
- "total_deaths": 611.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 15.571,
- "total_cases_per_million": 1006.671,
- "new_cases_per_million": 4.824,
- "new_cases_smoothed_per_million": 4.807,
- "total_deaths_per_million": 23.961,
- "new_deaths_per_million": 0.431,
- "new_deaths_smoothed_per_million": 0.611,
- "new_tests": 46224.0,
- "total_tests": 6214453.0,
- "total_tests_per_thousand": 243.705,
- "new_tests_per_thousand": 1.813,
- "new_tests_smoothed": 65203.0,
- "new_tests_smoothed_per_thousand": 2.557,
- "tests_per_case": 531.9590000000001,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 75.46
- },
- {
- "date": "2020-09-01",
- "total_cases": 25746.0,
- "new_cases": 76.0,
- "new_cases_smoothed": 118.571,
- "total_deaths": 652.0,
- "new_deaths": 41.0,
- "new_deaths_smoothed": 19.286,
- "total_cases_per_million": 1009.652,
- "new_cases_per_million": 2.98,
- "new_cases_smoothed_per_million": 4.65,
- "total_deaths_per_million": 25.569,
- "new_deaths_per_million": 1.608,
- "new_deaths_smoothed_per_million": 0.756,
- "new_tests": 41344.0,
- "total_tests": 6255797.0,
- "total_tests_per_thousand": 245.327,
- "new_tests_per_thousand": 1.621,
- "new_tests_smoothed": 63013.0,
- "new_tests_smoothed_per_thousand": 2.471,
- "tests_per_case": 531.435,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 75.46
- },
- {
- "date": "2020-09-02",
- "total_cases": 25819.0,
- "new_cases": 73.0,
- "new_cases_smoothed": 109.429,
- "total_deaths": 657.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 18.857,
- "total_cases_per_million": 1012.515,
- "new_cases_per_million": 2.863,
- "new_cases_smoothed_per_million": 4.291,
- "total_deaths_per_million": 25.765,
- "new_deaths_per_million": 0.196,
- "new_deaths_smoothed_per_million": 0.739,
- "new_tests": 63998.0,
- "total_tests": 6319795.0,
- "total_tests_per_thousand": 247.836,
- "new_tests_per_thousand": 2.51,
- "new_tests_smoothed": 61912.0,
- "new_tests_smoothed_per_thousand": 2.428,
- "tests_per_case": 565.775,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 75.46
- },
- {
- "date": "2020-09-03",
- "total_cases": 25923.0,
- "new_cases": 104.0,
- "new_cases_smoothed": 102.571,
- "total_deaths": 663.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 16.286,
- "total_cases_per_million": 1016.593,
- "new_cases_per_million": 4.078,
- "new_cases_smoothed_per_million": 4.022,
- "total_deaths_per_million": 26.0,
- "new_deaths_per_million": 0.235,
- "new_deaths_smoothed_per_million": 0.639,
- "new_tests": 70983.0,
- "total_tests": 6390778.0,
- "total_tests_per_thousand": 250.62,
- "new_tests_per_thousand": 2.784,
- "new_tests_smoothed": 59728.0,
- "new_tests_smoothed_per_thousand": 2.342,
- "tests_per_case": 582.306,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 75.46
- },
- {
- "date": "2020-09-04",
- "total_cases": 26049.0,
- "new_cases": 126.0,
- "new_cases_smoothed": 103.857,
- "total_deaths": 678.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 15.143,
- "total_cases_per_million": 1021.534,
- "new_cases_per_million": 4.941,
- "new_cases_smoothed_per_million": 4.073,
- "total_deaths_per_million": 26.588,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 0.594,
- "new_tests_smoothed": 63110.0,
- "new_tests_smoothed_per_thousand": 2.475,
- "tests_per_case": 607.6619999999999,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 75.46
- },
- {
- "date": "2020-09-05",
- "total_cases": 26136.0,
- "new_cases": 87.0,
- "new_cases_smoothed": 98.286,
- "total_deaths": 737.0,
- "new_deaths": 59.0,
- "new_deaths_smoothed": 22.0,
- "total_cases_per_million": 1024.946,
- "new_cases_per_million": 3.412,
- "new_cases_smoothed_per_million": 3.854,
- "total_deaths_per_million": 28.902,
- "new_deaths_per_million": 2.314,
- "new_deaths_smoothed_per_million": 0.863,
- "new_tests_smoothed": 66492.0,
- "new_tests_smoothed_per_thousand": 2.608,
- "tests_per_case": 676.5169999999999,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 75.46
- },
- {
- "date": "2020-09-06",
- "total_cases": 26207.0,
- "new_cases": 71.0,
- "new_cases_smoothed": 94.286,
- "total_deaths": 748.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 21.143,
- "total_cases_per_million": 1027.73,
- "new_cases_per_million": 2.784,
- "new_cases_smoothed_per_million": 3.697,
- "total_deaths_per_million": 29.333,
- "new_deaths_per_million": 0.431,
- "new_deaths_smoothed_per_million": 0.829,
- "total_tests": 6657348.0,
- "total_tests_per_thousand": 261.074,
- "new_tests_smoothed": 69874.0,
- "new_tests_smoothed_per_thousand": 2.74,
- "tests_per_case": 741.0880000000001,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 75.46
- },
- {
- "date": "2020-09-07",
- "total_cases": 26279.0,
- "new_cases": 72.0,
- "new_cases_smoothed": 87.0,
- "total_deaths": 753.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 20.286,
- "total_cases_per_million": 1030.554,
- "new_cases_per_million": 2.824,
- "new_cases_smoothed_per_million": 3.412,
- "total_deaths_per_million": 29.53,
- "new_deaths_per_million": 0.196,
- "new_deaths_smoothed_per_million": 0.796,
- "new_tests": 36086.0,
- "total_tests": 6693434.0,
- "total_tests_per_thousand": 262.489,
- "new_tests_per_thousand": 1.415,
- "new_tests_smoothed": 68426.0,
- "new_tests_smoothed_per_thousand": 2.683,
- "tests_per_case": 786.5060000000001,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 75.46
- },
- {
- "date": "2020-09-08",
- "total_cases": 26322.0,
- "new_cases": 43.0,
- "new_cases_smoothed": 82.286,
- "total_deaths": 762.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 15.714,
- "total_cases_per_million": 1032.24,
- "new_cases_per_million": 1.686,
- "new_cases_smoothed_per_million": 3.227,
- "total_deaths_per_million": 29.882,
- "new_deaths_per_million": 0.353,
- "new_deaths_smoothed_per_million": 0.616,
- "new_tests": 36963.0,
- "total_tests": 6730397.0,
- "total_tests_per_thousand": 263.938,
- "new_tests_per_thousand": 1.45,
- "new_tests_smoothed": 67800.0,
- "new_tests_smoothed_per_thousand": 2.659,
- "tests_per_case": 823.9580000000001,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 75.46
- },
- {
- "date": "2020-09-09",
- "total_cases": 26374.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 79.286,
- "total_deaths": 770.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 16.143,
- "total_cases_per_million": 1034.279,
- "new_cases_per_million": 2.039,
- "new_cases_smoothed_per_million": 3.109,
- "total_deaths_per_million": 30.196,
- "new_deaths_per_million": 0.314,
- "new_deaths_smoothed_per_million": 0.633,
- "new_tests": 58936.0,
- "total_tests": 6789333.0,
- "total_tests_per_thousand": 266.25,
- "new_tests_per_thousand": 2.311,
- "new_tests_smoothed": 67077.0,
- "new_tests_smoothed_per_thousand": 2.63,
- "tests_per_case": 846.0160000000001,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 75.46
- },
- {
- "date": "2020-09-10",
- "total_cases": 26465.0,
- "new_cases": 91.0,
- "new_cases_smoothed": 77.429,
- "total_deaths": 781.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 16.857,
- "total_cases_per_million": 1037.848,
- "new_cases_per_million": 3.569,
- "new_cases_smoothed_per_million": 3.036,
- "total_deaths_per_million": 30.628,
- "new_deaths_per_million": 0.431,
- "new_deaths_smoothed_per_million": 0.661,
- "new_tests": 60098.0,
- "total_tests": 6849431.0,
- "total_tests_per_thousand": 268.606,
- "new_tests_per_thousand": 2.357,
- "new_tests_smoothed": 65522.0,
- "new_tests_smoothed_per_thousand": 2.57,
- "tests_per_case": 846.225,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 75.46
- },
- {
- "date": "2020-09-11",
- "total_cases": 26513.0,
- "new_cases": 48.0,
- "new_cases_smoothed": 66.286,
- "total_deaths": 788.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 15.714,
- "total_cases_per_million": 1039.73,
- "new_cases_per_million": 1.882,
- "new_cases_smoothed_per_million": 2.599,
- "total_deaths_per_million": 30.902,
- "new_deaths_per_million": 0.275,
- "new_deaths_smoothed_per_million": 0.616,
- "new_tests_smoothed": 60764.0,
- "new_tests_smoothed_per_thousand": 2.383,
- "tests_per_case": 916.698,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 75.46
- },
- {
- "date": "2020-09-12",
- "total_cases": 26565.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 61.286,
- "total_deaths": 797.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 1041.77,
- "new_cases_per_million": 2.039,
- "new_cases_smoothed_per_million": 2.403,
- "total_deaths_per_million": 31.255,
- "new_deaths_per_million": 0.353,
- "new_deaths_smoothed_per_million": 0.336,
- "new_tests_smoothed": 56007.0,
- "new_tests_smoothed_per_thousand": 2.196,
- "tests_per_case": 913.867,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 75.46
- },
- {
- "date": "2020-09-13",
- "total_cases": 26607.0,
- "new_cases": 42.0,
- "new_cases_smoothed": 57.143,
- "total_deaths": 803.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 7.857,
- "total_cases_per_million": 1043.417,
- "new_cases_per_million": 1.647,
- "new_cases_smoothed_per_million": 2.241,
- "total_deaths_per_million": 31.49,
- "new_deaths_per_million": 0.235,
- "new_deaths_smoothed_per_million": 0.308,
- "total_tests": 7016090.0,
- "total_tests_per_thousand": 275.142,
- "new_tests_smoothed": 51249.0,
- "new_tests_smoothed_per_thousand": 2.01,
- "tests_per_case": 896.8580000000001,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 75.46
- },
- {
- "date": "2020-09-14",
- "total_cases": 26651.0,
- "new_cases": 44.0,
- "new_cases_smoothed": 53.143,
- "total_deaths": 810.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 1045.142,
- "new_cases_per_million": 1.725,
- "new_cases_smoothed_per_million": 2.084,
- "total_deaths_per_million": 31.765,
- "new_deaths_per_million": 0.275,
- "new_deaths_smoothed_per_million": 0.319,
- "new_tests": 30946.0,
- "total_tests": 7047036.0,
- "total_tests_per_thousand": 276.356,
- "new_tests_per_thousand": 1.214,
- "new_tests_smoothed": 50515.0,
- "new_tests_smoothed_per_thousand": 1.981,
- "tests_per_case": 950.551,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 75.46
- },
- {
- "date": "2020-09-15",
- "total_cases": 26692.0,
- "new_cases": 41.0,
- "new_cases_smoothed": 52.857,
- "total_deaths": 816.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 7.714,
- "total_cases_per_million": 1046.75,
- "new_cases_per_million": 1.608,
- "new_cases_smoothed_per_million": 2.073,
- "total_deaths_per_million": 32.0,
- "new_deaths_per_million": 0.235,
- "new_deaths_smoothed_per_million": 0.303,
- "new_tests": 29503.0,
- "total_tests": 7076539.0,
- "total_tests_per_thousand": 277.513,
- "new_tests_per_thousand": 1.157,
- "new_tests_smoothed": 49449.0,
- "new_tests_smoothed_per_thousand": 1.939,
- "tests_per_case": 935.5219999999999,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 75.46
- },
- {
- "date": "2020-09-16",
- "total_cases": 26738.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 52.0,
- "total_deaths": 816.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 1048.554,
- "new_cases_per_million": 1.804,
- "new_cases_smoothed_per_million": 2.039,
- "total_deaths_per_million": 32.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.258,
- "new_tests": 47845.0,
- "total_tests": 7124384.0,
- "total_tests_per_thousand": 279.389,
- "new_tests_per_thousand": 1.876,
- "new_tests_smoothed": 47864.0,
- "new_tests_smoothed_per_thousand": 1.877,
- "tests_per_case": 920.462,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 75.46
- },
- {
- "date": "2020-09-17",
- "total_cases": 26779.0,
- "new_cases": 41.0,
- "new_cases_smoothed": 44.857,
- "total_deaths": 824.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 6.143,
- "total_cases_per_million": 1050.162,
- "new_cases_per_million": 1.608,
- "new_cases_smoothed_per_million": 1.759,
- "total_deaths_per_million": 32.314,
- "new_deaths_per_million": 0.314,
- "new_deaths_smoothed_per_million": 0.241,
- "new_tests": 54357.0,
- "total_tests": 7178741.0,
- "total_tests_per_thousand": 281.521,
- "new_tests_per_thousand": 2.132,
- "new_tests_smoothed": 47044.0,
- "new_tests_smoothed_per_thousand": 1.845,
- "tests_per_case": 1048.752,
- "positive_rate": 0.001,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-18",
- "total_cases": 26813.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 42.857,
- "total_deaths": 832.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 6.286,
- "total_cases_per_million": 1051.495,
- "new_cases_per_million": 1.333,
- "new_cases_smoothed_per_million": 1.681,
- "total_deaths_per_million": 32.628,
- "new_deaths_per_million": 0.314,
- "new_deaths_smoothed_per_million": 0.246,
- "new_tests_smoothed": 44704.0,
- "new_tests_smoothed_per_thousand": 1.753,
- "tests_per_case": 1043.093,
- "positive_rate": 0.001,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-19",
- "total_cases": 26861.0,
- "new_cases": 48.0,
- "new_cases_smoothed": 42.286,
- "total_deaths": 837.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.714,
- "total_cases_per_million": 1053.377,
- "new_cases_per_million": 1.882,
- "new_cases_smoothed_per_million": 1.658,
- "total_deaths_per_million": 32.824,
- "new_deaths_per_million": 0.196,
- "new_deaths_smoothed_per_million": 0.224,
- "new_tests_smoothed": 42364.0,
- "new_tests_smoothed_per_thousand": 1.661,
- "tests_per_case": 1001.8510000000001,
- "positive_rate": 0.001,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-20",
- "total_cases": 26885.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 39.714,
- "total_deaths": 844.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 5.857,
- "total_cases_per_million": 1054.319,
- "new_cases_per_million": 0.941,
- "new_cases_smoothed_per_million": 1.557,
- "total_deaths_per_million": 33.098,
- "new_deaths_per_million": 0.275,
- "new_deaths_smoothed_per_million": 0.23,
- "total_tests": 7296252.0,
- "total_tests_per_thousand": 286.129,
- "new_tests_smoothed": 40023.0,
- "new_tests_smoothed_per_thousand": 1.57,
- "tests_per_case": 1007.773,
- "positive_rate": 0.001,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-21",
- "total_cases": 26898.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 35.286,
- "total_deaths": 849.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 1054.828,
- "new_cases_per_million": 0.51,
- "new_cases_smoothed_per_million": 1.384,
- "total_deaths_per_million": 33.294,
- "new_deaths_per_million": 0.196,
- "new_deaths_smoothed_per_million": 0.218,
- "new_tests": 23436.0,
- "total_tests": 7319688.0,
- "total_tests_per_thousand": 287.048,
- "new_tests_per_thousand": 0.919,
- "new_tests_smoothed": 38950.0,
- "new_tests_smoothed_per_thousand": 1.527,
- "tests_per_case": 1103.846,
- "positive_rate": 0.001,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-22",
- "total_cases": 26912.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 31.429,
- "total_deaths": 851.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 1055.377,
- "new_cases_per_million": 0.549,
- "new_cases_smoothed_per_million": 1.232,
- "total_deaths_per_million": 33.373,
- "new_deaths_per_million": 0.078,
- "new_deaths_smoothed_per_million": 0.196,
- "new_tests": 31595.0,
- "total_tests": 7351283.0,
- "total_tests_per_thousand": 288.287,
- "new_tests_per_thousand": 1.239,
- "new_tests_smoothed": 39249.0,
- "new_tests_smoothed_per_thousand": 1.539,
- "tests_per_case": 1248.8319999999999,
- "positive_rate": 0.001,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-23",
- "total_cases": 26942.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 29.143,
- "total_deaths": 854.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 5.429,
- "total_cases_per_million": 1056.554,
- "new_cases_per_million": 1.176,
- "new_cases_smoothed_per_million": 1.143,
- "total_deaths_per_million": 33.49,
- "new_deaths_per_million": 0.118,
- "new_deaths_smoothed_per_million": 0.213,
- "new_tests": 42410.0,
- "total_tests": 7393693.0,
- "total_tests_per_thousand": 289.95,
- "new_tests_per_thousand": 1.663,
- "new_tests_smoothed": 38473.0,
- "new_tests_smoothed_per_thousand": 1.509,
- "tests_per_case": 1320.152,
- "positive_rate": 0.001,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-24",
- "total_cases": 26973.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 27.714,
- "total_deaths": 859.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 1057.77,
- "new_cases_per_million": 1.216,
- "new_cases_smoothed_per_million": 1.087,
- "total_deaths_per_million": 33.686,
- "new_deaths_per_million": 0.196,
- "new_deaths_smoothed_per_million": 0.196,
- "new_tests": 47634.0,
- "total_tests": 7441327.0,
- "total_tests_per_thousand": 291.818,
- "new_tests_per_thousand": 1.868,
- "new_tests_smoothed": 37512.0,
- "new_tests_smoothed_per_thousand": 1.471,
- "tests_per_case": 1353.526,
- "positive_rate": 0.001,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-25",
- "total_cases": 26983.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 24.286,
- "total_deaths": 861.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 1058.162,
- "new_cases_per_million": 0.392,
- "new_cases_smoothed_per_million": 0.952,
- "total_deaths_per_million": 33.765,
- "new_deaths_per_million": 0.078,
- "new_deaths_smoothed_per_million": 0.162
- }
- ]
- },
- "AUT": {
- "continent": "Europe",
- "location": "Austria",
- "population": 9006400.0,
- "population_density": 106.749,
- "median_age": 44.4,
- "aged_65_older": 19.202,
- "aged_70_older": 13.748,
- "gdp_per_capita": 45436.686,
- "extreme_poverty": 0.7,
- "cardiovasc_death_rate": 145.183,
- "diabetes_prevalence": 6.35,
- "female_smokers": 28.4,
- "male_smokers": 30.9,
- "hospital_beds_per_thousand": 7.37,
- "life_expectancy": 81.54,
- "human_development_index": 0.908,
- "data": [
- {
- "date": "2019-12-31",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-01-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-02",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-03",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-04",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-05",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-06",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-07",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-08",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-09",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-10",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-11",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-12",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-13",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-14",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-15",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-16",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-17",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-18",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-19",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-20",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-21",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-22",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-23",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-24",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-25",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-26",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-27",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-28",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-29",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-30",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-31",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-02",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-03",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-04",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-05",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-06",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-07",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-08",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-09",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-10",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-11",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-12",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-13",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-14",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-15",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-16",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-17",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-18",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-19",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-20",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-21",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-22",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-23",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-24",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-25",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "total_tests": 218.0,
- "total_tests_per_thousand": 0.024,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-26",
- "total_cases": 2.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.222,
- "new_cases_per_million": 0.222,
- "new_cases_smoothed_per_million": 0.032,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 103.0,
- "total_tests": 321.0,
- "total_tests_per_thousand": 0.036,
- "new_tests_per_thousand": 0.011,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-27",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.222,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.032,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 126.0,
- "total_tests": 447.0,
- "total_tests_per_thousand": 0.05,
- "new_tests_per_thousand": 0.014,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-28",
- "total_cases": 5.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.555,
- "new_cases_per_million": 0.333,
- "new_cases_smoothed_per_million": 0.079,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 316.0,
- "total_tests": 763.0,
- "total_tests_per_thousand": 0.085,
- "new_tests_per_thousand": 0.035,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-29",
- "total_cases": 7.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.777,
- "new_cases_per_million": 0.222,
- "new_cases_smoothed_per_million": 0.111,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 886.0,
- "total_tests": 1649.0,
- "total_tests_per_thousand": 0.183,
- "new_tests_per_thousand": 0.098,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-01",
- "total_cases": 10.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.11,
- "new_cases_per_million": 0.333,
- "new_cases_smoothed_per_million": 0.159,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-02",
- "total_cases": 14.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.554,
- "new_cases_per_million": 0.444,
- "new_cases_smoothed_per_million": 0.222,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-03",
- "total_cases": 18.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.999,
- "new_cases_per_million": 0.444,
- "new_cases_smoothed_per_million": 0.286,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "total_tests": 2683.0,
- "total_tests_per_thousand": 0.298,
- "new_tests_smoothed": 352.0,
- "new_tests_smoothed_per_thousand": 0.039,
- "tests_per_case": 136.889,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-04",
- "total_cases": 24.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 3.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.665,
- "new_cases_per_million": 0.666,
- "new_cases_smoothed_per_million": 0.349,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 455.0,
- "total_tests": 3138.0,
- "total_tests_per_thousand": 0.348,
- "new_tests_per_thousand": 0.051,
- "new_tests_smoothed": 402.0,
- "new_tests_smoothed_per_thousand": 0.045,
- "tests_per_case": 127.90899999999999,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-05",
- "total_cases": 29.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 3.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.22,
- "new_cases_per_million": 0.555,
- "new_cases_smoothed_per_million": 0.428,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 573.0,
- "total_tests": 3711.0,
- "total_tests_per_thousand": 0.412,
- "new_tests_per_thousand": 0.064,
- "new_tests_smoothed": 466.0,
- "new_tests_smoothed_per_thousand": 0.052,
- "tests_per_case": 120.815,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-06",
- "total_cases": 41.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 4.552,
- "new_cases_per_million": 1.332,
- "new_cases_smoothed_per_million": 0.571,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 289.0,
- "total_tests": 4000.0,
- "total_tests_per_thousand": 0.444,
- "new_tests_per_thousand": 0.032,
- "new_tests_smoothed": 462.0,
- "new_tests_smoothed_per_thousand": 0.051,
- "tests_per_case": 89.833,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-07",
- "total_cases": 74.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 9.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 8.216,
- "new_cases_per_million": 3.664,
- "new_cases_smoothed_per_million": 1.063,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 308.0,
- "total_tests": 4308.0,
- "total_tests_per_thousand": 0.478,
- "new_tests_per_thousand": 0.034,
- "new_tests_smoothed": 380.0,
- "new_tests_smoothed_per_thousand": 0.042,
- "tests_per_case": 39.701,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-08",
- "total_cases": 99.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 12.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.992,
- "new_cases_per_million": 2.776,
- "new_cases_smoothed_per_million": 1.412,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 201.0,
- "total_tests": 4509.0,
- "total_tests_per_thousand": 0.501,
- "new_tests_per_thousand": 0.022,
- "new_tests_smoothed": 359.0,
- "new_tests_smoothed_per_thousand": 0.04,
- "tests_per_case": 28.236,
- "positive_rate": 0.035,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-09",
- "total_cases": 102.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 12.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11.325,
- "new_cases_per_million": 0.333,
- "new_cases_smoothed_per_million": 1.396,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 225.0,
- "total_tests": 4734.0,
- "total_tests_per_thousand": 0.526,
- "new_tests_per_thousand": 0.025,
- "new_tests_smoothed": 342.0,
- "new_tests_smoothed_per_thousand": 0.038,
- "tests_per_case": 27.205,
- "positive_rate": 0.037000000000000005,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-10",
- "total_cases": 131.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 16.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 14.545,
- "new_cases_per_million": 3.22,
- "new_cases_smoothed_per_million": 1.792,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 292.0,
- "total_tests": 5026.0,
- "total_tests_per_thousand": 0.558,
- "new_tests_per_thousand": 0.032,
- "new_tests_smoothed": 335.0,
- "new_tests_smoothed_per_thousand": 0.037,
- "tests_per_case": 20.752,
- "positive_rate": 0.048,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-11",
- "total_cases": 182.0,
- "new_cases": 51.0,
- "new_cases_smoothed": 22.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 20.208,
- "new_cases_per_million": 5.663,
- "new_cases_smoothed_per_million": 2.506,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 336.0,
- "total_tests": 5362.0,
- "total_tests_per_thousand": 0.595,
- "new_tests_per_thousand": 0.037,
- "new_tests_smoothed": 318.0,
- "new_tests_smoothed_per_thousand": 0.035,
- "tests_per_case": 14.089,
- "positive_rate": 0.071,
- "tests_units": "tests performed",
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-12",
- "total_cases": 246.0,
- "new_cases": 64.0,
- "new_cases_smoothed": 31.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 27.314,
- "new_cases_per_million": 7.106,
- "new_cases_smoothed_per_million": 3.442,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 507.0,
- "total_tests": 5869.0,
- "total_tests_per_thousand": 0.652,
- "new_tests_per_thousand": 0.056,
- "new_tests_smoothed": 308.0,
- "new_tests_smoothed_per_thousand": 0.034,
- "tests_per_case": 9.935,
- "positive_rate": 0.10099999999999999,
- "tests_units": "tests performed",
- "stringency_index": 34.26
- },
- {
- "date": "2020-03-13",
- "total_cases": 361.0,
- "new_cases": 115.0,
- "new_cases_smoothed": 45.714,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 40.083,
- "new_cases_per_million": 12.769,
- "new_cases_smoothed_per_million": 5.076,
- "total_deaths_per_million": 0.111,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 713.0,
- "total_tests": 6582.0,
- "total_tests_per_thousand": 0.731,
- "new_tests_per_thousand": 0.079,
- "new_tests_smoothed": 369.0,
- "new_tests_smoothed_per_thousand": 0.041,
- "tests_per_case": 8.072000000000001,
- "positive_rate": 0.124,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-03-14",
- "total_cases": 504.0,
- "new_cases": 143.0,
- "new_cases_smoothed": 61.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 55.96,
- "new_cases_per_million": 15.878,
- "new_cases_smoothed_per_million": 6.821,
- "total_deaths_per_million": 0.111,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 885.0,
- "total_tests": 7467.0,
- "total_tests_per_thousand": 0.829,
- "new_tests_per_thousand": 0.098,
- "new_tests_smoothed": 451.0,
- "new_tests_smoothed_per_thousand": 0.05,
- "tests_per_case": 7.3420000000000005,
- "positive_rate": 0.136,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-03-15",
- "total_cases": 655.0,
- "new_cases": 151.0,
- "new_cases_smoothed": 79.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 72.726,
- "new_cases_per_million": 16.766,
- "new_cases_smoothed_per_million": 8.819,
- "total_deaths_per_million": 0.111,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 700.0,
- "total_tests": 8167.0,
- "total_tests_per_thousand": 0.907,
- "new_tests_per_thousand": 0.078,
- "new_tests_smoothed": 523.0,
- "new_tests_smoothed_per_thousand": 0.058,
- "tests_per_case": 6.585,
- "positive_rate": 0.152,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-03-16",
- "total_cases": 860.0,
- "new_cases": 205.0,
- "new_cases_smoothed": 108.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 95.488,
- "new_cases_per_million": 22.762,
- "new_cases_smoothed_per_million": 12.023,
- "total_deaths_per_million": 0.111,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 323.0,
- "total_tests": 8490.0,
- "total_tests_per_thousand": 0.943,
- "new_tests_per_thousand": 0.036,
- "new_tests_smoothed": 537.0,
- "new_tests_smoothed_per_thousand": 0.06,
- "tests_per_case": 4.959,
- "positive_rate": 0.20199999999999999,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-03-17",
- "total_cases": 1016.0,
- "new_cases": 156.0,
- "new_cases_smoothed": 126.429,
- "total_deaths": 3.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 112.809,
- "new_cases_per_million": 17.321,
- "new_cases_smoothed_per_million": 14.038,
- "total_deaths_per_million": 0.333,
- "new_deaths_per_million": 0.222,
- "new_deaths_smoothed_per_million": 0.048,
- "new_tests": 1788.0,
- "total_tests": 10278.0,
- "total_tests_per_thousand": 1.141,
- "new_tests_per_thousand": 0.199,
- "new_tests_smoothed": 750.0,
- "new_tests_smoothed_per_thousand": 0.083,
- "tests_per_case": 5.932,
- "positive_rate": 0.16899999999999998,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-03-18",
- "total_cases": 1332.0,
- "new_cases": 316.0,
- "new_cases_smoothed": 164.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 147.895,
- "new_cases_per_million": 35.086,
- "new_cases_smoothed_per_million": 18.241,
- "total_deaths_per_million": 0.333,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.048,
- "new_tests": 1699.0,
- "total_tests": 11977.0,
- "total_tests_per_thousand": 1.33,
- "new_tests_per_thousand": 0.189,
- "new_tests_smoothed": 945.0,
- "new_tests_smoothed_per_thousand": 0.105,
- "tests_per_case": 5.752000000000001,
- "positive_rate": 0.174,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-03-19",
- "total_cases": 1646.0,
- "new_cases": 314.0,
- "new_cases_smoothed": 200.0,
- "total_deaths": 4.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 182.759,
- "new_cases_per_million": 34.864,
- "new_cases_smoothed_per_million": 22.206,
- "total_deaths_per_million": 0.444,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests": 1747.0,
- "total_tests": 13724.0,
- "total_tests_per_thousand": 1.524,
- "new_tests_per_thousand": 0.194,
- "new_tests_smoothed": 1122.0,
- "new_tests_smoothed_per_thousand": 0.125,
- "tests_per_case": 5.61,
- "positive_rate": 0.17800000000000002,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-03-20",
- "total_cases": 2196.0,
- "new_cases": 550.0,
- "new_cases_smoothed": 262.143,
- "total_deaths": 6.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 243.827,
- "new_cases_per_million": 61.068,
- "new_cases_smoothed_per_million": 29.106,
- "total_deaths_per_million": 0.666,
- "new_deaths_per_million": 0.222,
- "new_deaths_smoothed_per_million": 0.079,
- "new_tests": 1889.0,
- "total_tests": 15613.0,
- "total_tests_per_thousand": 1.734,
- "new_tests_per_thousand": 0.21,
- "new_tests_smoothed": 1290.0,
- "new_tests_smoothed_per_thousand": 0.143,
- "tests_per_case": 4.921,
- "positive_rate": 0.203,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-03-21",
- "total_cases": 2649.0,
- "new_cases": 453.0,
- "new_cases_smoothed": 306.429,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 294.124,
- "new_cases_per_million": 50.298,
- "new_cases_smoothed_per_million": 34.023,
- "total_deaths_per_million": 0.666,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.079,
- "new_tests": 2932.0,
- "total_tests": 18545.0,
- "total_tests_per_thousand": 2.059,
- "new_tests_per_thousand": 0.326,
- "new_tests_smoothed": 1583.0,
- "new_tests_smoothed_per_thousand": 0.176,
- "tests_per_case": 5.166,
- "positive_rate": 0.19399999999999998,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-03-22",
- "total_cases": 3024.0,
- "new_cases": 375.0,
- "new_cases_smoothed": 338.429,
- "total_deaths": 8.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 335.761,
- "new_cases_per_million": 41.637,
- "new_cases_smoothed_per_million": 37.576,
- "total_deaths_per_million": 0.888,
- "new_deaths_per_million": 0.222,
- "new_deaths_smoothed_per_million": 0.111,
- "new_tests": 2823.0,
- "total_tests": 21368.0,
- "total_tests_per_thousand": 2.373,
- "new_tests_per_thousand": 0.313,
- "new_tests_smoothed": 1886.0,
- "new_tests_smoothed_per_thousand": 0.209,
- "tests_per_case": 5.5729999999999995,
- "positive_rate": 0.179,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-03-23",
- "total_cases": 3631.0,
- "new_cases": 607.0,
- "new_cases_smoothed": 395.857,
- "total_deaths": 16.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 403.158,
- "new_cases_per_million": 67.397,
- "new_cases_smoothed_per_million": 43.953,
- "total_deaths_per_million": 1.777,
- "new_deaths_per_million": 0.888,
- "new_deaths_smoothed_per_million": 0.238,
- "new_tests": 2061.0,
- "total_tests": 23429.0,
- "total_tests_per_thousand": 2.601,
- "new_tests_per_thousand": 0.229,
- "new_tests_smoothed": 2134.0,
- "new_tests_smoothed_per_thousand": 0.237,
- "tests_per_case": 5.391,
- "positive_rate": 0.18600000000000003,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-03-24",
- "total_cases": 4486.0,
- "new_cases": 855.0,
- "new_cases_smoothed": 495.714,
- "total_deaths": 25.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 498.09,
- "new_cases_per_million": 94.932,
- "new_cases_smoothed_per_million": 55.04,
- "total_deaths_per_million": 2.776,
- "new_deaths_per_million": 0.999,
- "new_deaths_smoothed_per_million": 0.349,
- "new_tests": 4962.0,
- "total_tests": 28391.0,
- "total_tests_per_thousand": 3.152,
- "new_tests_per_thousand": 0.551,
- "new_tests_smoothed": 2588.0,
- "new_tests_smoothed_per_thousand": 0.287,
- "tests_per_case": 5.221,
- "positive_rate": 0.192,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-03-25",
- "total_cases": 5282.0,
- "new_cases": 796.0,
- "new_cases_smoothed": 564.286,
- "total_deaths": 30.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 586.472,
- "new_cases_per_million": 88.382,
- "new_cases_smoothed_per_million": 62.654,
- "total_deaths_per_million": 3.331,
- "new_deaths_per_million": 0.555,
- "new_deaths_smoothed_per_million": 0.428,
- "new_tests": 4016.0,
- "total_tests": 32407.0,
- "total_tests_per_thousand": 3.598,
- "new_tests_per_thousand": 0.446,
- "new_tests_smoothed": 2919.0,
- "new_tests_smoothed_per_thousand": 0.324,
- "tests_per_case": 5.172999999999999,
- "positive_rate": 0.193,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-03-26",
- "total_cases": 5888.0,
- "new_cases": 606.0,
- "new_cases_smoothed": 606.0,
- "total_deaths": 34.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 653.757,
- "new_cases_per_million": 67.285,
- "new_cases_smoothed_per_million": 67.285,
- "total_deaths_per_million": 3.775,
- "new_deaths_per_million": 0.444,
- "new_deaths_smoothed_per_million": 0.476,
- "new_tests": 3588.0,
- "total_tests": 35995.0,
- "total_tests_per_thousand": 3.997,
- "new_tests_per_thousand": 0.398,
- "new_tests_smoothed": 3182.0,
- "new_tests_smoothed_per_thousand": 0.353,
- "tests_per_case": 5.251,
- "positive_rate": 0.19,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-03-27",
- "total_cases": 7029.0,
- "new_cases": 1141.0,
- "new_cases_smoothed": 690.429,
- "total_deaths": 52.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 780.445,
- "new_cases_per_million": 126.688,
- "new_cases_smoothed_per_million": 76.66,
- "total_deaths_per_million": 5.774,
- "new_deaths_per_million": 1.999,
- "new_deaths_smoothed_per_million": 0.73,
- "new_tests": 3557.0,
- "total_tests": 39552.0,
- "total_tests_per_thousand": 4.392,
- "new_tests_per_thousand": 0.395,
- "new_tests_smoothed": 3420.0,
- "new_tests_smoothed_per_thousand": 0.38,
- "tests_per_case": 4.953,
- "positive_rate": 0.20199999999999999,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-03-28",
- "total_cases": 7697.0,
- "new_cases": 668.0,
- "new_cases_smoothed": 721.143,
- "total_deaths": 68.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 8.857,
- "total_cases_per_million": 854.614,
- "new_cases_per_million": 74.169,
- "new_cases_smoothed_per_million": 80.07,
- "total_deaths_per_million": 7.55,
- "new_deaths_per_million": 1.777,
- "new_deaths_smoothed_per_million": 0.983,
- "new_tests": 3198.0,
- "total_tests": 42750.0,
- "total_tests_per_thousand": 4.747,
- "new_tests_per_thousand": 0.355,
- "new_tests_smoothed": 3458.0,
- "new_tests_smoothed_per_thousand": 0.384,
- "tests_per_case": 4.795,
- "positive_rate": 0.209,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-03-29",
- "total_cases": 8291.0,
- "new_cases": 594.0,
- "new_cases_smoothed": 752.429,
- "total_deaths": 68.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 920.568,
- "new_cases_per_million": 65.953,
- "new_cases_smoothed_per_million": 83.544,
- "total_deaths_per_million": 7.55,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.952,
- "new_tests": 3691.0,
- "total_tests": 46441.0,
- "total_tests_per_thousand": 5.156,
- "new_tests_per_thousand": 0.41,
- "new_tests_smoothed": 3582.0,
- "new_tests_smoothed_per_thousand": 0.398,
- "tests_per_case": 4.761,
- "positive_rate": 0.21,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-03-30",
- "total_cases": 8813.0,
- "new_cases": 522.0,
- "new_cases_smoothed": 740.286,
- "total_deaths": 86.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 10.0,
- "total_cases_per_million": 978.526,
- "new_cases_per_million": 57.959,
- "new_cases_smoothed_per_million": 82.196,
- "total_deaths_per_million": 9.549,
- "new_deaths_per_million": 1.999,
- "new_deaths_smoothed_per_million": 1.11,
- "new_tests": 3014.0,
- "total_tests": 49455.0,
- "total_tests_per_thousand": 5.491,
- "new_tests_per_thousand": 0.335,
- "new_tests_smoothed": 3718.0,
- "new_tests_smoothed_per_thousand": 0.413,
- "tests_per_case": 5.022,
- "positive_rate": 0.19899999999999998,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-03-31",
- "total_cases": 9618.0,
- "new_cases": 805.0,
- "new_cases_smoothed": 733.143,
- "total_deaths": 108.0,
- "new_deaths": 22.0,
- "new_deaths_smoothed": 11.857,
- "total_cases_per_million": 1067.907,
- "new_cases_per_million": 89.381,
- "new_cases_smoothed_per_million": 81.402,
- "total_deaths_per_million": 11.991,
- "new_deaths_per_million": 2.443,
- "new_deaths_smoothed_per_million": 1.317,
- "new_tests": 2889.0,
- "total_tests": 52344.0,
- "total_tests_per_thousand": 5.812,
- "new_tests_per_thousand": 0.321,
- "new_tests_smoothed": 3422.0,
- "new_tests_smoothed_per_thousand": 0.38,
- "tests_per_case": 4.668,
- "positive_rate": 0.214,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-01",
- "total_cases": 10182.0,
- "new_cases": 564.0,
- "new_cases_smoothed": 700.0,
- "total_deaths": 128.0,
- "new_deaths": 20.0,
- "new_deaths_smoothed": 14.0,
- "total_cases_per_million": 1130.529,
- "new_cases_per_million": 62.622,
- "new_cases_smoothed_per_million": 77.723,
- "total_deaths_per_million": 14.212,
- "new_deaths_per_million": 2.221,
- "new_deaths_smoothed_per_million": 1.554,
- "new_tests": 3519.0,
- "total_tests": 55863.0,
- "total_tests_per_thousand": 6.203,
- "new_tests_per_thousand": 0.391,
- "new_tests_smoothed": 3351.0,
- "new_tests_smoothed_per_thousand": 0.372,
- "tests_per_case": 4.787,
- "positive_rate": 0.209,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-02",
- "total_cases": 10711.0,
- "new_cases": 529.0,
- "new_cases_smoothed": 689.0,
- "total_deaths": 146.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 16.0,
- "total_cases_per_million": 1189.265,
- "new_cases_per_million": 58.736,
- "new_cases_smoothed_per_million": 76.501,
- "total_deaths_per_million": 16.211,
- "new_deaths_per_million": 1.999,
- "new_deaths_smoothed_per_million": 1.777,
- "new_tests": 36327.0,
- "total_tests": 92190.0,
- "total_tests_per_thousand": 10.236,
- "new_tests_per_thousand": 4.033,
- "new_tests_smoothed": 8028.0,
- "new_tests_smoothed_per_thousand": 0.891,
- "tests_per_case": 11.652000000000001,
- "positive_rate": 0.086,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-03",
- "total_cases": 11129.0,
- "new_cases": 418.0,
- "new_cases_smoothed": 585.714,
- "total_deaths": 158.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 15.143,
- "total_cases_per_million": 1235.677,
- "new_cases_per_million": 46.411,
- "new_cases_smoothed_per_million": 65.033,
- "total_deaths_per_million": 17.543,
- "new_deaths_per_million": 1.332,
- "new_deaths_smoothed_per_million": 1.681,
- "new_tests": 6153.0,
- "total_tests": 98343.0,
- "total_tests_per_thousand": 10.919,
- "new_tests_per_thousand": 0.683,
- "new_tests_smoothed": 8399.0,
- "new_tests_smoothed_per_thousand": 0.933,
- "tests_per_case": 14.34,
- "positive_rate": 0.07,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-04",
- "total_cases": 11525.0,
- "new_cases": 396.0,
- "new_cases_smoothed": 546.857,
- "total_deaths": 168.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 14.286,
- "total_cases_per_million": 1279.646,
- "new_cases_per_million": 43.969,
- "new_cases_smoothed_per_million": 60.719,
- "total_deaths_per_million": 18.653,
- "new_deaths_per_million": 1.11,
- "new_deaths_smoothed_per_million": 1.586,
- "new_tests": 5791.0,
- "total_tests": 104134.0,
- "total_tests_per_thousand": 11.562,
- "new_tests_per_thousand": 0.643,
- "new_tests_smoothed": 8769.0,
- "new_tests_smoothed_per_thousand": 0.974,
- "tests_per_case": 16.035,
- "positive_rate": 0.062,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-05",
- "total_cases": 11766.0,
- "new_cases": 241.0,
- "new_cases_smoothed": 496.429,
- "total_deaths": 186.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 16.857,
- "total_cases_per_million": 1306.404,
- "new_cases_per_million": 26.759,
- "new_cases_smoothed_per_million": 55.12,
- "total_deaths_per_million": 20.652,
- "new_deaths_per_million": 1.999,
- "new_deaths_smoothed_per_million": 1.872,
- "new_tests": 4282.0,
- "total_tests": 108416.0,
- "total_tests_per_thousand": 12.038,
- "new_tests_per_thousand": 0.475,
- "new_tests_smoothed": 8854.0,
- "new_tests_smoothed_per_thousand": 0.983,
- "tests_per_case": 17.835,
- "positive_rate": 0.055999999999999994,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-06",
- "total_cases": 11983.0,
- "new_cases": 217.0,
- "new_cases_smoothed": 452.857,
- "total_deaths": 204.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 16.857,
- "total_cases_per_million": 1330.498,
- "new_cases_per_million": 24.094,
- "new_cases_smoothed_per_million": 50.282,
- "total_deaths_per_million": 22.651,
- "new_deaths_per_million": 1.999,
- "new_deaths_smoothed_per_million": 1.872,
- "new_tests": 2880.0,
- "total_tests": 111296.0,
- "total_tests_per_thousand": 12.357,
- "new_tests_per_thousand": 0.32,
- "new_tests_smoothed": 8834.0,
- "new_tests_smoothed_per_thousand": 0.981,
- "tests_per_case": 19.507,
- "positive_rate": 0.051,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-07",
- "total_cases": 12297.0,
- "new_cases": 314.0,
- "new_cases_smoothed": 382.714,
- "total_deaths": 220.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 16.0,
- "total_cases_per_million": 1365.362,
- "new_cases_per_million": 34.864,
- "new_cases_smoothed_per_million": 42.494,
- "total_deaths_per_million": 24.427,
- "new_deaths_per_million": 1.777,
- "new_deaths_smoothed_per_million": 1.777,
- "new_tests": 3939.0,
- "total_tests": 115235.0,
- "total_tests_per_thousand": 12.795,
- "new_tests_per_thousand": 0.437,
- "new_tests_smoothed": 8984.0,
- "new_tests_smoothed_per_thousand": 0.998,
- "tests_per_case": 23.474,
- "positive_rate": 0.043,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-08",
- "total_cases": 12640.0,
- "new_cases": 343.0,
- "new_cases_smoothed": 351.143,
- "total_deaths": 243.0,
- "new_deaths": 23.0,
- "new_deaths_smoothed": 16.429,
- "total_cases_per_million": 1403.446,
- "new_cases_per_million": 38.084,
- "new_cases_smoothed_per_million": 38.988,
- "total_deaths_per_million": 26.981,
- "new_deaths_per_million": 2.554,
- "new_deaths_smoothed_per_million": 1.824,
- "new_tests": 5520.0,
- "total_tests": 120755.0,
- "total_tests_per_thousand": 13.408,
- "new_tests_per_thousand": 0.613,
- "new_tests_smoothed": 9270.0,
- "new_tests_smoothed_per_thousand": 1.029,
- "tests_per_case": 26.4,
- "positive_rate": 0.038,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-09",
- "total_cases": 12969.0,
- "new_cases": 329.0,
- "new_cases_smoothed": 322.571,
- "total_deaths": 273.0,
- "new_deaths": 30.0,
- "new_deaths_smoothed": 18.143,
- "total_cases_per_million": 1439.976,
- "new_cases_per_million": 36.53,
- "new_cases_smoothed_per_million": 35.816,
- "total_deaths_per_million": 30.312,
- "new_deaths_per_million": 3.331,
- "new_deaths_smoothed_per_million": 2.014,
- "new_tests": 5532.0,
- "total_tests": 126287.0,
- "total_tests_per_thousand": 14.022,
- "new_tests_per_thousand": 0.614,
- "new_tests_smoothed": 4871.0,
- "new_tests_smoothed_per_thousand": 0.541,
- "tests_per_case": 15.100999999999999,
- "positive_rate": 0.066,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-10",
- "total_cases": 13248.0,
- "new_cases": 279.0,
- "new_cases_smoothed": 302.714,
- "total_deaths": 295.0,
- "new_deaths": 22.0,
- "new_deaths_smoothed": 19.571,
- "total_cases_per_million": 1470.954,
- "new_cases_per_million": 30.978,
- "new_cases_smoothed_per_million": 33.611,
- "total_deaths_per_million": 32.754,
- "new_deaths_per_million": 2.443,
- "new_deaths_smoothed_per_million": 2.173,
- "new_tests": 8456.0,
- "total_tests": 134743.0,
- "total_tests_per_thousand": 14.961,
- "new_tests_per_thousand": 0.939,
- "new_tests_smoothed": 5200.0,
- "new_tests_smoothed_per_thousand": 0.577,
- "tests_per_case": 17.178,
- "positive_rate": 0.057999999999999996,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-11",
- "total_cases": 13560.0,
- "new_cases": 312.0,
- "new_cases_smoothed": 290.714,
- "total_deaths": 319.0,
- "new_deaths": 24.0,
- "new_deaths_smoothed": 21.571,
- "total_cases_per_million": 1505.596,
- "new_cases_per_million": 34.642,
- "new_cases_smoothed_per_million": 32.279,
- "total_deaths_per_million": 35.419,
- "new_deaths_per_million": 2.665,
- "new_deaths_smoothed_per_million": 2.395,
- "new_tests": 6232.0,
- "total_tests": 140975.0,
- "total_tests_per_thousand": 15.653,
- "new_tests_per_thousand": 0.692,
- "new_tests_smoothed": 5263.0,
- "new_tests_smoothed_per_thousand": 0.584,
- "tests_per_case": 18.104,
- "positive_rate": 0.055,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-12",
- "total_cases": 13807.0,
- "new_cases": 247.0,
- "new_cases_smoothed": 291.571,
- "total_deaths": 337.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 21.571,
- "total_cases_per_million": 1533.021,
- "new_cases_per_million": 27.425,
- "new_cases_smoothed_per_million": 32.374,
- "total_deaths_per_million": 37.418,
- "new_deaths_per_million": 1.999,
- "new_deaths_smoothed_per_million": 2.395,
- "new_tests": 3902.0,
- "total_tests": 144877.0,
- "total_tests_per_thousand": 16.086,
- "new_tests_per_thousand": 0.433,
- "new_tests_smoothed": 5209.0,
- "new_tests_smoothed_per_thousand": 0.578,
- "tests_per_case": 17.865,
- "positive_rate": 0.055999999999999994,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-13",
- "total_cases": 13937.0,
- "new_cases": 130.0,
- "new_cases_smoothed": 279.143,
- "total_deaths": 350.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 20.857,
- "total_cases_per_million": 1547.455,
- "new_cases_per_million": 14.434,
- "new_cases_smoothed_per_million": 30.994,
- "total_deaths_per_million": 38.861,
- "new_deaths_per_million": 1.443,
- "new_deaths_smoothed_per_million": 2.316,
- "new_tests": 3535.0,
- "total_tests": 148412.0,
- "total_tests_per_thousand": 16.479,
- "new_tests_per_thousand": 0.392,
- "new_tests_smoothed": 5302.0,
- "new_tests_smoothed_per_thousand": 0.589,
- "tests_per_case": 18.994,
- "positive_rate": 0.053,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-04-14",
- "total_cases": 14043.0,
- "new_cases": 106.0,
- "new_cases_smoothed": 249.429,
- "total_deaths": 368.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 21.143,
- "total_cases_per_million": 1559.225,
- "new_cases_per_million": 11.769,
- "new_cases_smoothed_per_million": 27.695,
- "total_deaths_per_million": 40.86,
- "new_deaths_per_million": 1.999,
- "new_deaths_smoothed_per_million": 2.348,
- "new_tests": 3384.0,
- "total_tests": 151796.0,
- "total_tests_per_thousand": 16.854,
- "new_tests_per_thousand": 0.376,
- "new_tests_smoothed": 5223.0,
- "new_tests_smoothed_per_thousand": 0.58,
- "tests_per_case": 20.94,
- "positive_rate": 0.048,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-15",
- "total_cases": 14234.0,
- "new_cases": 191.0,
- "new_cases_smoothed": 227.714,
- "total_deaths": 384.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 20.143,
- "total_cases_per_million": 1580.432,
- "new_cases_per_million": 21.207,
- "new_cases_smoothed_per_million": 25.284,
- "total_deaths_per_million": 42.636,
- "new_deaths_per_million": 1.777,
- "new_deaths_smoothed_per_million": 2.237,
- "new_tests": 5005.0,
- "total_tests": 156801.0,
- "total_tests_per_thousand": 17.41,
- "new_tests_per_thousand": 0.556,
- "new_tests_smoothed": 5149.0,
- "new_tests_smoothed_per_thousand": 0.572,
- "tests_per_case": 22.612,
- "positive_rate": 0.044000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-16",
- "total_cases": 14370.0,
- "new_cases": 136.0,
- "new_cases_smoothed": 200.143,
- "total_deaths": 393.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 17.143,
- "total_cases_per_million": 1595.532,
- "new_cases_per_million": 15.1,
- "new_cases_smoothed_per_million": 22.222,
- "total_deaths_per_million": 43.636,
- "new_deaths_per_million": 0.999,
- "new_deaths_smoothed_per_million": 1.903,
- "new_tests": 6015.0,
- "total_tests": 162816.0,
- "total_tests_per_thousand": 18.078,
- "new_tests_per_thousand": 0.668,
- "new_tests_smoothed": 5218.0,
- "new_tests_smoothed_per_thousand": 0.579,
- "tests_per_case": 26.070999999999998,
- "positive_rate": 0.038,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-17",
- "total_cases": 14448.0,
- "new_cases": 78.0,
- "new_cases_smoothed": 171.429,
- "total_deaths": 410.0,
- "new_deaths": 17.0,
- "new_deaths_smoothed": 16.429,
- "total_cases_per_million": 1604.193,
- "new_cases_per_million": 8.661,
- "new_cases_smoothed_per_million": 19.034,
- "total_deaths_per_million": 45.523,
- "new_deaths_per_million": 1.888,
- "new_deaths_smoothed_per_million": 1.824,
- "new_tests": 6456.0,
- "total_tests": 169272.0,
- "total_tests_per_thousand": 18.795,
- "new_tests_per_thousand": 0.717,
- "new_tests_smoothed": 4933.0,
- "new_tests_smoothed_per_thousand": 0.548,
- "tests_per_case": 28.776,
- "positive_rate": 0.035,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-18",
- "total_cases": 14603.0,
- "new_cases": 155.0,
- "new_cases_smoothed": 149.0,
- "total_deaths": 431.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 16.0,
- "total_cases_per_million": 1621.403,
- "new_cases_per_million": 17.21,
- "new_cases_smoothed_per_million": 16.544,
- "total_deaths_per_million": 47.855,
- "new_deaths_per_million": 2.332,
- "new_deaths_smoothed_per_million": 1.777,
- "new_tests": 6660.0,
- "total_tests": 175932.0,
- "total_tests_per_thousand": 19.534,
- "new_tests_per_thousand": 0.739,
- "new_tests_smoothed": 4994.0,
- "new_tests_smoothed_per_thousand": 0.554,
- "tests_per_case": 33.516999999999996,
- "positive_rate": 0.03,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-19",
- "total_cases": 14662.0,
- "new_cases": 59.0,
- "new_cases_smoothed": 122.143,
- "total_deaths": 443.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 15.143,
- "total_cases_per_million": 1627.953,
- "new_cases_per_million": 6.551,
- "new_cases_smoothed_per_million": 13.562,
- "total_deaths_per_million": 49.187,
- "new_deaths_per_million": 1.332,
- "new_deaths_smoothed_per_million": 1.681,
- "new_tests": 3311.0,
- "total_tests": 179243.0,
- "total_tests_per_thousand": 19.902,
- "new_tests_per_thousand": 0.368,
- "new_tests_smoothed": 4909.0,
- "new_tests_smoothed_per_thousand": 0.545,
- "tests_per_case": 40.191,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-20",
- "total_cases": 14710.0,
- "new_cases": 48.0,
- "new_cases_smoothed": 110.429,
- "total_deaths": 452.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 14.571,
- "total_cases_per_million": 1633.283,
- "new_cases_per_million": 5.33,
- "new_cases_smoothed_per_million": 12.261,
- "total_deaths_per_million": 50.187,
- "new_deaths_per_million": 0.999,
- "new_deaths_smoothed_per_million": 1.618,
- "new_tests": 3706.0,
- "total_tests": 182949.0,
- "total_tests_per_thousand": 20.313,
- "new_tests_per_thousand": 0.411,
- "new_tests_smoothed": 4934.0,
- "new_tests_smoothed_per_thousand": 0.548,
- "tests_per_case": 44.68,
- "positive_rate": 0.022000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-21",
- "total_cases": 14783.0,
- "new_cases": 73.0,
- "new_cases_smoothed": 105.714,
- "total_deaths": 462.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 13.429,
- "total_cases_per_million": 1641.388,
- "new_cases_per_million": 8.105,
- "new_cases_smoothed_per_million": 11.738,
- "total_deaths_per_million": 51.297,
- "new_deaths_per_million": 1.11,
- "new_deaths_smoothed_per_million": 1.491,
- "new_tests": 6069.0,
- "total_tests": 189018.0,
- "total_tests_per_thousand": 20.987,
- "new_tests_per_thousand": 0.674,
- "new_tests_smoothed": 5317.0,
- "new_tests_smoothed_per_thousand": 0.59,
- "tests_per_case": 50.29600000000001,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-22",
- "total_cases": 14833.0,
- "new_cases": 50.0,
- "new_cases_smoothed": 85.571,
- "total_deaths": 463.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 11.286,
- "total_cases_per_million": 1646.94,
- "new_cases_per_million": 5.552,
- "new_cases_smoothed_per_million": 9.501,
- "total_deaths_per_million": 51.408,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 1.253,
- "new_tests": 12776.0,
- "total_tests": 201794.0,
- "total_tests_per_thousand": 22.406,
- "new_tests_per_thousand": 1.419,
- "new_tests_smoothed": 6428.0,
- "new_tests_smoothed_per_thousand": 0.714,
- "tests_per_case": 75.119,
- "positive_rate": 0.013000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-23",
- "total_cases": 14924.0,
- "new_cases": 91.0,
- "new_cases_smoothed": 79.143,
- "total_deaths": 494.0,
- "new_deaths": 31.0,
- "new_deaths_smoothed": 14.429,
- "total_cases_per_million": 1657.044,
- "new_cases_per_million": 10.104,
- "new_cases_smoothed_per_million": 8.787,
- "total_deaths_per_million": 54.85,
- "new_deaths_per_million": 3.442,
- "new_deaths_smoothed_per_million": 1.602,
- "new_tests": 4041.0,
- "total_tests": 205835.0,
- "total_tests_per_thousand": 22.854,
- "new_tests_per_thousand": 0.449,
- "new_tests_smoothed": 6146.0,
- "new_tests_smoothed_per_thousand": 0.682,
- "tests_per_case": 77.657,
- "positive_rate": 0.013000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-24",
- "total_cases": 14985.0,
- "new_cases": 61.0,
- "new_cases_smoothed": 76.714,
- "total_deaths": 508.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 14.0,
- "total_cases_per_million": 1663.817,
- "new_cases_per_million": 6.773,
- "new_cases_smoothed_per_million": 8.518,
- "total_deaths_per_million": 56.404,
- "new_deaths_per_million": 1.554,
- "new_deaths_smoothed_per_million": 1.554,
- "new_tests": 6851.0,
- "total_tests": 212686.0,
- "total_tests_per_thousand": 23.615,
- "new_tests_per_thousand": 0.761,
- "new_tests_smoothed": 6202.0,
- "new_tests_smoothed_per_thousand": 0.689,
- "tests_per_case": 80.845,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-25",
- "total_cases": 15068.0,
- "new_cases": 83.0,
- "new_cases_smoothed": 66.429,
- "total_deaths": 513.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 11.714,
- "total_cases_per_million": 1673.033,
- "new_cases_per_million": 9.216,
- "new_cases_smoothed_per_million": 7.376,
- "total_deaths_per_million": 56.959,
- "new_deaths_per_million": 0.555,
- "new_deaths_smoothed_per_million": 1.301,
- "new_tests": 8403.0,
- "total_tests": 221089.0,
- "total_tests_per_thousand": 24.548,
- "new_tests_per_thousand": 0.933,
- "new_tests_smoothed": 6451.0,
- "new_tests_smoothed_per_thousand": 0.716,
- "tests_per_case": 97.11200000000001,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-26",
- "total_cases": 15134.0,
- "new_cases": 66.0,
- "new_cases_smoothed": 67.429,
- "total_deaths": 536.0,
- "new_deaths": 23.0,
- "new_deaths_smoothed": 13.286,
- "total_cases_per_million": 1680.361,
- "new_cases_per_million": 7.328,
- "new_cases_smoothed_per_million": 7.487,
- "total_deaths_per_million": 59.513,
- "new_deaths_per_million": 2.554,
- "new_deaths_smoothed_per_million": 1.475,
- "new_tests": 6542.0,
- "total_tests": 227631.0,
- "total_tests_per_thousand": 25.274,
- "new_tests_per_thousand": 0.726,
- "new_tests_smoothed": 6913.0,
- "new_tests_smoothed_per_thousand": 0.768,
- "tests_per_case": 102.523,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-27",
- "total_cases": 15189.0,
- "new_cases": 55.0,
- "new_cases_smoothed": 68.429,
- "total_deaths": 542.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 12.857,
- "total_cases_per_million": 1686.467,
- "new_cases_per_million": 6.107,
- "new_cases_smoothed_per_million": 7.598,
- "total_deaths_per_million": 60.179,
- "new_deaths_per_million": 0.666,
- "new_deaths_smoothed_per_million": 1.428,
- "new_tests": 4906.0,
- "total_tests": 232537.0,
- "total_tests_per_thousand": 25.819,
- "new_tests_per_thousand": 0.545,
- "new_tests_smoothed": 7084.0,
- "new_tests_smoothed_per_thousand": 0.787,
- "tests_per_case": 103.524,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-28",
- "total_cases": 15256.0,
- "new_cases": 67.0,
- "new_cases_smoothed": 67.571,
- "total_deaths": 549.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 12.429,
- "total_cases_per_million": 1693.907,
- "new_cases_per_million": 7.439,
- "new_cases_smoothed_per_million": 7.503,
- "total_deaths_per_million": 60.957,
- "new_deaths_per_million": 0.777,
- "new_deaths_smoothed_per_million": 1.38,
- "new_tests": 7041.0,
- "total_tests": 239578.0,
- "total_tests_per_thousand": 26.601,
- "new_tests_per_thousand": 0.782,
- "new_tests_smoothed": 7223.0,
- "new_tests_smoothed_per_thousand": 0.802,
- "tests_per_case": 106.89399999999999,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-29",
- "total_cases": 15314.0,
- "new_cases": 58.0,
- "new_cases_smoothed": 68.714,
- "total_deaths": 569.0,
- "new_deaths": 20.0,
- "new_deaths_smoothed": 15.143,
- "total_cases_per_million": 1700.346,
- "new_cases_per_million": 6.44,
- "new_cases_smoothed_per_million": 7.629,
- "total_deaths_per_million": 63.177,
- "new_deaths_per_million": 2.221,
- "new_deaths_smoothed_per_million": 1.681,
- "new_tests": 8176.0,
- "total_tests": 247754.0,
- "total_tests_per_thousand": 27.509,
- "new_tests_per_thousand": 0.908,
- "new_tests_smoothed": 6566.0,
- "new_tests_smoothed_per_thousand": 0.729,
- "tests_per_case": 95.555,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-30",
- "total_cases": 15364.0,
- "new_cases": 50.0,
- "new_cases_smoothed": 62.857,
- "total_deaths": 580.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 12.286,
- "total_cases_per_million": 1705.898,
- "new_cases_per_million": 5.552,
- "new_cases_smoothed_per_million": 6.979,
- "total_deaths_per_million": 64.399,
- "new_deaths_per_million": 1.221,
- "new_deaths_smoothed_per_million": 1.364,
- "new_tests": 8645.0,
- "total_tests": 256399.0,
- "total_tests_per_thousand": 28.469,
- "new_tests_per_thousand": 0.96,
- "new_tests_smoothed": 7223.0,
- "new_tests_smoothed_per_thousand": 0.802,
- "tests_per_case": 114.911,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 78.7
- },
- {
- "date": "2020-05-01",
- "total_cases": 15424.0,
- "new_cases": 60.0,
- "new_cases_smoothed": 62.714,
- "total_deaths": 584.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 10.857,
- "total_cases_per_million": 1712.56,
- "new_cases_per_million": 6.662,
- "new_cases_smoothed_per_million": 6.963,
- "total_deaths_per_million": 64.843,
- "new_deaths_per_million": 0.444,
- "new_deaths_smoothed_per_million": 1.205,
- "new_tests": 7680.0,
- "total_tests": 264079.0,
- "total_tests_per_thousand": 29.321,
- "new_tests_per_thousand": 0.853,
- "new_tests_smoothed": 7342.0,
- "new_tests_smoothed_per_thousand": 0.815,
- "tests_per_case": 117.071,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 71.3
- },
- {
- "date": "2020-05-02",
- "total_cases": 15458.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 55.714,
- "total_deaths": 589.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 10.857,
- "total_cases_per_million": 1716.335,
- "new_cases_per_million": 3.775,
- "new_cases_smoothed_per_million": 6.186,
- "total_deaths_per_million": 65.398,
- "new_deaths_per_million": 0.555,
- "new_deaths_smoothed_per_million": 1.205,
- "new_tests": 5540.0,
- "total_tests": 269619.0,
- "total_tests_per_thousand": 29.936,
- "new_tests_per_thousand": 0.615,
- "new_tests_smoothed": 6933.0,
- "new_tests_smoothed_per_thousand": 0.77,
- "tests_per_case": 124.43799999999999,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 68.52
- },
- {
- "date": "2020-05-03",
- "total_cases": 15470.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 48.0,
- "total_deaths": 596.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 1717.667,
- "new_cases_per_million": 1.332,
- "new_cases_smoothed_per_million": 5.33,
- "total_deaths_per_million": 66.175,
- "new_deaths_per_million": 0.777,
- "new_deaths_smoothed_per_million": 0.952,
- "new_tests": 4736.0,
- "total_tests": 274355.0,
- "total_tests_per_thousand": 30.462,
- "new_tests_per_thousand": 0.526,
- "new_tests_smoothed": 6675.0,
- "new_tests_smoothed_per_thousand": 0.741,
- "tests_per_case": 139.062,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 68.52
- },
- {
- "date": "2020-05-04",
- "total_cases": 15538.0,
- "new_cases": 68.0,
- "new_cases_smoothed": 49.857,
- "total_deaths": 598.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 8.0,
- "total_cases_per_million": 1725.218,
- "new_cases_per_million": 7.55,
- "new_cases_smoothed_per_million": 5.536,
- "total_deaths_per_million": 66.397,
- "new_deaths_per_million": 0.222,
- "new_deaths_smoothed_per_million": 0.888,
- "new_tests": 4716.0,
- "total_tests": 279071.0,
- "total_tests_per_thousand": 30.986,
- "new_tests_per_thousand": 0.524,
- "new_tests_smoothed": 6648.0,
- "new_tests_smoothed_per_thousand": 0.738,
- "tests_per_case": 133.341,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 64.81
- },
- {
- "date": "2020-05-05",
- "total_cases": 15569.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 44.714,
- "total_deaths": 600.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 7.286,
- "total_cases_per_million": 1728.66,
- "new_cases_per_million": 3.442,
- "new_cases_smoothed_per_million": 4.965,
- "total_deaths_per_million": 66.619,
- "new_deaths_per_million": 0.222,
- "new_deaths_smoothed_per_million": 0.809,
- "new_tests": 6812.0,
- "total_tests": 285883.0,
- "total_tests_per_thousand": 31.742,
- "new_tests_per_thousand": 0.756,
- "new_tests_smoothed": 6615.0,
- "new_tests_smoothed_per_thousand": 0.734,
- "tests_per_case": 147.939,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 64.81
- },
- {
- "date": "2020-05-06",
- "total_cases": 15586.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 38.857,
- "total_deaths": 606.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.286,
- "total_cases_per_million": 1730.547,
- "new_cases_per_million": 1.888,
- "new_cases_smoothed_per_million": 4.314,
- "total_deaths_per_million": 67.285,
- "new_deaths_per_million": 0.666,
- "new_deaths_smoothed_per_million": 0.587,
- "new_tests": 6371.0,
- "total_tests": 292254.0,
- "total_tests_per_thousand": 32.45,
- "new_tests_per_thousand": 0.707,
- "new_tests_smoothed": 6357.0,
- "new_tests_smoothed_per_thousand": 0.706,
- "tests_per_case": 163.599,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 64.81
- },
- {
- "date": "2020-05-07",
- "total_cases": 15651.0,
- "new_cases": 65.0,
- "new_cases_smoothed": 41.0,
- "total_deaths": 608.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 1737.764,
- "new_cases_per_million": 7.217,
- "new_cases_smoothed_per_million": 4.552,
- "total_deaths_per_million": 67.508,
- "new_deaths_per_million": 0.222,
- "new_deaths_smoothed_per_million": 0.444,
- "new_tests": 5640.0,
- "total_tests": 297894.0,
- "total_tests_per_thousand": 33.076,
- "new_tests_per_thousand": 0.626,
- "new_tests_smoothed": 5928.0,
- "new_tests_smoothed_per_thousand": 0.658,
- "tests_per_case": 144.585,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 64.81
- },
- {
- "date": "2020-05-08",
- "total_cases": 15673.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 35.571,
- "total_deaths": 609.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 1740.207,
- "new_cases_per_million": 2.443,
- "new_cases_smoothed_per_million": 3.95,
- "total_deaths_per_million": 67.619,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.397,
- "new_tests": 6175.0,
- "total_tests": 304069.0,
- "total_tests_per_thousand": 33.761,
- "new_tests_per_thousand": 0.686,
- "new_tests_smoothed": 5713.0,
- "new_tests_smoothed_per_thousand": 0.634,
- "tests_per_case": 160.606,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 64.81
- },
- {
- "date": "2020-05-09",
- "total_cases": 15735.0,
- "new_cases": 62.0,
- "new_cases_smoothed": 39.571,
- "total_deaths": 614.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 1747.091,
- "new_cases_per_million": 6.884,
- "new_cases_smoothed_per_million": 4.394,
- "total_deaths_per_million": 68.174,
- "new_deaths_per_million": 0.555,
- "new_deaths_smoothed_per_million": 0.397,
- "new_tests": 7621.0,
- "total_tests": 311690.0,
- "total_tests_per_thousand": 34.608,
- "new_tests_per_thousand": 0.846,
- "new_tests_smoothed": 6010.0,
- "new_tests_smoothed_per_thousand": 0.667,
- "tests_per_case": 151.877,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 64.81
- },
- {
- "date": "2020-05-10",
- "total_cases": 15777.0,
- "new_cases": 42.0,
- "new_cases_smoothed": 43.857,
- "total_deaths": 615.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 1751.754,
- "new_cases_per_million": 4.663,
- "new_cases_smoothed_per_million": 4.87,
- "total_deaths_per_million": 68.285,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.301,
- "new_tests": 4818.0,
- "total_tests": 316508.0,
- "total_tests_per_thousand": 35.143,
- "new_tests_per_thousand": 0.535,
- "new_tests_smoothed": 6022.0,
- "new_tests_smoothed_per_thousand": 0.669,
- "tests_per_case": 137.309,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 64.81
- },
- {
- "date": "2020-05-11",
- "total_cases": 15787.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 35.571,
- "total_deaths": 618.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 1752.865,
- "new_cases_per_million": 1.11,
- "new_cases_smoothed_per_million": 3.95,
- "total_deaths_per_million": 68.618,
- "new_deaths_per_million": 0.333,
- "new_deaths_smoothed_per_million": 0.317,
- "new_tests": 2976.0,
- "total_tests": 319484.0,
- "total_tests_per_thousand": 35.473,
- "new_tests_per_thousand": 0.33,
- "new_tests_smoothed": 5773.0,
- "new_tests_smoothed_per_thousand": 0.641,
- "tests_per_case": 162.293,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 59.26
- },
- {
- "date": "2020-05-12",
- "total_cases": 15874.0,
- "new_cases": 87.0,
- "new_cases_smoothed": 43.571,
- "total_deaths": 620.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 1762.524,
- "new_cases_per_million": 9.66,
- "new_cases_smoothed_per_million": 4.838,
- "total_deaths_per_million": 68.84,
- "new_deaths_per_million": 0.222,
- "new_deaths_smoothed_per_million": 0.317,
- "new_tests": 9830.0,
- "total_tests": 329314.0,
- "total_tests_per_thousand": 36.564,
- "new_tests_per_thousand": 1.091,
- "new_tests_smoothed": 6204.0,
- "new_tests_smoothed_per_thousand": 0.689,
- "tests_per_case": 142.387,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 59.26
- },
- {
- "date": "2020-05-13",
- "total_cases": 15910.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 46.286,
- "total_deaths": 623.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 1766.522,
- "new_cases_per_million": 3.997,
- "new_cases_smoothed_per_million": 5.139,
- "total_deaths_per_million": 69.173,
- "new_deaths_per_million": 0.333,
- "new_deaths_smoothed_per_million": 0.27,
- "new_tests": 6938.0,
- "total_tests": 336252.0,
- "total_tests_per_thousand": 37.335,
- "new_tests_per_thousand": 0.77,
- "new_tests_smoothed": 6285.0,
- "new_tests_smoothed_per_thousand": 0.698,
- "tests_per_case": 135.787,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 59.26
- },
- {
- "date": "2020-05-14",
- "total_cases": 15964.0,
- "new_cases": 54.0,
- "new_cases_smoothed": 44.714,
- "total_deaths": 624.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 1772.517,
- "new_cases_per_million": 5.996,
- "new_cases_smoothed_per_million": 4.965,
- "total_deaths_per_million": 69.284,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.254,
- "new_tests": 8354.0,
- "total_tests": 344606.0,
- "total_tests_per_thousand": 38.262,
- "new_tests_per_thousand": 0.928,
- "new_tests_smoothed": 6673.0,
- "new_tests_smoothed_per_thousand": 0.741,
- "tests_per_case": 149.236,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 59.26
- },
- {
- "date": "2020-05-15",
- "total_cases": 16005.0,
- "new_cases": 41.0,
- "new_cases_smoothed": 47.429,
- "total_deaths": 626.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 1777.07,
- "new_cases_per_million": 4.552,
- "new_cases_smoothed_per_million": 5.266,
- "total_deaths_per_million": 69.506,
- "new_deaths_per_million": 0.222,
- "new_deaths_smoothed_per_million": 0.27,
- "new_tests": 6745.0,
- "total_tests": 351351.0,
- "total_tests_per_thousand": 39.011,
- "new_tests_per_thousand": 0.749,
- "new_tests_smoothed": 6755.0,
- "new_tests_smoothed_per_thousand": 0.75,
- "tests_per_case": 142.425,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 59.26
- },
- {
- "date": "2020-05-16",
- "total_cases": 16068.0,
- "new_cases": 63.0,
- "new_cases_smoothed": 47.571,
- "total_deaths": 628.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 1784.065,
- "new_cases_per_million": 6.995,
- "new_cases_smoothed_per_million": 5.282,
- "total_deaths_per_million": 69.728,
- "new_deaths_per_million": 0.222,
- "new_deaths_smoothed_per_million": 0.222,
- "new_tests": 6042.0,
- "total_tests": 357393.0,
- "total_tests_per_thousand": 39.682,
- "new_tests_per_thousand": 0.671,
- "new_tests_smoothed": 6529.0,
- "new_tests_smoothed_per_thousand": 0.725,
- "tests_per_case": 137.246,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 59.26
- },
- {
- "date": "2020-05-17",
- "total_cases": 16140.0,
- "new_cases": 72.0,
- "new_cases_smoothed": 51.857,
- "total_deaths": 628.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 1792.059,
- "new_cases_per_million": 7.994,
- "new_cases_smoothed_per_million": 5.758,
- "total_deaths_per_million": 69.728,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.206,
- "new_tests": 5116.0,
- "total_tests": 362509.0,
- "total_tests_per_thousand": 40.25,
- "new_tests_per_thousand": 0.568,
- "new_tests_smoothed": 6572.0,
- "new_tests_smoothed_per_thousand": 0.73,
- "tests_per_case": 126.73299999999999,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 59.26
- },
- {
- "date": "2020-05-18",
- "total_cases": 16154.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 52.429,
- "total_deaths": 629.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 1793.613,
- "new_cases_per_million": 1.554,
- "new_cases_smoothed_per_million": 5.821,
- "total_deaths_per_million": 69.839,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.174,
- "new_tests": 3364.0,
- "total_tests": 365873.0,
- "total_tests_per_thousand": 40.624,
- "new_tests_per_thousand": 0.374,
- "new_tests_smoothed": 6627.0,
- "new_tests_smoothed_per_thousand": 0.736,
- "tests_per_case": 126.40100000000001,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 55.56
- },
- {
- "date": "2020-05-19",
- "total_cases": 16179.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 43.571,
- "total_deaths": 629.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 1796.389,
- "new_cases_per_million": 2.776,
- "new_cases_smoothed_per_million": 4.838,
- "total_deaths_per_million": 69.839,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.143,
- "new_tests": 6562.0,
- "total_tests": 372435.0,
- "total_tests_per_thousand": 41.352,
- "new_tests_per_thousand": 0.729,
- "new_tests_smoothed": 6160.0,
- "new_tests_smoothed_per_thousand": 0.684,
- "tests_per_case": 141.377,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 55.56
- },
- {
- "date": "2020-05-20",
- "total_cases": 16257.0,
- "new_cases": 78.0,
- "new_cases_smoothed": 49.571,
- "total_deaths": 632.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 1805.05,
- "new_cases_per_million": 8.661,
- "new_cases_smoothed_per_million": 5.504,
- "total_deaths_per_million": 70.172,
- "new_deaths_per_million": 0.333,
- "new_deaths_smoothed_per_million": 0.143,
- "new_tests": 7157.0,
- "total_tests": 379592.0,
- "total_tests_per_thousand": 42.147,
- "new_tests_per_thousand": 0.795,
- "new_tests_smoothed": 6191.0,
- "new_tests_smoothed_per_thousand": 0.687,
- "tests_per_case": 124.89,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 55.56
- },
- {
- "date": "2020-05-21",
- "total_cases": 16275.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 44.429,
- "total_deaths": 633.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 1807.048,
- "new_cases_per_million": 1.999,
- "new_cases_smoothed_per_million": 4.933,
- "total_deaths_per_million": 70.283,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.143,
- "new_tests_smoothed": 5776.0,
- "new_tests_smoothed_per_thousand": 0.641,
- "tests_per_case": 130.006,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 55.56
- },
- {
- "date": "2020-05-22",
- "total_cases": 16332.0,
- "new_cases": 57.0,
- "new_cases_smoothed": 46.714,
- "total_deaths": 633.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 1813.377,
- "new_cases_per_million": 6.329,
- "new_cases_smoothed_per_million": 5.187,
- "total_deaths_per_million": 70.283,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.111,
- "total_tests": 390488.0,
- "total_tests_per_thousand": 43.357,
- "new_tests_smoothed": 5591.0,
- "new_tests_smoothed_per_thousand": 0.621,
- "tests_per_case": 119.685,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 55.56
- },
- {
- "date": "2020-05-23",
- "total_cases": 16361.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 41.857,
- "total_deaths": 635.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 1816.597,
- "new_cases_per_million": 3.22,
- "new_cases_smoothed_per_million": 4.647,
- "total_deaths_per_million": 70.505,
- "new_deaths_per_million": 0.222,
- "new_deaths_smoothed_per_million": 0.111,
- "new_tests": 5875.0,
- "total_tests": 396363.0,
- "total_tests_per_thousand": 44.009,
- "new_tests_per_thousand": 0.652,
- "new_tests_smoothed": 5567.0,
- "new_tests_smoothed_per_thousand": 0.618,
- "tests_per_case": 133.0,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 55.56
- },
- {
- "date": "2020-05-24",
- "total_cases": 16407.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 38.143,
- "total_deaths": 639.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 1821.705,
- "new_cases_per_million": 5.107,
- "new_cases_smoothed_per_million": 4.235,
- "total_deaths_per_million": 70.95,
- "new_deaths_per_million": 0.444,
- "new_deaths_smoothed_per_million": 0.174,
- "new_tests": 5494.0,
- "total_tests": 401857.0,
- "total_tests_per_thousand": 44.619,
- "new_tests_per_thousand": 0.61,
- "new_tests_smoothed": 5621.0,
- "new_tests_smoothed_per_thousand": 0.624,
- "tests_per_case": 147.36700000000002,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 55.56
- },
- {
- "date": "2020-05-25",
- "total_cases": 16439.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 40.714,
- "total_deaths": 640.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 1825.258,
- "new_cases_per_million": 3.553,
- "new_cases_smoothed_per_million": 4.521,
- "total_deaths_per_million": 71.061,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.174,
- "new_tests": 3484.0,
- "total_tests": 405341.0,
- "total_tests_per_thousand": 45.006,
- "new_tests_per_thousand": 0.387,
- "new_tests_smoothed": 5638.0,
- "new_tests_smoothed_per_thousand": 0.626,
- "tests_per_case": 138.477,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 55.56
- },
- {
- "date": "2020-05-26",
- "total_cases": 16459.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 40.0,
- "total_deaths": 641.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 1827.478,
- "new_cases_per_million": 2.221,
- "new_cases_smoothed_per_million": 4.441,
- "total_deaths_per_million": 71.172,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.19,
- "new_tests": 5844.0,
- "total_tests": 411185.0,
- "total_tests_per_thousand": 45.655,
- "new_tests_per_thousand": 0.649,
- "new_tests_smoothed": 5536.0,
- "new_tests_smoothed_per_thousand": 0.615,
- "tests_per_case": 138.4,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 55.56
- },
- {
- "date": "2020-05-27",
- "total_cases": 16497.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 34.286,
- "total_deaths": 643.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 1831.697,
- "new_cases_per_million": 4.219,
- "new_cases_smoothed_per_million": 3.807,
- "total_deaths_per_million": 71.394,
- "new_deaths_per_million": 0.222,
- "new_deaths_smoothed_per_million": 0.174,
- "new_tests": 7521.0,
- "total_tests": 418706.0,
- "total_tests_per_thousand": 46.49,
- "new_tests_per_thousand": 0.835,
- "new_tests_smoothed": 5588.0,
- "new_tests_smoothed_per_thousand": 0.62,
- "tests_per_case": 162.983,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 55.56
- },
- {
- "date": "2020-05-28",
- "total_cases": 16515.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 34.286,
- "total_deaths": 645.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 1833.696,
- "new_cases_per_million": 1.999,
- "new_cases_smoothed_per_million": 3.807,
- "total_deaths_per_million": 71.616,
- "new_deaths_per_million": 0.222,
- "new_deaths_smoothed_per_million": 0.19,
- "new_tests": 8666.0,
- "total_tests": 427372.0,
- "total_tests_per_thousand": 47.452,
- "new_tests_per_thousand": 0.962,
- "new_tests_smoothed": 6047.0,
- "new_tests_smoothed_per_thousand": 0.671,
- "tests_per_case": 176.37099999999998,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 55.56
- },
- {
- "date": "2020-05-29",
- "total_cases": 16543.0,
- "new_cases": 28.0,
- "new_cases_smoothed": 30.143,
- "total_deaths": 668.0,
- "new_deaths": 23.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 1836.805,
- "new_cases_per_million": 3.109,
- "new_cases_smoothed_per_million": 3.347,
- "total_deaths_per_million": 74.169,
- "new_deaths_per_million": 2.554,
- "new_deaths_smoothed_per_million": 0.555,
- "new_tests": 6930.0,
- "total_tests": 434302.0,
- "total_tests_per_thousand": 48.221,
- "new_tests_per_thousand": 0.769,
- "new_tests_smoothed": 6259.0,
- "new_tests_smoothed_per_thousand": 0.695,
- "tests_per_case": 207.645,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 50.0
- },
- {
- "date": "2020-05-30",
- "total_cases": 16594.0,
- "new_cases": 51.0,
- "new_cases_smoothed": 33.286,
- "total_deaths": 668.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 1842.468,
- "new_cases_per_million": 5.663,
- "new_cases_smoothed_per_million": 3.696,
- "total_deaths_per_million": 74.169,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.523,
- "new_tests": 7841.0,
- "total_tests": 442143.0,
- "total_tests_per_thousand": 49.092,
- "new_tests_per_thousand": 0.871,
- "new_tests_smoothed": 6540.0,
- "new_tests_smoothed_per_thousand": 0.726,
- "tests_per_case": 196.481,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 50.0
- },
- {
- "date": "2020-05-31",
- "total_cases": 16638.0,
- "new_cases": 44.0,
- "new_cases_smoothed": 33.0,
- "total_deaths": 668.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 1847.353,
- "new_cases_per_million": 4.885,
- "new_cases_smoothed_per_million": 3.664,
- "total_deaths_per_million": 74.169,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.46,
- "new_tests": 6391.0,
- "total_tests": 448534.0,
- "total_tests_per_thousand": 49.802,
- "new_tests_per_thousand": 0.71,
- "new_tests_smoothed": 6668.0,
- "new_tests_smoothed_per_thousand": 0.74,
- "tests_per_case": 202.06099999999998,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 50.0
- },
- {
- "date": "2020-06-01",
- "total_cases": 16642.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 29.0,
- "total_deaths": 668.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 1847.797,
- "new_cases_per_million": 0.444,
- "new_cases_smoothed_per_million": 3.22,
- "total_deaths_per_million": 74.169,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.444,
- "new_tests": 3286.0,
- "total_tests": 451820.0,
- "total_tests_per_thousand": 50.167,
- "new_tests_per_thousand": 0.365,
- "new_tests_smoothed": 6640.0,
- "new_tests_smoothed_per_thousand": 0.737,
- "tests_per_case": 228.96599999999998,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 50.0
- },
- {
- "date": "2020-06-02",
- "total_cases": 16663.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 29.143,
- "total_deaths": 668.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 1850.129,
- "new_cases_per_million": 2.332,
- "new_cases_smoothed_per_million": 3.236,
- "total_deaths_per_million": 74.169,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.428,
- "new_tests": 4558.0,
- "total_tests": 456378.0,
- "total_tests_per_thousand": 50.673,
- "new_tests_per_thousand": 0.506,
- "new_tests_smoothed": 6456.0,
- "new_tests_smoothed_per_thousand": 0.717,
- "tests_per_case": 221.52900000000002,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 50.0
- },
- {
- "date": "2020-06-03",
- "total_cases": 16674.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 25.286,
- "total_deaths": 669.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 1851.35,
- "new_cases_per_million": 1.221,
- "new_cases_smoothed_per_million": 2.808,
- "total_deaths_per_million": 74.281,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.412,
- "new_tests": 6580.0,
- "total_tests": 462958.0,
- "total_tests_per_thousand": 51.403,
- "new_tests_per_thousand": 0.731,
- "new_tests_smoothed": 6322.0,
- "new_tests_smoothed_per_thousand": 0.702,
- "tests_per_case": 250.023,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 46.3
- },
- {
- "date": "2020-06-04",
- "total_cases": 16705.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 27.143,
- "total_deaths": 670.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 1854.792,
- "new_cases_per_million": 3.442,
- "new_cases_smoothed_per_million": 3.014,
- "total_deaths_per_million": 74.392,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.397,
- "new_tests": 8508.0,
- "total_tests": 471466.0,
- "total_tests_per_thousand": 52.348,
- "new_tests_per_thousand": 0.945,
- "new_tests_smoothed": 6299.0,
- "new_tests_smoothed_per_thousand": 0.699,
- "tests_per_case": 232.06799999999998,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-06-05",
- "total_cases": 16741.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 28.286,
- "total_deaths": 670.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1858.789,
- "new_cases_per_million": 3.997,
- "new_cases_smoothed_per_million": 3.141,
- "total_deaths_per_million": 74.392,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests": 7983.0,
- "total_tests": 479449.0,
- "total_tests_per_thousand": 53.234,
- "new_tests_per_thousand": 0.886,
- "new_tests_smoothed": 6450.0,
- "new_tests_smoothed_per_thousand": 0.716,
- "tests_per_case": 228.03,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-06-06",
- "total_cases": 16803.0,
- "new_cases": 62.0,
- "new_cases_smoothed": 29.857,
- "total_deaths": 672.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 1865.673,
- "new_cases_per_million": 6.884,
- "new_cases_smoothed_per_million": 3.315,
- "total_deaths_per_million": 74.614,
- "new_deaths_per_million": 0.222,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests": 6463.0,
- "total_tests": 485912.0,
- "total_tests_per_thousand": 53.952,
- "new_tests_per_thousand": 0.718,
- "new_tests_smoothed": 6253.0,
- "new_tests_smoothed_per_thousand": 0.694,
- "tests_per_case": 209.43099999999998,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-06-07",
- "total_cases": 16822.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 26.286,
- "total_deaths": 672.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 1867.783,
- "new_cases_per_million": 2.11,
- "new_cases_smoothed_per_million": 2.919,
- "total_deaths_per_million": 74.614,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests": 3685.0,
- "total_tests": 489597.0,
- "total_tests_per_thousand": 54.361,
- "new_tests_per_thousand": 0.409,
- "new_tests_smoothed": 5866.0,
- "new_tests_smoothed_per_thousand": 0.651,
- "tests_per_case": 223.16299999999998,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-06-08",
- "total_cases": 16868.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 32.286,
- "total_deaths": 672.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 1872.89,
- "new_cases_per_million": 5.107,
- "new_cases_smoothed_per_million": 3.585,
- "total_deaths_per_million": 74.614,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests": 5164.0,
- "total_tests": 494761.0,
- "total_tests_per_thousand": 54.934,
- "new_tests_per_thousand": 0.573,
- "new_tests_smoothed": 6134.0,
- "new_tests_smoothed_per_thousand": 0.681,
- "tests_per_case": 189.99099999999999,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-06-09",
- "total_cases": 16889.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 32.286,
- "total_deaths": 672.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 1875.222,
- "new_cases_per_million": 2.332,
- "new_cases_smoothed_per_million": 3.585,
- "total_deaths_per_million": 74.614,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests": 6160.0,
- "total_tests": 500921.0,
- "total_tests_per_thousand": 55.618,
- "new_tests_per_thousand": 0.684,
- "new_tests_smoothed": 6363.0,
- "new_tests_smoothed_per_thousand": 0.706,
- "tests_per_case": 197.084,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-06-10",
- "total_cases": 16902.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 32.571,
- "total_deaths": 672.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 1876.665,
- "new_cases_per_million": 1.443,
- "new_cases_smoothed_per_million": 3.616,
- "total_deaths_per_million": 74.614,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.048,
- "new_tests": 5423.0,
- "total_tests": 506344.0,
- "total_tests_per_thousand": 56.22,
- "new_tests_per_thousand": 0.602,
- "new_tests_smoothed": 6198.0,
- "new_tests_smoothed_per_thousand": 0.688,
- "tests_per_case": 190.28900000000002,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-06-11",
- "total_cases": 16936.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 33.0,
- "total_deaths": 673.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 1880.441,
- "new_cases_per_million": 3.775,
- "new_cases_smoothed_per_million": 3.664,
- "total_deaths_per_million": 74.725,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.048,
- "new_tests": 6157.0,
- "total_tests": 512501.0,
- "total_tests_per_thousand": 56.904,
- "new_tests_per_thousand": 0.684,
- "new_tests_smoothed": 5862.0,
- "new_tests_smoothed_per_thousand": 0.651,
- "tests_per_case": 177.636,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-06-12",
- "total_cases": 16964.0,
- "new_cases": 28.0,
- "new_cases_smoothed": 31.857,
- "total_deaths": 674.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 1883.549,
- "new_cases_per_million": 3.109,
- "new_cases_smoothed_per_million": 3.537,
- "total_deaths_per_million": 74.836,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests_smoothed": 5327.0,
- "new_tests_smoothed_per_thousand": 0.591,
- "tests_per_case": 167.215,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-06-13",
- "total_cases": 16994.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 27.286,
- "total_deaths": 675.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 1886.88,
- "new_cases_per_million": 3.331,
- "new_cases_smoothed_per_million": 3.03,
- "total_deaths_per_million": 74.947,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.048,
- "total_tests": 520976.0,
- "total_tests_per_thousand": 57.845,
- "new_tests_smoothed": 5009.0,
- "new_tests_smoothed_per_thousand": 0.556,
- "tests_per_case": 183.576,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-06-14",
- "total_cases": 17014.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 27.429,
- "total_deaths": 677.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 1889.101,
- "new_cases_per_million": 2.221,
- "new_cases_smoothed_per_million": 3.045,
- "total_deaths_per_million": 75.169,
- "new_deaths_per_million": 0.222,
- "new_deaths_smoothed_per_million": 0.079,
- "new_tests": 3864.0,
- "total_tests": 524840.0,
- "total_tests_per_thousand": 58.274,
- "new_tests_per_thousand": 0.429,
- "new_tests_smoothed": 5035.0,
- "new_tests_smoothed_per_thousand": 0.559,
- "tests_per_case": 183.56799999999998,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-06-15",
- "total_cases": 17038.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 24.286,
- "total_deaths": 677.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 1891.766,
- "new_cases_per_million": 2.665,
- "new_cases_smoothed_per_million": 2.696,
- "total_deaths_per_million": 75.169,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.079,
- "new_tests": 2830.0,
- "total_tests": 527670.0,
- "total_tests_per_thousand": 58.588,
- "new_tests_per_thousand": 0.314,
- "new_tests_smoothed": 4701.0,
- "new_tests_smoothed_per_thousand": 0.522,
- "tests_per_case": 193.571,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-06-16",
- "total_cases": 17065.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 25.143,
- "total_deaths": 678.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 1894.764,
- "new_cases_per_million": 2.998,
- "new_cases_smoothed_per_million": 2.792,
- "total_deaths_per_million": 75.28,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.095,
- "new_tests": 5030.0,
- "total_tests": 532700.0,
- "total_tests_per_thousand": 59.147,
- "new_tests_per_thousand": 0.558,
- "new_tests_smoothed": 4540.0,
- "new_tests_smoothed_per_thousand": 0.504,
- "tests_per_case": 180.56799999999998,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-06-17",
- "total_cases": 17098.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 28.0,
- "total_deaths": 681.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 1898.428,
- "new_cases_per_million": 3.664,
- "new_cases_smoothed_per_million": 3.109,
- "total_deaths_per_million": 75.613,
- "new_deaths_per_million": 0.333,
- "new_deaths_smoothed_per_million": 0.143,
- "new_tests": 7915.0,
- "total_tests": 540615.0,
- "total_tests_per_thousand": 60.026,
- "new_tests_per_thousand": 0.879,
- "new_tests_smoothed": 4896.0,
- "new_tests_smoothed_per_thousand": 0.544,
- "tests_per_case": 174.857,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-06-18",
- "total_cases": 17115.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 25.571,
- "total_deaths": 687.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 1900.315,
- "new_cases_per_million": 1.888,
- "new_cases_smoothed_per_million": 2.839,
- "total_deaths_per_million": 76.279,
- "new_deaths_per_million": 0.666,
- "new_deaths_smoothed_per_million": 0.222,
- "new_tests": 5312.0,
- "total_tests": 545927.0,
- "total_tests_per_thousand": 60.615,
- "new_tests_per_thousand": 0.59,
- "new_tests_smoothed": 4775.0,
- "new_tests_smoothed_per_thousand": 0.53,
- "tests_per_case": 186.732,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-06-19",
- "total_cases": 17155.0,
- "new_cases": 40.0,
- "new_cases_smoothed": 27.286,
- "total_deaths": 688.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 1904.757,
- "new_cases_per_million": 4.441,
- "new_cases_smoothed_per_million": 3.03,
- "total_deaths_per_million": 76.39,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.222,
- "new_tests": 6203.0,
- "total_tests": 552130.0,
- "total_tests_per_thousand": 61.304,
- "new_tests_per_thousand": 0.689,
- "new_tests_smoothed": 5056.0,
- "new_tests_smoothed_per_thousand": 0.561,
- "tests_per_case": 185.298,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-06-20",
- "total_cases": 17185.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 27.286,
- "total_deaths": 688.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 1908.088,
- "new_cases_per_million": 3.331,
- "new_cases_smoothed_per_million": 3.03,
- "total_deaths_per_million": 76.39,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.206,
- "new_tests": 6078.0,
- "total_tests": 558208.0,
- "total_tests_per_thousand": 61.979,
- "new_tests_per_thousand": 0.675,
- "new_tests_smoothed": 5319.0,
- "new_tests_smoothed_per_thousand": 0.591,
- "tests_per_case": 194.937,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-06-21",
- "total_cases": 17247.0,
- "new_cases": 62.0,
- "new_cases_smoothed": 33.286,
- "total_deaths": 688.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 1914.972,
- "new_cases_per_million": 6.884,
- "new_cases_smoothed_per_million": 3.696,
- "total_deaths_per_million": 76.39,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.174,
- "new_tests": 2376.0,
- "total_tests": 560584.0,
- "total_tests_per_thousand": 62.243,
- "new_tests_per_thousand": 0.264,
- "new_tests_smoothed": 5106.0,
- "new_tests_smoothed_per_thousand": 0.567,
- "tests_per_case": 153.399,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-06-22",
- "total_cases": 17285.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 35.286,
- "total_deaths": 690.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 1919.191,
- "new_cases_per_million": 4.219,
- "new_cases_smoothed_per_million": 3.918,
- "total_deaths_per_million": 76.612,
- "new_deaths_per_million": 0.222,
- "new_deaths_smoothed_per_million": 0.206,
- "new_tests": 5216.0,
- "total_tests": 565800.0,
- "total_tests_per_thousand": 62.822,
- "new_tests_per_thousand": 0.579,
- "new_tests_smoothed": 5447.0,
- "new_tests_smoothed_per_thousand": 0.605,
- "tests_per_case": 154.368,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-06-23",
- "total_cases": 17320.0,
- "new_cases": 35.0,
- "new_cases_smoothed": 36.429,
- "total_deaths": 690.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 1923.077,
- "new_cases_per_million": 3.886,
- "new_cases_smoothed_per_million": 4.045,
- "total_deaths_per_million": 76.612,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.19,
- "new_tests": 6673.0,
- "total_tests": 572473.0,
- "total_tests_per_thousand": 63.563,
- "new_tests_per_thousand": 0.741,
- "new_tests_smoothed": 5682.0,
- "new_tests_smoothed_per_thousand": 0.631,
- "tests_per_case": 155.976,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-06-24",
- "total_cases": 17351.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 36.143,
- "total_deaths": 693.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 1926.519,
- "new_cases_per_million": 3.442,
- "new_cases_smoothed_per_million": 4.013,
- "total_deaths_per_million": 76.945,
- "new_deaths_per_million": 0.333,
- "new_deaths_smoothed_per_million": 0.19,
- "new_tests": 6111.0,
- "total_tests": 578584.0,
- "total_tests_per_thousand": 64.241,
- "new_tests_per_thousand": 0.679,
- "new_tests_smoothed": 5424.0,
- "new_tests_smoothed_per_thousand": 0.602,
- "tests_per_case": 150.071,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-06-25",
- "total_cases": 17384.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 38.429,
- "total_deaths": 693.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 1930.183,
- "new_cases_per_million": 3.664,
- "new_cases_smoothed_per_million": 4.267,
- "total_deaths_per_million": 76.945,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.095,
- "new_tests": 5659.0,
- "total_tests": 584243.0,
- "total_tests_per_thousand": 64.87,
- "new_tests_per_thousand": 0.628,
- "new_tests_smoothed": 5474.0,
- "new_tests_smoothed_per_thousand": 0.608,
- "tests_per_case": 142.446,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-06-26",
- "total_cases": 17431.0,
- "new_cases": 47.0,
- "new_cases_smoothed": 39.429,
- "total_deaths": 698.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 1935.401,
- "new_cases_per_million": 5.219,
- "new_cases_smoothed_per_million": 4.378,
- "total_deaths_per_million": 77.5,
- "new_deaths_per_million": 0.555,
- "new_deaths_smoothed_per_million": 0.159,
- "new_tests": 6199.0,
- "total_tests": 590442.0,
- "total_tests_per_thousand": 65.558,
- "new_tests_per_thousand": 0.688,
- "new_tests_smoothed": 5473.0,
- "new_tests_smoothed_per_thousand": 0.608,
- "tests_per_case": 138.808,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-06-27",
- "total_cases": 17498.0,
- "new_cases": 67.0,
- "new_cases_smoothed": 44.714,
- "total_deaths": 698.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 1942.841,
- "new_cases_per_million": 7.439,
- "new_cases_smoothed_per_million": 4.965,
- "total_deaths_per_million": 77.5,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.159,
- "new_tests": 7053.0,
- "total_tests": 597495.0,
- "total_tests_per_thousand": 66.341,
- "new_tests_per_thousand": 0.783,
- "new_tests_smoothed": 5612.0,
- "new_tests_smoothed_per_thousand": 0.623,
- "tests_per_case": 125.508,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-06-28",
- "total_cases": 17562.0,
- "new_cases": 64.0,
- "new_cases_smoothed": 45.0,
- "total_deaths": 700.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 1949.947,
- "new_cases_per_million": 7.106,
- "new_cases_smoothed_per_million": 4.996,
- "total_deaths_per_million": 77.723,
- "new_deaths_per_million": 0.222,
- "new_deaths_smoothed_per_million": 0.19,
- "new_tests": 5025.0,
- "total_tests": 602520.0,
- "total_tests_per_thousand": 66.899,
- "new_tests_per_thousand": 0.558,
- "new_tests_smoothed": 5991.0,
- "new_tests_smoothed_per_thousand": 0.665,
- "tests_per_case": 133.13299999999998,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-06-29",
- "total_cases": 17625.0,
- "new_cases": 63.0,
- "new_cases_smoothed": 48.571,
- "total_deaths": 702.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 1956.942,
- "new_cases_per_million": 6.995,
- "new_cases_smoothed_per_million": 5.393,
- "total_deaths_per_million": 77.945,
- "new_deaths_per_million": 0.222,
- "new_deaths_smoothed_per_million": 0.19,
- "new_tests": 3855.0,
- "total_tests": 606375.0,
- "total_tests_per_thousand": 67.327,
- "new_tests_per_thousand": 0.428,
- "new_tests_smoothed": 5796.0,
- "new_tests_smoothed_per_thousand": 0.644,
- "tests_per_case": 119.329,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-06-30",
- "total_cases": 17666.0,
- "new_cases": 41.0,
- "new_cases_smoothed": 49.429,
- "total_deaths": 703.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 1961.494,
- "new_cases_per_million": 4.552,
- "new_cases_smoothed_per_million": 5.488,
- "total_deaths_per_million": 78.056,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.206,
- "new_tests": 6381.0,
- "total_tests": 612756.0,
- "total_tests_per_thousand": 68.036,
- "new_tests_per_thousand": 0.708,
- "new_tests_smoothed": 5755.0,
- "new_tests_smoothed_per_thousand": 0.639,
- "tests_per_case": 116.431,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-01",
- "total_cases": 17777.0,
- "new_cases": 111.0,
- "new_cases_smoothed": 60.857,
- "total_deaths": 705.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 1973.819,
- "new_cases_per_million": 12.325,
- "new_cases_smoothed_per_million": 6.757,
- "total_deaths_per_million": 78.278,
- "new_deaths_per_million": 0.222,
- "new_deaths_smoothed_per_million": 0.19,
- "new_tests": 8110.0,
- "total_tests": 620866.0,
- "total_tests_per_thousand": 68.936,
- "new_tests_per_thousand": 0.9,
- "new_tests_smoothed": 6040.0,
- "new_tests_smoothed_per_thousand": 0.671,
- "tests_per_case": 99.249,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-02",
- "total_cases": 17814.0,
- "new_cases": 37.0,
- "new_cases_smoothed": 61.429,
- "total_deaths": 705.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 1977.927,
- "new_cases_per_million": 4.108,
- "new_cases_smoothed_per_million": 6.821,
- "total_deaths_per_million": 78.278,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.19,
- "new_tests": 7834.0,
- "total_tests": 628700.0,
- "total_tests_per_thousand": 69.806,
- "new_tests_per_thousand": 0.87,
- "new_tests_smoothed": 6351.0,
- "new_tests_smoothed_per_thousand": 0.705,
- "tests_per_case": 103.38799999999999,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-03",
- "total_cases": 17952.0,
- "new_cases": 138.0,
- "new_cases_smoothed": 74.429,
- "total_deaths": 705.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 1993.249,
- "new_cases_per_million": 15.322,
- "new_cases_smoothed_per_million": 8.264,
- "total_deaths_per_million": 78.278,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.111,
- "new_tests": 6805.0,
- "total_tests": 635505.0,
- "total_tests_per_thousand": 70.561,
- "new_tests_per_thousand": 0.756,
- "new_tests_smoothed": 6438.0,
- "new_tests_smoothed_per_thousand": 0.715,
- "tests_per_case": 86.499,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-04",
- "total_cases": 18073.0,
- "new_cases": 121.0,
- "new_cases_smoothed": 82.143,
- "total_deaths": 705.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 2006.684,
- "new_cases_per_million": 13.435,
- "new_cases_smoothed_per_million": 9.12,
- "total_deaths_per_million": 78.278,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.111,
- "new_tests": 7174.0,
- "total_tests": 642679.0,
- "total_tests_per_thousand": 71.358,
- "new_tests_per_thousand": 0.797,
- "new_tests_smoothed": 6455.0,
- "new_tests_smoothed_per_thousand": 0.717,
- "tests_per_case": 78.583,
- "positive_rate": 0.013000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-05",
- "total_cases": 18196.0,
- "new_cases": 123.0,
- "new_cases_smoothed": 90.571,
- "total_deaths": 705.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 2020.341,
- "new_cases_per_million": 13.657,
- "new_cases_smoothed_per_million": 10.056,
- "total_deaths_per_million": 78.278,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.079,
- "new_tests": 5125.0,
- "total_tests": 647804.0,
- "total_tests_per_thousand": 71.927,
- "new_tests_per_thousand": 0.569,
- "new_tests_smoothed": 6469.0,
- "new_tests_smoothed_per_thousand": 0.718,
- "tests_per_case": 71.42399999999999,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-06",
- "total_cases": 18269.0,
- "new_cases": 73.0,
- "new_cases_smoothed": 92.0,
- "total_deaths": 706.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 2028.446,
- "new_cases_per_million": 8.105,
- "new_cases_smoothed_per_million": 10.215,
- "total_deaths_per_million": 78.389,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests": 6301.0,
- "total_tests": 654105.0,
- "total_tests_per_thousand": 72.627,
- "new_tests_per_thousand": 0.7,
- "new_tests_smoothed": 6819.0,
- "new_tests_smoothed_per_thousand": 0.757,
- "tests_per_case": 74.12,
- "positive_rate": 0.013000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-07",
- "total_cases": 18326.0,
- "new_cases": 57.0,
- "new_cases_smoothed": 94.286,
- "total_deaths": 706.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2034.775,
- "new_cases_per_million": 6.329,
- "new_cases_smoothed_per_million": 10.469,
- "total_deaths_per_million": 78.389,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.048,
- "new_tests": 6044.0,
- "total_tests": 660149.0,
- "total_tests_per_thousand": 73.298,
- "new_tests_per_thousand": 0.671,
- "new_tests_smoothed": 6770.0,
- "new_tests_smoothed_per_thousand": 0.752,
- "tests_per_case": 71.803,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-08",
- "total_cases": 18415.0,
- "new_cases": 89.0,
- "new_cases_smoothed": 91.143,
- "total_deaths": 706.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2044.657,
- "new_cases_per_million": 9.882,
- "new_cases_smoothed_per_million": 10.12,
- "total_deaths_per_million": 78.389,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 8071.0,
- "total_tests": 668220.0,
- "total_tests_per_thousand": 74.194,
- "new_tests_per_thousand": 0.896,
- "new_tests_smoothed": 6765.0,
- "new_tests_smoothed_per_thousand": 0.751,
- "tests_per_case": 74.22399999999999,
- "positive_rate": 0.013000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-09",
- "total_cases": 18516.0,
- "new_cases": 101.0,
- "new_cases_smoothed": 100.286,
- "total_deaths": 706.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2055.871,
- "new_cases_per_million": 11.214,
- "new_cases_smoothed_per_million": 11.135,
- "total_deaths_per_million": 78.389,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 7507.0,
- "total_tests": 675727.0,
- "total_tests_per_thousand": 75.027,
- "new_tests_per_thousand": 0.834,
- "new_tests_smoothed": 6718.0,
- "new_tests_smoothed_per_thousand": 0.746,
- "tests_per_case": 66.98899999999999,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 43.52
- },
- {
- "date": "2020-07-10",
- "total_cases": 18613.0,
- "new_cases": 97.0,
- "new_cases_smoothed": 94.429,
- "total_deaths": 706.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2066.641,
- "new_cases_per_million": 10.77,
- "new_cases_smoothed_per_million": 10.485,
- "total_deaths_per_million": 78.389,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 7757.0,
- "total_tests": 683484.0,
- "total_tests_per_thousand": 75.889,
- "new_tests_per_thousand": 0.861,
- "new_tests_smoothed": 6854.0,
- "new_tests_smoothed_per_thousand": 0.761,
- "tests_per_case": 72.584,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-07-11",
- "total_cases": 18687.0,
- "new_cases": 74.0,
- "new_cases_smoothed": 87.714,
- "total_deaths": 706.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2074.858,
- "new_cases_per_million": 8.216,
- "new_cases_smoothed_per_million": 9.739,
- "total_deaths_per_million": 78.389,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 8225.0,
- "total_tests": 691709.0,
- "total_tests_per_thousand": 76.802,
- "new_tests_per_thousand": 0.913,
- "new_tests_smoothed": 7004.0,
- "new_tests_smoothed_per_thousand": 0.778,
- "tests_per_case": 79.85,
- "positive_rate": 0.013000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-07-12",
- "total_cases": 18795.0,
- "new_cases": 108.0,
- "new_cases_smoothed": 85.571,
- "total_deaths": 706.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2086.849,
- "new_cases_per_million": 11.991,
- "new_cases_smoothed_per_million": 9.501,
- "total_deaths_per_million": 78.389,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 5031.0,
- "total_tests": 696740.0,
- "total_tests_per_thousand": 77.361,
- "new_tests_per_thousand": 0.559,
- "new_tests_smoothed": 6991.0,
- "new_tests_smoothed_per_thousand": 0.776,
- "tests_per_case": 81.69800000000001,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-07-13",
- "total_cases": 18847.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 82.571,
- "total_deaths": 708.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2092.623,
- "new_cases_per_million": 5.774,
- "new_cases_smoothed_per_million": 9.168,
- "total_deaths_per_million": 78.611,
- "new_deaths_per_million": 0.222,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests": 3876.0,
- "total_tests": 700616.0,
- "total_tests_per_thousand": 77.791,
- "new_tests_per_thousand": 0.43,
- "new_tests_smoothed": 6644.0,
- "new_tests_smoothed_per_thousand": 0.738,
- "tests_per_case": 80.464,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-07-14",
- "total_cases": 18859.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 76.143,
- "total_deaths": 708.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2093.955,
- "new_cases_per_million": 1.332,
- "new_cases_smoothed_per_million": 8.454,
- "total_deaths_per_million": 78.611,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests_smoothed": 6901.0,
- "new_tests_smoothed_per_thousand": 0.766,
- "tests_per_case": 90.632,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-07-15",
- "total_cases": 19060.0,
- "new_cases": 201.0,
- "new_cases_smoothed": 92.143,
- "total_deaths": 709.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2116.273,
- "new_cases_per_million": 22.317,
- "new_cases_smoothed_per_million": 10.231,
- "total_deaths_per_million": 78.722,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.048,
- "total_tests": 716293.0,
- "total_tests_per_thousand": 79.532,
- "new_tests_smoothed": 6868.0,
- "new_tests_smoothed_per_thousand": 0.763,
- "tests_per_case": 74.536,
- "positive_rate": 0.013000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-07-16",
- "total_cases": 19115.0,
- "new_cases": 55.0,
- "new_cases_smoothed": 85.571,
- "total_deaths": 710.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 2122.38,
- "new_cases_per_million": 6.107,
- "new_cases_smoothed_per_million": 9.501,
- "total_deaths_per_million": 78.833,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests": 10052.0,
- "total_tests": 726345.0,
- "total_tests_per_thousand": 80.648,
- "new_tests_per_thousand": 1.116,
- "new_tests_smoothed": 7231.0,
- "new_tests_smoothed_per_thousand": 0.803,
- "tests_per_case": 84.50299999999999,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-07-17",
- "total_cases": 19268.0,
- "new_cases": 153.0,
- "new_cases_smoothed": 93.571,
- "total_deaths": 710.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 2139.368,
- "new_cases_per_million": 16.988,
- "new_cases_smoothed_per_million": 10.389,
- "total_deaths_per_million": 78.833,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests": 8068.0,
- "total_tests": 734413.0,
- "total_tests_per_thousand": 81.543,
- "new_tests_per_thousand": 0.896,
- "new_tests_smoothed": 7276.0,
- "new_tests_smoothed_per_thousand": 0.808,
- "tests_per_case": 77.759,
- "positive_rate": 0.013000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-07-18",
- "total_cases": 19406.0,
- "new_cases": 138.0,
- "new_cases_smoothed": 102.714,
- "total_deaths": 710.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 2154.69,
- "new_cases_per_million": 15.322,
- "new_cases_smoothed_per_million": 11.405,
- "total_deaths_per_million": 78.833,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests": 8677.0,
- "total_tests": 743090.0,
- "total_tests_per_thousand": 82.507,
- "new_tests_per_thousand": 0.963,
- "new_tests_smoothed": 7340.0,
- "new_tests_smoothed_per_thousand": 0.815,
- "tests_per_case": 71.46,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-07-19",
- "total_cases": 19508.0,
- "new_cases": 102.0,
- "new_cases_smoothed": 101.857,
- "total_deaths": 710.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 2166.015,
- "new_cases_per_million": 11.325,
- "new_cases_smoothed_per_million": 11.309,
- "total_deaths_per_million": 78.833,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests": 5579.0,
- "total_tests": 748669.0,
- "total_tests_per_thousand": 83.126,
- "new_tests_per_thousand": 0.619,
- "new_tests_smoothed": 7418.0,
- "new_tests_smoothed_per_thousand": 0.824,
- "tests_per_case": 72.827,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-07-20",
- "total_cases": 19571.0,
- "new_cases": 63.0,
- "new_cases_smoothed": 103.429,
- "total_deaths": 710.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2173.01,
- "new_cases_per_million": 6.995,
- "new_cases_smoothed_per_million": 11.484,
- "total_deaths_per_million": 78.833,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests": 49767.0,
- "total_tests": 798436.0,
- "total_tests_per_thousand": 88.652,
- "new_tests_per_thousand": 5.526,
- "new_tests_smoothed": 13974.0,
- "new_tests_smoothed_per_thousand": 1.552,
- "tests_per_case": 135.108,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-07-21",
- "total_cases": 19679.0,
- "new_cases": 108.0,
- "new_cases_smoothed": 117.143,
- "total_deaths": 710.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2185.002,
- "new_cases_per_million": 11.991,
- "new_cases_smoothed_per_million": 13.007,
- "total_deaths_per_million": 78.833,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests": 7164.0,
- "total_tests": 805600.0,
- "total_tests_per_thousand": 89.448,
- "new_tests_per_thousand": 0.795,
- "new_tests_smoothed": 13878.0,
- "new_tests_smoothed_per_thousand": 1.541,
- "tests_per_case": 118.471,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-07-22",
- "total_cases": 19818.0,
- "new_cases": 139.0,
- "new_cases_smoothed": 108.286,
- "total_deaths": 710.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2200.435,
- "new_cases_per_million": 15.433,
- "new_cases_smoothed_per_million": 12.023,
- "total_deaths_per_million": 78.833,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 9081.0,
- "total_tests": 814681.0,
- "total_tests_per_thousand": 90.456,
- "new_tests_per_thousand": 1.008,
- "new_tests_smoothed": 14055.0,
- "new_tests_smoothed_per_thousand": 1.561,
- "tests_per_case": 129.796,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-07-23",
- "total_cases": 19958.0,
- "new_cases": 140.0,
- "new_cases_smoothed": 120.429,
- "total_deaths": 711.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2215.98,
- "new_cases_per_million": 15.545,
- "new_cases_smoothed_per_million": 13.371,
- "total_deaths_per_million": 78.944,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 11350.0,
- "total_tests": 826031.0,
- "total_tests_per_thousand": 91.716,
- "new_tests_per_thousand": 1.26,
- "new_tests_smoothed": 14241.0,
- "new_tests_smoothed_per_thousand": 1.581,
- "tests_per_case": 118.25299999999999,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-07-24",
- "total_cases": 20122.0,
- "new_cases": 164.0,
- "new_cases_smoothed": 122.0,
- "total_deaths": 711.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2234.189,
- "new_cases_per_million": 18.209,
- "new_cases_smoothed_per_million": 13.546,
- "total_deaths_per_million": 78.944,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 7810.0,
- "total_tests": 833841.0,
- "total_tests_per_thousand": 92.583,
- "new_tests_per_thousand": 0.867,
- "new_tests_smoothed": 14204.0,
- "new_tests_smoothed_per_thousand": 1.577,
- "tests_per_case": 116.426,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-07-25",
- "total_cases": 20229.0,
- "new_cases": 107.0,
- "new_cases_smoothed": 117.571,
- "total_deaths": 711.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2246.069,
- "new_cases_per_million": 11.88,
- "new_cases_smoothed_per_million": 13.054,
- "total_deaths_per_million": 78.944,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 7049.0,
- "total_tests": 840890.0,
- "total_tests_per_thousand": 93.366,
- "new_tests_per_thousand": 0.783,
- "new_tests_smoothed": 13971.0,
- "new_tests_smoothed_per_thousand": 1.551,
- "tests_per_case": 118.83,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-07-26",
- "total_cases": 20349.0,
- "new_cases": 120.0,
- "new_cases_smoothed": 120.143,
- "total_deaths": 712.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2259.393,
- "new_cases_per_million": 13.324,
- "new_cases_smoothed_per_million": 13.34,
- "total_deaths_per_million": 79.055,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests": 7008.0,
- "total_tests": 847898.0,
- "total_tests_per_thousand": 94.144,
- "new_tests_per_thousand": 0.778,
- "new_tests_smoothed": 14176.0,
- "new_tests_smoothed_per_thousand": 1.574,
- "tests_per_case": 117.993,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-07-27",
- "total_cases": 20486.0,
- "new_cases": 137.0,
- "new_cases_smoothed": 130.714,
- "total_deaths": 712.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2274.605,
- "new_cases_per_million": 15.211,
- "new_cases_smoothed_per_million": 14.513,
- "total_deaths_per_million": 79.055,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests": 13308.0,
- "total_tests": 861206.0,
- "total_tests_per_thousand": 95.622,
- "new_tests_per_thousand": 1.478,
- "new_tests_smoothed": 8967.0,
- "new_tests_smoothed_per_thousand": 0.996,
- "tests_per_case": 68.6,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-07-28",
- "total_cases": 20550.0,
- "new_cases": 64.0,
- "new_cases_smoothed": 124.429,
- "total_deaths": 713.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2281.711,
- "new_cases_per_million": 7.106,
- "new_cases_smoothed_per_million": 13.816,
- "total_deaths_per_million": 79.166,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.048,
- "new_tests": 9396.0,
- "total_tests": 870602.0,
- "total_tests_per_thousand": 96.665,
- "new_tests_per_thousand": 1.043,
- "new_tests_smoothed": 9286.0,
- "new_tests_smoothed_per_thousand": 1.031,
- "tests_per_case": 74.62899999999999,
- "positive_rate": 0.013000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-07-29",
- "total_cases": 20682.0,
- "new_cases": 132.0,
- "new_cases_smoothed": 123.429,
- "total_deaths": 713.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2296.367,
- "new_cases_per_million": 14.656,
- "new_cases_smoothed_per_million": 13.705,
- "total_deaths_per_million": 79.166,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.048,
- "new_tests": 9434.0,
- "total_tests": 880036.0,
- "total_tests_per_thousand": 97.712,
- "new_tests_per_thousand": 1.047,
- "new_tests_smoothed": 9336.0,
- "new_tests_smoothed_per_thousand": 1.037,
- "tests_per_case": 75.639,
- "positive_rate": 0.013000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-07-30",
- "total_cases": 20846.0,
- "new_cases": 164.0,
- "new_cases_smoothed": 126.857,
- "total_deaths": 716.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 2314.576,
- "new_cases_per_million": 18.209,
- "new_cases_smoothed_per_million": 14.085,
- "total_deaths_per_million": 79.499,
- "new_deaths_per_million": 0.333,
- "new_deaths_smoothed_per_million": 0.079,
- "new_tests": 10425.0,
- "total_tests": 890461.0,
- "total_tests_per_thousand": 98.87,
- "new_tests_per_thousand": 1.158,
- "new_tests_smoothed": 9204.0,
- "new_tests_smoothed_per_thousand": 1.022,
- "tests_per_case": 72.554,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-07-31",
- "total_cases": 21009.0,
- "new_cases": 163.0,
- "new_cases_smoothed": 126.714,
- "total_deaths": 718.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 2332.675,
- "new_cases_per_million": 18.098,
- "new_cases_smoothed_per_million": 14.069,
- "total_deaths_per_million": 79.721,
- "new_deaths_per_million": 0.222,
- "new_deaths_smoothed_per_million": 0.111,
- "new_tests": 7358.0,
- "total_tests": 897819.0,
- "total_tests_per_thousand": 99.687,
- "new_tests_per_thousand": 0.817,
- "new_tests_smoothed": 9140.0,
- "new_tests_smoothed_per_thousand": 1.015,
- "tests_per_case": 72.131,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-08-01",
- "total_cases": 21098.0,
- "new_cases": 89.0,
- "new_cases_smoothed": 124.143,
- "total_deaths": 718.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 2342.556,
- "new_cases_per_million": 9.882,
- "new_cases_smoothed_per_million": 13.784,
- "total_deaths_per_million": 79.721,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.111,
- "new_tests": 7495.0,
- "total_tests": 905314.0,
- "total_tests_per_thousand": 100.519,
- "new_tests_per_thousand": 0.832,
- "new_tests_smoothed": 9203.0,
- "new_tests_smoothed_per_thousand": 1.022,
- "tests_per_case": 74.132,
- "positive_rate": 0.013000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-08-02",
- "total_cases": 21224.0,
- "new_cases": 126.0,
- "new_cases_smoothed": 125.0,
- "total_deaths": 718.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 2356.546,
- "new_cases_per_million": 13.99,
- "new_cases_smoothed_per_million": 13.879,
- "total_deaths_per_million": 79.721,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.095,
- "new_tests": 5123.0,
- "total_tests": 910437.0,
- "total_tests_per_thousand": 101.088,
- "new_tests_per_thousand": 0.569,
- "new_tests_smoothed": 8934.0,
- "new_tests_smoothed_per_thousand": 0.992,
- "tests_per_case": 71.472,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-08-03",
- "total_cases": 21309.0,
- "new_cases": 85.0,
- "new_cases_smoothed": 117.571,
- "total_deaths": 718.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 2365.984,
- "new_cases_per_million": 9.438,
- "new_cases_smoothed_per_million": 13.054,
- "total_deaths_per_million": 79.721,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.095,
- "new_tests": 6341.0,
- "total_tests": 916778.0,
- "total_tests_per_thousand": 101.792,
- "new_tests_per_thousand": 0.704,
- "new_tests_smoothed": 7939.0,
- "new_tests_smoothed_per_thousand": 0.881,
- "tests_per_case": 67.525,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-08-04",
- "total_cases": 21341.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 113.0,
- "total_deaths": 718.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 2369.537,
- "new_cases_per_million": 3.553,
- "new_cases_smoothed_per_million": 12.547,
- "total_deaths_per_million": 79.721,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.079,
- "new_tests": 7124.0,
- "total_tests": 923902.0,
- "total_tests_per_thousand": 102.583,
- "new_tests_per_thousand": 0.791,
- "new_tests_smoothed": 7614.0,
- "new_tests_smoothed_per_thousand": 0.845,
- "tests_per_case": 67.381,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-08-05",
- "total_cases": 21472.0,
- "new_cases": 131.0,
- "new_cases_smoothed": 112.857,
- "total_deaths": 719.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 2384.082,
- "new_cases_per_million": 14.545,
- "new_cases_smoothed_per_million": 12.531,
- "total_deaths_per_million": 79.832,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.095,
- "new_tests_smoothed": 7222.0,
- "new_tests_smoothed_per_thousand": 0.802,
- "tests_per_case": 63.992,
- "positive_rate": 0.016,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-08-06",
- "total_cases": 21575.0,
- "new_cases": 103.0,
- "new_cases_smoothed": 104.143,
- "total_deaths": 719.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2395.519,
- "new_cases_per_million": 11.436,
- "new_cases_smoothed_per_million": 11.563,
- "total_deaths_per_million": 79.832,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.048,
- "total_tests": 937275.0,
- "total_tests_per_thousand": 104.068,
- "new_tests_smoothed": 6688.0,
- "new_tests_smoothed_per_thousand": 0.743,
- "tests_per_case": 64.219,
- "positive_rate": 0.016,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-08-07",
- "total_cases": 21689.0,
- "new_cases": 114.0,
- "new_cases_smoothed": 97.143,
- "total_deaths": 719.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2408.176,
- "new_cases_per_million": 12.658,
- "new_cases_smoothed_per_million": 10.786,
- "total_deaths_per_million": 79.832,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 10030.0,
- "total_tests": 947305.0,
- "total_tests_per_thousand": 105.181,
- "new_tests_per_thousand": 1.114,
- "new_tests_smoothed": 7069.0,
- "new_tests_smoothed_per_thousand": 0.785,
- "tests_per_case": 72.76899999999999,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-08-08",
- "total_cases": 21819.0,
- "new_cases": 130.0,
- "new_cases_smoothed": 103.0,
- "total_deaths": 720.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2422.611,
- "new_cases_per_million": 14.434,
- "new_cases_smoothed_per_million": 11.436,
- "total_deaths_per_million": 79.943,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests": 7934.0,
- "total_tests": 955239.0,
- "total_tests_per_thousand": 106.062,
- "new_tests_per_thousand": 0.881,
- "new_tests_smoothed": 7132.0,
- "new_tests_smoothed_per_thousand": 0.792,
- "tests_per_case": 69.243,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-08-09",
- "total_cases": 21935.0,
- "new_cases": 116.0,
- "new_cases_smoothed": 101.571,
- "total_deaths": 721.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2435.49,
- "new_cases_per_million": 12.88,
- "new_cases_smoothed_per_million": 11.278,
- "total_deaths_per_million": 80.054,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.048,
- "new_tests": 6629.0,
- "total_tests": 961868.0,
- "total_tests_per_thousand": 106.798,
- "new_tests_per_thousand": 0.736,
- "new_tests_smoothed": 7347.0,
- "new_tests_smoothed_per_thousand": 0.816,
- "tests_per_case": 72.333,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-08-10",
- "total_cases": 22011.0,
- "new_cases": 76.0,
- "new_cases_smoothed": 100.286,
- "total_deaths": 721.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2443.929,
- "new_cases_per_million": 8.438,
- "new_cases_smoothed_per_million": 11.135,
- "total_deaths_per_million": 80.054,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.048,
- "new_tests": 3890.0,
- "total_tests": 965758.0,
- "total_tests_per_thousand": 107.23,
- "new_tests_per_thousand": 0.432,
- "new_tests_smoothed": 6997.0,
- "new_tests_smoothed_per_thousand": 0.777,
- "tests_per_case": 69.771,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-08-11",
- "total_cases": 22122.0,
- "new_cases": 111.0,
- "new_cases_smoothed": 111.571,
- "total_deaths": 723.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 2456.253,
- "new_cases_per_million": 12.325,
- "new_cases_smoothed_per_million": 12.388,
- "total_deaths_per_million": 80.276,
- "new_deaths_per_million": 0.222,
- "new_deaths_smoothed_per_million": 0.079,
- "new_tests": 8750.0,
- "total_tests": 974508.0,
- "total_tests_per_thousand": 108.202,
- "new_tests_per_thousand": 0.972,
- "new_tests_smoothed": 7229.0,
- "new_tests_smoothed_per_thousand": 0.803,
- "tests_per_case": 64.793,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-08-12",
- "total_cases": 22260.0,
- "new_cases": 138.0,
- "new_cases_smoothed": 112.571,
- "total_deaths": 723.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 2471.576,
- "new_cases_per_million": 15.322,
- "new_cases_smoothed_per_million": 12.499,
- "total_deaths_per_million": 80.276,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests": 8510.0,
- "total_tests": 983018.0,
- "total_tests_per_thousand": 109.147,
- "new_tests_per_thousand": 0.945,
- "new_tests_smoothed": 7490.0,
- "new_tests_smoothed_per_thousand": 0.832,
- "tests_per_case": 66.536,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-08-13",
- "total_cases": 22501.0,
- "new_cases": 241.0,
- "new_cases_smoothed": 132.286,
- "total_deaths": 724.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 2498.335,
- "new_cases_per_million": 26.759,
- "new_cases_smoothed_per_million": 14.688,
- "total_deaths_per_million": 80.387,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.079,
- "new_tests": 8490.0,
- "total_tests": 991508.0,
- "total_tests_per_thousand": 110.089,
- "new_tests_per_thousand": 0.943,
- "new_tests_smoothed": 7748.0,
- "new_tests_smoothed_per_thousand": 0.86,
- "tests_per_case": 58.57,
- "positive_rate": 0.017,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-08-14",
- "total_cases": 22730.0,
- "new_cases": 229.0,
- "new_cases_smoothed": 148.714,
- "total_deaths": 725.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 2523.761,
- "new_cases_per_million": 25.426,
- "new_cases_smoothed_per_million": 16.512,
- "total_deaths_per_million": 80.498,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.095,
- "new_tests": 11924.0,
- "total_tests": 1003432.0,
- "total_tests_per_thousand": 111.413,
- "new_tests_per_thousand": 1.324,
- "new_tests_smoothed": 8018.0,
- "new_tests_smoothed_per_thousand": 0.89,
- "tests_per_case": 53.915,
- "positive_rate": 0.019,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-08-15",
- "total_cases": 22951.0,
- "new_cases": 221.0,
- "new_cases_smoothed": 161.714,
- "total_deaths": 725.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 2548.299,
- "new_cases_per_million": 24.538,
- "new_cases_smoothed_per_million": 17.955,
- "total_deaths_per_million": 80.498,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.079,
- "new_tests": 5922.0,
- "total_tests": 1009354.0,
- "total_tests_per_thousand": 112.071,
- "new_tests_per_thousand": 0.658,
- "new_tests_smoothed": 7731.0,
- "new_tests_smoothed_per_thousand": 0.858,
- "tests_per_case": 47.806999999999995,
- "positive_rate": 0.021,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-08-16",
- "total_cases": 23211.0,
- "new_cases": 260.0,
- "new_cases_smoothed": 182.286,
- "total_deaths": 728.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 2577.167,
- "new_cases_per_million": 28.868,
- "new_cases_smoothed_per_million": 20.24,
- "total_deaths_per_million": 80.831,
- "new_deaths_per_million": 0.333,
- "new_deaths_smoothed_per_million": 0.111,
- "new_tests": 9136.0,
- "total_tests": 1018490.0,
- "total_tests_per_thousand": 113.085,
- "new_tests_per_thousand": 1.014,
- "new_tests_smoothed": 8089.0,
- "new_tests_smoothed_per_thousand": 0.898,
- "tests_per_case": 44.375,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-08-17",
- "total_cases": 23373.0,
- "new_cases": 162.0,
- "new_cases_smoothed": 194.571,
- "total_deaths": 728.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 2595.155,
- "new_cases_per_million": 17.987,
- "new_cases_smoothed_per_million": 21.604,
- "total_deaths_per_million": 80.831,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.111,
- "new_tests": 5577.0,
- "total_tests": 1024067.0,
- "total_tests_per_thousand": 113.704,
- "new_tests_per_thousand": 0.619,
- "new_tests_smoothed": 8330.0,
- "new_tests_smoothed_per_thousand": 0.925,
- "tests_per_case": 42.812,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-08-18",
- "total_cases": 23717.0,
- "new_cases": 344.0,
- "new_cases_smoothed": 227.857,
- "total_deaths": 729.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 2633.35,
- "new_cases_per_million": 38.195,
- "new_cases_smoothed_per_million": 25.299,
- "total_deaths_per_million": 80.942,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.095,
- "new_tests": 13821.0,
- "total_tests": 1037888.0,
- "total_tests_per_thousand": 115.239,
- "new_tests_per_thousand": 1.535,
- "new_tests_smoothed": 9054.0,
- "new_tests_smoothed_per_thousand": 1.005,
- "tests_per_case": 39.735,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-08-19",
- "total_cases": 23875.0,
- "new_cases": 158.0,
- "new_cases_smoothed": 230.714,
- "total_deaths": 729.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 2650.893,
- "new_cases_per_million": 17.543,
- "new_cases_smoothed_per_million": 25.617,
- "total_deaths_per_million": 80.942,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.095,
- "new_tests": 10328.0,
- "total_tests": 1048216.0,
- "total_tests_per_thousand": 116.386,
- "new_tests_per_thousand": 1.147,
- "new_tests_smoothed": 9314.0,
- "new_tests_smoothed_per_thousand": 1.034,
- "tests_per_case": 40.37,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-08-20",
- "total_cases": 24300.0,
- "new_cases": 425.0,
- "new_cases_smoothed": 257.0,
- "total_deaths": 729.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 2698.081,
- "new_cases_per_million": 47.189,
- "new_cases_smoothed_per_million": 28.535,
- "total_deaths_per_million": 80.942,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.079,
- "new_tests": 13221.0,
- "total_tests": 1061437.0,
- "total_tests_per_thousand": 117.854,
- "new_tests_per_thousand": 1.468,
- "new_tests_smoothed": 9990.0,
- "new_tests_smoothed_per_thousand": 1.109,
- "tests_per_case": 38.872,
- "positive_rate": 0.026000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-08-21",
- "total_cases": 24608.0,
- "new_cases": 308.0,
- "new_cases_smoothed": 268.286,
- "total_deaths": 729.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 2732.279,
- "new_cases_per_million": 34.198,
- "new_cases_smoothed_per_million": 29.788,
- "total_deaths_per_million": 80.942,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests": 13972.0,
- "total_tests": 1075409.0,
- "total_tests_per_thousand": 119.405,
- "new_tests_per_thousand": 1.551,
- "new_tests_smoothed": 10282.0,
- "new_tests_smoothed_per_thousand": 1.142,
- "tests_per_case": 38.325,
- "positive_rate": 0.026000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-08-22",
- "total_cases": 24883.0,
- "new_cases": 275.0,
- "new_cases_smoothed": 276.0,
- "total_deaths": 730.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 2762.813,
- "new_cases_per_million": 30.534,
- "new_cases_smoothed_per_million": 30.645,
- "total_deaths_per_million": 81.053,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.079,
- "new_tests": 11746.0,
- "total_tests": 1087155.0,
- "total_tests_per_thousand": 120.709,
- "new_tests_per_thousand": 1.304,
- "new_tests_smoothed": 11114.0,
- "new_tests_smoothed_per_thousand": 1.234,
- "tests_per_case": 40.268,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-08-23",
- "total_cases": 25099.0,
- "new_cases": 216.0,
- "new_cases_smoothed": 269.714,
- "total_deaths": 732.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 2786.796,
- "new_cases_per_million": 23.983,
- "new_cases_smoothed_per_million": 29.947,
- "total_deaths_per_million": 81.276,
- "new_deaths_per_million": 0.222,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests": 7832.0,
- "total_tests": 1094987.0,
- "total_tests_per_thousand": 121.579,
- "new_tests_per_thousand": 0.87,
- "new_tests_smoothed": 10928.0,
- "new_tests_smoothed_per_thousand": 1.213,
- "tests_per_case": 40.516999999999996,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-08-24",
- "total_cases": 25239.0,
- "new_cases": 140.0,
- "new_cases_smoothed": 266.571,
- "total_deaths": 732.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 2802.341,
- "new_cases_per_million": 15.545,
- "new_cases_smoothed_per_million": 29.598,
- "total_deaths_per_million": 81.276,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests": 6219.0,
- "total_tests": 1101206.0,
- "total_tests_per_thousand": 122.269,
- "new_tests_per_thousand": 0.691,
- "new_tests_smoothed": 11020.0,
- "new_tests_smoothed_per_thousand": 1.224,
- "tests_per_case": 41.34,
- "positive_rate": 0.024,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-08-25",
- "total_cases": 25547.0,
- "new_cases": 308.0,
- "new_cases_smoothed": 261.429,
- "total_deaths": 733.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 2836.538,
- "new_cases_per_million": 34.198,
- "new_cases_smoothed_per_million": 29.027,
- "total_deaths_per_million": 81.387,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests": 8883.0,
- "total_tests": 1110089.0,
- "total_tests_per_thousand": 123.256,
- "new_tests_per_thousand": 0.986,
- "new_tests_smoothed": 10314.0,
- "new_tests_smoothed_per_thousand": 1.145,
- "tests_per_case": 39.452,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-08-26",
- "total_cases": 25838.0,
- "new_cases": 291.0,
- "new_cases_smoothed": 280.429,
- "total_deaths": 733.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 2868.849,
- "new_cases_per_million": 32.31,
- "new_cases_smoothed_per_million": 31.137,
- "total_deaths_per_million": 81.387,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests": 9110.0,
- "total_tests": 1119199.0,
- "total_tests_per_thousand": 124.267,
- "new_tests_per_thousand": 1.012,
- "new_tests_smoothed": 10140.0,
- "new_tests_smoothed_per_thousand": 1.126,
- "tests_per_case": 36.159,
- "positive_rate": 0.027999999999999997,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-08-27",
- "total_cases": 26154.0,
- "new_cases": 316.0,
- "new_cases_smoothed": 264.857,
- "total_deaths": 733.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 2903.935,
- "new_cases_per_million": 35.086,
- "new_cases_smoothed_per_million": 29.408,
- "total_deaths_per_million": 81.387,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests": 14044.0,
- "total_tests": 1133243.0,
- "total_tests_per_thousand": 125.826,
- "new_tests_per_thousand": 1.559,
- "new_tests_smoothed": 10258.0,
- "new_tests_smoothed_per_thousand": 1.139,
- "tests_per_case": 38.73,
- "positive_rate": 0.026000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-08-28",
- "total_cases": 26381.0,
- "new_cases": 227.0,
- "new_cases_smoothed": 253.286,
- "total_deaths": 733.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 2929.139,
- "new_cases_per_million": 25.204,
- "new_cases_smoothed_per_million": 28.123,
- "total_deaths_per_million": 81.387,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests": 14701.0,
- "total_tests": 1147944.0,
- "total_tests_per_thousand": 127.459,
- "new_tests_per_thousand": 1.632,
- "new_tests_smoothed": 10362.0,
- "new_tests_smoothed_per_thousand": 1.151,
- "tests_per_case": 40.91,
- "positive_rate": 0.024,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-08-29",
- "total_cases": 26763.0,
- "new_cases": 382.0,
- "new_cases_smoothed": 268.571,
- "total_deaths": 733.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2971.554,
- "new_cases_per_million": 42.414,
- "new_cases_smoothed_per_million": 29.82,
- "total_deaths_per_million": 81.387,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.048,
- "new_tests": 12799.0,
- "total_tests": 1160743.0,
- "total_tests_per_thousand": 128.88,
- "new_tests_per_thousand": 1.421,
- "new_tests_smoothed": 10513.0,
- "new_tests_smoothed_per_thousand": 1.167,
- "tests_per_case": 39.144,
- "positive_rate": 0.026000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-08-30",
- "total_cases": 26937.0,
- "new_cases": 174.0,
- "new_cases_smoothed": 262.571,
- "total_deaths": 733.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2990.873,
- "new_cases_per_million": 19.32,
- "new_cases_smoothed_per_million": 29.154,
- "total_deaths_per_million": 81.387,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 11349.0,
- "total_tests": 1172092.0,
- "total_tests_per_thousand": 130.14,
- "new_tests_per_thousand": 1.26,
- "new_tests_smoothed": 11015.0,
- "new_tests_smoothed_per_thousand": 1.223,
- "tests_per_case": 41.95,
- "positive_rate": 0.024,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-08-31",
- "total_cases": 27218.0,
- "new_cases": 281.0,
- "new_cases_smoothed": 282.714,
- "total_deaths": 733.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 3022.073,
- "new_cases_per_million": 31.2,
- "new_cases_smoothed_per_million": 31.39,
- "total_deaths_per_million": 81.387,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 8619.0,
- "total_tests": 1180711.0,
- "total_tests_per_thousand": 131.097,
- "new_tests_per_thousand": 0.957,
- "new_tests_smoothed": 11358.0,
- "new_tests_smoothed_per_thousand": 1.261,
- "tests_per_case": 40.175,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-09-01",
- "total_cases": 27404.0,
- "new_cases": 186.0,
- "new_cases_smoothed": 265.286,
- "total_deaths": 733.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3042.725,
- "new_cases_per_million": 20.652,
- "new_cases_smoothed_per_million": 29.455,
- "total_deaths_per_million": 81.387,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 12416.0,
- "total_tests": 1193127.0,
- "total_tests_per_thousand": 132.475,
- "new_tests_per_thousand": 1.379,
- "new_tests_smoothed": 11863.0,
- "new_tests_smoothed_per_thousand": 1.317,
- "tests_per_case": 44.718,
- "positive_rate": 0.022000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-09-02",
- "total_cases": 27741.0,
- "new_cases": 337.0,
- "new_cases_smoothed": 271.857,
- "total_deaths": 734.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 3080.143,
- "new_cases_per_million": 37.418,
- "new_cases_smoothed_per_million": 30.185,
- "total_deaths_per_million": 81.498,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 17441.0,
- "total_tests": 1210568.0,
- "total_tests_per_thousand": 134.412,
- "new_tests_per_thousand": 1.937,
- "new_tests_smoothed": 13053.0,
- "new_tests_smoothed_per_thousand": 1.449,
- "tests_per_case": 48.013999999999996,
- "positive_rate": 0.021,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-09-03",
- "total_cases": 28183.0,
- "new_cases": 442.0,
- "new_cases_smoothed": 289.857,
- "total_deaths": 734.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 3129.219,
- "new_cases_per_million": 49.076,
- "new_cases_smoothed_per_million": 32.183,
- "total_deaths_per_million": 81.498,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 14689.0,
- "total_tests": 1225257.0,
- "total_tests_per_thousand": 136.043,
- "new_tests_per_thousand": 1.631,
- "new_tests_smoothed": 13145.0,
- "new_tests_smoothed_per_thousand": 1.46,
- "tests_per_case": 45.35,
- "positive_rate": 0.022000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-09-04",
- "total_cases": 28495.0,
- "new_cases": 312.0,
- "new_cases_smoothed": 302.0,
- "total_deaths": 735.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3163.861,
- "new_cases_per_million": 34.642,
- "new_cases_smoothed_per_million": 33.532,
- "total_deaths_per_million": 81.609,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests": 11232.0,
- "total_tests": 1236489.0,
- "total_tests_per_thousand": 137.29,
- "new_tests_per_thousand": 1.247,
- "new_tests_smoothed": 12649.0,
- "new_tests_smoothed_per_thousand": 1.404,
- "tests_per_case": 41.88399999999999,
- "positive_rate": 0.024,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-09-05",
- "total_cases": 28766.0,
- "new_cases": 271.0,
- "new_cases_smoothed": 286.143,
- "total_deaths": 735.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3193.951,
- "new_cases_per_million": 30.09,
- "new_cases_smoothed_per_million": 31.771,
- "total_deaths_per_million": 81.609,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests": 11318.0,
- "total_tests": 1247807.0,
- "total_tests_per_thousand": 138.547,
- "new_tests_per_thousand": 1.257,
- "new_tests_smoothed": 12438.0,
- "new_tests_smoothed_per_thousand": 1.381,
- "tests_per_case": 43.468,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-09-06",
- "total_cases": 28974.0,
- "new_cases": 208.0,
- "new_cases_smoothed": 291.0,
- "total_deaths": 735.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3217.046,
- "new_cases_per_million": 23.095,
- "new_cases_smoothed_per_million": 32.31,
- "total_deaths_per_million": 81.609,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests": 8018.0,
- "total_tests": 1255825.0,
- "total_tests_per_thousand": 139.437,
- "new_tests_per_thousand": 0.89,
- "new_tests_smoothed": 11962.0,
- "new_tests_smoothed_per_thousand": 1.328,
- "tests_per_case": 41.107,
- "positive_rate": 0.024,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-07",
- "total_cases": 29194.0,
- "new_cases": 220.0,
- "new_cases_smoothed": 282.286,
- "total_deaths": 736.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 3241.473,
- "new_cases_per_million": 24.427,
- "new_cases_smoothed_per_million": 31.343,
- "total_deaths_per_million": 81.72,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.048,
- "new_tests": 10398.0,
- "total_tests": 1266223.0,
- "total_tests_per_thousand": 140.591,
- "new_tests_per_thousand": 1.155,
- "new_tests_smoothed": 12216.0,
- "new_tests_smoothed_per_thousand": 1.356,
- "tests_per_case": 43.275,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-08",
- "total_cases": 29705.0,
- "new_cases": 511.0,
- "new_cases_smoothed": 328.714,
- "total_deaths": 746.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 3298.21,
- "new_cases_per_million": 56.737,
- "new_cases_smoothed_per_million": 36.498,
- "total_deaths_per_million": 82.83,
- "new_deaths_per_million": 1.11,
- "new_deaths_smoothed_per_million": 0.206,
- "new_tests": 10254.0,
- "total_tests": 1276477.0,
- "total_tests_per_thousand": 141.73,
- "new_tests_per_thousand": 1.139,
- "new_tests_smoothed": 11907.0,
- "new_tests_smoothed_per_thousand": 1.322,
- "tests_per_case": 36.223,
- "positive_rate": 0.027999999999999997,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-09",
- "total_cases": 30200.0,
- "new_cases": 495.0,
- "new_cases_smoothed": 351.286,
- "total_deaths": 747.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 3353.171,
- "new_cases_per_million": 54.961,
- "new_cases_smoothed_per_million": 39.004,
- "total_deaths_per_million": 82.941,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.206,
- "new_tests": 11582.0,
- "total_tests": 1288059.0,
- "total_tests_per_thousand": 143.016,
- "new_tests_per_thousand": 1.286,
- "new_tests_smoothed": 11070.0,
- "new_tests_smoothed_per_thousand": 1.229,
- "tests_per_case": 31.513,
- "positive_rate": 0.032,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-10",
- "total_cases": 30954.0,
- "new_cases": 754.0,
- "new_cases_smoothed": 395.857,
- "total_deaths": 747.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 3436.889,
- "new_cases_per_million": 83.718,
- "new_cases_smoothed_per_million": 43.953,
- "total_deaths_per_million": 82.941,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.206,
- "new_tests": 14971.0,
- "total_tests": 1303030.0,
- "total_tests_per_thousand": 144.678,
- "new_tests_per_thousand": 1.662,
- "new_tests_smoothed": 11110.0,
- "new_tests_smoothed_per_thousand": 1.234,
- "tests_per_case": 28.066,
- "positive_rate": 0.036000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-11",
- "total_cases": 31451.0,
- "new_cases": 497.0,
- "new_cases_smoothed": 422.286,
- "total_deaths": 748.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 3492.072,
- "new_cases_per_million": 55.183,
- "new_cases_smoothed_per_million": 46.887,
- "total_deaths_per_million": 83.052,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.206,
- "new_tests": 13789.0,
- "total_tests": 1316819.0,
- "total_tests_per_thousand": 146.209,
- "new_tests_per_thousand": 1.531,
- "new_tests_smoothed": 11476.0,
- "new_tests_smoothed_per_thousand": 1.274,
- "tests_per_case": 27.176,
- "positive_rate": 0.037000000000000005,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-12",
- "total_cases": 32456.0,
- "new_cases": 1005.0,
- "new_cases_smoothed": 527.143,
- "total_deaths": 750.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 3603.66,
- "new_cases_per_million": 111.587,
- "new_cases_smoothed_per_million": 58.53,
- "total_deaths_per_million": 83.274,
- "new_deaths_per_million": 0.222,
- "new_deaths_smoothed_per_million": 0.238,
- "new_tests": 14674.0,
- "total_tests": 1331493.0,
- "total_tests_per_thousand": 147.839,
- "new_tests_per_thousand": 1.629,
- "new_tests_smoothed": 11955.0,
- "new_tests_smoothed_per_thousand": 1.327,
- "tests_per_case": 22.679000000000002,
- "positive_rate": 0.044000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-13",
- "total_cases": 32951.0,
- "new_cases": 495.0,
- "new_cases_smoothed": 568.143,
- "total_deaths": 754.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 3658.621,
- "new_cases_per_million": 54.961,
- "new_cases_smoothed_per_million": 63.082,
- "total_deaths_per_million": 83.718,
- "new_deaths_per_million": 0.444,
- "new_deaths_smoothed_per_million": 0.301,
- "new_tests": 10573.0,
- "total_tests": 1342066.0,
- "total_tests_per_thousand": 149.012,
- "new_tests_per_thousand": 1.174,
- "new_tests_smoothed": 12320.0,
- "new_tests_smoothed_per_thousand": 1.368,
- "tests_per_case": 21.685,
- "positive_rate": 0.046,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-14",
- "total_cases": 33335.0,
- "new_cases": 384.0,
- "new_cases_smoothed": 591.571,
- "total_deaths": 756.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 3701.257,
- "new_cases_per_million": 42.636,
- "new_cases_smoothed_per_million": 65.683,
- "total_deaths_per_million": 83.94,
- "new_deaths_per_million": 0.222,
- "new_deaths_smoothed_per_million": 0.317,
- "new_tests": 9342.0,
- "total_tests": 1351408.0,
- "total_tests_per_thousand": 150.05,
- "new_tests_per_thousand": 1.037,
- "new_tests_smoothed": 12169.0,
- "new_tests_smoothed_per_thousand": 1.351,
- "tests_per_case": 20.570999999999998,
- "positive_rate": 0.049,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-15",
- "total_cases": 33884.0,
- "new_cases": 549.0,
- "new_cases_smoothed": 597.0,
- "total_deaths": 757.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 3762.214,
- "new_cases_per_million": 60.957,
- "new_cases_smoothed_per_million": 66.286,
- "total_deaths_per_million": 84.051,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.174,
- "new_tests": 13100.0,
- "total_tests": 1364508.0,
- "total_tests_per_thousand": 151.504,
- "new_tests_per_thousand": 1.455,
- "new_tests_smoothed": 12576.0,
- "new_tests_smoothed_per_thousand": 1.396,
- "tests_per_case": 21.065,
- "positive_rate": 0.047,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-16",
- "total_cases": 34744.0,
- "new_cases": 860.0,
- "new_cases_smoothed": 649.143,
- "total_deaths": 757.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 3857.701,
- "new_cases_per_million": 95.488,
- "new_cases_smoothed_per_million": 72.076,
- "total_deaths_per_million": 84.051,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.159,
- "new_tests": 15331.0,
- "total_tests": 1379839.0,
- "total_tests_per_thousand": 153.206,
- "new_tests_per_thousand": 1.702,
- "new_tests_smoothed": 13111.0,
- "new_tests_smoothed_per_thousand": 1.456,
- "tests_per_case": 20.197,
- "positive_rate": 0.05,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-17",
- "total_cases": 35448.0,
- "new_cases": 704.0,
- "new_cases_smoothed": 642.0,
- "total_deaths": 758.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 3935.868,
- "new_cases_per_million": 78.167,
- "new_cases_smoothed_per_million": 71.283,
- "total_deaths_per_million": 84.162,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.174,
- "new_tests_smoothed": 13410.0,
- "new_tests_smoothed_per_thousand": 1.489,
- "tests_per_case": 20.888,
- "positive_rate": 0.048,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-18",
- "total_cases": 36370.0,
- "new_cases": 922.0,
- "new_cases_smoothed": 702.714,
- "total_deaths": 758.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 4038.239,
- "new_cases_per_million": 102.372,
- "new_cases_smoothed_per_million": 78.024,
- "total_deaths_per_million": 84.162,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.159,
- "total_tests": 1413965.0,
- "total_tests_per_thousand": 156.996,
- "new_tests_smoothed": 13878.0,
- "new_tests_smoothed_per_thousand": 1.541,
- "tests_per_case": 19.749000000000002,
- "positive_rate": 0.051,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-19",
- "total_cases": 37191.0,
- "new_cases": 821.0,
- "new_cases_smoothed": 676.429,
- "total_deaths": 763.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 4129.397,
- "new_cases_per_million": 91.157,
- "new_cases_smoothed_per_million": 75.105,
- "total_deaths_per_million": 84.718,
- "new_deaths_per_million": 0.555,
- "new_deaths_smoothed_per_million": 0.206,
- "new_tests": 18134.0,
- "total_tests": 1432099.0,
- "total_tests_per_thousand": 159.009,
- "new_tests_per_thousand": 2.013,
- "new_tests_smoothed": 14372.0,
- "new_tests_smoothed_per_thousand": 1.596,
- "tests_per_case": 21.247,
- "positive_rate": 0.047,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-20",
- "total_cases": 37948.0,
- "new_cases": 757.0,
- "new_cases_smoothed": 713.857,
- "total_deaths": 765.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 4213.448,
- "new_cases_per_million": 84.051,
- "new_cases_smoothed_per_million": 79.261,
- "total_deaths_per_million": 84.94,
- "new_deaths_per_million": 0.222,
- "new_deaths_smoothed_per_million": 0.174,
- "new_tests": 12584.0,
- "total_tests": 1444683.0,
- "total_tests_per_thousand": 160.406,
- "new_tests_per_thousand": 1.397,
- "new_tests_smoothed": 14660.0,
- "new_tests_smoothed_per_thousand": 1.628,
- "tests_per_case": 20.535999999999998,
- "positive_rate": 0.049,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-21",
- "total_cases": 38557.0,
- "new_cases": 609.0,
- "new_cases_smoothed": 746.0,
- "total_deaths": 766.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 4281.067,
- "new_cases_per_million": 67.619,
- "new_cases_smoothed_per_million": 82.83,
- "total_deaths_per_million": 85.051,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.159,
- "new_tests": 13412.0,
- "total_tests": 1458095.0,
- "total_tests_per_thousand": 161.895,
- "new_tests_per_thousand": 1.489,
- "new_tests_smoothed": 15241.0,
- "new_tests_smoothed_per_thousand": 1.692,
- "tests_per_case": 20.43,
- "positive_rate": 0.049,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-22",
- "total_cases": 39150.0,
- "new_cases": 593.0,
- "new_cases_smoothed": 752.286,
- "total_deaths": 767.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 4346.909,
- "new_cases_per_million": 65.842,
- "new_cases_smoothed_per_million": 83.528,
- "total_deaths_per_million": 85.162,
- "new_deaths_per_million": 0.111,
- "new_deaths_smoothed_per_million": 0.159,
- "new_tests": 14552.0,
- "total_tests": 1472647.0,
- "total_tests_per_thousand": 163.511,
- "new_tests_per_thousand": 1.616,
- "new_tests_smoothed": 15448.0,
- "new_tests_smoothed_per_thousand": 1.715,
- "tests_per_case": 20.535,
- "positive_rate": 0.049,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-23",
- "total_cases": 39897.0,
- "new_cases": 747.0,
- "new_cases_smoothed": 736.143,
- "total_deaths": 771.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 4429.85,
- "new_cases_per_million": 82.941,
- "new_cases_smoothed_per_million": 81.736,
- "total_deaths_per_million": 85.606,
- "new_deaths_per_million": 0.444,
- "new_deaths_smoothed_per_million": 0.222,
- "new_tests": 16617.0,
- "total_tests": 1489264.0,
- "total_tests_per_thousand": 165.356,
- "new_tests_per_thousand": 1.845,
- "new_tests_smoothed": 15632.0,
- "new_tests_smoothed_per_thousand": 1.736,
- "tests_per_case": 21.235,
- "positive_rate": 0.047,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-24",
- "total_cases": 40558.0,
- "new_cases": 661.0,
- "new_cases_smoothed": 730.0,
- "total_deaths": 777.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 4503.242,
- "new_cases_per_million": 73.392,
- "new_cases_smoothed_per_million": 81.053,
- "total_deaths_per_million": 86.272,
- "new_deaths_per_million": 0.666,
- "new_deaths_smoothed_per_million": 0.301,
- "new_tests": 18518.0,
- "total_tests": 1507782.0,
- "total_tests_per_thousand": 167.412,
- "new_tests_per_thousand": 2.056,
- "new_tests_smoothed": 15840.0,
- "new_tests_smoothed_per_thousand": 1.759,
- "tests_per_case": 21.699,
- "positive_rate": 0.046,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-25",
- "total_cases": 41246.0,
- "new_cases": 688.0,
- "new_cases_smoothed": 696.571,
- "total_deaths": 783.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 4579.632,
- "new_cases_per_million": 76.39,
- "new_cases_smoothed_per_million": 77.342,
- "total_deaths_per_million": 86.938,
- "new_deaths_per_million": 0.666,
- "new_deaths_smoothed_per_million": 0.397
- }
- ]
- },
- "AZE": {
- "continent": "Asia",
- "location": "Azerbaijan",
- "population": 10139175.0,
- "population_density": 119.309,
- "median_age": 32.4,
- "aged_65_older": 6.018,
- "aged_70_older": 3.871,
- "gdp_per_capita": 15847.419,
- "cardiovasc_death_rate": 559.812,
- "diabetes_prevalence": 7.11,
- "female_smokers": 0.3,
- "male_smokers": 42.5,
- "handwashing_facilities": 83.241,
- "hospital_beds_per_thousand": 4.7,
- "life_expectancy": 73.0,
- "human_development_index": 0.757,
- "data": [
- {
- "date": "2019-12-31",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-01-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-02",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-03",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-04",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-05",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-06",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-07",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-08",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-09",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-10",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-11",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-12",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-13",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-14",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-15",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-16",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-17",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-18",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-19",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-20",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-21",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-22",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-23",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-24",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-25",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-26",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-27",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-28",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-29",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-30",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-01-31",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-02",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-03",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-04",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-05",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-06",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-07",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-08",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-09",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-10",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-11",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-12",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-13",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-14",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-15",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-16",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-17",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-18",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-19",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-20",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-21",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-22",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-23",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-24",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-25",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-26",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-27",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-02-28",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-02-29",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.099,
- "new_cases_per_million": 0.099,
- "new_cases_smoothed_per_million": 0.014,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-01",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.099,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.014,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-02",
- "total_cases": 3.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.296,
- "new_cases_per_million": 0.197,
- "new_cases_smoothed_per_million": 0.042,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-03",
- "new_cases_smoothed": 0.429,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.042,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-04",
- "new_cases_smoothed": 0.429,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.042,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-05",
- "new_cases_smoothed": 0.429,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.042,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-06",
- "total_cases": 6.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.592,
- "new_cases_per_million": 0.296,
- "new_cases_smoothed_per_million": 0.085,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-07",
- "total_cases": 9.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.888,
- "new_cases_per_million": 0.296,
- "new_cases_smoothed_per_million": 0.113,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-08",
- "new_cases_smoothed": 1.143,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.113,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-09",
- "new_cases_smoothed": 0.857,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.085,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-10",
- "new_cases_smoothed": 0.857,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.085,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-03-11",
- "total_cases": 11.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.085,
- "new_cases_per_million": 0.197,
- "new_cases_smoothed_per_million": 0.113,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-03-12",
- "total_cases": 13.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.282,
- "new_cases_per_million": 0.197,
- "new_cases_smoothed_per_million": 0.141,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-03-13",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.282,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.099,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-03-14",
- "new_cases_smoothed": 0.571,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.056,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-03-15",
- "total_cases": 19.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.874,
- "new_cases_per_million": 0.592,
- "new_cases_smoothed_per_million": 0.141,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-03-16",
- "total_cases": 19.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.874,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.141,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-03-17",
- "total_cases": 19.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.874,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.141,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-03-18",
- "total_cases": 28.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.762,
- "new_cases_per_million": 0.888,
- "new_cases_smoothed_per_million": 0.24,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-03-19",
- "total_cases": 34.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.353,
- "new_cases_per_million": 0.592,
- "new_cases_smoothed_per_million": 0.296,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 61.11
- },
- {
- "date": "2020-03-20",
- "total_cases": 44.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 4.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 4.34,
- "new_cases_per_million": 0.986,
- "new_cases_smoothed_per_million": 0.437,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 61.11
- },
- {
- "date": "2020-03-21",
- "total_cases": 44.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.429,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 4.34,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.437,
- "total_deaths_per_million": 0.099,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.014,
- "stringency_index": 61.11
- },
- {
- "date": "2020-03-22",
- "total_cases": 53.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 4.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 5.227,
- "new_cases_per_million": 0.888,
- "new_cases_smoothed_per_million": 0.479,
- "total_deaths_per_million": 0.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.014,
- "stringency_index": 61.11
- },
- {
- "date": "2020-03-23",
- "total_cases": 65.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 6.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 6.411,
- "new_cases_per_million": 1.184,
- "new_cases_smoothed_per_million": 0.648,
- "total_deaths_per_million": 0.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.014,
- "stringency_index": 68.52
- },
- {
- "date": "2020-03-24",
- "total_cases": 72.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 7.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 7.101,
- "new_cases_per_million": 0.69,
- "new_cases_smoothed_per_million": 0.747,
- "total_deaths_per_million": 0.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.014,
- "stringency_index": 68.52
- },
- {
- "date": "2020-03-25",
- "total_cases": 87.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 8.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 8.581,
- "new_cases_per_million": 1.479,
- "new_cases_smoothed_per_million": 0.831,
- "total_deaths_per_million": 0.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.014,
- "stringency_index": 68.52
- },
- {
- "date": "2020-03-26",
- "total_cases": 93.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 8.429,
- "total_deaths": 2.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 9.172,
- "new_cases_per_million": 0.592,
- "new_cases_smoothed_per_million": 0.831,
- "total_deaths_per_million": 0.197,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.028,
- "stringency_index": 68.52
- },
- {
- "date": "2020-03-27",
- "total_cases": 122.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 11.143,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 12.033,
- "new_cases_per_million": 2.86,
- "new_cases_smoothed_per_million": 1.099,
- "total_deaths_per_million": 0.296,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.042,
- "stringency_index": 68.52
- },
- {
- "date": "2020-03-28",
- "total_cases": 165.0,
- "new_cases": 43.0,
- "new_cases_smoothed": 17.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 16.274,
- "new_cases_per_million": 4.241,
- "new_cases_smoothed_per_million": 1.705,
- "total_deaths_per_million": 0.296,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.028,
- "stringency_index": 68.52
- },
- {
- "date": "2020-03-29",
- "total_cases": 182.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 18.429,
- "total_deaths": 4.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 17.95,
- "new_cases_per_million": 1.677,
- "new_cases_smoothed_per_million": 1.818,
- "total_deaths_per_million": 0.395,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.042,
- "stringency_index": 68.52
- },
- {
- "date": "2020-03-30",
- "total_cases": 209.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 20.571,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 20.613,
- "new_cases_per_million": 2.663,
- "new_cases_smoothed_per_million": 2.029,
- "total_deaths_per_million": 0.395,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.042,
- "stringency_index": 68.52
- },
- {
- "date": "2020-03-31",
- "total_cases": 273.0,
- "new_cases": 64.0,
- "new_cases_smoothed": 28.714,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 26.925,
- "new_cases_per_million": 6.312,
- "new_cases_smoothed_per_million": 2.832,
- "total_deaths_per_million": 0.395,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.042,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-01",
- "total_cases": 298.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 30.143,
- "total_deaths": 5.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 29.391,
- "new_cases_per_million": 2.466,
- "new_cases_smoothed_per_million": 2.973,
- "total_deaths_per_million": 0.493,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.056,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-02",
- "total_cases": 359.0,
- "new_cases": 61.0,
- "new_cases_smoothed": 38.0,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 35.407,
- "new_cases_per_million": 6.016,
- "new_cases_smoothed_per_million": 3.748,
- "total_deaths_per_million": 0.493,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.042,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-03",
- "total_cases": 400.0,
- "new_cases": 41.0,
- "new_cases_smoothed": 39.714,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 39.451,
- "new_cases_per_million": 4.044,
- "new_cases_smoothed_per_million": 3.917,
- "total_deaths_per_million": 0.493,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.028,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-04",
- "total_cases": 443.0,
- "new_cases": 43.0,
- "new_cases_smoothed": 39.714,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 43.692,
- "new_cases_per_million": 4.241,
- "new_cases_smoothed_per_million": 3.917,
- "total_deaths_per_million": 0.493,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.028,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-05",
- "total_cases": 521.0,
- "new_cases": 78.0,
- "new_cases_smoothed": 48.429,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 51.385,
- "new_cases_per_million": 7.693,
- "new_cases_smoothed_per_million": 4.776,
- "total_deaths_per_million": 0.493,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.014,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-06",
- "total_cases": 584.0,
- "new_cases": 63.0,
- "new_cases_smoothed": 53.571,
- "total_deaths": 7.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 57.598,
- "new_cases_per_million": 6.214,
- "new_cases_smoothed_per_million": 5.284,
- "total_deaths_per_million": 0.69,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.042,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-07",
- "total_cases": 641.0,
- "new_cases": 57.0,
- "new_cases_smoothed": 52.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 63.22,
- "new_cases_per_million": 5.622,
- "new_cases_smoothed_per_million": 5.185,
- "total_deaths_per_million": 0.69,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.042,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-08",
- "total_cases": 717.0,
- "new_cases": 76.0,
- "new_cases_smoothed": 59.857,
- "total_deaths": 8.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 70.716,
- "new_cases_per_million": 7.496,
- "new_cases_smoothed_per_million": 5.904,
- "total_deaths_per_million": 0.789,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.042,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-09",
- "total_cases": 822.0,
- "new_cases": 105.0,
- "new_cases_smoothed": 66.143,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 81.072,
- "new_cases_per_million": 10.356,
- "new_cases_smoothed_per_million": 6.523,
- "total_deaths_per_million": 0.789,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.042,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-10",
- "total_cases": 926.0,
- "new_cases": 104.0,
- "new_cases_smoothed": 75.143,
- "total_deaths": 9.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 91.329,
- "new_cases_per_million": 10.257,
- "new_cases_smoothed_per_million": 7.411,
- "total_deaths_per_million": 0.888,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.056,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-11",
- "total_cases": 991.0,
- "new_cases": 65.0,
- "new_cases_smoothed": 78.286,
- "total_deaths": 10.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 97.74,
- "new_cases_per_million": 6.411,
- "new_cases_smoothed_per_million": 7.721,
- "total_deaths_per_million": 0.986,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.07,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-12",
- "total_cases": 1058.0,
- "new_cases": 67.0,
- "new_cases_smoothed": 76.714,
- "total_deaths": 11.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 104.348,
- "new_cases_per_million": 6.608,
- "new_cases_smoothed_per_million": 7.566,
- "total_deaths_per_million": 1.085,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.085,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-13",
- "total_cases": 1098.0,
- "new_cases": 40.0,
- "new_cases_smoothed": 73.429,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 108.293,
- "new_cases_per_million": 3.945,
- "new_cases_smoothed_per_million": 7.242,
- "total_deaths_per_million": 1.085,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.056,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-14",
- "total_cases": 1148.0,
- "new_cases": 50.0,
- "new_cases_smoothed": 72.429,
- "total_deaths": 12.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 113.224,
- "new_cases_per_million": 4.931,
- "new_cases_smoothed_per_million": 7.143,
- "total_deaths_per_million": 1.184,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.07,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-15",
- "total_cases": 1197.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 68.571,
- "total_deaths": 13.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 118.057,
- "new_cases_per_million": 4.833,
- "new_cases_smoothed_per_million": 6.763,
- "total_deaths_per_million": 1.282,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.07,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-16",
- "total_cases": 1253.0,
- "new_cases": 56.0,
- "new_cases_smoothed": 61.571,
- "total_deaths": 13.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 123.58,
- "new_cases_per_million": 5.523,
- "new_cases_smoothed_per_million": 6.073,
- "total_deaths_per_million": 1.282,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.07,
- "stringency_index": 91.67
- },
- {
- "date": "2020-04-17",
- "total_cases": 1283.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 51.0,
- "total_deaths": 15.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 126.539,
- "new_cases_per_million": 2.959,
- "new_cases_smoothed_per_million": 5.03,
- "total_deaths_per_million": 1.479,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.085,
- "stringency_index": 91.67
- },
- {
- "date": "2020-04-18",
- "total_cases": 1340.0,
- "new_cases": 57.0,
- "new_cases_smoothed": 49.857,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 132.161,
- "new_cases_per_million": 5.622,
- "new_cases_smoothed_per_million": 4.917,
- "total_deaths_per_million": 1.479,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.07,
- "stringency_index": 91.67
- },
- {
- "date": "2020-04-19",
- "total_cases": 1373.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 45.0,
- "total_deaths": 18.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 135.415,
- "new_cases_per_million": 3.255,
- "new_cases_smoothed_per_million": 4.438,
- "total_deaths_per_million": 1.775,
- "new_deaths_per_million": 0.296,
- "new_deaths_smoothed_per_million": 0.099,
- "stringency_index": 91.67
- },
- {
- "date": "2020-04-20",
- "total_cases": 1398.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 42.857,
- "total_deaths": 19.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 137.881,
- "new_cases_per_million": 2.466,
- "new_cases_smoothed_per_million": 4.227,
- "total_deaths_per_million": 1.874,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.113,
- "stringency_index": 91.67
- },
- {
- "date": "2020-04-21",
- "total_cases": 1436.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 41.143,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 141.629,
- "new_cases_per_million": 3.748,
- "new_cases_smoothed_per_million": 4.058,
- "total_deaths_per_million": 1.874,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.099,
- "stringency_index": 91.67
- },
- {
- "date": "2020-04-22",
- "total_cases": 1480.0,
- "new_cases": 44.0,
- "new_cases_smoothed": 40.429,
- "total_deaths": 20.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 145.968,
- "new_cases_per_million": 4.34,
- "new_cases_smoothed_per_million": 3.987,
- "total_deaths_per_million": 1.973,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.099,
- "stringency_index": 91.67
- },
- {
- "date": "2020-04-23",
- "total_cases": 1518.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 37.857,
- "total_deaths": 20.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 149.716,
- "new_cases_per_million": 3.748,
- "new_cases_smoothed_per_million": 3.734,
- "total_deaths_per_million": 1.973,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.099,
- "stringency_index": 91.67
- },
- {
- "date": "2020-04-24",
- "total_cases": 1548.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 37.857,
- "total_deaths": 20.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 152.675,
- "new_cases_per_million": 2.959,
- "new_cases_smoothed_per_million": 3.734,
- "total_deaths_per_million": 1.973,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.07,
- "stringency_index": 91.67
- },
- {
- "date": "2020-04-25",
- "total_cases": 1592.0,
- "new_cases": 44.0,
- "new_cases_smoothed": 36.0,
- "total_deaths": 21.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 157.015,
- "new_cases_per_million": 4.34,
- "new_cases_smoothed_per_million": 3.551,
- "total_deaths_per_million": 2.071,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.085,
- "stringency_index": 91.67
- },
- {
- "date": "2020-04-26",
- "total_cases": 1617.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 34.857,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 159.48,
- "new_cases_per_million": 2.466,
- "new_cases_smoothed_per_million": 3.438,
- "total_deaths_per_million": 2.071,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.042,
- "stringency_index": 91.67
- },
- {
- "date": "2020-04-27",
- "total_cases": 1645.0,
- "new_cases": 28.0,
- "new_cases_smoothed": 35.286,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 162.242,
- "new_cases_per_million": 2.762,
- "new_cases_smoothed_per_million": 3.48,
- "total_deaths_per_million": 2.071,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.028,
- "stringency_index": 87.96
- },
- {
- "date": "2020-04-28",
- "total_cases": 1678.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 34.571,
- "total_deaths": 22.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 165.497,
- "new_cases_per_million": 3.255,
- "new_cases_smoothed_per_million": 3.41,
- "total_deaths_per_million": 2.17,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.042,
- "stringency_index": 87.96
- },
- {
- "date": "2020-04-29",
- "total_cases": 1717.0,
- "new_cases": 39.0,
- "new_cases_smoothed": 33.857,
- "total_deaths": 22.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 169.343,
- "new_cases_per_million": 3.846,
- "new_cases_smoothed_per_million": 3.339,
- "total_deaths_per_million": 2.17,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.028,
- "stringency_index": 87.96
- },
- {
- "date": "2020-04-30",
- "total_cases": 1766.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 35.429,
- "total_deaths": 23.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 174.176,
- "new_cases_per_million": 4.833,
- "new_cases_smoothed_per_million": 3.494,
- "total_deaths_per_million": 2.268,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.042,
- "stringency_index": 87.96
- },
- {
- "date": "2020-05-01",
- "total_cases": 1804.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 36.571,
- "total_deaths": 24.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 177.924,
- "new_cases_per_million": 3.748,
- "new_cases_smoothed_per_million": 3.607,
- "total_deaths_per_million": 2.367,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.056,
- "stringency_index": 87.96
- },
- {
- "date": "2020-05-02",
- "total_cases": 1854.0,
- "new_cases": 50.0,
- "new_cases_smoothed": 37.429,
- "total_deaths": 25.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 182.855,
- "new_cases_per_million": 4.931,
- "new_cases_smoothed_per_million": 3.691,
- "total_deaths_per_million": 2.466,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.056,
- "stringency_index": 87.96
- },
- {
- "date": "2020-05-03",
- "total_cases": 1894.0,
- "new_cases": 40.0,
- "new_cases_smoothed": 39.571,
- "total_deaths": 25.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 186.8,
- "new_cases_per_million": 3.945,
- "new_cases_smoothed_per_million": 3.903,
- "total_deaths_per_million": 2.466,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.056,
- "stringency_index": 87.96
- },
- {
- "date": "2020-05-04",
- "total_cases": 1932.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 41.0,
- "total_deaths": 25.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 190.548,
- "new_cases_per_million": 3.748,
- "new_cases_smoothed_per_million": 4.044,
- "total_deaths_per_million": 2.466,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.056,
- "stringency_index": 87.96
- },
- {
- "date": "2020-05-05",
- "total_cases": 1984.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 43.714,
- "total_deaths": 26.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 195.677,
- "new_cases_per_million": 5.129,
- "new_cases_smoothed_per_million": 4.311,
- "total_deaths_per_million": 2.564,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.056,
- "stringency_index": 87.96
- },
- {
- "date": "2020-05-06",
- "total_cases": 2060.0,
- "new_cases": 76.0,
- "new_cases_smoothed": 49.0,
- "total_deaths": 26.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 203.172,
- "new_cases_per_million": 7.496,
- "new_cases_smoothed_per_million": 4.833,
- "total_deaths_per_million": 2.564,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.056,
- "stringency_index": 87.96
- },
- {
- "date": "2020-05-07",
- "total_cases": 2127.0,
- "new_cases": 67.0,
- "new_cases_smoothed": 51.571,
- "total_deaths": 28.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 209.78,
- "new_cases_per_million": 6.608,
- "new_cases_smoothed_per_million": 5.086,
- "total_deaths_per_million": 2.762,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.07,
- "stringency_index": 87.96
- },
- {
- "date": "2020-05-08",
- "total_cases": 2204.0,
- "new_cases": 77.0,
- "new_cases_smoothed": 57.143,
- "total_deaths": 28.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 217.375,
- "new_cases_per_million": 7.594,
- "new_cases_smoothed_per_million": 5.636,
- "total_deaths_per_million": 2.762,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.056,
- "stringency_index": 87.96
- },
- {
- "date": "2020-05-09",
- "total_cases": 2279.0,
- "new_cases": 75.0,
- "new_cases_smoothed": 60.714,
- "total_deaths": 28.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 224.772,
- "new_cases_per_million": 7.397,
- "new_cases_smoothed_per_million": 5.988,
- "total_deaths_per_million": 2.762,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.042,
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-10",
- "total_cases": 2422.0,
- "new_cases": 143.0,
- "new_cases_smoothed": 75.429,
- "total_deaths": 31.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 238.875,
- "new_cases_per_million": 14.104,
- "new_cases_smoothed_per_million": 7.439,
- "total_deaths_per_million": 3.057,
- "new_deaths_per_million": 0.296,
- "new_deaths_smoothed_per_million": 0.085,
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-11",
- "total_cases": 2519.0,
- "new_cases": 97.0,
- "new_cases_smoothed": 83.857,
- "total_deaths": 32.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 248.442,
- "new_cases_per_million": 9.567,
- "new_cases_smoothed_per_million": 8.271,
- "total_deaths_per_million": 3.156,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.099,
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-12",
- "total_cases": 2589.0,
- "new_cases": 70.0,
- "new_cases_smoothed": 86.429,
- "total_deaths": 32.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 255.346,
- "new_cases_per_million": 6.904,
- "new_cases_smoothed_per_million": 8.524,
- "total_deaths_per_million": 3.156,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.085,
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-13",
- "total_cases": 2693.0,
- "new_cases": 104.0,
- "new_cases_smoothed": 90.429,
- "total_deaths": 33.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 265.603,
- "new_cases_per_million": 10.257,
- "new_cases_smoothed_per_million": 8.919,
- "total_deaths_per_million": 3.255,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.099,
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-14",
- "total_cases": 2758.0,
- "new_cases": 65.0,
- "new_cases_smoothed": 90.143,
- "total_deaths": 35.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 272.014,
- "new_cases_per_million": 6.411,
- "new_cases_smoothed_per_million": 8.891,
- "total_deaths_per_million": 3.452,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.099,
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-15",
- "total_cases": 2879.0,
- "new_cases": 121.0,
- "new_cases_smoothed": 96.429,
- "total_deaths": 35.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 283.948,
- "new_cases_per_million": 11.934,
- "new_cases_smoothed_per_million": 9.51,
- "total_deaths_per_million": 3.452,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.099,
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-16",
- "total_cases": 2980.0,
- "new_cases": 101.0,
- "new_cases_smoothed": 100.143,
- "total_deaths": 36.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 293.91,
- "new_cases_per_million": 9.961,
- "new_cases_smoothed_per_million": 9.877,
- "total_deaths_per_million": 3.551,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.113,
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-17",
- "total_cases": 3138.0,
- "new_cases": 158.0,
- "new_cases_smoothed": 102.286,
- "total_deaths": 36.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 309.493,
- "new_cases_per_million": 15.583,
- "new_cases_smoothed_per_million": 10.088,
- "total_deaths_per_million": 3.551,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.07,
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-18",
- "total_cases": 3274.0,
- "new_cases": 136.0,
- "new_cases_smoothed": 107.857,
- "total_deaths": 39.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 322.906,
- "new_cases_per_million": 13.413,
- "new_cases_smoothed_per_million": 10.638,
- "total_deaths_per_million": 3.846,
- "new_deaths_per_million": 0.296,
- "new_deaths_smoothed_per_million": 0.099,
- "stringency_index": 77.78
- },
- {
- "date": "2020-05-19",
- "total_cases": 3287.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 99.714,
- "total_deaths": 40.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 324.188,
- "new_cases_per_million": 1.282,
- "new_cases_smoothed_per_million": 9.835,
- "total_deaths_per_million": 3.945,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.113,
- "stringency_index": 77.78
- },
- {
- "date": "2020-05-20",
- "total_cases": 3518.0,
- "new_cases": 231.0,
- "new_cases_smoothed": 117.857,
- "total_deaths": 41.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 346.971,
- "new_cases_per_million": 22.783,
- "new_cases_smoothed_per_million": 11.624,
- "total_deaths_per_million": 4.044,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.113,
- "stringency_index": 77.78
- },
- {
- "date": "2020-05-21",
- "total_cases": 3631.0,
- "new_cases": 113.0,
- "new_cases_smoothed": 124.714,
- "total_deaths": 43.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 358.116,
- "new_cases_per_million": 11.145,
- "new_cases_smoothed_per_million": 12.3,
- "total_deaths_per_million": 4.241,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.113,
- "stringency_index": 77.78
- },
- {
- "date": "2020-05-22",
- "total_cases": 3749.0,
- "new_cases": 118.0,
- "new_cases_smoothed": 124.286,
- "total_deaths": 44.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 369.754,
- "new_cases_per_million": 11.638,
- "new_cases_smoothed_per_million": 12.258,
- "total_deaths_per_million": 4.34,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.127,
- "stringency_index": 77.78
- },
- {
- "date": "2020-05-23",
- "total_cases": 3855.0,
- "new_cases": 106.0,
- "new_cases_smoothed": 125.0,
- "total_deaths": 46.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 380.208,
- "new_cases_per_million": 10.454,
- "new_cases_smoothed_per_million": 12.328,
- "total_deaths_per_million": 4.537,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.141,
- "stringency_index": 77.78
- },
- {
- "date": "2020-05-24",
- "total_cases": 3982.0,
- "new_cases": 127.0,
- "new_cases_smoothed": 120.571,
- "total_deaths": 49.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 392.734,
- "new_cases_per_million": 12.526,
- "new_cases_smoothed_per_million": 11.892,
- "total_deaths_per_million": 4.833,
- "new_deaths_per_million": 0.296,
- "new_deaths_smoothed_per_million": 0.183,
- "stringency_index": 77.78
- },
- {
- "date": "2020-05-25",
- "total_cases": 4122.0,
- "new_cases": 140.0,
- "new_cases_smoothed": 121.143,
- "total_deaths": 49.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 406.542,
- "new_cases_per_million": 13.808,
- "new_cases_smoothed_per_million": 11.948,
- "total_deaths_per_million": 4.833,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.141,
- "stringency_index": 77.78
- },
- {
- "date": "2020-05-26",
- "total_cases": 4271.0,
- "new_cases": 149.0,
- "new_cases_smoothed": 140.571,
- "total_deaths": 51.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 421.237,
- "new_cases_per_million": 14.695,
- "new_cases_smoothed_per_million": 13.864,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.155,
- "stringency_index": 77.78
- },
- {
- "date": "2020-05-27",
- "total_cases": 4403.0,
- "new_cases": 132.0,
- "new_cases_smoothed": 126.429,
- "total_deaths": 52.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 434.256,
- "new_cases_per_million": 13.019,
- "new_cases_smoothed_per_million": 12.469,
- "total_deaths_per_million": 5.129,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.155,
- "stringency_index": 77.78
- },
- {
- "date": "2020-05-28",
- "total_cases": 4568.0,
- "new_cases": 165.0,
- "new_cases_smoothed": 133.857,
- "total_deaths": 54.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 450.53,
- "new_cases_per_million": 16.274,
- "new_cases_smoothed_per_million": 13.202,
- "total_deaths_per_million": 5.326,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.155,
- "stringency_index": 77.78
- },
- {
- "date": "2020-05-29",
- "total_cases": 4759.0,
- "new_cases": 191.0,
- "new_cases_smoothed": 144.286,
- "total_deaths": 56.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 469.368,
- "new_cases_per_million": 18.838,
- "new_cases_smoothed_per_million": 14.231,
- "total_deaths_per_million": 5.523,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.169,
- "stringency_index": 77.78
- },
- {
- "date": "2020-05-30",
- "total_cases": 4989.0,
- "new_cases": 230.0,
- "new_cases_smoothed": 162.0,
- "total_deaths": 58.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 492.052,
- "new_cases_per_million": 22.684,
- "new_cases_smoothed_per_million": 15.978,
- "total_deaths_per_million": 5.72,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.169,
- "stringency_index": 77.78
- },
- {
- "date": "2020-05-31",
- "total_cases": 5246.0,
- "new_cases": 257.0,
- "new_cases_smoothed": 180.571,
- "total_deaths": 61.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 517.399,
- "new_cases_per_million": 25.347,
- "new_cases_smoothed_per_million": 17.809,
- "total_deaths_per_million": 6.016,
- "new_deaths_per_million": 0.296,
- "new_deaths_smoothed_per_million": 0.169,
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-01",
- "total_cases": 5494.0,
- "new_cases": 248.0,
- "new_cases_smoothed": 196.0,
- "total_deaths": 63.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 541.859,
- "new_cases_per_million": 24.46,
- "new_cases_smoothed_per_million": 19.331,
- "total_deaths_per_million": 6.214,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.197,
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-02",
- "total_cases": 5662.0,
- "new_cases": 168.0,
- "new_cases_smoothed": 198.714,
- "total_deaths": 68.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 558.428,
- "new_cases_per_million": 16.569,
- "new_cases_smoothed_per_million": 19.599,
- "total_deaths_per_million": 6.707,
- "new_deaths_per_million": 0.493,
- "new_deaths_smoothed_per_million": 0.24,
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-03",
- "total_cases": 5935.0,
- "new_cases": 273.0,
- "new_cases_smoothed": 218.857,
- "total_deaths": 71.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 585.353,
- "new_cases_per_million": 26.925,
- "new_cases_smoothed_per_million": 21.585,
- "total_deaths_per_million": 7.003,
- "new_deaths_per_million": 0.296,
- "new_deaths_smoothed_per_million": 0.268,
- "stringency_index": 85.19
- },
- {
- "date": "2020-06-04",
- "total_cases": 6260.0,
- "new_cases": 325.0,
- "new_cases_smoothed": 241.714,
- "total_deaths": 76.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 617.407,
- "new_cases_per_million": 32.054,
- "new_cases_smoothed_per_million": 23.84,
- "total_deaths_per_million": 7.496,
- "new_deaths_per_million": 0.493,
- "new_deaths_smoothed_per_million": 0.31,
- "stringency_index": 85.19
- },
- {
- "date": "2020-06-05",
- "total_cases": 6522.0,
- "new_cases": 262.0,
- "new_cases_smoothed": 251.857,
- "total_deaths": 78.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 643.248,
- "new_cases_per_million": 25.84,
- "new_cases_smoothed_per_million": 24.84,
- "total_deaths_per_million": 7.693,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.31,
- "stringency_index": 85.19
- },
- {
- "date": "2020-06-06",
- "total_cases": 6860.0,
- "new_cases": 338.0,
- "new_cases_smoothed": 267.286,
- "total_deaths": 82.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 676.584,
- "new_cases_per_million": 33.336,
- "new_cases_smoothed_per_million": 26.362,
- "total_deaths_per_million": 8.087,
- "new_deaths_per_million": 0.395,
- "new_deaths_smoothed_per_million": 0.338,
- "stringency_index": 85.19
- },
- {
- "date": "2020-06-07",
- "total_cases": 7239.0,
- "new_cases": 379.0,
- "new_cases_smoothed": 284.714,
- "total_deaths": 84.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 713.963,
- "new_cases_per_million": 37.38,
- "new_cases_smoothed_per_million": 28.081,
- "total_deaths_per_million": 8.285,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.324,
- "stringency_index": 85.19
- },
- {
- "date": "2020-06-08",
- "total_cases": 7553.0,
- "new_cases": 314.0,
- "new_cases_smoothed": 294.143,
- "total_deaths": 88.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 744.932,
- "new_cases_per_million": 30.969,
- "new_cases_smoothed_per_million": 29.011,
- "total_deaths_per_million": 8.679,
- "new_deaths_per_million": 0.395,
- "new_deaths_smoothed_per_million": 0.352,
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-09",
- "total_cases": 7876.0,
- "new_cases": 323.0,
- "new_cases_smoothed": 316.286,
- "total_deaths": 93.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 776.789,
- "new_cases_per_million": 31.857,
- "new_cases_smoothed_per_million": 31.194,
- "total_deaths_per_million": 9.172,
- "new_deaths_per_million": 0.493,
- "new_deaths_smoothed_per_million": 0.352,
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-10",
- "total_cases": 8191.0,
- "new_cases": 315.0,
- "new_cases_smoothed": 322.286,
- "total_deaths": 98.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 807.857,
- "new_cases_per_million": 31.068,
- "new_cases_smoothed_per_million": 31.786,
- "total_deaths_per_million": 9.665,
- "new_deaths_per_million": 0.493,
- "new_deaths_smoothed_per_million": 0.38,
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-11",
- "total_cases": 8530.0,
- "new_cases": 339.0,
- "new_cases_smoothed": 324.286,
- "total_deaths": 102.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 841.291,
- "new_cases_per_million": 33.435,
- "new_cases_smoothed_per_million": 31.983,
- "total_deaths_per_million": 10.06,
- "new_deaths_per_million": 0.395,
- "new_deaths_smoothed_per_million": 0.366,
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-12",
- "total_cases": 8882.0,
- "new_cases": 352.0,
- "new_cases_smoothed": 337.143,
- "total_deaths": 108.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 876.008,
- "new_cases_per_million": 34.717,
- "new_cases_smoothed_per_million": 33.252,
- "total_deaths_per_million": 10.652,
- "new_deaths_per_million": 0.592,
- "new_deaths_smoothed_per_million": 0.423,
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-13",
- "total_cases": 9218.0,
- "new_cases": 336.0,
- "new_cases_smoothed": 336.857,
- "total_deaths": 113.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 909.147,
- "new_cases_per_million": 33.139,
- "new_cases_smoothed_per_million": 33.223,
- "total_deaths_per_million": 11.145,
- "new_deaths_per_million": 0.493,
- "new_deaths_smoothed_per_million": 0.437,
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-14",
- "total_cases": 9570.0,
- "new_cases": 352.0,
- "new_cases_smoothed": 333.0,
- "total_deaths": 115.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 943.864,
- "new_cases_per_million": 34.717,
- "new_cases_smoothed_per_million": 32.843,
- "total_deaths_per_million": 11.342,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.437,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-15",
- "total_cases": 9957.0,
- "new_cases": 387.0,
- "new_cases_smoothed": 343.429,
- "total_deaths": 119.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 982.033,
- "new_cases_per_million": 38.169,
- "new_cases_smoothed_per_million": 33.871,
- "total_deaths_per_million": 11.737,
- "new_deaths_per_million": 0.395,
- "new_deaths_smoothed_per_million": 0.437,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-16",
- "total_cases": 10324.0,
- "new_cases": 367.0,
- "new_cases_smoothed": 349.714,
- "total_deaths": 122.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 1018.229,
- "new_cases_per_million": 36.196,
- "new_cases_smoothed_per_million": 34.491,
- "total_deaths_per_million": 12.033,
- "new_deaths_per_million": 0.296,
- "new_deaths_smoothed_per_million": 0.409,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-17",
- "total_cases": 10662.0,
- "new_cases": 338.0,
- "new_cases_smoothed": 353.0,
- "total_deaths": 126.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 1051.565,
- "new_cases_per_million": 33.336,
- "new_cases_smoothed_per_million": 34.815,
- "total_deaths_per_million": 12.427,
- "new_deaths_per_million": 0.395,
- "new_deaths_smoothed_per_million": 0.395,
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-18",
- "total_cases": 10991.0,
- "new_cases": 329.0,
- "new_cases_smoothed": 351.571,
- "total_deaths": 133.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 1084.013,
- "new_cases_per_million": 32.448,
- "new_cases_smoothed_per_million": 34.675,
- "total_deaths_per_million": 13.117,
- "new_deaths_per_million": 0.69,
- "new_deaths_smoothed_per_million": 0.437,
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-19",
- "total_cases": 11329.0,
- "new_cases": 338.0,
- "new_cases_smoothed": 349.571,
- "total_deaths": 139.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 1117.349,
- "new_cases_per_million": 33.336,
- "new_cases_smoothed_per_million": 34.477,
- "total_deaths_per_million": 13.709,
- "new_deaths_per_million": 0.592,
- "new_deaths_smoothed_per_million": 0.437,
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-20",
- "total_cases": 11767.0,
- "new_cases": 438.0,
- "new_cases_smoothed": 364.143,
- "total_deaths": 143.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 1160.548,
- "new_cases_per_million": 43.199,
- "new_cases_smoothed_per_million": 35.914,
- "total_deaths_per_million": 14.104,
- "new_deaths_per_million": 0.395,
- "new_deaths_smoothed_per_million": 0.423,
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-21",
- "total_cases": 12238.0,
- "new_cases": 471.0,
- "new_cases_smoothed": 381.143,
- "total_deaths": 148.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 1207.002,
- "new_cases_per_million": 46.453,
- "new_cases_smoothed_per_million": 37.591,
- "total_deaths_per_million": 14.597,
- "new_deaths_per_million": 0.493,
- "new_deaths_smoothed_per_million": 0.465,
- "stringency_index": 96.3
- },
- {
- "date": "2020-06-22",
- "total_cases": 12729.0,
- "new_cases": 491.0,
- "new_cases_smoothed": 396.0,
- "total_deaths": 154.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 1255.428,
- "new_cases_per_million": 48.426,
- "new_cases_smoothed_per_million": 39.056,
- "total_deaths_per_million": 15.189,
- "new_deaths_per_million": 0.592,
- "new_deaths_smoothed_per_million": 0.493,
- "stringency_index": 96.3
- },
- {
- "date": "2020-06-23",
- "total_cases": 13207.0,
- "new_cases": 478.0,
- "new_cases_smoothed": 411.857,
- "total_deaths": 161.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 1302.571,
- "new_cases_per_million": 47.144,
- "new_cases_smoothed_per_million": 40.62,
- "total_deaths_per_million": 15.879,
- "new_deaths_per_million": 0.69,
- "new_deaths_smoothed_per_million": 0.549,
- "stringency_index": 96.3
- },
- {
- "date": "2020-06-24",
- "total_cases": 13715.0,
- "new_cases": 508.0,
- "new_cases_smoothed": 436.143,
- "total_deaths": 167.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.857,
- "total_cases_per_million": 1352.674,
- "new_cases_per_million": 50.103,
- "new_cases_smoothed_per_million": 43.016,
- "total_deaths_per_million": 16.471,
- "new_deaths_per_million": 0.592,
- "new_deaths_smoothed_per_million": 0.578,
- "stringency_index": 96.3
- },
- {
- "date": "2020-06-25",
- "total_cases": 14305.0,
- "new_cases": 590.0,
- "new_cases_smoothed": 473.429,
- "total_deaths": 174.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 5.857,
- "total_cases_per_million": 1410.864,
- "new_cases_per_million": 58.19,
- "new_cases_smoothed_per_million": 46.693,
- "total_deaths_per_million": 17.161,
- "new_deaths_per_million": 0.69,
- "new_deaths_smoothed_per_million": 0.578,
- "stringency_index": 96.3
- },
- {
- "date": "2020-06-26",
- "total_cases": 14852.0,
- "new_cases": 547.0,
- "new_cases_smoothed": 503.286,
- "total_deaths": 180.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.857,
- "total_cases_per_million": 1464.813,
- "new_cases_per_million": 53.949,
- "new_cases_smoothed_per_million": 49.638,
- "total_deaths_per_million": 17.753,
- "new_deaths_per_million": 0.592,
- "new_deaths_smoothed_per_million": 0.578,
- "stringency_index": 96.3
- },
- {
- "date": "2020-06-27",
- "total_cases": 15369.0,
- "new_cases": 517.0,
- "new_cases_smoothed": 514.571,
- "total_deaths": 187.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 6.286,
- "total_cases_per_million": 1515.804,
- "new_cases_per_million": 50.99,
- "new_cases_smoothed_per_million": 50.751,
- "total_deaths_per_million": 18.443,
- "new_deaths_per_million": 0.69,
- "new_deaths_smoothed_per_million": 0.62,
- "stringency_index": 96.3
- },
- {
- "date": "2020-06-28",
- "total_cases": 15890.0,
- "new_cases": 521.0,
- "new_cases_smoothed": 521.714,
- "total_deaths": 193.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 6.429,
- "total_cases_per_million": 1567.189,
- "new_cases_per_million": 51.385,
- "new_cases_smoothed_per_million": 51.455,
- "total_deaths_per_million": 19.035,
- "new_deaths_per_million": 0.592,
- "new_deaths_smoothed_per_million": 0.634,
- "stringency_index": 96.3
- },
- {
- "date": "2020-06-29",
- "total_cases": 16424.0,
- "new_cases": 534.0,
- "new_cases_smoothed": 527.857,
- "total_deaths": 198.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 6.286,
- "total_cases_per_million": 1619.856,
- "new_cases_per_million": 52.667,
- "new_cases_smoothed_per_million": 52.061,
- "total_deaths_per_million": 19.528,
- "new_deaths_per_million": 0.493,
- "new_deaths_smoothed_per_million": 0.62,
- "stringency_index": 96.3
- },
- {
- "date": "2020-06-30",
- "total_cases": 16968.0,
- "new_cases": 544.0,
- "new_cases_smoothed": 537.286,
- "total_deaths": 206.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 6.429,
- "total_cases_per_million": 1673.509,
- "new_cases_per_million": 53.653,
- "new_cases_smoothed_per_million": 52.991,
- "total_deaths_per_million": 20.317,
- "new_deaths_per_million": 0.789,
- "new_deaths_smoothed_per_million": 0.634,
- "stringency_index": 96.3
- },
- {
- "date": "2020-07-01",
- "total_cases": 17524.0,
- "new_cases": 556.0,
- "new_cases_smoothed": 544.143,
- "total_deaths": 213.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 1728.346,
- "new_cases_per_million": 54.837,
- "new_cases_smoothed_per_million": 53.667,
- "total_deaths_per_million": 21.008,
- "new_deaths_per_million": 0.69,
- "new_deaths_smoothed_per_million": 0.648,
- "stringency_index": 96.3
- },
- {
- "date": "2020-07-02",
- "total_cases": 18112.0,
- "new_cases": 588.0,
- "new_cases_smoothed": 543.857,
- "total_deaths": 220.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 1786.339,
- "new_cases_per_million": 57.993,
- "new_cases_smoothed_per_million": 53.639,
- "total_deaths_per_million": 21.698,
- "new_deaths_per_million": 0.69,
- "new_deaths_smoothed_per_million": 0.648,
- "stringency_index": 96.3
- },
- {
- "date": "2020-07-03",
- "total_cases": 18684.0,
- "new_cases": 572.0,
- "new_cases_smoothed": 547.429,
- "total_deaths": 228.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 6.857,
- "total_cases_per_million": 1842.753,
- "new_cases_per_million": 56.415,
- "new_cases_smoothed_per_million": 53.991,
- "total_deaths_per_million": 22.487,
- "new_deaths_per_million": 0.789,
- "new_deaths_smoothed_per_million": 0.676,
- "stringency_index": 96.3
- },
- {
- "date": "2020-07-04",
- "total_cases": 19267.0,
- "new_cases": 583.0,
- "new_cases_smoothed": 556.857,
- "total_deaths": 235.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 6.857,
- "total_cases_per_million": 1900.253,
- "new_cases_per_million": 57.5,
- "new_cases_smoothed_per_million": 54.921,
- "total_deaths_per_million": 23.177,
- "new_deaths_per_million": 0.69,
- "new_deaths_smoothed_per_million": 0.676,
- "stringency_index": 96.3
- },
- {
- "date": "2020-07-05",
- "total_cases": 19801.0,
- "new_cases": 534.0,
- "new_cases_smoothed": 558.714,
- "total_deaths": 241.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 6.857,
- "total_cases_per_million": 1952.92,
- "new_cases_per_million": 52.667,
- "new_cases_smoothed_per_million": 55.105,
- "total_deaths_per_million": 23.769,
- "new_deaths_per_million": 0.592,
- "new_deaths_smoothed_per_million": 0.676,
- "stringency_index": 96.3
- },
- {
- "date": "2020-07-06",
- "total_cases": 20324.0,
- "new_cases": 523.0,
- "new_cases_smoothed": 557.143,
- "total_deaths": 250.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 7.429,
- "total_cases_per_million": 2004.502,
- "new_cases_per_million": 51.582,
- "new_cases_smoothed_per_million": 54.95,
- "total_deaths_per_million": 24.657,
- "new_deaths_per_million": 0.888,
- "new_deaths_smoothed_per_million": 0.733,
- "stringency_index": 96.3
- },
- {
- "date": "2020-07-07",
- "total_cases": 20837.0,
- "new_cases": 513.0,
- "new_cases_smoothed": 552.714,
- "total_deaths": 258.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 7.429,
- "total_cases_per_million": 2055.098,
- "new_cases_per_million": 50.596,
- "new_cases_smoothed_per_million": 54.513,
- "total_deaths_per_million": 25.446,
- "new_deaths_per_million": 0.789,
- "new_deaths_smoothed_per_million": 0.733,
- "stringency_index": 96.3
- },
- {
- "date": "2020-07-08",
- "total_cases": 21374.0,
- "new_cases": 537.0,
- "new_cases_smoothed": 550.0,
- "total_deaths": 265.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 7.429,
- "total_cases_per_million": 2108.061,
- "new_cases_per_million": 52.963,
- "new_cases_smoothed_per_million": 54.245,
- "total_deaths_per_million": 26.136,
- "new_deaths_per_million": 0.69,
- "new_deaths_smoothed_per_million": 0.733,
- "stringency_index": 96.3
- },
- {
- "date": "2020-07-09",
- "total_cases": 21916.0,
- "new_cases": 542.0,
- "new_cases_smoothed": 543.429,
- "total_deaths": 274.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 7.714,
- "total_cases_per_million": 2161.517,
- "new_cases_per_million": 53.456,
- "new_cases_smoothed_per_million": 53.597,
- "total_deaths_per_million": 27.024,
- "new_deaths_per_million": 0.888,
- "new_deaths_smoothed_per_million": 0.761,
- "stringency_index": 96.3
- },
- {
- "date": "2020-07-10",
- "total_cases": 22464.0,
- "new_cases": 548.0,
- "new_cases_smoothed": 540.0,
- "total_deaths": 284.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 8.0,
- "total_cases_per_million": 2215.565,
- "new_cases_per_million": 54.048,
- "new_cases_smoothed_per_million": 53.259,
- "total_deaths_per_million": 28.01,
- "new_deaths_per_million": 0.986,
- "new_deaths_smoothed_per_million": 0.789,
- "stringency_index": 96.3
- },
- {
- "date": "2020-07-11",
- "total_cases": 22990.0,
- "new_cases": 526.0,
- "new_cases_smoothed": 531.857,
- "total_deaths": 292.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 2267.443,
- "new_cases_per_million": 51.878,
- "new_cases_smoothed_per_million": 52.456,
- "total_deaths_per_million": 28.799,
- "new_deaths_per_million": 0.789,
- "new_deaths_smoothed_per_million": 0.803,
- "stringency_index": 96.3
- },
- {
- "date": "2020-07-12",
- "total_cases": 23521.0,
- "new_cases": 531.0,
- "new_cases_smoothed": 531.429,
- "total_deaths": 298.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 2319.814,
- "new_cases_per_million": 52.371,
- "new_cases_smoothed_per_million": 52.413,
- "total_deaths_per_million": 29.391,
- "new_deaths_per_million": 0.592,
- "new_deaths_smoothed_per_million": 0.803,
- "stringency_index": 96.3
- },
- {
- "date": "2020-07-13",
- "total_cases": 24041.0,
- "new_cases": 520.0,
- "new_cases_smoothed": 531.0,
- "total_deaths": 306.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 8.0,
- "total_cases_per_million": 2371.1,
- "new_cases_per_million": 51.286,
- "new_cases_smoothed_per_million": 52.371,
- "total_deaths_per_million": 30.18,
- "new_deaths_per_million": 0.789,
- "new_deaths_smoothed_per_million": 0.789,
- "stringency_index": 96.3
- },
- {
- "date": "2020-07-14",
- "total_cases": 24570.0,
- "new_cases": 529.0,
- "new_cases_smoothed": 533.286,
- "total_deaths": 313.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 7.857,
- "total_cases_per_million": 2423.274,
- "new_cases_per_million": 52.174,
- "new_cases_smoothed_per_million": 52.597,
- "total_deaths_per_million": 30.87,
- "new_deaths_per_million": 0.69,
- "new_deaths_smoothed_per_million": 0.775,
- "stringency_index": 96.3
- },
- {
- "date": "2020-07-15",
- "total_cases": 25113.0,
- "new_cases": 543.0,
- "new_cases_smoothed": 534.143,
- "total_deaths": 319.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 7.714,
- "total_cases_per_million": 2476.829,
- "new_cases_per_million": 53.555,
- "new_cases_smoothed_per_million": 52.681,
- "total_deaths_per_million": 31.462,
- "new_deaths_per_million": 0.592,
- "new_deaths_smoothed_per_million": 0.761,
- "stringency_index": 96.3
- },
- {
- "date": "2020-07-16",
- "total_cases": 25672.0,
- "new_cases": 559.0,
- "new_cases_smoothed": 536.571,
- "total_deaths": 326.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 7.429,
- "total_cases_per_million": 2531.961,
- "new_cases_per_million": 55.133,
- "new_cases_smoothed_per_million": 52.921,
- "total_deaths_per_million": 32.153,
- "new_deaths_per_million": 0.69,
- "new_deaths_smoothed_per_million": 0.733,
- "stringency_index": 96.3
- },
- {
- "date": "2020-07-17",
- "total_cases": 26165.0,
- "new_cases": 493.0,
- "new_cases_smoothed": 528.714,
- "total_deaths": 334.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 7.143,
- "total_cases_per_million": 2580.585,
- "new_cases_per_million": 48.623,
- "new_cases_smoothed_per_million": 52.146,
- "total_deaths_per_million": 32.942,
- "new_deaths_per_million": 0.789,
- "new_deaths_smoothed_per_million": 0.704,
- "stringency_index": 96.3
- },
- {
- "date": "2020-07-18",
- "total_cases": 26636.0,
- "new_cases": 471.0,
- "new_cases_smoothed": 520.857,
- "total_deaths": 341.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 7.0,
- "total_cases_per_million": 2627.038,
- "new_cases_per_million": 46.453,
- "new_cases_smoothed_per_million": 51.371,
- "total_deaths_per_million": 33.632,
- "new_deaths_per_million": 0.69,
- "new_deaths_smoothed_per_million": 0.69,
- "stringency_index": 96.3
- },
- {
- "date": "2020-07-19",
- "total_cases": 27133.0,
- "new_cases": 497.0,
- "new_cases_smoothed": 516.0,
- "total_deaths": 349.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 7.286,
- "total_cases_per_million": 2676.056,
- "new_cases_per_million": 49.018,
- "new_cases_smoothed_per_million": 50.892,
- "total_deaths_per_million": 34.421,
- "new_deaths_per_million": 0.789,
- "new_deaths_smoothed_per_million": 0.719,
- "stringency_index": 96.3
- },
- {
- "date": "2020-07-20",
- "total_cases": 27521.0,
- "new_cases": 388.0,
- "new_cases_smoothed": 497.143,
- "total_deaths": 354.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 6.857,
- "total_cases_per_million": 2714.323,
- "new_cases_per_million": 38.267,
- "new_cases_smoothed_per_million": 49.032,
- "total_deaths_per_million": 34.914,
- "new_deaths_per_million": 0.493,
- "new_deaths_smoothed_per_million": 0.676,
- "stringency_index": 96.3
- },
- {
- "date": "2020-07-21",
- "total_cases": 27890.0,
- "new_cases": 369.0,
- "new_cases_smoothed": 474.286,
- "total_deaths": 363.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 7.143,
- "total_cases_per_million": 2750.717,
- "new_cases_per_million": 36.393,
- "new_cases_smoothed_per_million": 46.778,
- "total_deaths_per_million": 35.802,
- "new_deaths_per_million": 0.888,
- "new_deaths_smoothed_per_million": 0.704,
- "stringency_index": 96.3
- },
- {
- "date": "2020-07-22",
- "total_cases": 28242.0,
- "new_cases": 352.0,
- "new_cases_smoothed": 447.0,
- "total_deaths": 376.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 2785.434,
- "new_cases_per_million": 34.717,
- "new_cases_smoothed_per_million": 44.086,
- "total_deaths_per_million": 37.084,
- "new_deaths_per_million": 1.282,
- "new_deaths_smoothed_per_million": 0.803,
- "stringency_index": 96.3
- },
- {
- "date": "2020-07-23",
- "total_cases": 28633.0,
- "new_cases": 391.0,
- "new_cases_smoothed": 423.0,
- "total_deaths": 385.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 8.429,
- "total_cases_per_million": 2823.997,
- "new_cases_per_million": 38.563,
- "new_cases_smoothed_per_million": 41.719,
- "total_deaths_per_million": 37.972,
- "new_deaths_per_million": 0.888,
- "new_deaths_smoothed_per_million": 0.831,
- "stringency_index": 96.3
- },
- {
- "date": "2020-07-24",
- "total_cases": 28980.0,
- "new_cases": 347.0,
- "new_cases_smoothed": 402.143,
- "total_deaths": 391.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 2858.221,
- "new_cases_per_million": 34.224,
- "new_cases_smoothed_per_million": 39.662,
- "total_deaths_per_million": 38.563,
- "new_deaths_per_million": 0.592,
- "new_deaths_smoothed_per_million": 0.803,
- "stringency_index": 96.3
- },
- {
- "date": "2020-07-25",
- "total_cases": 29312.0,
- "new_cases": 332.0,
- "new_cases_smoothed": 382.286,
- "total_deaths": 400.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 8.429,
- "total_cases_per_million": 2890.965,
- "new_cases_per_million": 32.744,
- "new_cases_smoothed_per_million": 37.704,
- "total_deaths_per_million": 39.451,
- "new_deaths_per_million": 0.888,
- "new_deaths_smoothed_per_million": 0.831,
- "stringency_index": 96.3
- },
- {
- "date": "2020-07-26",
- "total_cases": 29633.0,
- "new_cases": 321.0,
- "new_cases_smoothed": 357.143,
- "total_deaths": 408.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 8.429,
- "total_cases_per_million": 2922.624,
- "new_cases_per_million": 31.659,
- "new_cases_smoothed_per_million": 35.224,
- "total_deaths_per_million": 40.24,
- "new_deaths_per_million": 0.789,
- "new_deaths_smoothed_per_million": 0.831,
- "stringency_index": 96.3
- },
- {
- "date": "2020-07-27",
- "total_cases": 30050.0,
- "new_cases": 417.0,
- "new_cases_smoothed": 361.286,
- "total_deaths": 417.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 9.0,
- "total_cases_per_million": 2963.752,
- "new_cases_per_million": 41.128,
- "new_cases_smoothed_per_million": 35.633,
- "total_deaths_per_million": 41.128,
- "new_deaths_per_million": 0.888,
- "new_deaths_smoothed_per_million": 0.888,
- "stringency_index": 96.3
- },
- {
- "date": "2020-07-28",
- "total_cases": 30446.0,
- "new_cases": 396.0,
- "new_cases_smoothed": 365.143,
- "total_deaths": 423.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 3002.808,
- "new_cases_per_million": 39.056,
- "new_cases_smoothed_per_million": 36.013,
- "total_deaths_per_million": 41.719,
- "new_deaths_per_million": 0.592,
- "new_deaths_smoothed_per_million": 0.845,
- "stringency_index": 91.67
- },
- {
- "date": "2020-07-29",
- "total_cases": 30858.0,
- "new_cases": 412.0,
- "new_cases_smoothed": 373.714,
- "total_deaths": 430.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 7.714,
- "total_cases_per_million": 3043.443,
- "new_cases_per_million": 40.634,
- "new_cases_smoothed_per_million": 36.858,
- "total_deaths_per_million": 42.41,
- "new_deaths_per_million": 0.69,
- "new_deaths_smoothed_per_million": 0.761,
- "stringency_index": 91.67
- },
- {
- "date": "2020-07-30",
- "total_cases": 31221.0,
- "new_cases": 363.0,
- "new_cases_smoothed": 369.714,
- "total_deaths": 438.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 7.571,
- "total_cases_per_million": 3079.245,
- "new_cases_per_million": 35.802,
- "new_cases_smoothed_per_million": 36.464,
- "total_deaths_per_million": 43.199,
- "new_deaths_per_million": 0.789,
- "new_deaths_smoothed_per_million": 0.747,
- "stringency_index": 91.67
- },
- {
- "date": "2020-07-31",
- "total_cases": 31560.0,
- "new_cases": 339.0,
- "new_cases_smoothed": 368.571,
- "total_deaths": 441.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 7.143,
- "total_cases_per_million": 3112.679,
- "new_cases_per_million": 33.435,
- "new_cases_smoothed_per_million": 36.351,
- "total_deaths_per_million": 43.495,
- "new_deaths_per_million": 0.296,
- "new_deaths_smoothed_per_million": 0.704,
- "stringency_index": 91.67
- },
- {
- "date": "2020-08-01",
- "total_cases": 31878.0,
- "new_cases": 318.0,
- "new_cases_smoothed": 366.571,
- "total_deaths": 448.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 6.857,
- "total_cases_per_million": 3144.043,
- "new_cases_per_million": 31.363,
- "new_cases_smoothed_per_million": 36.154,
- "total_deaths_per_million": 44.185,
- "new_deaths_per_million": 0.69,
- "new_deaths_smoothed_per_million": 0.676,
- "stringency_index": 91.67
- },
- {
- "date": "2020-08-02",
- "total_cases": 32157.0,
- "new_cases": 279.0,
- "new_cases_smoothed": 360.571,
- "total_deaths": 454.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 3171.56,
- "new_cases_per_million": 27.517,
- "new_cases_smoothed_per_million": 35.562,
- "total_deaths_per_million": 44.777,
- "new_deaths_per_million": 0.592,
- "new_deaths_smoothed_per_million": 0.648,
- "stringency_index": 91.67
- },
- {
- "date": "2020-08-03",
- "total_cases": 32443.0,
- "new_cases": 286.0,
- "new_cases_smoothed": 341.857,
- "total_deaths": 462.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 6.429,
- "total_cases_per_million": 3199.767,
- "new_cases_per_million": 28.207,
- "new_cases_smoothed_per_million": 33.716,
- "total_deaths_per_million": 45.566,
- "new_deaths_per_million": 0.789,
- "new_deaths_smoothed_per_million": 0.634,
- "stringency_index": 91.67
- },
- {
- "date": "2020-08-04",
- "total_cases": 32684.0,
- "new_cases": 241.0,
- "new_cases_smoothed": 319.714,
- "total_deaths": 468.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 6.429,
- "total_cases_per_million": 3223.536,
- "new_cases_per_million": 23.769,
- "new_cases_smoothed_per_million": 31.533,
- "total_deaths_per_million": 46.158,
- "new_deaths_per_million": 0.592,
- "new_deaths_smoothed_per_million": 0.634,
- "stringency_index": 91.67
- },
- {
- "date": "2020-08-05",
- "total_cases": 32910.0,
- "new_cases": 226.0,
- "new_cases_smoothed": 293.143,
- "total_deaths": 473.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 6.143,
- "total_cases_per_million": 3245.826,
- "new_cases_per_million": 22.29,
- "new_cases_smoothed_per_million": 28.912,
- "total_deaths_per_million": 46.651,
- "new_deaths_per_million": 0.493,
- "new_deaths_smoothed_per_million": 0.606,
- "stringency_index": 91.67
- },
- {
- "date": "2020-08-06",
- "total_cases": 33103.0,
- "new_cases": 193.0,
- "new_cases_smoothed": 268.857,
- "total_deaths": 476.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 5.429,
- "total_cases_per_million": 3264.861,
- "new_cases_per_million": 19.035,
- "new_cases_smoothed_per_million": 26.517,
- "total_deaths_per_million": 46.947,
- "new_deaths_per_million": 0.296,
- "new_deaths_smoothed_per_million": 0.535,
- "stringency_index": 86.11
- },
- {
- "date": "2020-08-07",
- "total_cases": 33247.0,
- "new_cases": 144.0,
- "new_cases_smoothed": 241.0,
- "total_deaths": 479.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 5.429,
- "total_cases_per_million": 3279.064,
- "new_cases_per_million": 14.202,
- "new_cases_smoothed_per_million": 23.769,
- "total_deaths_per_million": 47.243,
- "new_deaths_per_million": 0.296,
- "new_deaths_smoothed_per_million": 0.535,
- "stringency_index": 86.11
- },
- {
- "date": "2020-08-08",
- "total_cases": 33376.0,
- "new_cases": 129.0,
- "new_cases_smoothed": 214.0,
- "total_deaths": 483.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 3291.787,
- "new_cases_per_million": 12.723,
- "new_cases_smoothed_per_million": 21.106,
- "total_deaths_per_million": 47.637,
- "new_deaths_per_million": 0.395,
- "new_deaths_smoothed_per_million": 0.493,
- "stringency_index": 86.11
- },
- {
- "date": "2020-08-09",
- "total_cases": 33481.0,
- "new_cases": 105.0,
- "new_cases_smoothed": 189.143,
- "total_deaths": 488.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 3302.142,
- "new_cases_per_million": 10.356,
- "new_cases_smoothed_per_million": 18.655,
- "total_deaths_per_million": 48.13,
- "new_deaths_per_million": 0.493,
- "new_deaths_smoothed_per_million": 0.479,
- "stringency_index": 86.11
- },
- {
- "date": "2020-08-10",
- "total_cases": 33568.0,
- "new_cases": 87.0,
- "new_cases_smoothed": 160.714,
- "total_deaths": 490.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 3310.723,
- "new_cases_per_million": 8.581,
- "new_cases_smoothed_per_million": 15.851,
- "total_deaths_per_million": 48.327,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.395,
- "stringency_index": 85.19
- },
- {
- "date": "2020-08-11",
- "total_cases": 33647.0,
- "new_cases": 79.0,
- "new_cases_smoothed": 137.571,
- "total_deaths": 492.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 3318.515,
- "new_cases_per_million": 7.792,
- "new_cases_smoothed_per_million": 13.568,
- "total_deaths_per_million": 48.525,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.338,
- "stringency_index": 85.19
- },
- {
- "date": "2020-08-12",
- "total_cases": 33731.0,
- "new_cases": 84.0,
- "new_cases_smoothed": 117.286,
- "total_deaths": 495.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 3326.799,
- "new_cases_per_million": 8.285,
- "new_cases_smoothed_per_million": 11.568,
- "total_deaths_per_million": 48.821,
- "new_deaths_per_million": 0.296,
- "new_deaths_smoothed_per_million": 0.31,
- "stringency_index": 85.19
- },
- {
- "date": "2020-08-13",
- "total_cases": 33824.0,
- "new_cases": 93.0,
- "new_cases_smoothed": 103.0,
- "total_deaths": 497.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 3335.972,
- "new_cases_per_million": 9.172,
- "new_cases_smoothed_per_million": 10.159,
- "total_deaths_per_million": 49.018,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.296,
- "stringency_index": 85.19
- },
- {
- "date": "2020-08-14",
- "total_cases": 33915.0,
- "new_cases": 91.0,
- "new_cases_smoothed": 95.429,
- "total_deaths": 500.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 3344.947,
- "new_cases_per_million": 8.975,
- "new_cases_smoothed_per_million": 9.412,
- "total_deaths_per_million": 49.314,
- "new_deaths_per_million": 0.296,
- "new_deaths_smoothed_per_million": 0.296,
- "stringency_index": 85.19
- },
- {
- "date": "2020-08-15",
- "total_cases": 34018.0,
- "new_cases": 103.0,
- "new_cases_smoothed": 91.714,
- "total_deaths": 504.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 3355.105,
- "new_cases_per_million": 10.159,
- "new_cases_smoothed_per_million": 9.046,
- "total_deaths_per_million": 49.708,
- "new_deaths_per_million": 0.395,
- "new_deaths_smoothed_per_million": 0.296,
- "stringency_index": 85.19
- },
- {
- "date": "2020-08-16",
- "total_cases": 34107.0,
- "new_cases": 89.0,
- "new_cases_smoothed": 89.429,
- "total_deaths": 506.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 3363.883,
- "new_cases_per_million": 8.778,
- "new_cases_smoothed_per_million": 8.82,
- "total_deaths_per_million": 49.905,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.254,
- "stringency_index": 85.19
- },
- {
- "date": "2020-08-17",
- "total_cases": 34219.0,
- "new_cases": 112.0,
- "new_cases_smoothed": 93.0,
- "total_deaths": 506.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 3374.929,
- "new_cases_per_million": 11.046,
- "new_cases_smoothed_per_million": 9.172,
- "total_deaths_per_million": 49.905,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.225,
- "stringency_index": 85.19
- },
- {
- "date": "2020-08-18",
- "total_cases": 34343.0,
- "new_cases": 124.0,
- "new_cases_smoothed": 99.429,
- "total_deaths": 508.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 3387.159,
- "new_cases_per_million": 12.23,
- "new_cases_smoothed_per_million": 9.806,
- "total_deaths_per_million": 50.103,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.225,
- "stringency_index": 85.19
- },
- {
- "date": "2020-08-19",
- "total_cases": 34474.0,
- "new_cases": 131.0,
- "new_cases_smoothed": 106.143,
- "total_deaths": 509.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 3400.079,
- "new_cases_per_million": 12.92,
- "new_cases_smoothed_per_million": 10.469,
- "total_deaths_per_million": 50.201,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.197,
- "stringency_index": 85.19
- },
- {
- "date": "2020-08-20",
- "total_cases": 34620.0,
- "new_cases": 146.0,
- "new_cases_smoothed": 113.714,
- "total_deaths": 510.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 3414.479,
- "new_cases_per_million": 14.4,
- "new_cases_smoothed_per_million": 11.215,
- "total_deaths_per_million": 50.3,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.183,
- "stringency_index": 85.19
- },
- {
- "date": "2020-08-21",
- "total_cases": 34759.0,
- "new_cases": 139.0,
- "new_cases_smoothed": 120.571,
- "total_deaths": 510.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 3428.188,
- "new_cases_per_million": 13.709,
- "new_cases_smoothed_per_million": 11.892,
- "total_deaths_per_million": 50.3,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.141,
- "stringency_index": 85.19
- },
- {
- "date": "2020-08-22",
- "total_cases": 34921.0,
- "new_cases": 162.0,
- "new_cases_smoothed": 129.0,
- "total_deaths": 512.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 3444.166,
- "new_cases_per_million": 15.978,
- "new_cases_smoothed_per_million": 12.723,
- "total_deaths_per_million": 50.497,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.113,
- "stringency_index": 85.19
- },
- {
- "date": "2020-08-23",
- "total_cases": 35105.0,
- "new_cases": 184.0,
- "new_cases_smoothed": 142.571,
- "total_deaths": 515.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 3462.313,
- "new_cases_per_million": 18.147,
- "new_cases_smoothed_per_million": 14.061,
- "total_deaths_per_million": 50.793,
- "new_deaths_per_million": 0.296,
- "new_deaths_smoothed_per_million": 0.127,
- "stringency_index": 85.19
- },
- {
- "date": "2020-08-24",
- "total_cases": 35274.0,
- "new_cases": 169.0,
- "new_cases_smoothed": 150.714,
- "total_deaths": 518.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 3478.981,
- "new_cases_per_million": 16.668,
- "new_cases_smoothed_per_million": 14.865,
- "total_deaths_per_million": 51.089,
- "new_deaths_per_million": 0.296,
- "new_deaths_smoothed_per_million": 0.169,
- "stringency_index": 85.19
- },
- {
- "date": "2020-08-25",
- "total_cases": 35426.0,
- "new_cases": 152.0,
- "new_cases_smoothed": 154.714,
- "total_deaths": 519.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 3493.973,
- "new_cases_per_million": 14.991,
- "new_cases_smoothed_per_million": 15.259,
- "total_deaths_per_million": 51.188,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.155,
- "stringency_index": 85.19
- },
- {
- "date": "2020-08-26",
- "total_cases": 35559.0,
- "new_cases": 133.0,
- "new_cases_smoothed": 155.0,
- "total_deaths": 521.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 3507.09,
- "new_cases_per_million": 13.117,
- "new_cases_smoothed_per_million": 15.287,
- "total_deaths_per_million": 51.385,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.169,
- "stringency_index": 85.19
- },
- {
- "date": "2020-08-27",
- "total_cases": 35707.0,
- "new_cases": 148.0,
- "new_cases_smoothed": 155.286,
- "total_deaths": 522.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 3521.687,
- "new_cases_per_million": 14.597,
- "new_cases_smoothed_per_million": 15.315,
- "total_deaths_per_million": 51.483,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.169,
- "stringency_index": 85.19
- },
- {
- "date": "2020-08-28",
- "total_cases": 35844.0,
- "new_cases": 137.0,
- "new_cases_smoothed": 155.0,
- "total_deaths": 524.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 3535.199,
- "new_cases_per_million": 13.512,
- "new_cases_smoothed_per_million": 15.287,
- "total_deaths_per_million": 51.681,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.197,
- "stringency_index": 85.19
- },
- {
- "date": "2020-08-29",
- "total_cases": 35986.0,
- "new_cases": 142.0,
- "new_cases_smoothed": 152.143,
- "total_deaths": 527.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 3549.204,
- "new_cases_per_million": 14.005,
- "new_cases_smoothed_per_million": 15.005,
- "total_deaths_per_million": 51.977,
- "new_deaths_per_million": 0.296,
- "new_deaths_smoothed_per_million": 0.211,
- "stringency_index": 85.19
- },
- {
- "date": "2020-08-30",
- "total_cases": 36174.0,
- "new_cases": 188.0,
- "new_cases_smoothed": 152.714,
- "total_deaths": 529.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 3567.746,
- "new_cases_per_million": 18.542,
- "new_cases_smoothed_per_million": 15.062,
- "total_deaths_per_million": 52.174,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.197,
- "stringency_index": 85.19
- },
- {
- "date": "2020-08-31",
- "total_cases": 36309.0,
- "new_cases": 135.0,
- "new_cases_smoothed": 147.857,
- "total_deaths": 531.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 3581.061,
- "new_cases_per_million": 13.315,
- "new_cases_smoothed_per_million": 14.583,
- "total_deaths_per_million": 52.371,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.183,
- "stringency_index": 85.19
- },
- {
- "date": "2020-09-01",
- "total_cases": 36435.0,
- "new_cases": 126.0,
- "new_cases_smoothed": 144.143,
- "total_deaths": 534.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 3593.488,
- "new_cases_per_million": 12.427,
- "new_cases_smoothed_per_million": 14.216,
- "total_deaths_per_million": 52.667,
- "new_deaths_per_million": 0.296,
- "new_deaths_smoothed_per_million": 0.211,
- "stringency_index": 85.19
- },
- {
- "date": "2020-09-02",
- "total_cases": 36578.0,
- "new_cases": 143.0,
- "new_cases_smoothed": 145.571,
- "total_deaths": 536.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 3607.591,
- "new_cases_per_million": 14.104,
- "new_cases_smoothed_per_million": 14.357,
- "total_deaths_per_million": 52.864,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.211,
- "stringency_index": 85.19
- },
- {
- "date": "2020-09-03",
- "total_cases": 36732.0,
- "new_cases": 154.0,
- "new_cases_smoothed": 146.429,
- "total_deaths": 538.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 3622.78,
- "new_cases_per_million": 15.189,
- "new_cases_smoothed_per_million": 14.442,
- "total_deaths_per_million": 53.062,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.225,
- "stringency_index": 85.19
- },
- {
- "date": "2020-09-04",
- "total_cases": 36899.0,
- "new_cases": 167.0,
- "new_cases_smoothed": 150.714,
- "total_deaths": 541.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 3639.251,
- "new_cases_per_million": 16.471,
- "new_cases_smoothed_per_million": 14.865,
- "total_deaths_per_million": 53.357,
- "new_deaths_per_million": 0.296,
- "new_deaths_smoothed_per_million": 0.24,
- "stringency_index": 85.19
- },
- {
- "date": "2020-09-05",
- "total_cases": 37031.0,
- "new_cases": 132.0,
- "new_cases_smoothed": 149.286,
- "total_deaths": 543.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 3652.27,
- "new_cases_per_million": 13.019,
- "new_cases_smoothed_per_million": 14.724,
- "total_deaths_per_million": 53.555,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.225,
- "stringency_index": 85.19
- },
- {
- "date": "2020-09-06",
- "total_cases": 37192.0,
- "new_cases": 161.0,
- "new_cases_smoothed": 145.429,
- "total_deaths": 545.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 3668.149,
- "new_cases_per_million": 15.879,
- "new_cases_smoothed_per_million": 14.343,
- "total_deaths_per_million": 53.752,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.225,
- "stringency_index": 82.41
- },
- {
- "date": "2020-09-07",
- "total_cases": 37329.0,
- "new_cases": 137.0,
- "new_cases_smoothed": 145.714,
- "total_deaths": 548.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 3681.66,
- "new_cases_per_million": 13.512,
- "new_cases_smoothed_per_million": 14.371,
- "total_deaths_per_million": 54.048,
- "new_deaths_per_million": 0.296,
- "new_deaths_smoothed_per_million": 0.24,
- "stringency_index": 82.41
- },
- {
- "date": "2020-09-08",
- "total_cases": 37418.0,
- "new_cases": 89.0,
- "new_cases_smoothed": 140.429,
- "total_deaths": 551.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 3690.438,
- "new_cases_per_million": 8.778,
- "new_cases_smoothed_per_million": 13.85,
- "total_deaths_per_million": 54.344,
- "new_deaths_per_million": 0.296,
- "new_deaths_smoothed_per_million": 0.24,
- "stringency_index": 82.41
- },
- {
- "date": "2020-09-09",
- "total_cases": 37557.0,
- "new_cases": 139.0,
- "new_cases_smoothed": 139.857,
- "total_deaths": 552.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 3704.148,
- "new_cases_per_million": 13.709,
- "new_cases_smoothed_per_million": 13.794,
- "total_deaths_per_million": 54.442,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.225,
- "stringency_index": 82.41
- },
- {
- "date": "2020-09-10",
- "total_cases": 37732.0,
- "new_cases": 175.0,
- "new_cases_smoothed": 142.857,
- "total_deaths": 555.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 3721.407,
- "new_cases_per_million": 17.26,
- "new_cases_smoothed_per_million": 14.09,
- "total_deaths_per_million": 54.738,
- "new_deaths_per_million": 0.296,
- "new_deaths_smoothed_per_million": 0.24,
- "stringency_index": 82.41
- },
- {
- "date": "2020-09-11",
- "total_cases": 37874.0,
- "new_cases": 142.0,
- "new_cases_smoothed": 139.286,
- "total_deaths": 556.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 3735.412,
- "new_cases_per_million": 14.005,
- "new_cases_smoothed_per_million": 13.737,
- "total_deaths_per_million": 54.837,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.211,
- "stringency_index": 82.41
- },
- {
- "date": "2020-09-12",
- "total_cases": 38037.0,
- "new_cases": 163.0,
- "new_cases_smoothed": 143.714,
- "total_deaths": 557.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 3751.489,
- "new_cases_per_million": 16.076,
- "new_cases_smoothed_per_million": 14.174,
- "total_deaths_per_million": 54.935,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.197,
- "stringency_index": 82.41
- },
- {
- "date": "2020-09-13",
- "total_cases": 38172.0,
- "new_cases": 135.0,
- "new_cases_smoothed": 140.0,
- "total_deaths": 559.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 3764.803,
- "new_cases_per_million": 13.315,
- "new_cases_smoothed_per_million": 13.808,
- "total_deaths_per_million": 55.133,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.197,
- "stringency_index": 82.41
- },
- {
- "date": "2020-09-14",
- "total_cases": 38327.0,
- "new_cases": 155.0,
- "new_cases_smoothed": 142.571,
- "total_deaths": 562.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 3780.091,
- "new_cases_per_million": 15.287,
- "new_cases_smoothed_per_million": 14.061,
- "total_deaths_per_million": 55.429,
- "new_deaths_per_million": 0.296,
- "new_deaths_smoothed_per_million": 0.197,
- "stringency_index": 82.41
- },
- {
- "date": "2020-09-15",
- "total_cases": 38403.0,
- "new_cases": 76.0,
- "new_cases_smoothed": 140.714,
- "total_deaths": 564.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 3787.586,
- "new_cases_per_million": 7.496,
- "new_cases_smoothed_per_million": 13.878,
- "total_deaths_per_million": 55.626,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.183,
- "stringency_index": 78.7
- },
- {
- "date": "2020-09-16",
- "total_cases": 38517.0,
- "new_cases": 114.0,
- "new_cases_smoothed": 137.143,
- "total_deaths": 566.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 3798.83,
- "new_cases_per_million": 11.244,
- "new_cases_smoothed_per_million": 13.526,
- "total_deaths_per_million": 55.823,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.197,
- "stringency_index": 78.7
- },
- {
- "date": "2020-09-17",
- "total_cases": 38658.0,
- "new_cases": 141.0,
- "new_cases_smoothed": 132.286,
- "total_deaths": 569.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 3812.736,
- "new_cases_per_million": 13.906,
- "new_cases_smoothed_per_million": 13.047,
- "total_deaths_per_million": 56.119,
- "new_deaths_per_million": 0.296,
- "new_deaths_smoothed_per_million": 0.197,
- "stringency_index": 78.7
- },
- {
- "date": "2020-09-18",
- "total_cases": 38777.0,
- "new_cases": 119.0,
- "new_cases_smoothed": 129.0,
- "total_deaths": 571.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 3824.473,
- "new_cases_per_million": 11.737,
- "new_cases_smoothed_per_million": 12.723,
- "total_deaths_per_million": 56.316,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.211
- },
- {
- "date": "2020-09-19",
- "total_cases": 38894.0,
- "new_cases": 117.0,
- "new_cases_smoothed": 122.429,
- "total_deaths": 572.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 3836.012,
- "new_cases_per_million": 11.539,
- "new_cases_smoothed_per_million": 12.075,
- "total_deaths_per_million": 56.415,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.211
- },
- {
- "date": "2020-09-20",
- "total_cases": 39042.0,
- "new_cases": 148.0,
- "new_cases_smoothed": 124.286,
- "total_deaths": 574.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 3850.609,
- "new_cases_per_million": 14.597,
- "new_cases_smoothed_per_million": 12.258,
- "total_deaths_per_million": 56.612,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.211
- },
- {
- "date": "2020-09-21",
- "total_cases": 39188.0,
- "new_cases": 146.0,
- "new_cases_smoothed": 123.0,
- "total_deaths": 575.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 3865.009,
- "new_cases_per_million": 14.4,
- "new_cases_smoothed_per_million": 12.131,
- "total_deaths_per_million": 56.711,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.183
- },
- {
- "date": "2020-09-22",
- "total_cases": 39280.0,
- "new_cases": 92.0,
- "new_cases_smoothed": 125.286,
- "total_deaths": 576.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 3874.082,
- "new_cases_per_million": 9.074,
- "new_cases_smoothed_per_million": 12.357,
- "total_deaths_per_million": 56.809,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.169
- },
- {
- "date": "2020-09-23",
- "total_cases": 39378.0,
- "new_cases": 98.0,
- "new_cases_smoothed": 123.0,
- "total_deaths": 578.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 3883.748,
- "new_cases_per_million": 9.665,
- "new_cases_smoothed_per_million": 12.131,
- "total_deaths_per_million": 57.007,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.169
- },
- {
- "date": "2020-09-24",
- "total_cases": 39524.0,
- "new_cases": 146.0,
- "new_cases_smoothed": 123.714,
- "total_deaths": 580.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 3898.148,
- "new_cases_per_million": 14.4,
- "new_cases_smoothed_per_million": 12.202,
- "total_deaths_per_million": 57.204,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.155
- },
- {
- "date": "2020-09-25",
- "total_cases": 39686.0,
- "new_cases": 162.0,
- "new_cases_smoothed": 129.857,
- "total_deaths": 581.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 3914.125,
- "new_cases_per_million": 15.978,
- "new_cases_smoothed_per_million": 12.807,
- "total_deaths_per_million": 57.302,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.141
- }
- ]
- },
- "BDI": {
- "continent": "Africa",
- "location": "Burundi",
- "population": 11890781.0,
- "population_density": 423.062,
- "median_age": 17.5,
- "aged_65_older": 2.562,
- "aged_70_older": 1.504,
- "gdp_per_capita": 702.225,
- "extreme_poverty": 71.7,
- "cardiovasc_death_rate": 293.068,
- "diabetes_prevalence": 6.05,
- "handwashing_facilities": 6.144,
- "hospital_beds_per_thousand": 0.8,
- "life_expectancy": 61.58,
- "human_development_index": 0.417,
- "data": [
- {
- "date": "2020-04-01",
- "total_cases": 2.0,
- "new_cases": 2.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.168,
- "new_cases_per_million": 0.168,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-02",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.168,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-03",
- "total_cases": 3.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.252,
- "new_cases_per_million": 0.084,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-04",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.252,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-05",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.252,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-06",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.252,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-07",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.252,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.036,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-08",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.252,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.012,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-09",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.252,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.012,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-10",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.252,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-11",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.252,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-12",
- "total_cases": 5.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.42,
- "new_cases_per_million": 0.168,
- "new_cases_smoothed_per_million": 0.024,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-13",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.42,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.024,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-14",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.42,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.024,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-15",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 0.42,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.024,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.084,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-16",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 0.42,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.024,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-17",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 0.42,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.024,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-18",
- "total_cases": 6.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 0.505,
- "new_cases_per_million": 0.084,
- "new_cases_smoothed_per_million": 0.036,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-19",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 0.505,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.012,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-20",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 0.505,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.012,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-21",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 0.505,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.012,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-22",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.505,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.012,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-23",
- "total_cases": 11.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.925,
- "new_cases_per_million": 0.42,
- "new_cases_smoothed_per_million": 0.072,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-24",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.925,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.072,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-25",
- "total_cases": 12.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.009,
- "new_cases_per_million": 0.084,
- "new_cases_smoothed_per_million": 0.072,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-26",
- "total_cases": 15.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.261,
- "new_cases_per_million": 0.252,
- "new_cases_smoothed_per_million": 0.108,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-27",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.261,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.108,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-28",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.261,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.108,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-29",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.261,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.108,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-30",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.261,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.048,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-01",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.261,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.048,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-02",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.261,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.036,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-03",
- "total_cases": 19.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.598,
- "new_cases_per_million": 0.336,
- "new_cases_smoothed_per_million": 0.048,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-04",
- "total_cases": 19.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.598,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.048,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-05",
- "total_cases": 19.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.598,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.048,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-06",
- "total_cases": 19.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.598,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.048,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-07",
- "total_cases": 19.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.598,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.048,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-08",
- "total_cases": 19.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.598,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.048,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-09",
- "total_cases": 19.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.598,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.048,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-10",
- "total_cases": 19.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.598,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-11",
- "total_cases": 19.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.598,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-12",
- "total_cases": 19.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.598,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-13",
- "total_cases": 27.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.271,
- "new_cases_per_million": 0.673,
- "new_cases_smoothed_per_million": 0.096,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-14",
- "total_cases": 27.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.271,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.096,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-15",
- "total_cases": 27.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.271,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.096,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-16",
- "total_cases": 27.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.271,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.096,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-17",
- "total_cases": 27.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.271,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.096,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-18",
- "total_cases": 42.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.532,
- "new_cases_per_million": 1.261,
- "new_cases_smoothed_per_million": 0.276,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-19",
- "total_cases": 42.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.532,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.276,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-20",
- "total_cases": 42.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.532,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.18,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-21",
- "total_cases": 42.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.532,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.18,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-22",
- "total_cases": 42.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.532,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.18,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-23",
- "total_cases": 42.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.532,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.18,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-24",
- "total_cases": 42.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.532,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.18,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-25",
- "total_cases": 42.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.532,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-26",
- "total_cases": 42.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.532,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-27",
- "total_cases": 42.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.532,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-28",
- "total_cases": 42.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.532,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-29",
- "total_cases": 42.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.532,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-30",
- "total_cases": 42.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.532,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-31",
- "total_cases": 42.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.532,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-01",
- "total_cases": 63.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5.298,
- "new_cases_per_million": 1.766,
- "new_cases_smoothed_per_million": 0.252,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-02",
- "total_cases": 63.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.252,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-03",
- "total_cases": 63.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.252,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-04",
- "total_cases": 63.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.252,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-05",
- "total_cases": 63.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.252,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-06",
- "total_cases": 63.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.252,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-07",
- "total_cases": 83.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 5.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.98,
- "new_cases_per_million": 1.682,
- "new_cases_smoothed_per_million": 0.493,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-08",
- "total_cases": 83.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.98,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.24,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-09",
- "total_cases": 83.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.98,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.24,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-10",
- "total_cases": 83.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.98,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.24,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-11",
- "total_cases": 83.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.98,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.24,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-12",
- "total_cases": 94.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 4.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 7.905,
- "new_cases_per_million": 0.925,
- "new_cases_smoothed_per_million": 0.372,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-13",
- "total_cases": 94.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 7.905,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.372,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-14",
- "total_cases": 94.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 7.905,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.132,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-15",
- "total_cases": 94.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 7.905,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.132,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-16",
- "total_cases": 104.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 8.746,
- "new_cases_per_million": 0.841,
- "new_cases_smoothed_per_million": 0.252,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-17",
- "total_cases": 104.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 8.746,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.252,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-18",
- "total_cases": 104.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 8.746,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.252,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-19",
- "total_cases": 104.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 8.746,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.12,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-20",
- "total_cases": 104.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 8.746,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.12,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-21",
- "total_cases": 144.0,
- "new_cases": 40.0,
- "new_cases_smoothed": 7.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.11,
- "new_cases_per_million": 3.364,
- "new_cases_smoothed_per_million": 0.601,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-22",
- "total_cases": 144.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.11,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.601,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-23",
- "total_cases": 144.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.11,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.481,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-24",
- "total_cases": 144.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.11,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.481,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-25",
- "total_cases": 144.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.11,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.481,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-26",
- "total_cases": 144.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.11,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.481,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-27",
- "total_cases": 144.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.11,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.481,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-28",
- "total_cases": 144.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.11,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-29",
- "total_cases": 170.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 14.297,
- "new_cases_per_million": 2.187,
- "new_cases_smoothed_per_million": 0.312,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-30",
- "total_cases": 170.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 14.297,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.312,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-01",
- "total_cases": 170.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 14.297,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.312,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-02",
- "total_cases": 170.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 14.297,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.312,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-03",
- "total_cases": 170.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 14.297,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.312,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-04",
- "total_cases": 191.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 6.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 16.063,
- "new_cases_per_million": 1.766,
- "new_cases_smoothed_per_million": 0.565,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-05",
- "total_cases": 191.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 16.063,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.565,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-06",
- "total_cases": 191.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 16.063,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.252,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-07",
- "total_cases": 191.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 16.063,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.252,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-08",
- "total_cases": 191.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 16.063,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.252,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-09",
- "total_cases": 191.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 16.063,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.252,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-10",
- "total_cases": 219.0,
- "new_cases": 28.0,
- "new_cases_smoothed": 7.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 18.418,
- "new_cases_per_million": 2.355,
- "new_cases_smoothed_per_million": 0.589,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-11",
- "total_cases": 226.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 5.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 19.006,
- "new_cases_per_million": 0.589,
- "new_cases_smoothed_per_million": 0.42,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-12",
- "total_cases": 250.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 8.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 21.025,
- "new_cases_per_million": 2.018,
- "new_cases_smoothed_per_million": 0.709,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-13",
- "total_cases": 250.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 8.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 21.025,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.709,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-14",
- "total_cases": 269.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 11.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 22.623,
- "new_cases_per_million": 1.598,
- "new_cases_smoothed_per_million": 0.937,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-15",
- "total_cases": 269.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 11.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 22.623,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.937,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-16",
- "total_cases": 269.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 11.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 22.623,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.937,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-17",
- "total_cases": 303.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 12.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 25.482,
- "new_cases_per_million": 2.859,
- "new_cases_smoothed_per_million": 1.009,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-18",
- "total_cases": 310.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 12.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 26.071,
- "new_cases_per_million": 0.589,
- "new_cases_smoothed_per_million": 1.009,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-19",
- "total_cases": 310.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 8.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 26.071,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.721,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-20",
- "total_cases": 310.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 8.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 26.071,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.721,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-21",
- "total_cases": 322.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 7.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 27.08,
- "new_cases_per_million": 1.009,
- "new_cases_smoothed_per_million": 0.637,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-22",
- "total_cases": 328.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 8.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 27.584,
- "new_cases_per_million": 0.505,
- "new_cases_smoothed_per_million": 0.709,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-23",
- "total_cases": 328.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 8.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 27.584,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.709,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-24",
- "total_cases": 345.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 6.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 29.014,
- "new_cases_per_million": 1.43,
- "new_cases_smoothed_per_million": 0.505,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-25",
- "total_cases": 345.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 29.014,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.42,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-26",
- "total_cases": 361.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 7.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 30.36,
- "new_cases_per_million": 1.346,
- "new_cases_smoothed_per_million": 0.613,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-27",
- "total_cases": 361.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 30.36,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.613,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-28",
- "total_cases": 378.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 8.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 31.789,
- "new_cases_per_million": 1.43,
- "new_cases_smoothed_per_million": 0.673,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-29",
- "total_cases": 378.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 31.789,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.601,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-30",
- "total_cases": 387.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 8.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 32.546,
- "new_cases_per_million": 0.757,
- "new_cases_smoothed_per_million": 0.709,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-31",
- "total_cases": 387.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 32.546,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.505,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-08-01",
- "total_cases": 391.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 6.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 32.883,
- "new_cases_per_million": 0.336,
- "new_cases_smoothed_per_million": 0.553,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-02",
- "total_cases": 395.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 4.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 33.219,
- "new_cases_per_million": 0.336,
- "new_cases_smoothed_per_million": 0.408,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-03",
- "total_cases": 395.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 33.219,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.408,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-04",
- "total_cases": 395.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 33.219,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.204,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-05",
- "total_cases": 395.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 33.219,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.204,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-06",
- "total_cases": 400.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 33.64,
- "new_cases_per_million": 0.42,
- "new_cases_smoothed_per_million": 0.156,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-07",
- "total_cases": 400.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 33.64,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.156,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-08",
- "total_cases": 405.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 34.06,
- "new_cases_per_million": 0.42,
- "new_cases_smoothed_per_million": 0.168,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-09",
- "total_cases": 408.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 34.312,
- "new_cases_per_million": 0.252,
- "new_cases_smoothed_per_million": 0.156,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-10",
- "total_cases": 408.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 34.312,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.156,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-11",
- "total_cases": 408.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 34.312,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.156,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-12",
- "total_cases": 408.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 34.312,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.156,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-13",
- "total_cases": 410.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 34.48,
- "new_cases_per_million": 0.168,
- "new_cases_smoothed_per_million": 0.12,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-14",
- "total_cases": 410.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 34.48,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.12,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-15",
- "total_cases": 412.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 34.649,
- "new_cases_per_million": 0.168,
- "new_cases_smoothed_per_million": 0.084,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-16",
- "total_cases": 412.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 34.649,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.048,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-17",
- "total_cases": 413.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 34.733,
- "new_cases_per_million": 0.084,
- "new_cases_smoothed_per_million": 0.06,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-18",
- "total_cases": 413.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 34.733,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.06,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-19",
- "total_cases": 416.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 34.985,
- "new_cases_per_million": 0.252,
- "new_cases_smoothed_per_million": 0.096,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-20",
- "total_cases": 422.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 35.49,
- "new_cases_per_million": 0.505,
- "new_cases_smoothed_per_million": 0.144,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-21",
- "total_cases": 422.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 35.49,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.144,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-22",
- "total_cases": 426.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 35.826,
- "new_cases_per_million": 0.336,
- "new_cases_smoothed_per_million": 0.168,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-23",
- "total_cases": 429.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 36.078,
- "new_cases_per_million": 0.252,
- "new_cases_smoothed_per_million": 0.204,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-24",
- "total_cases": 429.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 36.078,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.192,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-25",
- "total_cases": 430.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 36.162,
- "new_cases_per_million": 0.084,
- "new_cases_smoothed_per_million": 0.204,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-26",
- "total_cases": 430.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 36.162,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.168,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-27",
- "total_cases": 430.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 36.162,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.096,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-28",
- "total_cases": 431.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 36.247,
- "new_cases_per_million": 0.084,
- "new_cases_smoothed_per_million": 0.108,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-29",
- "total_cases": 433.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 36.415,
- "new_cases_per_million": 0.168,
- "new_cases_smoothed_per_million": 0.084,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-30",
- "total_cases": 439.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 36.919,
- "new_cases_per_million": 0.505,
- "new_cases_smoothed_per_million": 0.12,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-31",
- "total_cases": 445.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 37.424,
- "new_cases_per_million": 0.505,
- "new_cases_smoothed_per_million": 0.192,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-09-01",
- "total_cases": 445.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 37.424,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.18,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-09-02",
- "total_cases": 445.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 37.424,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.18,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-09-03",
- "total_cases": 448.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 37.676,
- "new_cases_per_million": 0.252,
- "new_cases_smoothed_per_million": 0.216,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-09-04",
- "total_cases": 448.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 37.676,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.204,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-09-05",
- "total_cases": 451.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 37.929,
- "new_cases_per_million": 0.252,
- "new_cases_smoothed_per_million": 0.216,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-09-06",
- "total_cases": 460.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 38.685,
- "new_cases_per_million": 0.757,
- "new_cases_smoothed_per_million": 0.252,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-09-07",
- "total_cases": 462.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 38.854,
- "new_cases_per_million": 0.168,
- "new_cases_smoothed_per_million": 0.204,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-09-08",
- "total_cases": 466.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 39.19,
- "new_cases_per_million": 0.336,
- "new_cases_smoothed_per_million": 0.252,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-09-09",
- "total_cases": 466.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 39.19,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.252,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-09-10",
- "total_cases": 466.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 39.19,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.216,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-09-11",
- "total_cases": 469.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 39.442,
- "new_cases_per_million": 0.252,
- "new_cases_smoothed_per_million": 0.252,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-09-12",
- "total_cases": 469.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 39.442,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.216,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-09-13",
- "total_cases": 471.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 39.611,
- "new_cases_per_million": 0.168,
- "new_cases_smoothed_per_million": 0.132,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-09-14",
- "total_cases": 472.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 39.695,
- "new_cases_per_million": 0.084,
- "new_cases_smoothed_per_million": 0.12,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-09-15",
- "total_cases": 472.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 39.695,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.072,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-09-16",
- "total_cases": 472.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 39.695,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.072,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-09-17",
- "total_cases": 472.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 39.695,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.072,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-09-18",
- "total_cases": 473.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 39.779,
- "new_cases_per_million": 0.084,
- "new_cases_smoothed_per_million": 0.048,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-09-19",
- "total_cases": 473.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 39.779,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.048,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-09-20",
- "total_cases": 473.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 39.779,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.024,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-09-21",
- "total_cases": 473.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 39.779,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.012,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-09-22",
- "total_cases": 474.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 39.863,
- "new_cases_per_million": 0.084,
- "new_cases_smoothed_per_million": 0.024,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-23",
- "total_cases": 474.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 39.863,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.024,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-24",
- "total_cases": 476.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 40.031,
- "new_cases_per_million": 0.168,
- "new_cases_smoothed_per_million": 0.048,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-25",
- "total_cases": 477.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 40.115,
- "new_cases_per_million": 0.084,
- "new_cases_smoothed_per_million": 0.048,
- "total_deaths_per_million": 0.084,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- }
- ]
- },
- "BEL": {
- "continent": "Europe",
- "location": "Belgium",
- "population": 11589616.0,
- "population_density": 375.564,
- "median_age": 41.8,
- "aged_65_older": 18.571,
- "aged_70_older": 12.849,
- "gdp_per_capita": 42658.576,
- "extreme_poverty": 0.2,
- "cardiovasc_death_rate": 114.898,
- "diabetes_prevalence": 4.29,
- "female_smokers": 25.1,
- "male_smokers": 31.4,
- "hospital_beds_per_thousand": 5.64,
- "life_expectancy": 81.63,
- "human_development_index": 0.916,
- "data": [
- {
- "date": "2019-12-31",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-01-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-02",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-03",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-04",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-05",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-06",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-07",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-08",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-09",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-10",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-11",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-12",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-13",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-14",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-15",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-16",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-17",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-18",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-19",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-20",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-21",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-22",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-23",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-24",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-25",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-26",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-27",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-28",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-01-29",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-01-30",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-01-31",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-02",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-03",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-04",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.086,
- "new_cases_per_million": 0.086,
- "new_cases_smoothed_per_million": 0.012,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-05",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.086,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.012,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-06",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.086,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.012,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-07",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.086,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.012,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-08",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.086,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.012,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-09",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.086,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.012,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-10",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.086,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.012,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-11",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.086,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-12",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.086,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-13",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.086,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-14",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.086,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-15",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.086,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-16",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.086,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-17",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.086,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-18",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.086,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-19",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.086,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-20",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.086,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-21",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.086,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-22",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.086,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-23",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.086,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-24",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.086,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-25",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.086,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-26",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.086,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-27",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.086,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-28",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.086,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-29",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.086,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-01",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.086,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 82.0,
- "total_tests": 82.0,
- "total_tests_per_thousand": 0.007,
- "new_tests_per_thousand": 0.007,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-02",
- "total_cases": 19.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.639,
- "new_cases_per_million": 1.553,
- "new_cases_smoothed_per_million": 0.222,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 317.0,
- "total_tests": 399.0,
- "total_tests_per_thousand": 0.034,
- "new_tests_per_thousand": 0.027,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-03",
- "total_cases": 38.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 5.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.279,
- "new_cases_per_million": 1.639,
- "new_cases_smoothed_per_million": 0.456,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 538.0,
- "total_tests": 937.0,
- "total_tests_per_thousand": 0.081,
- "new_tests_per_thousand": 0.046,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-04",
- "total_cases": 72.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 10.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.212,
- "new_cases_per_million": 2.934,
- "new_cases_smoothed_per_million": 0.875,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 701.0,
- "total_tests": 1638.0,
- "total_tests_per_thousand": 0.141,
- "new_tests_per_thousand": 0.06,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-03-05",
- "total_cases": 125.0,
- "new_cases": 53.0,
- "new_cases_smoothed": 17.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.786,
- "new_cases_per_million": 4.573,
- "new_cases_smoothed_per_million": 1.528,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 773.0,
- "total_tests": 2411.0,
- "total_tests_per_thousand": 0.208,
- "new_tests_per_thousand": 0.067,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-03-06",
- "total_cases": 206.0,
- "new_cases": 81.0,
- "new_cases_smoothed": 29.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 17.775,
- "new_cases_per_million": 6.989,
- "new_cases_smoothed_per_million": 2.527,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1119.0,
- "total_tests": 3530.0,
- "total_tests_per_thousand": 0.305,
- "new_tests_per_thousand": 0.097,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-03-07",
- "total_cases": 316.0,
- "new_cases": 110.0,
- "new_cases_smoothed": 45.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 27.266,
- "new_cases_per_million": 9.491,
- "new_cases_smoothed_per_million": 3.883,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 475.0,
- "total_tests": 4005.0,
- "total_tests_per_thousand": 0.346,
- "new_tests_per_thousand": 0.041,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-03-08",
- "total_cases": 343.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 48.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 29.595,
- "new_cases_per_million": 2.33,
- "new_cases_smoothed_per_million": 4.216,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 483.0,
- "total_tests": 4488.0,
- "total_tests_per_thousand": 0.387,
- "new_tests_per_thousand": 0.042,
- "new_tests_smoothed": 629.0,
- "new_tests_smoothed_per_thousand": 0.054,
- "tests_per_case": 12.874,
- "positive_rate": 0.078,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-03-09",
- "total_cases": 407.0,
- "new_cases": 64.0,
- "new_cases_smoothed": 55.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 35.118,
- "new_cases_per_million": 5.522,
- "new_cases_smoothed_per_million": 4.783,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 610.0,
- "total_tests": 5098.0,
- "total_tests_per_thousand": 0.44,
- "new_tests_per_thousand": 0.053,
- "new_tests_smoothed": 671.0,
- "new_tests_smoothed_per_thousand": 0.058,
- "tests_per_case": 12.106,
- "positive_rate": 0.083,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-03-10",
- "total_cases": 501.0,
- "new_cases": 94.0,
- "new_cases_smoothed": 66.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 43.228,
- "new_cases_per_million": 8.111,
- "new_cases_smoothed_per_million": 5.707,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 804.0,
- "total_tests": 5902.0,
- "total_tests_per_thousand": 0.509,
- "new_tests_per_thousand": 0.069,
- "new_tests_smoothed": 709.0,
- "new_tests_smoothed_per_thousand": 0.061,
- "tests_per_case": 10.719000000000001,
- "positive_rate": 0.09300000000000001,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-11",
- "total_cases": 600.0,
- "new_cases": 99.0,
- "new_cases_smoothed": 75.429,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 51.77,
- "new_cases_per_million": 8.542,
- "new_cases_smoothed_per_million": 6.508,
- "total_deaths_per_million": 0.086,
- "new_deaths_per_million": 0.086,
- "new_deaths_smoothed_per_million": 0.012,
- "new_tests": 1108.0,
- "total_tests": 7010.0,
- "total_tests_per_thousand": 0.605,
- "new_tests_per_thousand": 0.096,
- "new_tests_smoothed": 767.0,
- "new_tests_smoothed_per_thousand": 0.066,
- "tests_per_case": 10.169,
- "positive_rate": 0.098,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-12",
- "total_cases": 774.0,
- "new_cases": 174.0,
- "new_cases_smoothed": 92.714,
- "total_deaths": 4.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 66.784,
- "new_cases_per_million": 15.013,
- "new_cases_smoothed_per_million": 8.0,
- "total_deaths_per_million": 0.345,
- "new_deaths_per_million": 0.259,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 1438.0,
- "total_tests": 8448.0,
- "total_tests_per_thousand": 0.729,
- "new_tests_per_thousand": 0.124,
- "new_tests_smoothed": 862.0,
- "new_tests_smoothed_per_thousand": 0.074,
- "tests_per_case": 9.297,
- "positive_rate": 0.10800000000000001,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-13",
- "total_cases": 1024.0,
- "new_cases": 250.0,
- "new_cases_smoothed": 116.857,
- "total_deaths": 5.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 88.355,
- "new_cases_per_million": 21.571,
- "new_cases_smoothed_per_million": 10.083,
- "total_deaths_per_million": 0.431,
- "new_deaths_per_million": 0.086,
- "new_deaths_smoothed_per_million": 0.062,
- "new_tests": 2524.0,
- "total_tests": 10972.0,
- "total_tests_per_thousand": 0.947,
- "new_tests_per_thousand": 0.218,
- "new_tests_smoothed": 1063.0,
- "new_tests_smoothed_per_thousand": 0.092,
- "tests_per_case": 9.097000000000001,
- "positive_rate": 0.11,
- "tests_units": "tests performed",
- "stringency_index": 23.15
- },
- {
- "date": "2020-03-14",
- "total_cases": 1362.0,
- "new_cases": 338.0,
- "new_cases_smoothed": 149.429,
- "total_deaths": 8.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 117.519,
- "new_cases_per_million": 29.164,
- "new_cases_smoothed_per_million": 12.893,
- "total_deaths_per_million": 0.69,
- "new_deaths_per_million": 0.259,
- "new_deaths_smoothed_per_million": 0.099,
- "new_tests": 2171.0,
- "total_tests": 13143.0,
- "total_tests_per_thousand": 1.134,
- "new_tests_per_thousand": 0.187,
- "new_tests_smoothed": 1305.0,
- "new_tests_smoothed_per_thousand": 0.113,
- "tests_per_case": 8.732999999999999,
- "positive_rate": 0.115,
- "tests_units": "tests performed",
- "stringency_index": 50.93
- },
- {
- "date": "2020-03-15",
- "total_cases": 1541.0,
- "new_cases": 179.0,
- "new_cases_smoothed": 171.143,
- "total_deaths": 13.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 132.964,
- "new_cases_per_million": 15.445,
- "new_cases_smoothed_per_million": 14.767,
- "total_deaths_per_million": 1.122,
- "new_deaths_per_million": 0.431,
- "new_deaths_smoothed_per_million": 0.16,
- "new_tests": 1269.0,
- "total_tests": 14412.0,
- "total_tests_per_thousand": 1.244,
- "new_tests_per_thousand": 0.109,
- "new_tests_smoothed": 1418.0,
- "new_tests_smoothed_per_thousand": 0.122,
- "tests_per_case": 8.285,
- "positive_rate": 0.121,
- "tests_units": "tests performed",
- "stringency_index": 50.93
- },
- {
- "date": "2020-03-16",
- "total_cases": 1755.0,
- "new_cases": 214.0,
- "new_cases_smoothed": 192.571,
- "total_deaths": 19.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 151.429,
- "new_cases_per_million": 18.465,
- "new_cases_smoothed_per_million": 16.616,
- "total_deaths_per_million": 1.639,
- "new_deaths_per_million": 0.518,
- "new_deaths_smoothed_per_million": 0.234,
- "new_tests": 1892.0,
- "total_tests": 16304.0,
- "total_tests_per_thousand": 1.407,
- "new_tests_per_thousand": 0.163,
- "new_tests_smoothed": 1601.0,
- "new_tests_smoothed_per_thousand": 0.138,
- "tests_per_case": 8.314,
- "positive_rate": 0.12,
- "tests_units": "tests performed",
- "stringency_index": 50.93
- },
- {
- "date": "2020-03-17",
- "total_cases": 2142.0,
- "new_cases": 387.0,
- "new_cases_smoothed": 234.429,
- "total_deaths": 30.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 184.821,
- "new_cases_per_million": 33.392,
- "new_cases_smoothed_per_million": 20.227,
- "total_deaths_per_million": 2.589,
- "new_deaths_per_million": 0.949,
- "new_deaths_smoothed_per_million": 0.37,
- "new_tests": 2255.0,
- "total_tests": 18559.0,
- "total_tests_per_thousand": 1.601,
- "new_tests_per_thousand": 0.195,
- "new_tests_smoothed": 1808.0,
- "new_tests_smoothed_per_thousand": 0.156,
- "tests_per_case": 7.712000000000001,
- "positive_rate": 0.13,
- "tests_units": "tests performed",
- "stringency_index": 50.93
- },
- {
- "date": "2020-03-18",
- "total_cases": 2564.0,
- "new_cases": 422.0,
- "new_cases_smoothed": 280.571,
- "total_deaths": 40.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 221.233,
- "new_cases_per_million": 36.412,
- "new_cases_smoothed_per_million": 24.209,
- "total_deaths_per_million": 3.451,
- "new_deaths_per_million": 0.863,
- "new_deaths_smoothed_per_million": 0.481,
- "new_tests": 2714.0,
- "total_tests": 21273.0,
- "total_tests_per_thousand": 1.836,
- "new_tests_per_thousand": 0.234,
- "new_tests_smoothed": 2038.0,
- "new_tests_smoothed_per_thousand": 0.176,
- "tests_per_case": 7.263999999999999,
- "positive_rate": 0.138,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-19",
- "total_cases": 3098.0,
- "new_cases": 534.0,
- "new_cases_smoothed": 332.0,
- "total_deaths": 62.0,
- "new_deaths": 22.0,
- "new_deaths_smoothed": 8.286,
- "total_cases_per_million": 267.308,
- "new_cases_per_million": 46.076,
- "new_cases_smoothed_per_million": 28.646,
- "total_deaths_per_million": 5.35,
- "new_deaths_per_million": 1.898,
- "new_deaths_smoothed_per_million": 0.715,
- "new_tests": 3395.0,
- "total_tests": 24668.0,
- "total_tests_per_thousand": 2.128,
- "new_tests_per_thousand": 0.293,
- "new_tests_smoothed": 2317.0,
- "new_tests_smoothed_per_thousand": 0.2,
- "tests_per_case": 6.979,
- "positive_rate": 0.14300000000000002,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-20",
- "total_cases": 3811.0,
- "new_cases": 713.0,
- "new_cases_smoothed": 398.143,
- "total_deaths": 95.0,
- "new_deaths": 33.0,
- "new_deaths_smoothed": 12.857,
- "total_cases_per_million": 328.829,
- "new_cases_per_million": 61.521,
- "new_cases_smoothed_per_million": 34.353,
- "total_deaths_per_million": 8.197,
- "new_deaths_per_million": 2.847,
- "new_deaths_smoothed_per_million": 1.109,
- "new_tests": 3120.0,
- "total_tests": 27788.0,
- "total_tests_per_thousand": 2.398,
- "new_tests_per_thousand": 0.269,
- "new_tests_smoothed": 2402.0,
- "new_tests_smoothed_per_thousand": 0.207,
- "tests_per_case": 6.0329999999999995,
- "positive_rate": 0.166,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-03-21",
- "total_cases": 4473.0,
- "new_cases": 662.0,
- "new_cases_smoothed": 444.429,
- "total_deaths": 130.0,
- "new_deaths": 35.0,
- "new_deaths_smoothed": 17.429,
- "total_cases_per_million": 385.949,
- "new_cases_per_million": 57.12,
- "new_cases_smoothed_per_million": 38.347,
- "total_deaths_per_million": 11.217,
- "new_deaths_per_million": 3.02,
- "new_deaths_smoothed_per_million": 1.504,
- "new_tests": 2276.0,
- "total_tests": 30064.0,
- "total_tests_per_thousand": 2.594,
- "new_tests_per_thousand": 0.196,
- "new_tests_smoothed": 2417.0,
- "new_tests_smoothed_per_thousand": 0.209,
- "tests_per_case": 5.438,
- "positive_rate": 0.184,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-03-22",
- "total_cases": 4943.0,
- "new_cases": 470.0,
- "new_cases_smoothed": 486.0,
- "total_deaths": 170.0,
- "new_deaths": 40.0,
- "new_deaths_smoothed": 22.429,
- "total_cases_per_million": 426.502,
- "new_cases_per_million": 40.554,
- "new_cases_smoothed_per_million": 41.934,
- "total_deaths_per_million": 14.668,
- "new_deaths_per_million": 3.451,
- "new_deaths_smoothed_per_million": 1.935,
- "new_tests": 1414.0,
- "total_tests": 31478.0,
- "total_tests_per_thousand": 2.716,
- "new_tests_per_thousand": 0.122,
- "new_tests_smoothed": 2438.0,
- "new_tests_smoothed_per_thousand": 0.21,
- "tests_per_case": 5.016,
- "positive_rate": 0.19899999999999998,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-03-23",
- "total_cases": 5429.0,
- "new_cases": 486.0,
- "new_cases_smoothed": 524.857,
- "total_deaths": 217.0,
- "new_deaths": 47.0,
- "new_deaths_smoothed": 28.286,
- "total_cases_per_million": 468.437,
- "new_cases_per_million": 41.934,
- "new_cases_smoothed_per_million": 45.287,
- "total_deaths_per_million": 18.724,
- "new_deaths_per_million": 4.055,
- "new_deaths_smoothed_per_million": 2.441,
- "new_tests": 3322.0,
- "total_tests": 34800.0,
- "total_tests_per_thousand": 3.003,
- "new_tests_per_thousand": 0.287,
- "new_tests_smoothed": 2642.0,
- "new_tests_smoothed_per_thousand": 0.228,
- "tests_per_case": 5.034,
- "positive_rate": 0.19899999999999998,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-03-24",
- "total_cases": 6757.0,
- "new_cases": 1328.0,
- "new_cases_smoothed": 659.286,
- "total_deaths": 295.0,
- "new_deaths": 78.0,
- "new_deaths_smoothed": 37.857,
- "total_cases_per_million": 583.022,
- "new_cases_per_million": 114.585,
- "new_cases_smoothed_per_million": 56.886,
- "total_deaths_per_million": 25.454,
- "new_deaths_per_million": 6.73,
- "new_deaths_smoothed_per_million": 3.266,
- "new_tests": 3975.0,
- "total_tests": 38775.0,
- "total_tests_per_thousand": 3.346,
- "new_tests_per_thousand": 0.343,
- "new_tests_smoothed": 2888.0,
- "new_tests_smoothed_per_thousand": 0.249,
- "tests_per_case": 4.38,
- "positive_rate": 0.228,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-03-25",
- "total_cases": 7952.0,
- "new_cases": 1195.0,
- "new_cases_smoothed": 769.714,
- "total_deaths": 371.0,
- "new_deaths": 76.0,
- "new_deaths_smoothed": 47.286,
- "total_cases_per_million": 686.131,
- "new_cases_per_million": 103.11,
- "new_cases_smoothed_per_million": 66.414,
- "total_deaths_per_million": 32.011,
- "new_deaths_per_million": 6.558,
- "new_deaths_smoothed_per_million": 4.08,
- "new_tests": 4282.0,
- "total_tests": 43057.0,
- "total_tests_per_thousand": 3.715,
- "new_tests_per_thousand": 0.369,
- "new_tests_smoothed": 3112.0,
- "new_tests_smoothed_per_thousand": 0.269,
- "tests_per_case": 4.043,
- "positive_rate": 0.247,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-03-26",
- "total_cases": 9151.0,
- "new_cases": 1199.0,
- "new_cases_smoothed": 864.714,
- "total_deaths": 478.0,
- "new_deaths": 107.0,
- "new_deaths_smoothed": 59.429,
- "total_cases_per_million": 789.586,
- "new_cases_per_million": 103.455,
- "new_cases_smoothed_per_million": 74.611,
- "total_deaths_per_million": 41.244,
- "new_deaths_per_million": 9.232,
- "new_deaths_smoothed_per_million": 5.128,
- "new_tests": 4363.0,
- "total_tests": 47420.0,
- "total_tests_per_thousand": 4.092,
- "new_tests_per_thousand": 0.376,
- "new_tests_smoothed": 3250.0,
- "new_tests_smoothed_per_thousand": 0.28,
- "tests_per_case": 3.758,
- "positive_rate": 0.266,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-03-27",
- "total_cases": 10514.0,
- "new_cases": 1363.0,
- "new_cases_smoothed": 957.571,
- "total_deaths": 580.0,
- "new_deaths": 102.0,
- "new_deaths_smoothed": 69.286,
- "total_cases_per_million": 907.191,
- "new_cases_per_million": 117.605,
- "new_cases_smoothed_per_million": 82.623,
- "total_deaths_per_million": 50.045,
- "new_deaths_per_million": 8.801,
- "new_deaths_smoothed_per_million": 5.978,
- "new_tests": 4930.0,
- "total_tests": 52350.0,
- "total_tests_per_thousand": 4.517,
- "new_tests_per_thousand": 0.425,
- "new_tests_smoothed": 3509.0,
- "new_tests_smoothed_per_thousand": 0.303,
- "tests_per_case": 3.6639999999999997,
- "positive_rate": 0.273,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-03-28",
- "total_cases": 12032.0,
- "new_cases": 1518.0,
- "new_cases_smoothed": 1079.857,
- "total_deaths": 708.0,
- "new_deaths": 128.0,
- "new_deaths_smoothed": 82.571,
- "total_cases_per_million": 1038.171,
- "new_cases_per_million": 130.979,
- "new_cases_smoothed_per_million": 93.175,
- "total_deaths_per_million": 61.089,
- "new_deaths_per_million": 11.044,
- "new_deaths_smoothed_per_million": 7.125,
- "new_tests": 3850.0,
- "total_tests": 56200.0,
- "total_tests_per_thousand": 4.849,
- "new_tests_per_thousand": 0.332,
- "new_tests_smoothed": 3734.0,
- "new_tests_smoothed_per_thousand": 0.322,
- "tests_per_case": 3.458,
- "positive_rate": 0.289,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-03-29",
- "total_cases": 12876.0,
- "new_cases": 844.0,
- "new_cases_smoothed": 1133.286,
- "total_deaths": 849.0,
- "new_deaths": 141.0,
- "new_deaths_smoothed": 97.0,
- "total_cases_per_million": 1110.995,
- "new_cases_per_million": 72.824,
- "new_cases_smoothed_per_million": 97.785,
- "total_deaths_per_million": 73.255,
- "new_deaths_per_million": 12.166,
- "new_deaths_smoothed_per_million": 8.37,
- "new_tests": 2419.0,
- "total_tests": 58619.0,
- "total_tests_per_thousand": 5.058,
- "new_tests_per_thousand": 0.209,
- "new_tests_smoothed": 3877.0,
- "new_tests_smoothed_per_thousand": 0.335,
- "tests_per_case": 3.4210000000000003,
- "positive_rate": 0.292,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-03-30",
- "total_cases": 13559.0,
- "new_cases": 683.0,
- "new_cases_smoothed": 1161.429,
- "total_deaths": 998.0,
- "new_deaths": 149.0,
- "new_deaths_smoothed": 111.571,
- "total_cases_per_million": 1169.927,
- "new_cases_per_million": 58.932,
- "new_cases_smoothed_per_million": 100.213,
- "total_deaths_per_million": 86.112,
- "new_deaths_per_million": 12.856,
- "new_deaths_smoothed_per_million": 9.627,
- "new_tests": 4101.0,
- "total_tests": 62720.0,
- "total_tests_per_thousand": 5.412,
- "new_tests_per_thousand": 0.354,
- "new_tests_smoothed": 3989.0,
- "new_tests_smoothed_per_thousand": 0.344,
- "tests_per_case": 3.435,
- "positive_rate": 0.29100000000000004,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-03-31",
- "total_cases": 15297.0,
- "new_cases": 1738.0,
- "new_cases_smoothed": 1220.0,
- "total_deaths": 1168.0,
- "new_deaths": 170.0,
- "new_deaths_smoothed": 124.714,
- "total_cases_per_million": 1319.888,
- "new_cases_per_million": 149.962,
- "new_cases_smoothed_per_million": 105.267,
- "total_deaths_per_million": 100.78,
- "new_deaths_per_million": 14.668,
- "new_deaths_smoothed_per_million": 10.761,
- "new_tests": 6432.0,
- "total_tests": 69152.0,
- "total_tests_per_thousand": 5.967,
- "new_tests_per_thousand": 0.555,
- "new_tests_smoothed": 4340.0,
- "new_tests_smoothed_per_thousand": 0.374,
- "tests_per_case": 3.557,
- "positive_rate": 0.281,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-01",
- "total_cases": 16978.0,
- "new_cases": 1681.0,
- "new_cases_smoothed": 1289.429,
- "total_deaths": 1376.0,
- "new_deaths": 208.0,
- "new_deaths_smoothed": 143.571,
- "total_cases_per_million": 1464.932,
- "new_cases_per_million": 145.044,
- "new_cases_smoothed_per_million": 111.257,
- "total_deaths_per_million": 118.727,
- "new_deaths_per_million": 17.947,
- "new_deaths_smoothed_per_million": 12.388,
- "new_tests": 5891.0,
- "total_tests": 75043.0,
- "total_tests_per_thousand": 6.475,
- "new_tests_per_thousand": 0.508,
- "new_tests_smoothed": 4569.0,
- "new_tests_smoothed_per_thousand": 0.394,
- "tests_per_case": 3.543,
- "positive_rate": 0.282,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-02",
- "total_cases": 18494.0,
- "new_cases": 1516.0,
- "new_cases_smoothed": 1334.714,
- "total_deaths": 1608.0,
- "new_deaths": 232.0,
- "new_deaths_smoothed": 161.429,
- "total_cases_per_million": 1595.739,
- "new_cases_per_million": 130.807,
- "new_cases_smoothed_per_million": 115.165,
- "total_deaths_per_million": 138.745,
- "new_deaths_per_million": 20.018,
- "new_deaths_smoothed_per_million": 13.929,
- "new_tests": 6088.0,
- "total_tests": 81131.0,
- "total_tests_per_thousand": 7.0,
- "new_tests_per_thousand": 0.525,
- "new_tests_smoothed": 4816.0,
- "new_tests_smoothed_per_thousand": 0.416,
- "tests_per_case": 3.608,
- "positive_rate": 0.27699999999999997,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-03",
- "total_cases": 19973.0,
- "new_cases": 1479.0,
- "new_cases_smoothed": 1351.286,
- "total_deaths": 1827.0,
- "new_deaths": 219.0,
- "new_deaths_smoothed": 178.143,
- "total_cases_per_million": 1723.353,
- "new_cases_per_million": 127.614,
- "new_cases_smoothed_per_million": 116.595,
- "total_deaths_per_million": 157.641,
- "new_deaths_per_million": 18.896,
- "new_deaths_smoothed_per_million": 15.371,
- "new_tests": 6718.0,
- "total_tests": 87849.0,
- "total_tests_per_thousand": 7.58,
- "new_tests_per_thousand": 0.58,
- "new_tests_smoothed": 5071.0,
- "new_tests_smoothed_per_thousand": 0.438,
- "tests_per_case": 3.753,
- "positive_rate": 0.266,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-04",
- "total_cases": 21667.0,
- "new_cases": 1694.0,
- "new_cases_smoothed": 1376.429,
- "total_deaths": 2063.0,
- "new_deaths": 236.0,
- "new_deaths_smoothed": 193.571,
- "total_cases_per_million": 1869.518,
- "new_cases_per_million": 146.165,
- "new_cases_smoothed_per_million": 118.764,
- "total_deaths_per_million": 178.004,
- "new_deaths_per_million": 20.363,
- "new_deaths_smoothed_per_million": 16.702,
- "new_tests": 5368.0,
- "total_tests": 93217.0,
- "total_tests_per_thousand": 8.043,
- "new_tests_per_thousand": 0.463,
- "new_tests_smoothed": 5288.0,
- "new_tests_smoothed_per_thousand": 0.456,
- "tests_per_case": 3.842,
- "positive_rate": 0.26,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-05",
- "total_cases": 22589.0,
- "new_cases": 922.0,
- "new_cases_smoothed": 1387.571,
- "total_deaths": 2333.0,
- "new_deaths": 270.0,
- "new_deaths_smoothed": 212.0,
- "total_cases_per_million": 1949.072,
- "new_cases_per_million": 79.554,
- "new_cases_smoothed_per_million": 119.725,
- "total_deaths_per_million": 201.301,
- "new_deaths_per_million": 23.297,
- "new_deaths_smoothed_per_million": 18.292,
- "new_tests": 3828.0,
- "total_tests": 97045.0,
- "total_tests_per_thousand": 8.373,
- "new_tests_per_thousand": 0.33,
- "new_tests_smoothed": 5489.0,
- "new_tests_smoothed_per_thousand": 0.474,
- "tests_per_case": 3.9560000000000004,
- "positive_rate": 0.253,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-06",
- "total_cases": 23254.0,
- "new_cases": 665.0,
- "new_cases_smoothed": 1385.0,
- "total_deaths": 2579.0,
- "new_deaths": 246.0,
- "new_deaths_smoothed": 225.857,
- "total_cases_per_million": 2006.451,
- "new_cases_per_million": 57.379,
- "new_cases_smoothed_per_million": 119.504,
- "total_deaths_per_million": 222.527,
- "new_deaths_per_million": 21.226,
- "new_deaths_smoothed_per_million": 19.488,
- "new_tests": 5840.0,
- "total_tests": 102885.0,
- "total_tests_per_thousand": 8.877,
- "new_tests_per_thousand": 0.504,
- "new_tests_smoothed": 5738.0,
- "new_tests_smoothed_per_thousand": 0.495,
- "tests_per_case": 4.143,
- "positive_rate": 0.24100000000000002,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-07",
- "total_cases": 25188.0,
- "new_cases": 1934.0,
- "new_cases_smoothed": 1413.0,
- "total_deaths": 2836.0,
- "new_deaths": 257.0,
- "new_deaths_smoothed": 238.286,
- "total_cases_per_million": 2173.325,
- "new_cases_per_million": 166.874,
- "new_cases_smoothed_per_million": 121.919,
- "total_deaths_per_million": 244.702,
- "new_deaths_per_million": 22.175,
- "new_deaths_smoothed_per_million": 20.56,
- "new_tests": 7509.0,
- "total_tests": 110394.0,
- "total_tests_per_thousand": 9.525,
- "new_tests_per_thousand": 0.648,
- "new_tests_smoothed": 5892.0,
- "new_tests_smoothed_per_thousand": 0.508,
- "tests_per_case": 4.17,
- "positive_rate": 0.24,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-08",
- "total_cases": 26703.0,
- "new_cases": 1515.0,
- "new_cases_smoothed": 1389.286,
- "total_deaths": 3113.0,
- "new_deaths": 277.0,
- "new_deaths_smoothed": 248.143,
- "total_cases_per_million": 2304.045,
- "new_cases_per_million": 130.72,
- "new_cases_smoothed_per_million": 119.873,
- "total_deaths_per_million": 268.603,
- "new_deaths_per_million": 23.901,
- "new_deaths_smoothed_per_million": 21.411,
- "new_tests": 7972.0,
- "total_tests": 118366.0,
- "total_tests_per_thousand": 10.213,
- "new_tests_per_thousand": 0.688,
- "new_tests_smoothed": 6189.0,
- "new_tests_smoothed_per_thousand": 0.534,
- "tests_per_case": 4.455,
- "positive_rate": 0.22399999999999998,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-09",
- "total_cases": 28301.0,
- "new_cases": 1598.0,
- "new_cases_smoothed": 1401.0,
- "total_deaths": 3434.0,
- "new_deaths": 321.0,
- "new_deaths_smoothed": 260.857,
- "total_cases_per_million": 2441.927,
- "new_cases_per_million": 137.882,
- "new_cases_smoothed_per_million": 120.884,
- "total_deaths_per_million": 296.3,
- "new_deaths_per_million": 27.697,
- "new_deaths_smoothed_per_million": 22.508,
- "new_tests": 8225.0,
- "total_tests": 126591.0,
- "total_tests_per_thousand": 10.923,
- "new_tests_per_thousand": 0.71,
- "new_tests_smoothed": 6494.0,
- "new_tests_smoothed_per_thousand": 0.56,
- "tests_per_case": 4.635,
- "positive_rate": 0.21600000000000003,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-10",
- "total_cases": 30540.0,
- "new_cases": 2239.0,
- "new_cases_smoothed": 1509.571,
- "total_deaths": 3705.0,
- "new_deaths": 271.0,
- "new_deaths_smoothed": 268.286,
- "total_cases_per_million": 2635.118,
- "new_cases_per_million": 193.19,
- "new_cases_smoothed_per_million": 130.252,
- "total_deaths_per_million": 319.683,
- "new_deaths_per_million": 23.383,
- "new_deaths_smoothed_per_million": 23.149,
- "new_tests": 8538.0,
- "total_tests": 135129.0,
- "total_tests_per_thousand": 11.659,
- "new_tests_per_thousand": 0.737,
- "new_tests_smoothed": 6754.0,
- "new_tests_smoothed_per_thousand": 0.583,
- "tests_per_case": 4.474,
- "positive_rate": 0.22399999999999998,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-11",
- "total_cases": 32876.0,
- "new_cases": 2336.0,
- "new_cases_smoothed": 1601.286,
- "total_deaths": 4007.0,
- "new_deaths": 302.0,
- "new_deaths_smoothed": 277.714,
- "total_cases_per_million": 2836.677,
- "new_cases_per_million": 201.56,
- "new_cases_smoothed_per_million": 138.166,
- "total_deaths_per_million": 345.741,
- "new_deaths_per_million": 26.058,
- "new_deaths_smoothed_per_million": 23.962,
- "new_tests": 8152.0,
- "total_tests": 143281.0,
- "total_tests_per_thousand": 12.363,
- "new_tests_per_thousand": 0.703,
- "new_tests_smoothed": 7152.0,
- "new_tests_smoothed_per_thousand": 0.617,
- "tests_per_case": 4.466,
- "positive_rate": 0.22399999999999998,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-12",
- "total_cases": 33905.0,
- "new_cases": 1029.0,
- "new_cases_smoothed": 1616.571,
- "total_deaths": 4292.0,
- "new_deaths": 285.0,
- "new_deaths_smoothed": 279.857,
- "total_cases_per_million": 2925.464,
- "new_cases_per_million": 88.786,
- "new_cases_smoothed_per_million": 139.484,
- "total_deaths_per_million": 370.332,
- "new_deaths_per_million": 24.591,
- "new_deaths_smoothed_per_million": 24.147,
- "new_tests": 7287.0,
- "total_tests": 150568.0,
- "total_tests_per_thousand": 12.992,
- "new_tests_per_thousand": 0.629,
- "new_tests_smoothed": 7646.0,
- "new_tests_smoothed_per_thousand": 0.66,
- "tests_per_case": 4.73,
- "positive_rate": 0.21100000000000002,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-13",
- "total_cases": 34429.0,
- "new_cases": 524.0,
- "new_cases_smoothed": 1596.429,
- "total_deaths": 4557.0,
- "new_deaths": 265.0,
- "new_deaths_smoothed": 282.571,
- "total_cases_per_million": 2970.677,
- "new_cases_per_million": 45.213,
- "new_cases_smoothed_per_million": 137.746,
- "total_deaths_per_million": 393.197,
- "new_deaths_per_million": 22.865,
- "new_deaths_smoothed_per_million": 24.381,
- "new_tests": 6700.0,
- "total_tests": 157268.0,
- "total_tests_per_thousand": 13.57,
- "new_tests_per_thousand": 0.578,
- "new_tests_smoothed": 7769.0,
- "new_tests_smoothed_per_thousand": 0.67,
- "tests_per_case": 4.8660000000000005,
- "positive_rate": 0.205,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-14",
- "total_cases": 34966.0,
- "new_cases": 537.0,
- "new_cases_smoothed": 1396.857,
- "total_deaths": 4834.0,
- "new_deaths": 277.0,
- "new_deaths_smoothed": 285.429,
- "total_cases_per_million": 3017.011,
- "new_cases_per_million": 46.335,
- "new_cases_smoothed_per_million": 120.527,
- "total_deaths_per_million": 417.098,
- "new_deaths_per_million": 23.901,
- "new_deaths_smoothed_per_million": 24.628,
- "new_tests": 8163.0,
- "total_tests": 165431.0,
- "total_tests_per_thousand": 14.274,
- "new_tests_per_thousand": 0.704,
- "new_tests_smoothed": 7862.0,
- "new_tests_smoothed_per_thousand": 0.678,
- "tests_per_case": 5.627999999999999,
- "positive_rate": 0.17800000000000002,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-15",
- "total_cases": 36526.0,
- "new_cases": 1560.0,
- "new_cases_smoothed": 1403.286,
- "total_deaths": 5095.0,
- "new_deaths": 261.0,
- "new_deaths_smoothed": 283.143,
- "total_cases_per_million": 3151.614,
- "new_cases_per_million": 134.603,
- "new_cases_smoothed_per_million": 121.081,
- "total_deaths_per_million": 439.618,
- "new_deaths_per_million": 22.52,
- "new_deaths_smoothed_per_million": 24.431,
- "new_tests": 10984.0,
- "total_tests": 176415.0,
- "total_tests_per_thousand": 15.222,
- "new_tests_per_thousand": 0.948,
- "new_tests_smoothed": 8293.0,
- "new_tests_smoothed_per_thousand": 0.716,
- "tests_per_case": 5.91,
- "positive_rate": 0.16899999999999998,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-16",
- "total_cases": 38159.0,
- "new_cases": 1633.0,
- "new_cases_smoothed": 1408.286,
- "total_deaths": 5375.0,
- "new_deaths": 280.0,
- "new_deaths_smoothed": 277.286,
- "total_cases_per_million": 3292.516,
- "new_cases_per_million": 140.902,
- "new_cases_smoothed_per_million": 121.513,
- "total_deaths_per_million": 463.777,
- "new_deaths_per_million": 24.16,
- "new_deaths_smoothed_per_million": 23.925,
- "new_tests": 10743.0,
- "total_tests": 187158.0,
- "total_tests_per_thousand": 16.149,
- "new_tests_per_thousand": 0.927,
- "new_tests_smoothed": 8652.0,
- "new_tests_smoothed_per_thousand": 0.747,
- "tests_per_case": 6.144,
- "positive_rate": 0.163,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-17",
- "total_cases": 39833.0,
- "new_cases": 1674.0,
- "new_cases_smoothed": 1327.571,
- "total_deaths": 5621.0,
- "new_deaths": 246.0,
- "new_deaths_smoothed": 273.714,
- "total_cases_per_million": 3436.956,
- "new_cases_per_million": 144.44,
- "new_cases_smoothed_per_million": 114.548,
- "total_deaths_per_million": 485.003,
- "new_deaths_per_million": 21.226,
- "new_deaths_smoothed_per_million": 23.617,
- "new_tests": 11303.0,
- "total_tests": 198461.0,
- "total_tests_per_thousand": 17.124,
- "new_tests_per_thousand": 0.975,
- "new_tests_smoothed": 9047.0,
- "new_tests_smoothed_per_thousand": 0.781,
- "tests_per_case": 6.815,
- "positive_rate": 0.147,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-18",
- "total_cases": 41227.0,
- "new_cases": 1394.0,
- "new_cases_smoothed": 1193.0,
- "total_deaths": 5826.0,
- "new_deaths": 205.0,
- "new_deaths_smoothed": 259.857,
- "total_cases_per_million": 3557.236,
- "new_cases_per_million": 120.28,
- "new_cases_smoothed_per_million": 102.937,
- "total_deaths_per_million": 502.691,
- "new_deaths_per_million": 17.688,
- "new_deaths_smoothed_per_million": 22.422,
- "new_tests": 10344.0,
- "total_tests": 208805.0,
- "total_tests_per_thousand": 18.017,
- "new_tests_per_thousand": 0.893,
- "new_tests_smoothed": 9361.0,
- "new_tests_smoothed_per_thousand": 0.808,
- "tests_per_case": 7.847,
- "positive_rate": 0.127,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-19",
- "total_cases": 41949.0,
- "new_cases": 722.0,
- "new_cases_smoothed": 1149.143,
- "total_deaths": 6034.0,
- "new_deaths": 208.0,
- "new_deaths_smoothed": 248.857,
- "total_cases_per_million": 3619.533,
- "new_cases_per_million": 62.297,
- "new_cases_smoothed_per_million": 99.153,
- "total_deaths_per_million": 520.638,
- "new_deaths_per_million": 17.947,
- "new_deaths_smoothed_per_million": 21.472,
- "new_tests": 7207.0,
- "total_tests": 216012.0,
- "total_tests_per_thousand": 18.638,
- "new_tests_per_thousand": 0.622,
- "new_tests_smoothed": 9349.0,
- "new_tests_smoothed_per_thousand": 0.807,
- "tests_per_case": 8.136000000000001,
- "positive_rate": 0.12300000000000001,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-20",
- "total_cases": 42392.0,
- "new_cases": 443.0,
- "new_cases_smoothed": 1137.571,
- "total_deaths": 6224.0,
- "new_deaths": 190.0,
- "new_deaths_smoothed": 238.143,
- "total_cases_per_million": 3657.757,
- "new_cases_per_million": 38.224,
- "new_cases_smoothed_per_million": 98.154,
- "total_deaths_per_million": 537.032,
- "new_deaths_per_million": 16.394,
- "new_deaths_smoothed_per_million": 20.548,
- "new_tests": 11919.0,
- "total_tests": 227931.0,
- "total_tests_per_thousand": 19.667,
- "new_tests_per_thousand": 1.028,
- "new_tests_smoothed": 10095.0,
- "new_tests_smoothed_per_thousand": 0.871,
- "tests_per_case": 8.874,
- "positive_rate": 0.113,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-21",
- "total_cases": 43668.0,
- "new_cases": 1276.0,
- "new_cases_smoothed": 1243.143,
- "total_deaths": 6430.0,
- "new_deaths": 206.0,
- "new_deaths_smoothed": 228.0,
- "total_cases_per_million": 3767.856,
- "new_cases_per_million": 110.099,
- "new_cases_smoothed_per_million": 107.264,
- "total_deaths_per_million": 554.807,
- "new_deaths_per_million": 17.775,
- "new_deaths_smoothed_per_million": 19.673,
- "new_tests": 10879.0,
- "total_tests": 238810.0,
- "total_tests_per_thousand": 20.606,
- "new_tests_per_thousand": 0.939,
- "new_tests_smoothed": 10483.0,
- "new_tests_smoothed_per_thousand": 0.905,
- "tests_per_case": 8.433,
- "positive_rate": 0.11900000000000001,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-22",
- "total_cases": 44938.0,
- "new_cases": 1270.0,
- "new_cases_smoothed": 1201.714,
- "total_deaths": 6633.0,
- "new_deaths": 203.0,
- "new_deaths_smoothed": 219.714,
- "total_cases_per_million": 3877.436,
- "new_cases_per_million": 109.581,
- "new_cases_smoothed_per_million": 103.689,
- "total_deaths_per_million": 572.323,
- "new_deaths_per_million": 17.516,
- "new_deaths_smoothed_per_million": 18.958,
- "new_tests": 15601.0,
- "total_tests": 254411.0,
- "total_tests_per_thousand": 21.952,
- "new_tests_per_thousand": 1.346,
- "new_tests_smoothed": 11142.0,
- "new_tests_smoothed_per_thousand": 0.961,
- "tests_per_case": 9.272,
- "positive_rate": 0.10800000000000001,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-23",
- "total_cases": 45715.0,
- "new_cases": 777.0,
- "new_cases_smoothed": 1079.429,
- "total_deaths": 6814.0,
- "new_deaths": 181.0,
- "new_deaths_smoothed": 205.571,
- "total_cases_per_million": 3944.479,
- "new_cases_per_million": 67.043,
- "new_cases_smoothed_per_million": 93.138,
- "total_deaths_per_million": 587.94,
- "new_deaths_per_million": 15.617,
- "new_deaths_smoothed_per_million": 17.738,
- "new_tests": 17384.0,
- "total_tests": 271795.0,
- "total_tests_per_thousand": 23.452,
- "new_tests_per_thousand": 1.5,
- "new_tests_smoothed": 12091.0,
- "new_tests_smoothed_per_thousand": 1.043,
- "tests_per_case": 11.200999999999999,
- "positive_rate": 0.08900000000000001,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-24",
- "total_cases": 46691.0,
- "new_cases": 976.0,
- "new_cases_smoothed": 979.714,
- "total_deaths": 6970.0,
- "new_deaths": 156.0,
- "new_deaths_smoothed": 192.714,
- "total_cases_per_million": 4028.693,
- "new_cases_per_million": 84.213,
- "new_cases_smoothed_per_million": 84.534,
- "total_deaths_per_million": 601.4,
- "new_deaths_per_million": 13.46,
- "new_deaths_smoothed_per_million": 16.628,
- "new_tests": 19079.0,
- "total_tests": 290874.0,
- "total_tests_per_thousand": 25.098,
- "new_tests_per_thousand": 1.646,
- "new_tests_smoothed": 13202.0,
- "new_tests_smoothed_per_thousand": 1.139,
- "tests_per_case": 13.475,
- "positive_rate": 0.07400000000000001,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-25",
- "total_cases": 47502.0,
- "new_cases": 811.0,
- "new_cases_smoothed": 896.429,
- "total_deaths": 7125.0,
- "new_deaths": 155.0,
- "new_deaths_smoothed": 185.571,
- "total_cases_per_million": 4098.669,
- "new_cases_per_million": 69.976,
- "new_cases_smoothed_per_million": 77.348,
- "total_deaths_per_million": 614.774,
- "new_deaths_per_million": 13.374,
- "new_deaths_smoothed_per_million": 16.012,
- "new_tests": 17199.0,
- "total_tests": 308073.0,
- "total_tests_per_thousand": 26.582,
- "new_tests_per_thousand": 1.484,
- "new_tests_smoothed": 14181.0,
- "new_tests_smoothed_per_thousand": 1.224,
- "tests_per_case": 15.819,
- "positive_rate": 0.063,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-26",
- "total_cases": 47890.0,
- "new_cases": 388.0,
- "new_cases_smoothed": 848.714,
- "total_deaths": 7267.0,
- "new_deaths": 142.0,
- "new_deaths_smoothed": 176.143,
- "total_cases_per_million": 4132.147,
- "new_cases_per_million": 33.478,
- "new_cases_smoothed_per_million": 73.231,
- "total_deaths_per_million": 627.027,
- "new_deaths_per_million": 12.252,
- "new_deaths_smoothed_per_million": 15.198,
- "new_tests": 13881.0,
- "total_tests": 321954.0,
- "total_tests_per_thousand": 27.78,
- "new_tests_per_thousand": 1.198,
- "new_tests_smoothed": 15135.0,
- "new_tests_smoothed_per_thousand": 1.306,
- "tests_per_case": 17.833,
- "positive_rate": 0.055999999999999994,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-27",
- "total_cases": 48095.0,
- "new_cases": 205.0,
- "new_cases_smoothed": 814.714,
- "total_deaths": 7421.0,
- "new_deaths": 154.0,
- "new_deaths_smoothed": 171.0,
- "total_cases_per_million": 4149.836,
- "new_cases_per_million": 17.688,
- "new_cases_smoothed_per_million": 70.297,
- "total_deaths_per_million": 640.315,
- "new_deaths_per_million": 13.288,
- "new_deaths_smoothed_per_million": 14.755,
- "new_tests": 17475.0,
- "total_tests": 339429.0,
- "total_tests_per_thousand": 29.287,
- "new_tests_per_thousand": 1.508,
- "new_tests_smoothed": 15928.0,
- "new_tests_smoothed_per_thousand": 1.374,
- "tests_per_case": 19.55,
- "positive_rate": 0.051,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-28",
- "total_cases": 48850.0,
- "new_cases": 755.0,
- "new_cases_smoothed": 740.286,
- "total_deaths": 7556.0,
- "new_deaths": 135.0,
- "new_deaths_smoothed": 160.857,
- "total_cases_per_million": 4214.98,
- "new_cases_per_million": 65.145,
- "new_cases_smoothed_per_million": 63.875,
- "total_deaths_per_million": 651.963,
- "new_deaths_per_million": 11.648,
- "new_deaths_smoothed_per_million": 13.879,
- "new_tests": 20391.0,
- "total_tests": 359820.0,
- "total_tests_per_thousand": 31.047,
- "new_tests_per_thousand": 1.759,
- "new_tests_smoothed": 17287.0,
- "new_tests_smoothed_per_thousand": 1.492,
- "tests_per_case": 23.351999999999997,
- "positive_rate": 0.043,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-29",
- "total_cases": 49419.0,
- "new_cases": 569.0,
- "new_cases_smoothed": 640.143,
- "total_deaths": 7666.0,
- "new_deaths": 110.0,
- "new_deaths_smoothed": 147.571,
- "total_cases_per_million": 4264.076,
- "new_cases_per_million": 49.096,
- "new_cases_smoothed_per_million": 55.234,
- "total_deaths_per_million": 661.454,
- "new_deaths_per_million": 9.491,
- "new_deaths_smoothed_per_million": 12.733,
- "new_tests": 22681.0,
- "total_tests": 382501.0,
- "total_tests_per_thousand": 33.004,
- "new_tests_per_thousand": 1.957,
- "new_tests_smoothed": 18299.0,
- "new_tests_smoothed_per_thousand": 1.579,
- "tests_per_case": 28.586,
- "positive_rate": 0.035,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-30",
- "total_cases": 49941.0,
- "new_cases": 522.0,
- "new_cases_smoothed": 603.714,
- "total_deaths": 7773.0,
- "new_deaths": 107.0,
- "new_deaths_smoothed": 137.0,
- "total_cases_per_million": 4309.116,
- "new_cases_per_million": 45.04,
- "new_cases_smoothed_per_million": 52.091,
- "total_deaths_per_million": 670.687,
- "new_deaths_per_million": 9.232,
- "new_deaths_smoothed_per_million": 11.821,
- "new_tests": 24873.0,
- "total_tests": 407374.0,
- "total_tests_per_thousand": 35.15,
- "new_tests_per_thousand": 2.146,
- "new_tests_smoothed": 19368.0,
- "new_tests_smoothed_per_thousand": 1.671,
- "tests_per_case": 32.080999999999996,
- "positive_rate": 0.031,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-01",
- "total_cases": 50527.0,
- "new_cases": 586.0,
- "new_cases_smoothed": 548.0,
- "total_deaths": 7860.0,
- "new_deaths": 87.0,
- "new_deaths_smoothed": 127.143,
- "total_cases_per_million": 4359.679,
- "new_cases_per_million": 50.563,
- "new_cases_smoothed_per_million": 47.284,
- "total_deaths_per_million": 678.193,
- "new_deaths_per_million": 7.507,
- "new_deaths_smoothed_per_million": 10.97,
- "new_tests": 23657.0,
- "total_tests": 431031.0,
- "total_tests_per_thousand": 37.191,
- "new_tests_per_thousand": 2.041,
- "new_tests_smoothed": 20022.0,
- "new_tests_smoothed_per_thousand": 1.728,
- "tests_per_case": 36.536,
- "positive_rate": 0.027000000000000003,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-02",
- "total_cases": 50764.0,
- "new_cases": 237.0,
- "new_cases_smoothed": 466.0,
- "total_deaths": 7953.0,
- "new_deaths": 93.0,
- "new_deaths_smoothed": 118.286,
- "total_cases_per_million": 4380.128,
- "new_cases_per_million": 20.449,
- "new_cases_smoothed_per_million": 40.208,
- "total_deaths_per_million": 686.218,
- "new_deaths_per_million": 8.024,
- "new_deaths_smoothed_per_million": 10.206,
- "new_tests": 16550.0,
- "total_tests": 447581.0,
- "total_tests_per_thousand": 38.619,
- "new_tests_per_thousand": 1.428,
- "new_tests_smoothed": 19930.0,
- "new_tests_smoothed_per_thousand": 1.72,
- "tests_per_case": 42.768,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-03",
- "total_cases": 51050.0,
- "new_cases": 286.0,
- "new_cases_smoothed": 451.429,
- "total_deaths": 8028.0,
- "new_deaths": 75.0,
- "new_deaths_smoothed": 108.714,
- "total_cases_per_million": 4404.805,
- "new_cases_per_million": 24.677,
- "new_cases_smoothed_per_million": 38.951,
- "total_deaths_per_million": 692.689,
- "new_deaths_per_million": 6.471,
- "new_deaths_smoothed_per_million": 9.38,
- "new_tests": 13435.0,
- "total_tests": 461016.0,
- "total_tests_per_thousand": 39.778,
- "new_tests_per_thousand": 1.159,
- "new_tests_smoothed": 19866.0,
- "new_tests_smoothed_per_thousand": 1.714,
- "tests_per_case": 44.007,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-04",
- "total_cases": 51190.0,
- "new_cases": 140.0,
- "new_cases_smoothed": 442.143,
- "total_deaths": 8122.0,
- "new_deaths": 94.0,
- "new_deaths_smoothed": 100.143,
- "total_cases_per_million": 4416.885,
- "new_cases_per_million": 12.08,
- "new_cases_smoothed_per_million": 38.15,
- "total_deaths_per_million": 700.8,
- "new_deaths_per_million": 8.111,
- "new_deaths_smoothed_per_million": 8.641,
- "new_tests": 23238.0,
- "total_tests": 484254.0,
- "total_tests_per_thousand": 41.783,
- "new_tests_per_thousand": 2.005,
- "new_tests_smoothed": 20689.0,
- "new_tests_smoothed_per_thousand": 1.785,
- "tests_per_case": 46.793,
- "positive_rate": 0.021,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-05",
- "total_cases": 51860.0,
- "new_cases": 670.0,
- "new_cases_smoothed": 430.0,
- "total_deaths": 8217.0,
- "new_deaths": 95.0,
- "new_deaths_smoothed": 94.429,
- "total_cases_per_million": 4474.695,
- "new_cases_per_million": 57.81,
- "new_cases_smoothed_per_million": 37.102,
- "total_deaths_per_million": 708.997,
- "new_deaths_per_million": 8.197,
- "new_deaths_smoothed_per_million": 8.148,
- "new_tests": 21525.0,
- "total_tests": 505779.0,
- "total_tests_per_thousand": 43.641,
- "new_tests_per_thousand": 1.857,
- "new_tests_smoothed": 20851.0,
- "new_tests_smoothed_per_thousand": 1.799,
- "tests_per_case": 48.49100000000001,
- "positive_rate": 0.021,
- "tests_units": "tests performed",
- "stringency_index": 78.7
- },
- {
- "date": "2020-05-06",
- "total_cases": 52406.0,
- "new_cases": 546.0,
- "new_cases_smoothed": 426.714,
- "total_deaths": 8298.0,
- "new_deaths": 81.0,
- "new_deaths_smoothed": 90.286,
- "total_cases_per_million": 4521.806,
- "new_cases_per_million": 47.111,
- "new_cases_smoothed_per_million": 36.819,
- "total_deaths_per_million": 715.986,
- "new_deaths_per_million": 6.989,
- "new_deaths_smoothed_per_million": 7.79,
- "new_tests": 20782.0,
- "total_tests": 526561.0,
- "total_tests_per_thousand": 45.434,
- "new_tests_per_thousand": 1.793,
- "new_tests_smoothed": 20580.0,
- "new_tests_smoothed_per_thousand": 1.776,
- "tests_per_case": 48.229,
- "positive_rate": 0.021,
- "tests_units": "tests performed",
- "stringency_index": 78.7
- },
- {
- "date": "2020-05-07",
- "total_cases": 52958.0,
- "new_cases": 552.0,
- "new_cases_smoothed": 431.0,
- "total_deaths": 8374.0,
- "new_deaths": 76.0,
- "new_deaths_smoothed": 85.857,
- "total_cases_per_million": 4569.435,
- "new_cases_per_million": 47.629,
- "new_cases_smoothed_per_million": 37.188,
- "total_deaths_per_million": 722.543,
- "new_deaths_per_million": 6.558,
- "new_deaths_smoothed_per_million": 7.408,
- "new_tests": 22052.0,
- "total_tests": 548613.0,
- "total_tests_per_thousand": 47.337,
- "new_tests_per_thousand": 1.903,
- "new_tests_smoothed": 20177.0,
- "new_tests_smoothed_per_thousand": 1.741,
- "tests_per_case": 46.81399999999999,
- "positive_rate": 0.021,
- "tests_units": "tests performed",
- "stringency_index": 78.7
- },
- {
- "date": "2020-05-08",
- "total_cases": 53400.0,
- "new_cases": 442.0,
- "new_cases_smoothed": 410.429,
- "total_deaths": 8445.0,
- "new_deaths": 71.0,
- "new_deaths_smoothed": 83.571,
- "total_cases_per_million": 4607.573,
- "new_cases_per_million": 38.138,
- "new_cases_smoothed_per_million": 35.413,
- "total_deaths_per_million": 728.67,
- "new_deaths_per_million": 6.126,
- "new_deaths_smoothed_per_million": 7.211,
- "new_tests": 25889.0,
- "total_tests": 574502.0,
- "total_tests_per_thousand": 49.57,
- "new_tests_per_thousand": 2.234,
- "new_tests_smoothed": 20496.0,
- "new_tests_smoothed_per_thousand": 1.768,
- "tests_per_case": 49.938,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 78.7
- },
- {
- "date": "2020-05-09",
- "total_cases": 53883.0,
- "new_cases": 483.0,
- "new_cases_smoothed": 445.571,
- "total_deaths": 8519.0,
- "new_deaths": 74.0,
- "new_deaths_smoothed": 80.857,
- "total_cases_per_million": 4649.248,
- "new_cases_per_million": 41.675,
- "new_cases_smoothed_per_million": 38.446,
- "total_deaths_per_million": 735.055,
- "new_deaths_per_million": 6.385,
- "new_deaths_smoothed_per_million": 6.977,
- "new_tests": 21020.0,
- "total_tests": 595522.0,
- "total_tests_per_thousand": 51.384,
- "new_tests_per_thousand": 1.814,
- "new_tests_smoothed": 21134.0,
- "new_tests_smoothed_per_thousand": 1.824,
- "tests_per_case": 47.431000000000004,
- "positive_rate": 0.021,
- "tests_units": "tests performed",
- "stringency_index": 78.7
- },
- {
- "date": "2020-05-10",
- "total_cases": 54123.0,
- "new_cases": 240.0,
- "new_cases_smoothed": 439.0,
- "total_deaths": 8590.0,
- "new_deaths": 71.0,
- "new_deaths_smoothed": 80.286,
- "total_cases_per_million": 4669.956,
- "new_cases_per_million": 20.708,
- "new_cases_smoothed_per_million": 37.879,
- "total_deaths_per_million": 741.181,
- "new_deaths_per_million": 6.126,
- "new_deaths_smoothed_per_million": 6.927,
- "new_tests": 12309.0,
- "total_tests": 607831.0,
- "total_tests_per_thousand": 52.446,
- "new_tests_per_thousand": 1.062,
- "new_tests_smoothed": 20974.0,
- "new_tests_smoothed_per_thousand": 1.81,
- "tests_per_case": 47.777,
- "positive_rate": 0.021,
- "tests_units": "tests performed",
- "stringency_index": 78.7
- },
- {
- "date": "2020-05-11",
- "total_cases": 54241.0,
- "new_cases": 118.0,
- "new_cases_smoothed": 435.857,
- "total_deaths": 8662.0,
- "new_deaths": 72.0,
- "new_deaths_smoothed": 77.143,
- "total_cases_per_million": 4680.138,
- "new_cases_per_million": 10.182,
- "new_cases_smoothed_per_million": 37.608,
- "total_deaths_per_million": 747.393,
- "new_deaths_per_million": 6.212,
- "new_deaths_smoothed_per_million": 6.656,
- "new_tests": 11057.0,
- "total_tests": 618888.0,
- "total_tests_per_thousand": 53.4,
- "new_tests_per_thousand": 0.954,
- "new_tests_smoothed": 19233.0,
- "new_tests_smoothed_per_thousand": 1.66,
- "tests_per_case": 44.126999999999995,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-12",
- "total_cases": 54717.0,
- "new_cases": 476.0,
- "new_cases_smoothed": 408.143,
- "total_deaths": 8727.0,
- "new_deaths": 65.0,
- "new_deaths_smoothed": 72.857,
- "total_cases_per_million": 4721.209,
- "new_cases_per_million": 41.071,
- "new_cases_smoothed_per_million": 35.216,
- "total_deaths_per_million": 753.002,
- "new_deaths_per_million": 5.608,
- "new_deaths_smoothed_per_million": 6.286,
- "new_tests": 20527.0,
- "total_tests": 639415.0,
- "total_tests_per_thousand": 55.171,
- "new_tests_per_thousand": 1.771,
- "new_tests_smoothed": 19091.0,
- "new_tests_smoothed_per_thousand": 1.647,
- "tests_per_case": 46.775,
- "positive_rate": 0.021,
- "tests_units": "tests performed",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-13",
- "total_cases": 55112.0,
- "new_cases": 395.0,
- "new_cases_smoothed": 386.571,
- "total_deaths": 8772.0,
- "new_deaths": 45.0,
- "new_deaths_smoothed": 67.714,
- "total_cases_per_million": 4755.291,
- "new_cases_per_million": 34.082,
- "new_cases_smoothed_per_million": 33.355,
- "total_deaths_per_million": 756.884,
- "new_deaths_per_million": 3.883,
- "new_deaths_smoothed_per_million": 5.843,
- "new_tests": 23150.0,
- "total_tests": 662565.0,
- "total_tests_per_thousand": 57.169,
- "new_tests_per_thousand": 1.997,
- "new_tests_smoothed": 19429.0,
- "new_tests_smoothed_per_thousand": 1.676,
- "tests_per_case": 50.26,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-14",
- "total_cases": 55433.0,
- "new_cases": 321.0,
- "new_cases_smoothed": 353.571,
- "total_deaths": 8828.0,
- "new_deaths": 56.0,
- "new_deaths_smoothed": 64.857,
- "total_cases_per_million": 4782.988,
- "new_cases_per_million": 27.697,
- "new_cases_smoothed_per_million": 30.508,
- "total_deaths_per_million": 761.716,
- "new_deaths_per_million": 4.832,
- "new_deaths_smoothed_per_million": 5.596,
- "new_tests": 20293.0,
- "total_tests": 682858.0,
- "total_tests_per_thousand": 58.92,
- "new_tests_per_thousand": 1.751,
- "new_tests_smoothed": 19178.0,
- "new_tests_smoothed_per_thousand": 1.655,
- "tests_per_case": 54.24100000000001,
- "positive_rate": 0.018000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-15",
- "total_cases": 55738.0,
- "new_cases": 305.0,
- "new_cases_smoothed": 334.0,
- "total_deaths": 8871.0,
- "new_deaths": 43.0,
- "new_deaths_smoothed": 60.857,
- "total_cases_per_million": 4809.305,
- "new_cases_per_million": 26.317,
- "new_cases_smoothed_per_million": 28.819,
- "total_deaths_per_million": 765.427,
- "new_deaths_per_million": 3.71,
- "new_deaths_smoothed_per_million": 5.251,
- "new_tests": 20888.0,
- "total_tests": 703746.0,
- "total_tests_per_thousand": 60.722,
- "new_tests_per_thousand": 1.802,
- "new_tests_smoothed": 18463.0,
- "new_tests_smoothed_per_thousand": 1.593,
- "tests_per_case": 55.278,
- "positive_rate": 0.018000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-16",
- "total_cases": 56084.0,
- "new_cases": 346.0,
- "new_cases_smoothed": 314.429,
- "total_deaths": 8916.0,
- "new_deaths": 45.0,
- "new_deaths_smoothed": 56.714,
- "total_cases_per_million": 4839.159,
- "new_cases_per_million": 29.854,
- "new_cases_smoothed_per_million": 27.13,
- "total_deaths_per_million": 769.309,
- "new_deaths_per_million": 3.883,
- "new_deaths_smoothed_per_million": 4.894,
- "new_tests": 14426.0,
- "total_tests": 718172.0,
- "total_tests_per_thousand": 61.967,
- "new_tests_per_thousand": 1.245,
- "new_tests_smoothed": 17521.0,
- "new_tests_smoothed_per_thousand": 1.512,
- "tests_per_case": 55.723,
- "positive_rate": 0.018000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-17",
- "total_cases": 56231.0,
- "new_cases": 147.0,
- "new_cases_smoothed": 301.143,
- "total_deaths": 8946.0,
- "new_deaths": 30.0,
- "new_deaths_smoothed": 50.857,
- "total_cases_per_million": 4851.843,
- "new_cases_per_million": 12.684,
- "new_cases_smoothed_per_million": 25.984,
- "total_deaths_per_million": 771.898,
- "new_deaths_per_million": 2.589,
- "new_deaths_smoothed_per_million": 4.388,
- "new_tests": 10105.0,
- "total_tests": 728277.0,
- "total_tests_per_thousand": 62.839,
- "new_tests_per_thousand": 0.872,
- "new_tests_smoothed": 17207.0,
- "new_tests_smoothed_per_thousand": 1.485,
- "tests_per_case": 57.138999999999996,
- "positive_rate": 0.018000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-18",
- "total_cases": 56312.0,
- "new_cases": 81.0,
- "new_cases_smoothed": 295.857,
- "total_deaths": 8977.0,
- "new_deaths": 31.0,
- "new_deaths_smoothed": 45.0,
- "total_cases_per_million": 4858.832,
- "new_cases_per_million": 6.989,
- "new_cases_smoothed_per_million": 25.528,
- "total_deaths_per_million": 774.573,
- "new_deaths_per_million": 2.675,
- "new_deaths_smoothed_per_million": 3.883,
- "new_tests": 10710.0,
- "total_tests": 738987.0,
- "total_tests_per_thousand": 63.763,
- "new_tests_per_thousand": 0.924,
- "new_tests_smoothed": 17157.0,
- "new_tests_smoothed_per_thousand": 1.48,
- "tests_per_case": 57.99100000000001,
- "positive_rate": 0.017,
- "tests_units": "tests performed",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-19",
- "total_cases": 56629.0,
- "new_cases": 317.0,
- "new_cases_smoothed": 273.143,
- "total_deaths": 9014.0,
- "new_deaths": 37.0,
- "new_deaths_smoothed": 41.0,
- "total_cases_per_million": 4886.184,
- "new_cases_per_million": 27.352,
- "new_cases_smoothed_per_million": 23.568,
- "total_deaths_per_million": 777.765,
- "new_deaths_per_million": 3.193,
- "new_deaths_smoothed_per_million": 3.538,
- "new_tests": 16711.0,
- "total_tests": 755698.0,
- "total_tests_per_thousand": 65.205,
- "new_tests_per_thousand": 1.442,
- "new_tests_smoothed": 16612.0,
- "new_tests_smoothed_per_thousand": 1.433,
- "tests_per_case": 60.818000000000005,
- "positive_rate": 0.016,
- "tests_units": "tests performed",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-20",
- "total_cases": 56921.0,
- "new_cases": 292.0,
- "new_cases_smoothed": 258.429,
- "total_deaths": 9047.0,
- "new_deaths": 33.0,
- "new_deaths_smoothed": 39.286,
- "total_cases_per_million": 4911.379,
- "new_cases_per_million": 25.195,
- "new_cases_smoothed_per_million": 22.298,
- "total_deaths_per_million": 780.613,
- "new_deaths_per_million": 2.847,
- "new_deaths_smoothed_per_million": 3.39,
- "new_tests": 18767.0,
- "total_tests": 774465.0,
- "total_tests_per_thousand": 66.824,
- "new_tests_per_thousand": 1.619,
- "new_tests_smoothed": 15986.0,
- "new_tests_smoothed_per_thousand": 1.379,
- "tests_per_case": 61.858000000000004,
- "positive_rate": 0.016,
- "tests_units": "tests performed",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-21",
- "total_cases": 57306.0,
- "new_cases": 385.0,
- "new_cases_smoothed": 267.571,
- "total_deaths": 9077.0,
- "new_deaths": 30.0,
- "new_deaths_smoothed": 35.571,
- "total_cases_per_million": 4944.599,
- "new_cases_per_million": 33.219,
- "new_cases_smoothed_per_million": 23.087,
- "total_deaths_per_million": 783.201,
- "new_deaths_per_million": 2.589,
- "new_deaths_smoothed_per_million": 3.069,
- "new_tests": 9878.0,
- "total_tests": 784343.0,
- "total_tests_per_thousand": 67.676,
- "new_tests_per_thousand": 0.852,
- "new_tests_smoothed": 14498.0,
- "new_tests_smoothed_per_thousand": 1.251,
- "tests_per_case": 54.184,
- "positive_rate": 0.018000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-22",
- "total_cases": 57376.0,
- "new_cases": 70.0,
- "new_cases_smoothed": 234.0,
- "total_deaths": 9111.0,
- "new_deaths": 34.0,
- "new_deaths_smoothed": 34.286,
- "total_cases_per_million": 4950.639,
- "new_cases_per_million": 6.04,
- "new_cases_smoothed_per_million": 20.19,
- "total_deaths_per_million": 786.135,
- "new_deaths_per_million": 2.934,
- "new_deaths_smoothed_per_million": 2.958,
- "new_tests": 13281.0,
- "total_tests": 797624.0,
- "total_tests_per_thousand": 68.822,
- "new_tests_per_thousand": 1.146,
- "new_tests_smoothed": 13411.0,
- "new_tests_smoothed_per_thousand": 1.157,
- "tests_per_case": 57.312,
- "positive_rate": 0.017,
- "tests_units": "tests performed",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-23",
- "total_cases": 57624.0,
- "new_cases": 248.0,
- "new_cases_smoothed": 220.0,
- "total_deaths": 9152.0,
- "new_deaths": 41.0,
- "new_deaths_smoothed": 33.714,
- "total_cases_per_million": 4972.037,
- "new_cases_per_million": 21.398,
- "new_cases_smoothed_per_million": 18.983,
- "total_deaths_per_million": 789.672,
- "new_deaths_per_million": 3.538,
- "new_deaths_smoothed_per_million": 2.909,
- "new_tests": 9227.0,
- "total_tests": 806851.0,
- "total_tests_per_thousand": 69.618,
- "new_tests_per_thousand": 0.796,
- "new_tests_smoothed": 12668.0,
- "new_tests_smoothed_per_thousand": 1.093,
- "tests_per_case": 57.582,
- "positive_rate": 0.017,
- "tests_units": "tests performed",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-24",
- "total_cases": 57747.0,
- "new_cases": 123.0,
- "new_cases_smoothed": 216.571,
- "total_deaths": 9177.0,
- "new_deaths": 25.0,
- "new_deaths_smoothed": 33.0,
- "total_cases_per_million": 4982.65,
- "new_cases_per_million": 10.613,
- "new_cases_smoothed_per_million": 18.687,
- "total_deaths_per_million": 791.83,
- "new_deaths_per_million": 2.157,
- "new_deaths_smoothed_per_million": 2.847,
- "new_tests": 7025.0,
- "total_tests": 813876.0,
- "total_tests_per_thousand": 70.225,
- "new_tests_per_thousand": 0.606,
- "new_tests_smoothed": 12228.0,
- "new_tests_smoothed_per_thousand": 1.055,
- "tests_per_case": 56.461999999999996,
- "positive_rate": 0.018000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-25",
- "total_cases": 57822.0,
- "new_cases": 75.0,
- "new_cases_smoothed": 215.714,
- "total_deaths": 9210.0,
- "new_deaths": 33.0,
- "new_deaths_smoothed": 33.286,
- "total_cases_per_million": 4989.121,
- "new_cases_per_million": 6.471,
- "new_cases_smoothed_per_million": 18.613,
- "total_deaths_per_million": 794.677,
- "new_deaths_per_million": 2.847,
- "new_deaths_smoothed_per_million": 2.872,
- "new_tests": 9984.0,
- "total_tests": 823860.0,
- "total_tests_per_thousand": 71.086,
- "new_tests_per_thousand": 0.861,
- "new_tests_smoothed": 12125.0,
- "new_tests_smoothed_per_thousand": 1.046,
- "tests_per_case": 56.208999999999996,
- "positive_rate": 0.018000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-26",
- "total_cases": 58136.0,
- "new_cases": 314.0,
- "new_cases_smoothed": 215.286,
- "total_deaths": 9236.0,
- "new_deaths": 26.0,
- "new_deaths_smoothed": 31.714,
- "total_cases_per_million": 5016.215,
- "new_cases_per_million": 27.093,
- "new_cases_smoothed_per_million": 18.576,
- "total_deaths_per_million": 796.92,
- "new_deaths_per_million": 2.243,
- "new_deaths_smoothed_per_million": 2.736,
- "new_tests": 16225.0,
- "total_tests": 840085.0,
- "total_tests_per_thousand": 72.486,
- "new_tests_per_thousand": 1.4,
- "new_tests_smoothed": 12055.0,
- "new_tests_smoothed_per_thousand": 1.04,
- "tests_per_case": 55.995,
- "positive_rate": 0.018000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-27",
- "total_cases": 58338.0,
- "new_cases": 202.0,
- "new_cases_smoothed": 202.429,
- "total_deaths": 9260.0,
- "new_deaths": 24.0,
- "new_deaths_smoothed": 30.429,
- "total_cases_per_million": 5033.644,
- "new_cases_per_million": 17.429,
- "new_cases_smoothed_per_million": 17.466,
- "total_deaths_per_million": 798.991,
- "new_deaths_per_million": 2.071,
- "new_deaths_smoothed_per_million": 2.626,
- "new_tests": 17781.0,
- "total_tests": 857866.0,
- "total_tests_per_thousand": 74.02,
- "new_tests_per_thousand": 1.534,
- "new_tests_smoothed": 11914.0,
- "new_tests_smoothed_per_thousand": 1.028,
- "tests_per_case": 58.855,
- "positive_rate": 0.017,
- "tests_units": "tests performed",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-28",
- "total_cases": 58520.0,
- "new_cases": 182.0,
- "new_cases_smoothed": 173.429,
- "total_deaths": 9284.0,
- "new_deaths": 24.0,
- "new_deaths_smoothed": 29.571,
- "total_cases_per_million": 5049.348,
- "new_cases_per_million": 15.704,
- "new_cases_smoothed_per_million": 14.964,
- "total_deaths_per_million": 801.062,
- "new_deaths_per_million": 2.071,
- "new_deaths_smoothed_per_million": 2.552,
- "new_tests": 13091.0,
- "total_tests": 870957.0,
- "total_tests_per_thousand": 75.15,
- "new_tests_per_thousand": 1.13,
- "new_tests_smoothed": 12373.0,
- "new_tests_smoothed_per_thousand": 1.068,
- "tests_per_case": 71.343,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-29",
- "total_cases": 58691.0,
- "new_cases": 171.0,
- "new_cases_smoothed": 187.857,
- "total_deaths": 9310.0,
- "new_deaths": 26.0,
- "new_deaths_smoothed": 28.429,
- "total_cases_per_million": 5064.102,
- "new_cases_per_million": 14.755,
- "new_cases_smoothed_per_million": 16.209,
- "total_deaths_per_million": 803.305,
- "new_deaths_per_million": 2.243,
- "new_deaths_smoothed_per_million": 2.453,
- "new_tests": 13623.0,
- "total_tests": 884580.0,
- "total_tests_per_thousand": 76.325,
- "new_tests_per_thousand": 1.175,
- "new_tests_smoothed": 12422.0,
- "new_tests_smoothed_per_thousand": 1.072,
- "tests_per_case": 66.125,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-30",
- "total_cases": 58856.0,
- "new_cases": 165.0,
- "new_cases_smoothed": 176.0,
- "total_deaths": 9326.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 24.857,
- "total_cases_per_million": 5078.339,
- "new_cases_per_million": 14.237,
- "new_cases_smoothed_per_million": 15.186,
- "total_deaths_per_million": 804.686,
- "new_deaths_per_million": 1.381,
- "new_deaths_smoothed_per_million": 2.145,
- "new_tests": 9730.0,
- "total_tests": 894310.0,
- "total_tests_per_thousand": 77.165,
- "new_tests_per_thousand": 0.84,
- "new_tests_smoothed": 12494.0,
- "new_tests_smoothed_per_thousand": 1.078,
- "tests_per_case": 70.98899999999999,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-31",
- "total_cases": 58917.0,
- "new_cases": 61.0,
- "new_cases_smoothed": 167.143,
- "total_deaths": 9349.0,
- "new_deaths": 23.0,
- "new_deaths_smoothed": 24.571,
- "total_cases_per_million": 5083.602,
- "new_cases_per_million": 5.263,
- "new_cases_smoothed_per_million": 14.422,
- "total_deaths_per_million": 806.67,
- "new_deaths_per_million": 1.985,
- "new_deaths_smoothed_per_million": 2.12,
- "new_tests": 6795.0,
- "total_tests": 901105.0,
- "total_tests_per_thousand": 77.751,
- "new_tests_per_thousand": 0.586,
- "new_tests_smoothed": 12461.0,
- "new_tests_smoothed_per_thousand": 1.075,
- "tests_per_case": 74.553,
- "positive_rate": 0.013000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-01",
- "total_cases": 58966.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 163.429,
- "total_deaths": 9371.0,
- "new_deaths": 22.0,
- "new_deaths_smoothed": 23.0,
- "total_cases_per_million": 5087.83,
- "new_cases_per_million": 4.228,
- "new_cases_smoothed_per_million": 14.101,
- "total_deaths_per_million": 808.569,
- "new_deaths_per_million": 1.898,
- "new_deaths_smoothed_per_million": 1.985,
- "new_tests": 5440.0,
- "total_tests": 906545.0,
- "total_tests_per_thousand": 78.22,
- "new_tests_per_thousand": 0.469,
- "new_tests_smoothed": 11812.0,
- "new_tests_smoothed_per_thousand": 1.019,
- "tests_per_case": 72.27600000000001,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-02",
- "total_cases": 59025.0,
- "new_cases": 59.0,
- "new_cases_smoothed": 127.0,
- "total_deaths": 9392.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 22.286,
- "total_cases_per_million": 5092.921,
- "new_cases_per_million": 5.091,
- "new_cases_smoothed_per_million": 10.958,
- "total_deaths_per_million": 810.381,
- "new_deaths_per_million": 1.812,
- "new_deaths_smoothed_per_million": 1.923,
- "new_tests": 10656.0,
- "total_tests": 917201.0,
- "total_tests_per_thousand": 79.14,
- "new_tests_per_thousand": 0.919,
- "new_tests_smoothed": 11017.0,
- "new_tests_smoothed_per_thousand": 0.951,
- "tests_per_case": 86.74799999999999,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-03",
- "total_cases": 59206.0,
- "new_cases": 181.0,
- "new_cases_smoothed": 124.0,
- "total_deaths": 9415.0,
- "new_deaths": 23.0,
- "new_deaths_smoothed": 22.143,
- "total_cases_per_million": 5108.539,
- "new_cases_per_million": 15.617,
- "new_cases_smoothed_per_million": 10.699,
- "total_deaths_per_million": 812.365,
- "new_deaths_per_million": 1.985,
- "new_deaths_smoothed_per_million": 1.911,
- "new_tests": 14806.0,
- "total_tests": 932007.0,
- "total_tests_per_thousand": 80.417,
- "new_tests_per_thousand": 1.278,
- "new_tests_smoothed": 10592.0,
- "new_tests_smoothed_per_thousand": 0.914,
- "tests_per_case": 85.419,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-04",
- "total_cases": 59365.0,
- "new_cases": 159.0,
- "new_cases_smoothed": 120.714,
- "total_deaths": 9435.0,
- "new_deaths": 20.0,
- "new_deaths_smoothed": 21.571,
- "total_cases_per_million": 5122.258,
- "new_cases_per_million": 13.719,
- "new_cases_smoothed_per_million": 10.416,
- "total_deaths_per_million": 814.091,
- "new_deaths_per_million": 1.726,
- "new_deaths_smoothed_per_million": 1.861,
- "new_tests": 12844.0,
- "total_tests": 944851.0,
- "total_tests_per_thousand": 81.526,
- "new_tests_per_thousand": 1.108,
- "new_tests_smoothed": 10556.0,
- "new_tests_smoothed_per_thousand": 0.911,
- "tests_per_case": 87.446,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-05",
- "total_cases": 59537.0,
- "new_cases": 172.0,
- "new_cases_smoothed": 120.857,
- "total_deaths": 9449.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 19.857,
- "total_cases_per_million": 5137.099,
- "new_cases_per_million": 14.841,
- "new_cases_smoothed_per_million": 10.428,
- "total_deaths_per_million": 815.299,
- "new_deaths_per_million": 1.208,
- "new_deaths_smoothed_per_million": 1.713,
- "new_tests": 13085.0,
- "total_tests": 957936.0,
- "total_tests_per_thousand": 82.655,
- "new_tests_per_thousand": 1.129,
- "new_tests_smoothed": 10479.0,
- "new_tests_smoothed_per_thousand": 0.904,
- "tests_per_case": 86.706,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-06",
- "total_cases": 59691.0,
- "new_cases": 154.0,
- "new_cases_smoothed": 119.286,
- "total_deaths": 9461.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 19.286,
- "total_cases_per_million": 5150.386,
- "new_cases_per_million": 13.288,
- "new_cases_smoothed_per_million": 10.292,
- "total_deaths_per_million": 816.334,
- "new_deaths_per_million": 1.035,
- "new_deaths_smoothed_per_million": 1.664,
- "new_tests": 11867.0,
- "total_tests": 969803.0,
- "total_tests_per_thousand": 83.679,
- "new_tests_per_thousand": 1.024,
- "new_tests_smoothed": 10785.0,
- "new_tests_smoothed_per_thousand": 0.931,
- "tests_per_case": 90.413,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-07",
- "total_cases": 59760.0,
- "new_cases": 69.0,
- "new_cases_smoothed": 120.429,
- "total_deaths": 9472.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 17.571,
- "total_cases_per_million": 5156.34,
- "new_cases_per_million": 5.954,
- "new_cases_smoothed_per_million": 10.391,
- "total_deaths_per_million": 817.283,
- "new_deaths_per_million": 0.949,
- "new_deaths_smoothed_per_million": 1.516,
- "new_tests": 7309.0,
- "total_tests": 977112.0,
- "total_tests_per_thousand": 84.309,
- "new_tests_per_thousand": 0.631,
- "new_tests_smoothed": 10858.0,
- "new_tests_smoothed_per_thousand": 0.937,
- "tests_per_case": 90.161,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-08",
- "total_cases": 59813.0,
- "new_cases": 53.0,
- "new_cases_smoothed": 121.0,
- "total_deaths": 9484.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 16.143,
- "total_cases_per_million": 5160.913,
- "new_cases_per_million": 4.573,
- "new_cases_smoothed_per_million": 10.44,
- "total_deaths_per_million": 818.319,
- "new_deaths_per_million": 1.035,
- "new_deaths_smoothed_per_million": 1.393,
- "new_tests": 11013.0,
- "total_tests": 988125.0,
- "total_tests_per_thousand": 85.26,
- "new_tests_per_thousand": 0.95,
- "new_tests_smoothed": 11654.0,
- "new_tests_smoothed_per_thousand": 1.006,
- "tests_per_case": 96.314,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-09",
- "total_cases": 59965.0,
- "new_cases": 152.0,
- "new_cases_smoothed": 134.286,
- "total_deaths": 9493.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 14.429,
- "total_cases_per_million": 5174.028,
- "new_cases_per_million": 13.115,
- "new_cases_smoothed_per_million": 11.587,
- "total_deaths_per_million": 819.095,
- "new_deaths_per_million": 0.777,
- "new_deaths_smoothed_per_million": 1.245,
- "new_tests": 15088.0,
- "total_tests": 1003213.0,
- "total_tests_per_thousand": 86.561,
- "new_tests_per_thousand": 1.302,
- "new_tests_smoothed": 12287.0,
- "new_tests_smoothed_per_thousand": 1.06,
- "tests_per_case": 91.499,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-10",
- "total_cases": 60110.0,
- "new_cases": 145.0,
- "new_cases_smoothed": 129.143,
- "total_deaths": 9505.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 12.857,
- "total_cases_per_million": 5186.539,
- "new_cases_per_million": 12.511,
- "new_cases_smoothed_per_million": 11.143,
- "total_deaths_per_million": 820.131,
- "new_deaths_per_million": 1.035,
- "new_deaths_smoothed_per_million": 1.109,
- "new_tests": 14328.0,
- "total_tests": 1017541.0,
- "total_tests_per_thousand": 87.798,
- "new_tests_per_thousand": 1.236,
- "new_tests_smoothed": 12219.0,
- "new_tests_smoothed_per_thousand": 1.054,
- "tests_per_case": 94.616,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-11",
- "total_cases": 60229.0,
- "new_cases": 119.0,
- "new_cases_smoothed": 123.429,
- "total_deaths": 9517.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 11.714,
- "total_cases_per_million": 5196.807,
- "new_cases_per_million": 10.268,
- "new_cases_smoothed_per_million": 10.65,
- "total_deaths_per_million": 821.166,
- "new_deaths_per_million": 1.035,
- "new_deaths_smoothed_per_million": 1.011,
- "new_tests": 13945.0,
- "total_tests": 1031486.0,
- "total_tests_per_thousand": 89.001,
- "new_tests_per_thousand": 1.203,
- "new_tests_smoothed": 12376.0,
- "new_tests_smoothed_per_thousand": 1.068,
- "tests_per_case": 100.26899999999999,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-12",
- "total_cases": 60324.0,
- "new_cases": 95.0,
- "new_cases_smoothed": 112.429,
- "total_deaths": 9524.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 10.714,
- "total_cases_per_million": 5205.004,
- "new_cases_per_million": 8.197,
- "new_cases_smoothed_per_million": 9.701,
- "total_deaths_per_million": 821.77,
- "new_deaths_per_million": 0.604,
- "new_deaths_smoothed_per_million": 0.924,
- "new_tests": 13744.0,
- "total_tests": 1045230.0,
- "total_tests_per_thousand": 90.187,
- "new_tests_per_thousand": 1.186,
- "new_tests_smoothed": 12471.0,
- "new_tests_smoothed_per_thousand": 1.076,
- "tests_per_case": 110.92399999999999,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-13",
- "total_cases": 60413.0,
- "new_cases": 89.0,
- "new_cases_smoothed": 103.143,
- "total_deaths": 9534.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 10.429,
- "total_cases_per_million": 5212.683,
- "new_cases_per_million": 7.679,
- "new_cases_smoothed_per_million": 8.9,
- "total_deaths_per_million": 822.633,
- "new_deaths_per_million": 0.863,
- "new_deaths_smoothed_per_million": 0.9,
- "new_tests": 12524.0,
- "total_tests": 1057754.0,
- "total_tests_per_thousand": 91.267,
- "new_tests_per_thousand": 1.081,
- "new_tests_smoothed": 12564.0,
- "new_tests_smoothed_per_thousand": 1.084,
- "tests_per_case": 121.81200000000001,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-14",
- "total_cases": 60462.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 100.286,
- "total_deaths": 9539.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 9.571,
- "total_cases_per_million": 5216.911,
- "new_cases_per_million": 4.228,
- "new_cases_smoothed_per_million": 8.653,
- "total_deaths_per_million": 823.064,
- "new_deaths_per_million": 0.431,
- "new_deaths_smoothed_per_million": 0.826,
- "new_tests": 6245.0,
- "total_tests": 1063999.0,
- "total_tests_per_thousand": 91.806,
- "new_tests_per_thousand": 0.539,
- "new_tests_smoothed": 12412.0,
- "new_tests_smoothed_per_thousand": 1.071,
- "tests_per_case": 123.766,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-15",
- "total_cases": 60484.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 95.857,
- "total_deaths": 9542.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 8.286,
- "total_cases_per_million": 5218.81,
- "new_cases_per_million": 1.898,
- "new_cases_smoothed_per_million": 8.271,
- "total_deaths_per_million": 823.323,
- "new_deaths_per_million": 0.259,
- "new_deaths_smoothed_per_million": 0.715,
- "new_tests": 11905.0,
- "total_tests": 1075904.0,
- "total_tests_per_thousand": 92.833,
- "new_tests_per_thousand": 1.027,
- "new_tests_smoothed": 12540.0,
- "new_tests_smoothed_per_thousand": 1.082,
- "tests_per_case": 130.82,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-16",
- "total_cases": 60631.0,
- "new_cases": 147.0,
- "new_cases_smoothed": 95.143,
- "total_deaths": 9550.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 5231.493,
- "new_cases_per_million": 12.684,
- "new_cases_smoothed_per_million": 8.209,
- "total_deaths_per_million": 824.013,
- "new_deaths_per_million": 0.69,
- "new_deaths_smoothed_per_million": 0.703,
- "new_tests": 15197.0,
- "total_tests": 1091101.0,
- "total_tests_per_thousand": 94.145,
- "new_tests_per_thousand": 1.311,
- "new_tests_smoothed": 12555.0,
- "new_tests_smoothed_per_thousand": 1.083,
- "tests_per_case": 131.959,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-17",
- "total_cases": 60730.0,
- "new_cases": 99.0,
- "new_cases_smoothed": 88.571,
- "total_deaths": 9557.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 7.429,
- "total_cases_per_million": 5240.036,
- "new_cases_per_million": 8.542,
- "new_cases_smoothed_per_million": 7.642,
- "total_deaths_per_million": 824.617,
- "new_deaths_per_million": 0.604,
- "new_deaths_smoothed_per_million": 0.641,
- "new_tests": 15321.0,
- "total_tests": 1106422.0,
- "total_tests_per_thousand": 95.467,
- "new_tests_per_thousand": 1.322,
- "new_tests_smoothed": 12697.0,
- "new_tests_smoothed_per_thousand": 1.096,
- "tests_per_case": 143.35299999999998,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-18",
- "total_cases": 60853.0,
- "new_cases": 123.0,
- "new_cases_smoothed": 89.143,
- "total_deaths": 9564.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 6.714,
- "total_cases_per_million": 5250.649,
- "new_cases_per_million": 10.613,
- "new_cases_smoothed_per_million": 7.692,
- "total_deaths_per_million": 825.221,
- "new_deaths_per_million": 0.604,
- "new_deaths_smoothed_per_million": 0.579,
- "new_tests": 13963.0,
- "total_tests": 1120385.0,
- "total_tests_per_thousand": 96.671,
- "new_tests_per_thousand": 1.205,
- "new_tests_smoothed": 12700.0,
- "new_tests_smoothed_per_thousand": 1.096,
- "tests_per_case": 142.468,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-19",
- "total_cases": 60961.0,
- "new_cases": 108.0,
- "new_cases_smoothed": 91.0,
- "total_deaths": 9569.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 6.429,
- "total_cases_per_million": 5259.967,
- "new_cases_per_million": 9.319,
- "new_cases_smoothed_per_million": 7.852,
- "total_deaths_per_million": 825.653,
- "new_deaths_per_million": 0.431,
- "new_deaths_smoothed_per_million": 0.555,
- "new_tests": 13404.0,
- "total_tests": 1133789.0,
- "total_tests_per_thousand": 97.828,
- "new_tests_per_thousand": 1.157,
- "new_tests_smoothed": 12651.0,
- "new_tests_smoothed_per_thousand": 1.092,
- "tests_per_case": 139.02200000000002,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-20",
- "total_cases": 61082.0,
- "new_cases": 121.0,
- "new_cases_smoothed": 95.571,
- "total_deaths": 9573.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 5270.408,
- "new_cases_per_million": 10.44,
- "new_cases_smoothed_per_million": 8.246,
- "total_deaths_per_million": 825.998,
- "new_deaths_per_million": 0.345,
- "new_deaths_smoothed_per_million": 0.481,
- "new_tests": 12541.0,
- "total_tests": 1146330.0,
- "total_tests_per_thousand": 98.91,
- "new_tests_per_thousand": 1.082,
- "new_tests_smoothed": 12654.0,
- "new_tests_smoothed_per_thousand": 1.092,
- "tests_per_case": 132.404,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-21",
- "total_cases": 61132.0,
- "new_cases": 50.0,
- "new_cases_smoothed": 95.714,
- "total_deaths": 9576.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 5.286,
- "total_cases_per_million": 5274.722,
- "new_cases_per_million": 4.314,
- "new_cases_smoothed_per_million": 8.259,
- "total_deaths_per_million": 826.257,
- "new_deaths_per_million": 0.259,
- "new_deaths_smoothed_per_million": 0.456,
- "new_tests": 6602.0,
- "total_tests": 1152932.0,
- "total_tests_per_thousand": 99.48,
- "new_tests_per_thousand": 0.57,
- "new_tests_smoothed": 12705.0,
- "new_tests_smoothed_per_thousand": 1.096,
- "tests_per_case": 132.739,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-22",
- "total_cases": 61152.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 95.429,
- "total_deaths": 9585.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 6.143,
- "total_cases_per_million": 5276.447,
- "new_cases_per_million": 1.726,
- "new_cases_smoothed_per_million": 8.234,
- "total_deaths_per_million": 827.033,
- "new_deaths_per_million": 0.777,
- "new_deaths_smoothed_per_million": 0.53,
- "new_tests": 11130.0,
- "total_tests": 1164062.0,
- "total_tests_per_thousand": 100.44,
- "new_tests_per_thousand": 0.96,
- "new_tests_smoothed": 12594.0,
- "new_tests_smoothed_per_thousand": 1.087,
- "tests_per_case": 131.97299999999998,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-23",
- "total_cases": 61295.0,
- "new_cases": 143.0,
- "new_cases_smoothed": 94.857,
- "total_deaths": 9597.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 6.714,
- "total_cases_per_million": 5288.786,
- "new_cases_per_million": 12.339,
- "new_cases_smoothed_per_million": 8.185,
- "total_deaths_per_million": 828.069,
- "new_deaths_per_million": 1.035,
- "new_deaths_smoothed_per_million": 0.579,
- "new_tests": 17391.0,
- "total_tests": 1181453.0,
- "total_tests_per_thousand": 101.941,
- "new_tests_per_thousand": 1.501,
- "new_tests_smoothed": 12907.0,
- "new_tests_smoothed_per_thousand": 1.114,
- "tests_per_case": 136.06799999999998,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-24",
- "total_cases": 61405.0,
- "new_cases": 110.0,
- "new_cases_smoothed": 96.429,
- "total_deaths": 9601.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 6.286,
- "total_cases_per_million": 5298.277,
- "new_cases_per_million": 9.491,
- "new_cases_smoothed_per_million": 8.32,
- "total_deaths_per_million": 828.414,
- "new_deaths_per_million": 0.345,
- "new_deaths_smoothed_per_million": 0.542,
- "new_tests": 18469.0,
- "total_tests": 1199922.0,
- "total_tests_per_thousand": 103.534,
- "new_tests_per_thousand": 1.594,
- "new_tests_smoothed": 13357.0,
- "new_tests_smoothed_per_thousand": 1.152,
- "tests_per_case": 138.517,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-25",
- "total_cases": 61505.0,
- "new_cases": 100.0,
- "new_cases_smoothed": 93.143,
- "total_deaths": 9604.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 5.714,
- "total_cases_per_million": 5306.906,
- "new_cases_per_million": 8.628,
- "new_cases_smoothed_per_million": 8.037,
- "total_deaths_per_million": 828.673,
- "new_deaths_per_million": 0.259,
- "new_deaths_smoothed_per_million": 0.493,
- "new_tests": 15206.0,
- "total_tests": 1215128.0,
- "total_tests_per_thousand": 104.846,
- "new_tests_per_thousand": 1.312,
- "new_tests_smoothed": 13535.0,
- "new_tests_smoothed_per_thousand": 1.168,
- "tests_per_case": 145.314,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-26",
- "total_cases": 61581.0,
- "new_cases": 76.0,
- "new_cases_smoothed": 88.571,
- "total_deaths": 9609.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.714,
- "total_cases_per_million": 5313.463,
- "new_cases_per_million": 6.558,
- "new_cases_smoothed_per_million": 7.642,
- "total_deaths_per_million": 829.104,
- "new_deaths_per_million": 0.431,
- "new_deaths_smoothed_per_million": 0.493,
- "new_tests": 14557.0,
- "total_tests": 1229685.0,
- "total_tests_per_thousand": 106.102,
- "new_tests_per_thousand": 1.256,
- "new_tests_smoothed": 13699.0,
- "new_tests_smoothed_per_thousand": 1.182,
- "tests_per_case": 154.666,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-27",
- "total_cases": 61694.0,
- "new_cases": 113.0,
- "new_cases_smoothed": 87.429,
- "total_deaths": 9611.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 5.429,
- "total_cases_per_million": 5323.213,
- "new_cases_per_million": 9.75,
- "new_cases_smoothed_per_million": 7.544,
- "total_deaths_per_million": 829.277,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.468,
- "new_tests": 10952.0,
- "total_tests": 1240637.0,
- "total_tests_per_thousand": 107.047,
- "new_tests_per_thousand": 0.945,
- "new_tests_smoothed": 13472.0,
- "new_tests_smoothed_per_thousand": 1.162,
- "tests_per_case": 154.092,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-28",
- "total_cases": 61735.0,
- "new_cases": 41.0,
- "new_cases_smoothed": 86.143,
- "total_deaths": 9619.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 6.143,
- "total_cases_per_million": 5326.751,
- "new_cases_per_million": 3.538,
- "new_cases_smoothed_per_million": 7.433,
- "total_deaths_per_million": 829.967,
- "new_deaths_per_million": 0.69,
- "new_deaths_smoothed_per_million": 0.53,
- "new_tests": 6184.0,
- "total_tests": 1246821.0,
- "total_tests_per_thousand": 107.581,
- "new_tests_per_thousand": 0.534,
- "new_tests_smoothed": 13413.0,
- "new_tests_smoothed_per_thousand": 1.157,
- "tests_per_case": 155.70600000000002,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-29",
- "total_cases": 61759.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 86.714,
- "total_deaths": 9624.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 5328.822,
- "new_cases_per_million": 2.071,
- "new_cases_smoothed_per_million": 7.482,
- "total_deaths_per_million": 830.399,
- "new_deaths_per_million": 0.431,
- "new_deaths_smoothed_per_million": 0.481,
- "new_tests": 11999.0,
- "total_tests": 1258820.0,
- "total_tests_per_thousand": 108.616,
- "new_tests_per_thousand": 1.035,
- "new_tests_smoothed": 13537.0,
- "new_tests_smoothed_per_thousand": 1.168,
- "tests_per_case": 156.11,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-30",
- "total_cases": 61886.0,
- "new_cases": 127.0,
- "new_cases_smoothed": 84.429,
- "total_deaths": 9627.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 5339.78,
- "new_cases_per_million": 10.958,
- "new_cases_smoothed_per_million": 7.285,
- "total_deaths_per_million": 830.657,
- "new_deaths_per_million": 0.259,
- "new_deaths_smoothed_per_million": 0.37,
- "new_tests": 16066.0,
- "total_tests": 1274886.0,
- "total_tests_per_thousand": 110.002,
- "new_tests_per_thousand": 1.386,
- "new_tests_smoothed": 13348.0,
- "new_tests_smoothed_per_thousand": 1.152,
- "tests_per_case": 158.09799999999998,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 51.85
- },
- {
- "date": "2020-07-01",
- "total_cases": 61986.0,
- "new_cases": 100.0,
- "new_cases_smoothed": 83.0,
- "total_deaths": 9635.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 5348.408,
- "new_cases_per_million": 8.628,
- "new_cases_smoothed_per_million": 7.162,
- "total_deaths_per_million": 831.348,
- "new_deaths_per_million": 0.69,
- "new_deaths_smoothed_per_million": 0.419,
- "new_tests": 15176.0,
- "total_tests": 1290062.0,
- "total_tests_per_thousand": 111.312,
- "new_tests_per_thousand": 1.309,
- "new_tests_smoothed": 12877.0,
- "new_tests_smoothed_per_thousand": 1.111,
- "tests_per_case": 155.145,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-02",
- "total_cases": 62121.0,
- "new_cases": 135.0,
- "new_cases_smoothed": 88.0,
- "total_deaths": 9637.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 5360.057,
- "new_cases_per_million": 11.648,
- "new_cases_smoothed_per_million": 7.593,
- "total_deaths_per_million": 831.52,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.407,
- "new_tests": 13611.0,
- "total_tests": 1303673.0,
- "total_tests_per_thousand": 112.486,
- "new_tests_per_thousand": 1.174,
- "new_tests_smoothed": 12649.0,
- "new_tests_smoothed_per_thousand": 1.091,
- "tests_per_case": 143.739,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-03",
- "total_cases": 62214.0,
- "new_cases": 93.0,
- "new_cases_smoothed": 90.429,
- "total_deaths": 9642.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 5368.081,
- "new_cases_per_million": 8.024,
- "new_cases_smoothed_per_million": 7.803,
- "total_deaths_per_million": 831.952,
- "new_deaths_per_million": 0.431,
- "new_deaths_smoothed_per_million": 0.407,
- "new_tests": 12377.0,
- "total_tests": 1316050.0,
- "total_tests_per_thousand": 113.554,
- "new_tests_per_thousand": 1.068,
- "new_tests_smoothed": 12338.0,
- "new_tests_smoothed_per_thousand": 1.065,
- "tests_per_case": 136.439,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-04",
- "total_cases": 62308.0,
- "new_cases": 94.0,
- "new_cases_smoothed": 87.714,
- "total_deaths": 9644.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 5376.192,
- "new_cases_per_million": 8.111,
- "new_cases_smoothed_per_million": 7.568,
- "total_deaths_per_million": 832.124,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.407,
- "new_tests": 10003.0,
- "total_tests": 1326053.0,
- "total_tests_per_thousand": 114.417,
- "new_tests_per_thousand": 0.863,
- "new_tests_smoothed": 12202.0,
- "new_tests_smoothed_per_thousand": 1.053,
- "tests_per_case": 139.111,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-05",
- "total_cases": 62372.0,
- "new_cases": 64.0,
- "new_cases_smoothed": 91.0,
- "total_deaths": 9647.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 5381.714,
- "new_cases_per_million": 5.522,
- "new_cases_smoothed_per_million": 7.852,
- "total_deaths_per_million": 832.383,
- "new_deaths_per_million": 0.259,
- "new_deaths_smoothed_per_million": 0.345,
- "new_tests": 5801.0,
- "total_tests": 1331854.0,
- "total_tests_per_thousand": 114.918,
- "new_tests_per_thousand": 0.501,
- "new_tests_smoothed": 12148.0,
- "new_tests_smoothed_per_thousand": 1.048,
- "tests_per_case": 133.495,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-06",
- "total_cases": 62396.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 91.0,
- "total_deaths": 9649.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 5383.785,
- "new_cases_per_million": 2.071,
- "new_cases_smoothed_per_million": 7.852,
- "total_deaths_per_million": 832.556,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.308,
- "new_tests": 10721.0,
- "total_tests": 1342575.0,
- "total_tests_per_thousand": 115.843,
- "new_tests_per_thousand": 0.925,
- "new_tests_smoothed": 11965.0,
- "new_tests_smoothed_per_thousand": 1.032,
- "tests_per_case": 131.484,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-07",
- "total_cases": 62508.0,
- "new_cases": 112.0,
- "new_cases_smoothed": 88.857,
- "total_deaths": 9650.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 5393.449,
- "new_cases_per_million": 9.664,
- "new_cases_smoothed_per_million": 7.667,
- "total_deaths_per_million": 832.642,
- "new_deaths_per_million": 0.086,
- "new_deaths_smoothed_per_million": 0.284,
- "new_tests": 13926.0,
- "total_tests": 1356501.0,
- "total_tests_per_thousand": 117.045,
- "new_tests_per_thousand": 1.202,
- "new_tests_smoothed": 11659.0,
- "new_tests_smoothed_per_thousand": 1.006,
- "tests_per_case": 131.211,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-08",
- "total_cases": 62607.0,
- "new_cases": 99.0,
- "new_cases_smoothed": 88.714,
- "total_deaths": 9653.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 5401.991,
- "new_cases_per_million": 8.542,
- "new_cases_smoothed_per_million": 7.655,
- "total_deaths_per_million": 832.901,
- "new_deaths_per_million": 0.259,
- "new_deaths_smoothed_per_million": 0.222,
- "new_tests": 13866.0,
- "total_tests": 1370367.0,
- "total_tests_per_thousand": 118.241,
- "new_tests_per_thousand": 1.196,
- "new_tests_smoothed": 11472.0,
- "new_tests_smoothed_per_thousand": 0.99,
- "tests_per_case": 129.314,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-09",
- "total_cases": 62744.0,
- "new_cases": 137.0,
- "new_cases_smoothed": 89.0,
- "total_deaths": 9654.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 5413.812,
- "new_cases_per_million": 11.821,
- "new_cases_smoothed_per_million": 7.679,
- "total_deaths_per_million": 832.987,
- "new_deaths_per_million": 0.086,
- "new_deaths_smoothed_per_million": 0.21,
- "new_tests": 12535.0,
- "total_tests": 1382902.0,
- "total_tests_per_thousand": 119.323,
- "new_tests_per_thousand": 1.082,
- "new_tests_smoothed": 11318.0,
- "new_tests_smoothed_per_thousand": 0.977,
- "tests_per_case": 127.169,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-10",
- "total_cases": 62868.0,
- "new_cases": 124.0,
- "new_cases_smoothed": 93.429,
- "total_deaths": 9656.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 5424.511,
- "new_cases_per_million": 10.699,
- "new_cases_smoothed_per_million": 8.061,
- "total_deaths_per_million": 833.16,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.173,
- "new_tests": 12027.0,
- "total_tests": 1394929.0,
- "total_tests_per_thousand": 120.36,
- "new_tests_per_thousand": 1.038,
- "new_tests_smoothed": 11268.0,
- "new_tests_smoothed_per_thousand": 0.972,
- "tests_per_case": 120.60600000000001,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-11",
- "total_cases": 62995.0,
- "new_cases": 127.0,
- "new_cases_smoothed": 98.143,
- "total_deaths": 9656.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 5435.469,
- "new_cases_per_million": 10.958,
- "new_cases_smoothed_per_million": 8.468,
- "total_deaths_per_million": 833.16,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.148,
- "new_tests": 9298.0,
- "total_tests": 1404227.0,
- "total_tests_per_thousand": 121.163,
- "new_tests_per_thousand": 0.802,
- "new_tests_smoothed": 11168.0,
- "new_tests_smoothed_per_thousand": 0.964,
- "tests_per_case": 113.79299999999999,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-12",
- "total_cases": 63057.0,
- "new_cases": 62.0,
- "new_cases_smoothed": 97.857,
- "total_deaths": 9658.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 5440.819,
- "new_cases_per_million": 5.35,
- "new_cases_smoothed_per_million": 8.444,
- "total_deaths_per_million": 833.332,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.136,
- "new_tests": 5623.0,
- "total_tests": 1409850.0,
- "total_tests_per_thousand": 121.648,
- "new_tests_per_thousand": 0.485,
- "new_tests_smoothed": 11142.0,
- "new_tests_smoothed_per_thousand": 0.961,
- "tests_per_case": 113.86,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-13",
- "total_cases": 63100.0,
- "new_cases": 43.0,
- "new_cases_smoothed": 100.571,
- "total_deaths": 9662.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 5444.529,
- "new_cases_per_million": 3.71,
- "new_cases_smoothed_per_million": 8.678,
- "total_deaths_per_million": 833.677,
- "new_deaths_per_million": 0.345,
- "new_deaths_smoothed_per_million": 0.16,
- "new_tests": 10241.0,
- "total_tests": 1420091.0,
- "total_tests_per_thousand": 122.531,
- "new_tests_per_thousand": 0.884,
- "new_tests_smoothed": 11074.0,
- "new_tests_smoothed_per_thousand": 0.956,
- "tests_per_case": 110.111,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-14",
- "total_cases": 63324.0,
- "new_cases": 224.0,
- "new_cases_smoothed": 116.571,
- "total_deaths": 9662.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 5463.857,
- "new_cases_per_million": 19.328,
- "new_cases_smoothed_per_million": 10.058,
- "total_deaths_per_million": 833.677,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.148,
- "new_tests": 15074.0,
- "total_tests": 1435165.0,
- "total_tests_per_thousand": 123.832,
- "new_tests_per_thousand": 1.301,
- "new_tests_smoothed": 11238.0,
- "new_tests_smoothed_per_thousand": 0.97,
- "tests_per_case": 96.404,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-15",
- "total_cases": 63531.0,
- "new_cases": 207.0,
- "new_cases_smoothed": 132.0,
- "total_deaths": 9665.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 5481.717,
- "new_cases_per_million": 17.861,
- "new_cases_smoothed_per_million": 11.39,
- "total_deaths_per_million": 833.936,
- "new_deaths_per_million": 0.259,
- "new_deaths_smoothed_per_million": 0.148,
- "new_tests": 16359.0,
- "total_tests": 1451524.0,
- "total_tests_per_thousand": 125.243,
- "new_tests_per_thousand": 1.412,
- "new_tests_smoothed": 11594.0,
- "new_tests_smoothed_per_thousand": 1.0,
- "tests_per_case": 87.833,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-16",
- "total_cases": 63791.0,
- "new_cases": 260.0,
- "new_cases_smoothed": 149.571,
- "total_deaths": 9670.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 5504.151,
- "new_cases_per_million": 22.434,
- "new_cases_smoothed_per_million": 12.906,
- "total_deaths_per_million": 834.368,
- "new_deaths_per_million": 0.431,
- "new_deaths_smoothed_per_million": 0.197,
- "new_tests": 14482.0,
- "total_tests": 1466006.0,
- "total_tests_per_thousand": 126.493,
- "new_tests_per_thousand": 1.25,
- "new_tests_smoothed": 11872.0,
- "new_tests_smoothed_per_thousand": 1.024,
- "tests_per_case": 79.373,
- "positive_rate": 0.013000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-17",
- "total_cases": 64017.0,
- "new_cases": 226.0,
- "new_cases_smoothed": 164.143,
- "total_deaths": 9675.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 5523.652,
- "new_cases_per_million": 19.5,
- "new_cases_smoothed_per_million": 14.163,
- "total_deaths_per_million": 834.799,
- "new_deaths_per_million": 0.431,
- "new_deaths_smoothed_per_million": 0.234,
- "new_tests": 13998.0,
- "total_tests": 1480004.0,
- "total_tests_per_thousand": 127.701,
- "new_tests_per_thousand": 1.208,
- "new_tests_smoothed": 12154.0,
- "new_tests_smoothed_per_thousand": 1.049,
- "tests_per_case": 74.045,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-18",
- "total_cases": 64291.0,
- "new_cases": 274.0,
- "new_cases_smoothed": 185.143,
- "total_deaths": 9677.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 5547.293,
- "new_cases_per_million": 23.642,
- "new_cases_smoothed_per_million": 15.975,
- "total_deaths_per_million": 834.972,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.259,
- "new_tests": 10453.0,
- "total_tests": 1490457.0,
- "total_tests_per_thousand": 128.603,
- "new_tests_per_thousand": 0.902,
- "new_tests_smoothed": 12319.0,
- "new_tests_smoothed_per_thousand": 1.063,
- "tests_per_case": 66.538,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-19",
- "total_cases": 64421.0,
- "new_cases": 130.0,
- "new_cases_smoothed": 194.857,
- "total_deaths": 9680.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 5558.51,
- "new_cases_per_million": 11.217,
- "new_cases_smoothed_per_million": 16.813,
- "total_deaths_per_million": 835.23,
- "new_deaths_per_million": 0.259,
- "new_deaths_smoothed_per_million": 0.271,
- "new_tests": 6282.0,
- "total_tests": 1496739.0,
- "total_tests_per_thousand": 129.145,
- "new_tests_per_thousand": 0.542,
- "new_tests_smoothed": 12413.0,
- "new_tests_smoothed_per_thousand": 1.071,
- "tests_per_case": 63.703,
- "positive_rate": 0.016,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-20",
- "total_cases": 64485.0,
- "new_cases": 64.0,
- "new_cases_smoothed": 197.857,
- "total_deaths": 9681.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 5564.032,
- "new_cases_per_million": 5.522,
- "new_cases_smoothed_per_million": 17.072,
- "total_deaths_per_million": 835.317,
- "new_deaths_per_million": 0.086,
- "new_deaths_smoothed_per_million": 0.234,
- "new_tests": 11901.0,
- "total_tests": 1508640.0,
- "total_tests_per_thousand": 130.172,
- "new_tests_per_thousand": 1.027,
- "new_tests_smoothed": 12650.0,
- "new_tests_smoothed_per_thousand": 1.091,
- "tests_per_case": 63.935,
- "positive_rate": 0.016,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-21",
- "total_cases": 64928.0,
- "new_cases": 443.0,
- "new_cases_smoothed": 229.143,
- "total_deaths": 9683.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 5602.256,
- "new_cases_per_million": 38.224,
- "new_cases_smoothed_per_million": 19.771,
- "total_deaths_per_million": 835.489,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.259,
- "new_tests": 11994.0,
- "total_tests": 1520634.0,
- "total_tests_per_thousand": 131.207,
- "new_tests_per_thousand": 1.035,
- "new_tests_smoothed": 12210.0,
- "new_tests_smoothed_per_thousand": 1.054,
- "tests_per_case": 53.286,
- "positive_rate": 0.019,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-22",
- "total_cases": 65073.0,
- "new_cases": 145.0,
- "new_cases_smoothed": 220.286,
- "total_deaths": 9684.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 5614.768,
- "new_cases_per_million": 12.511,
- "new_cases_smoothed_per_million": 19.007,
- "total_deaths_per_million": 835.576,
- "new_deaths_per_million": 0.086,
- "new_deaths_smoothed_per_million": 0.234,
- "new_tests": 13283.0,
- "total_tests": 1533917.0,
- "total_tests_per_thousand": 132.353,
- "new_tests_per_thousand": 1.146,
- "new_tests_smoothed": 11770.0,
- "new_tests_smoothed_per_thousand": 1.016,
- "tests_per_case": 53.431000000000004,
- "positive_rate": 0.019,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-23",
- "total_cases": 65626.0,
- "new_cases": 553.0,
- "new_cases_smoothed": 262.143,
- "total_deaths": 9686.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 5662.483,
- "new_cases_per_million": 47.715,
- "new_cases_smoothed_per_million": 22.619,
- "total_deaths_per_million": 835.748,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.197,
- "new_tests": 18291.0,
- "total_tests": 1552208.0,
- "total_tests_per_thousand": 133.931,
- "new_tests_per_thousand": 1.578,
- "new_tests_smoothed": 12315.0,
- "new_tests_smoothed_per_thousand": 1.063,
- "tests_per_case": 46.978,
- "positive_rate": 0.021,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-24",
- "total_cases": 66065.0,
- "new_cases": 439.0,
- "new_cases_smoothed": 292.571,
- "total_deaths": 9688.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 5700.361,
- "new_cases_per_million": 37.879,
- "new_cases_smoothed_per_million": 25.244,
- "total_deaths_per_million": 835.921,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.16,
- "new_tests": 18687.0,
- "total_tests": 1570895.0,
- "total_tests_per_thousand": 135.543,
- "new_tests_per_thousand": 1.612,
- "new_tests_smoothed": 12984.0,
- "new_tests_smoothed_per_thousand": 1.12,
- "tests_per_case": 44.379,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-25",
- "total_cases": 66561.0,
- "new_cases": 496.0,
- "new_cases_smoothed": 324.286,
- "total_deaths": 9693.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 5743.158,
- "new_cases_per_million": 42.797,
- "new_cases_smoothed_per_million": 27.981,
- "total_deaths_per_million": 836.352,
- "new_deaths_per_million": 0.431,
- "new_deaths_smoothed_per_million": 0.197,
- "new_tests": 14507.0,
- "total_tests": 1585402.0,
- "total_tests_per_thousand": 136.795,
- "new_tests_per_thousand": 1.252,
- "new_tests_smoothed": 13564.0,
- "new_tests_smoothed_per_thousand": 1.17,
- "tests_per_case": 41.827,
- "positive_rate": 0.024,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-26",
- "total_cases": 66790.0,
- "new_cases": 229.0,
- "new_cases_smoothed": 338.429,
- "total_deaths": 9694.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 5762.917,
- "new_cases_per_million": 19.759,
- "new_cases_smoothed_per_million": 29.201,
- "total_deaths_per_million": 836.438,
- "new_deaths_per_million": 0.086,
- "new_deaths_smoothed_per_million": 0.173,
- "new_tests": 10996.0,
- "total_tests": 1596398.0,
- "total_tests_per_thousand": 137.744,
- "new_tests_per_thousand": 0.949,
- "new_tests_smoothed": 14237.0,
- "new_tests_smoothed_per_thousand": 1.228,
- "tests_per_case": 42.068000000000005,
- "positive_rate": 0.024,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-27",
- "total_cases": 66974.0,
- "new_cases": 184.0,
- "new_cases_smoothed": 355.571,
- "total_deaths": 9696.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 5778.794,
- "new_cases_per_million": 15.876,
- "new_cases_smoothed_per_million": 30.68,
- "total_deaths_per_million": 836.611,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.185,
- "new_tests": 14565.0,
- "total_tests": 1610963.0,
- "total_tests_per_thousand": 139.001,
- "new_tests_per_thousand": 1.257,
- "new_tests_smoothed": 14618.0,
- "new_tests_smoothed_per_thousand": 1.261,
- "tests_per_case": 41.111000000000004,
- "positive_rate": 0.024,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-28",
- "total_cases": 67569.0,
- "new_cases": 595.0,
- "new_cases_smoothed": 377.286,
- "total_deaths": 9700.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 5830.133,
- "new_cases_per_million": 51.339,
- "new_cases_smoothed_per_million": 32.554,
- "total_deaths_per_million": 836.956,
- "new_deaths_per_million": 0.345,
- "new_deaths_smoothed_per_million": 0.21,
- "new_tests": 25526.0,
- "total_tests": 1636489.0,
- "total_tests_per_thousand": 141.203,
- "new_tests_per_thousand": 2.202,
- "new_tests_smoothed": 16551.0,
- "new_tests_smoothed_per_thousand": 1.428,
- "tests_per_case": 43.869,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 50.93
- },
- {
- "date": "2020-07-29",
- "total_cases": 68254.0,
- "new_cases": 685.0,
- "new_cases_smoothed": 454.429,
- "total_deaths": 9701.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 5889.237,
- "new_cases_per_million": 59.105,
- "new_cases_smoothed_per_million": 39.21,
- "total_deaths_per_million": 837.042,
- "new_deaths_per_million": 0.086,
- "new_deaths_smoothed_per_million": 0.21,
- "new_tests": 25491.0,
- "total_tests": 1661980.0,
- "total_tests_per_thousand": 143.403,
- "new_tests_per_thousand": 2.199,
- "new_tests_smoothed": 18295.0,
- "new_tests_smoothed_per_thousand": 1.579,
- "tests_per_case": 40.259,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 61.11
- },
- {
- "date": "2020-07-30",
- "total_cases": 68957.0,
- "new_cases": 703.0,
- "new_cases_smoothed": 475.857,
- "total_deaths": 9704.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 5949.895,
- "new_cases_per_million": 60.658,
- "new_cases_smoothed_per_million": 41.059,
- "total_deaths_per_million": 837.301,
- "new_deaths_per_million": 0.259,
- "new_deaths_smoothed_per_million": 0.222,
- "new_tests": 26144.0,
- "total_tests": 1688124.0,
- "total_tests_per_thousand": 145.658,
- "new_tests_per_thousand": 2.256,
- "new_tests_smoothed": 19417.0,
- "new_tests_smoothed_per_thousand": 1.675,
- "tests_per_case": 40.804,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 61.11
- },
- {
- "date": "2020-07-31",
- "total_cases": 69592.0,
- "new_cases": 635.0,
- "new_cases_smoothed": 503.857,
- "total_deaths": 9706.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 6004.686,
- "new_cases_per_million": 54.79,
- "new_cases_smoothed_per_million": 43.475,
- "total_deaths_per_million": 837.474,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.222,
- "new_tests": 21538.0,
- "total_tests": 1709662.0,
- "total_tests_per_thousand": 147.517,
- "new_tests_per_thousand": 1.858,
- "new_tests_smoothed": 19824.0,
- "new_tests_smoothed_per_thousand": 1.71,
- "tests_per_case": 39.344,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 61.11
- },
- {
- "date": "2020-08-01",
- "total_cases": 70276.0,
- "new_cases": 684.0,
- "new_cases_smoothed": 530.714,
- "total_deaths": 9709.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 6063.704,
- "new_cases_per_million": 59.018,
- "new_cases_smoothed_per_million": 45.792,
- "total_deaths_per_million": 837.733,
- "new_deaths_per_million": 0.259,
- "new_deaths_smoothed_per_million": 0.197,
- "new_tests": 20428.0,
- "total_tests": 1730090.0,
- "total_tests_per_thousand": 149.279,
- "new_tests_per_thousand": 1.763,
- "new_tests_smoothed": 20670.0,
- "new_tests_smoothed_per_thousand": 1.783,
- "tests_per_case": 38.948,
- "positive_rate": 0.026000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 61.11
- },
- {
- "date": "2020-08-02",
- "total_cases": 70585.0,
- "new_cases": 309.0,
- "new_cases_smoothed": 542.143,
- "total_deaths": 9711.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 6090.366,
- "new_cases_per_million": 26.662,
- "new_cases_smoothed_per_million": 46.778,
- "total_deaths_per_million": 837.905,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.21,
- "new_tests": 11698.0,
- "total_tests": 1741788.0,
- "total_tests_per_thousand": 150.289,
- "new_tests_per_thousand": 1.009,
- "new_tests_smoothed": 20770.0,
- "new_tests_smoothed_per_thousand": 1.792,
- "tests_per_case": 38.311,
- "positive_rate": 0.026000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 61.11
- },
- {
- "date": "2020-08-03",
- "total_cases": 70733.0,
- "new_cases": 148.0,
- "new_cases_smoothed": 537.0,
- "total_deaths": 9716.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 6103.136,
- "new_cases_per_million": 12.77,
- "new_cases_smoothed_per_million": 46.335,
- "total_deaths_per_million": 838.337,
- "new_deaths_per_million": 0.431,
- "new_deaths_smoothed_per_million": 0.247,
- "new_tests": 16835.0,
- "total_tests": 1758623.0,
- "total_tests_per_thousand": 151.741,
- "new_tests_per_thousand": 1.453,
- "new_tests_smoothed": 21094.0,
- "new_tests_smoothed_per_thousand": 1.82,
- "tests_per_case": 39.281,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 61.11
- },
- {
- "date": "2020-08-04",
- "total_cases": 71527.0,
- "new_cases": 794.0,
- "new_cases_smoothed": 565.429,
- "total_deaths": 9719.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 6171.645,
- "new_cases_per_million": 68.51,
- "new_cases_smoothed_per_million": 48.788,
- "total_deaths_per_million": 838.596,
- "new_deaths_per_million": 0.259,
- "new_deaths_smoothed_per_million": 0.234,
- "new_tests": 25464.0,
- "total_tests": 1784087.0,
- "total_tests_per_thousand": 153.938,
- "new_tests_per_thousand": 2.197,
- "new_tests_smoothed": 21085.0,
- "new_tests_smoothed_per_thousand": 1.819,
- "tests_per_case": 37.29,
- "positive_rate": 0.027000000000000003,
- "tests_units": "tests performed",
- "stringency_index": 61.11
- },
- {
- "date": "2020-08-05",
- "total_cases": 72340.0,
- "new_cases": 813.0,
- "new_cases_smoothed": 583.714,
- "total_deaths": 9724.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 6241.794,
- "new_cases_per_million": 70.149,
- "new_cases_smoothed_per_million": 50.365,
- "total_deaths_per_million": 839.027,
- "new_deaths_per_million": 0.431,
- "new_deaths_smoothed_per_million": 0.284,
- "new_tests": 26391.0,
- "total_tests": 1810478.0,
- "total_tests_per_thousand": 156.216,
- "new_tests_per_thousand": 2.277,
- "new_tests_smoothed": 21214.0,
- "new_tests_smoothed_per_thousand": 1.83,
- "tests_per_case": 36.343,
- "positive_rate": 0.027999999999999997,
- "tests_units": "tests performed",
- "stringency_index": 61.11
- },
- {
- "date": "2020-08-06",
- "total_cases": 73107.0,
- "new_cases": 767.0,
- "new_cases_smoothed": 592.857,
- "total_deaths": 9729.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 6307.974,
- "new_cases_per_million": 66.18,
- "new_cases_smoothed_per_million": 51.154,
- "total_deaths_per_million": 839.458,
- "new_deaths_per_million": 0.431,
- "new_deaths_smoothed_per_million": 0.308,
- "new_tests": 23205.0,
- "total_tests": 1833683.0,
- "total_tests_per_thousand": 158.218,
- "new_tests_per_thousand": 2.002,
- "new_tests_smoothed": 20794.0,
- "new_tests_smoothed_per_thousand": 1.794,
- "tests_per_case": 35.074,
- "positive_rate": 0.028999999999999998,
- "tests_units": "tests performed",
- "stringency_index": 61.11
- },
- {
- "date": "2020-08-07",
- "total_cases": 73876.0,
- "new_cases": 769.0,
- "new_cases_smoothed": 612.0,
- "total_deaths": 9733.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 6374.327,
- "new_cases_per_million": 66.353,
- "new_cases_smoothed_per_million": 52.806,
- "total_deaths_per_million": 839.803,
- "new_deaths_per_million": 0.345,
- "new_deaths_smoothed_per_million": 0.333,
- "new_tests": 22835.0,
- "total_tests": 1856518.0,
- "total_tests_per_thousand": 160.188,
- "new_tests_per_thousand": 1.97,
- "new_tests_smoothed": 20979.0,
- "new_tests_smoothed_per_thousand": 1.81,
- "tests_per_case": 34.279,
- "positive_rate": 0.028999999999999998,
- "tests_units": "tests performed",
- "stringency_index": 57.41
- },
- {
- "date": "2020-08-08",
- "total_cases": 74647.0,
- "new_cases": 771.0,
- "new_cases_smoothed": 624.429,
- "total_deaths": 9739.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 6440.852,
- "new_cases_per_million": 66.525,
- "new_cases_smoothed_per_million": 53.878,
- "total_deaths_per_million": 840.321,
- "new_deaths_per_million": 0.518,
- "new_deaths_smoothed_per_million": 0.37,
- "new_tests": 16680.0,
- "total_tests": 1873198.0,
- "total_tests_per_thousand": 161.627,
- "new_tests_per_thousand": 1.439,
- "new_tests_smoothed": 20444.0,
- "new_tests_smoothed_per_thousand": 1.764,
- "tests_per_case": 32.74,
- "positive_rate": 0.031,
- "tests_units": "tests performed",
- "stringency_index": 57.41
- },
- {
- "date": "2020-08-09",
- "total_cases": 74951.0,
- "new_cases": 304.0,
- "new_cases_smoothed": 623.714,
- "total_deaths": 9741.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 6467.082,
- "new_cases_per_million": 26.23,
- "new_cases_smoothed_per_million": 53.817,
- "total_deaths_per_million": 840.494,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.37,
- "new_tests": 9959.0,
- "total_tests": 1883157.0,
- "total_tests_per_thousand": 162.487,
- "new_tests_per_thousand": 0.859,
- "new_tests_smoothed": 20196.0,
- "new_tests_smoothed_per_thousand": 1.743,
- "tests_per_case": 32.38,
- "positive_rate": 0.031,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-08-10",
- "total_cases": 75073.0,
- "new_cases": 122.0,
- "new_cases_smoothed": 620.0,
- "total_deaths": 9746.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 6477.609,
- "new_cases_per_million": 10.527,
- "new_cases_smoothed_per_million": 53.496,
- "total_deaths_per_million": 840.925,
- "new_deaths_per_million": 0.431,
- "new_deaths_smoothed_per_million": 0.37,
- "new_tests": 17043.0,
- "total_tests": 1900200.0,
- "total_tests_per_thousand": 163.957,
- "new_tests_per_thousand": 1.471,
- "new_tests_smoothed": 20225.0,
- "new_tests_smoothed_per_thousand": 1.745,
- "tests_per_case": 32.621,
- "positive_rate": 0.031,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-08-11",
- "total_cases": 75946.0,
- "new_cases": 873.0,
- "new_cases_smoothed": 631.286,
- "total_deaths": 9757.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 5.429,
- "total_cases_per_million": 6552.935,
- "new_cases_per_million": 75.326,
- "new_cases_smoothed_per_million": 54.47,
- "total_deaths_per_million": 841.874,
- "new_deaths_per_million": 0.949,
- "new_deaths_smoothed_per_million": 0.468,
- "new_tests": 25664.0,
- "total_tests": 1925864.0,
- "total_tests_per_thousand": 166.172,
- "new_tests_per_thousand": 2.214,
- "new_tests_smoothed": 20254.0,
- "new_tests_smoothed_per_thousand": 1.748,
- "tests_per_case": 32.084,
- "positive_rate": 0.031,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-08-12",
- "total_cases": 76664.0,
- "new_cases": 718.0,
- "new_cases_smoothed": 617.714,
- "total_deaths": 9770.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 6614.887,
- "new_cases_per_million": 61.952,
- "new_cases_smoothed_per_million": 53.299,
- "total_deaths_per_million": 842.996,
- "new_deaths_per_million": 1.122,
- "new_deaths_smoothed_per_million": 0.567,
- "new_tests": 22075.0,
- "total_tests": 1947939.0,
- "total_tests_per_thousand": 168.076,
- "new_tests_per_thousand": 1.905,
- "new_tests_smoothed": 19637.0,
- "new_tests_smoothed_per_thousand": 1.694,
- "tests_per_case": 31.79,
- "positive_rate": 0.031,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-13",
- "total_cases": 77273.0,
- "new_cases": 609.0,
- "new_cases_smoothed": 595.143,
- "total_deaths": 9781.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 7.429,
- "total_cases_per_million": 6667.434,
- "new_cases_per_million": 52.547,
- "new_cases_smoothed_per_million": 51.351,
- "total_deaths_per_million": 843.945,
- "new_deaths_per_million": 0.949,
- "new_deaths_smoothed_per_million": 0.641,
- "new_tests": 21861.0,
- "total_tests": 1969800.0,
- "total_tests_per_thousand": 169.962,
- "new_tests_per_thousand": 1.886,
- "new_tests_smoothed": 19445.0,
- "new_tests_smoothed_per_thousand": 1.678,
- "tests_per_case": 32.673,
- "positive_rate": 0.031,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-14",
- "total_cases": 77942.0,
- "new_cases": 669.0,
- "new_cases_smoothed": 580.857,
- "total_deaths": 9793.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 6725.158,
- "new_cases_per_million": 57.724,
- "new_cases_smoothed_per_million": 50.119,
- "total_deaths_per_million": 844.981,
- "new_deaths_per_million": 1.035,
- "new_deaths_smoothed_per_million": 0.74,
- "new_tests": 18681.0,
- "total_tests": 1988481.0,
- "total_tests_per_thousand": 171.574,
- "new_tests_per_thousand": 1.612,
- "new_tests_smoothed": 18852.0,
- "new_tests_smoothed_per_thousand": 1.627,
- "tests_per_case": 32.455,
- "positive_rate": 0.031,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-15",
- "total_cases": 78529.0,
- "new_cases": 587.0,
- "new_cases_smoothed": 554.571,
- "total_deaths": 9805.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 9.429,
- "total_cases_per_million": 6775.807,
- "new_cases_per_million": 50.649,
- "new_cases_smoothed_per_million": 47.851,
- "total_deaths_per_million": 846.016,
- "new_deaths_per_million": 1.035,
- "new_deaths_smoothed_per_million": 0.814,
- "new_tests": 12986.0,
- "total_tests": 2001467.0,
- "total_tests_per_thousand": 172.695,
- "new_tests_per_thousand": 1.12,
- "new_tests_smoothed": 18324.0,
- "new_tests_smoothed_per_thousand": 1.581,
- "tests_per_case": 33.042,
- "positive_rate": 0.03,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-16",
- "total_cases": 78692.0,
- "new_cases": 163.0,
- "new_cases_smoothed": 534.429,
- "total_deaths": 9814.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 10.429,
- "total_cases_per_million": 6789.871,
- "new_cases_per_million": 14.064,
- "new_cases_smoothed_per_million": 46.113,
- "total_deaths_per_million": 846.793,
- "new_deaths_per_million": 0.777,
- "new_deaths_smoothed_per_million": 0.9,
- "new_tests": 8934.0,
- "total_tests": 2010401.0,
- "total_tests_per_thousand": 173.466,
- "new_tests_per_thousand": 0.771,
- "new_tests_smoothed": 18178.0,
- "new_tests_smoothed_per_thousand": 1.568,
- "tests_per_case": 34.014,
- "positive_rate": 0.028999999999999998,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-17",
- "total_cases": 78824.0,
- "new_cases": 132.0,
- "new_cases_smoothed": 535.857,
- "total_deaths": 9821.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 10.714,
- "total_cases_per_million": 6801.261,
- "new_cases_per_million": 11.39,
- "new_cases_smoothed_per_million": 46.236,
- "total_deaths_per_million": 847.396,
- "new_deaths_per_million": 0.604,
- "new_deaths_smoothed_per_million": 0.924,
- "new_tests": 17998.0,
- "total_tests": 2028399.0,
- "total_tests_per_thousand": 175.019,
- "new_tests_per_thousand": 1.553,
- "new_tests_smoothed": 18314.0,
- "new_tests_smoothed_per_thousand": 1.58,
- "tests_per_case": 34.177,
- "positive_rate": 0.028999999999999998,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-18",
- "total_cases": 79531.0,
- "new_cases": 707.0,
- "new_cases_smoothed": 512.143,
- "total_deaths": 9828.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 10.143,
- "total_cases_per_million": 6862.264,
- "new_cases_per_million": 61.003,
- "new_cases_smoothed_per_million": 44.19,
- "total_deaths_per_million": 848.0,
- "new_deaths_per_million": 0.604,
- "new_deaths_smoothed_per_million": 0.875,
- "new_tests": 27119.0,
- "total_tests": 2055518.0,
- "total_tests_per_thousand": 177.359,
- "new_tests_per_thousand": 2.34,
- "new_tests_smoothed": 18522.0,
- "new_tests_smoothed_per_thousand": 1.598,
- "tests_per_case": 36.166,
- "positive_rate": 0.027999999999999997,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-19",
- "total_cases": 80256.0,
- "new_cases": 725.0,
- "new_cases_smoothed": 513.143,
- "total_deaths": 9839.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 9.857,
- "total_cases_per_million": 6924.82,
- "new_cases_per_million": 62.556,
- "new_cases_smoothed_per_million": 44.276,
- "total_deaths_per_million": 848.95,
- "new_deaths_per_million": 0.949,
- "new_deaths_smoothed_per_million": 0.851,
- "new_tests": 23089.0,
- "total_tests": 2078607.0,
- "total_tests_per_thousand": 179.351,
- "new_tests_per_thousand": 1.992,
- "new_tests_smoothed": 18667.0,
- "new_tests_smoothed_per_thousand": 1.611,
- "tests_per_case": 36.378,
- "positive_rate": 0.027000000000000003,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-20",
- "total_cases": 80868.0,
- "new_cases": 612.0,
- "new_cases_smoothed": 513.571,
- "total_deaths": 9849.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 9.714,
- "total_cases_per_million": 6977.625,
- "new_cases_per_million": 52.806,
- "new_cases_smoothed_per_million": 44.313,
- "total_deaths_per_million": 849.812,
- "new_deaths_per_million": 0.863,
- "new_deaths_smoothed_per_million": 0.838,
- "new_tests": 23864.0,
- "total_tests": 2102471.0,
- "total_tests_per_thousand": 181.41,
- "new_tests_per_thousand": 2.059,
- "new_tests_smoothed": 18953.0,
- "new_tests_smoothed_per_thousand": 1.635,
- "tests_per_case": 36.904,
- "positive_rate": 0.027000000000000003,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-21",
- "total_cases": 81449.0,
- "new_cases": 581.0,
- "new_cases_smoothed": 501.0,
- "total_deaths": 9853.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 7027.757,
- "new_cases_per_million": 50.131,
- "new_cases_smoothed_per_million": 43.228,
- "total_deaths_per_million": 850.158,
- "new_deaths_per_million": 0.345,
- "new_deaths_smoothed_per_million": 0.74,
- "new_tests": 20820.0,
- "total_tests": 2123291.0,
- "total_tests_per_thousand": 183.206,
- "new_tests_per_thousand": 1.796,
- "new_tests_smoothed": 19259.0,
- "new_tests_smoothed_per_thousand": 1.662,
- "tests_per_case": 38.441,
- "positive_rate": 0.026000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-22",
- "total_cases": 81959.0,
- "new_cases": 510.0,
- "new_cases_smoothed": 490.0,
- "total_deaths": 9856.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 7.286,
- "total_cases_per_million": 7071.761,
- "new_cases_per_million": 44.005,
- "new_cases_smoothed_per_million": 42.279,
- "total_deaths_per_million": 850.416,
- "new_deaths_per_million": 0.259,
- "new_deaths_smoothed_per_million": 0.629,
- "new_tests": 15636.0,
- "total_tests": 2138927.0,
- "total_tests_per_thousand": 184.555,
- "new_tests_per_thousand": 1.349,
- "new_tests_smoothed": 19637.0,
- "new_tests_smoothed_per_thousand": 1.694,
- "tests_per_case": 40.076,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-23",
- "total_cases": 82162.0,
- "new_cases": 203.0,
- "new_cases_smoothed": 495.714,
- "total_deaths": 9861.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 6.714,
- "total_cases_per_million": 7089.277,
- "new_cases_per_million": 17.516,
- "new_cases_smoothed_per_million": 42.772,
- "total_deaths_per_million": 850.848,
- "new_deaths_per_million": 0.431,
- "new_deaths_smoothed_per_million": 0.579,
- "new_tests": 8531.0,
- "total_tests": 2147458.0,
- "total_tests_per_thousand": 185.292,
- "new_tests_per_thousand": 0.736,
- "new_tests_smoothed": 19580.0,
- "new_tests_smoothed_per_thousand": 1.689,
- "tests_per_case": 39.499,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-24",
- "total_cases": 82277.0,
- "new_cases": 115.0,
- "new_cases_smoothed": 493.286,
- "total_deaths": 9864.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 6.143,
- "total_cases_per_million": 7099.2,
- "new_cases_per_million": 9.923,
- "new_cases_smoothed_per_million": 42.563,
- "total_deaths_per_million": 851.107,
- "new_deaths_per_million": 0.259,
- "new_deaths_smoothed_per_million": 0.53,
- "new_tests": 17610.0,
- "total_tests": 2165068.0,
- "total_tests_per_thousand": 186.811,
- "new_tests_per_thousand": 1.519,
- "new_tests_smoothed": 19524.0,
- "new_tests_smoothed_per_thousand": 1.685,
- "tests_per_case": 39.579,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-25",
- "total_cases": 82885.0,
- "new_cases": 608.0,
- "new_cases_smoothed": 479.143,
- "total_deaths": 9869.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.857,
- "total_cases_per_million": 7151.661,
- "new_cases_per_million": 52.461,
- "new_cases_smoothed_per_million": 41.342,
- "total_deaths_per_million": 851.538,
- "new_deaths_per_million": 0.431,
- "new_deaths_smoothed_per_million": 0.505,
- "new_tests": 27043.0,
- "total_tests": 2192111.0,
- "total_tests_per_thousand": 189.144,
- "new_tests_per_thousand": 2.333,
- "new_tests_smoothed": 19513.0,
- "new_tests_smoothed_per_thousand": 1.684,
- "tests_per_case": 40.725,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-26",
- "total_cases": 83412.0,
- "new_cases": 527.0,
- "new_cases_smoothed": 450.857,
- "total_deaths": 9874.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 7197.132,
- "new_cases_per_million": 45.472,
- "new_cases_smoothed_per_million": 38.902,
- "total_deaths_per_million": 851.97,
- "new_deaths_per_million": 0.431,
- "new_deaths_smoothed_per_million": 0.431,
- "new_tests": 24607.0,
- "total_tests": 2216718.0,
- "total_tests_per_thousand": 191.268,
- "new_tests_per_thousand": 2.123,
- "new_tests_smoothed": 19730.0,
- "new_tests_smoothed_per_thousand": 1.702,
- "tests_per_case": 43.761,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-27",
- "total_cases": 83938.0,
- "new_cases": 526.0,
- "new_cases_smoothed": 438.571,
- "total_deaths": 9878.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 7242.518,
- "new_cases_per_million": 45.385,
- "new_cases_smoothed_per_million": 37.842,
- "total_deaths_per_million": 852.315,
- "new_deaths_per_million": 0.345,
- "new_deaths_smoothed_per_million": 0.357,
- "new_tests": 21318.0,
- "total_tests": 2238036.0,
- "total_tests_per_thousand": 193.107,
- "new_tests_per_thousand": 1.839,
- "new_tests_smoothed": 19366.0,
- "new_tests_smoothed_per_thousand": 1.671,
- "tests_per_case": 44.157,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 50.93
- },
- {
- "date": "2020-08-28",
- "total_cases": 84473.0,
- "new_cases": 535.0,
- "new_cases_smoothed": 432.0,
- "total_deaths": 9881.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 7288.68,
- "new_cases_per_million": 46.162,
- "new_cases_smoothed_per_million": 37.275,
- "total_deaths_per_million": 852.574,
- "new_deaths_per_million": 0.259,
- "new_deaths_smoothed_per_million": 0.345,
- "new_tests": 25125.0,
- "total_tests": 2263161.0,
- "total_tests_per_thousand": 195.275,
- "new_tests_per_thousand": 2.168,
- "new_tests_smoothed": 19981.0,
- "new_tests_smoothed_per_thousand": 1.724,
- "tests_per_case": 46.251999999999995,
- "positive_rate": 0.022000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 50.93
- },
- {
- "date": "2020-08-29",
- "total_cases": 85087.0,
- "new_cases": 614.0,
- "new_cases_smoothed": 446.857,
- "total_deaths": 9885.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 7341.658,
- "new_cases_per_million": 52.978,
- "new_cases_smoothed_per_million": 38.557,
- "total_deaths_per_million": 852.919,
- "new_deaths_per_million": 0.345,
- "new_deaths_smoothed_per_million": 0.357,
- "new_tests": 19063.0,
- "total_tests": 2282224.0,
- "total_tests_per_thousand": 196.92,
- "new_tests_per_thousand": 1.645,
- "new_tests_smoothed": 20471.0,
- "new_tests_smoothed_per_thousand": 1.766,
- "tests_per_case": 45.81100000000001,
- "positive_rate": 0.022000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 50.93
- },
- {
- "date": "2020-08-30",
- "total_cases": 85282.0,
- "new_cases": 195.0,
- "new_cases_smoothed": 445.714,
- "total_deaths": 9891.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 7358.484,
- "new_cases_per_million": 16.825,
- "new_cases_smoothed_per_million": 38.458,
- "total_deaths_per_million": 853.436,
- "new_deaths_per_million": 0.518,
- "new_deaths_smoothed_per_million": 0.37,
- "new_tests": 10600.0,
- "total_tests": 2292824.0,
- "total_tests_per_thousand": 197.834,
- "new_tests_per_thousand": 0.915,
- "new_tests_smoothed": 20767.0,
- "new_tests_smoothed_per_thousand": 1.792,
- "tests_per_case": 46.593,
- "positive_rate": 0.021,
- "tests_units": "tests performed",
- "stringency_index": 50.93
- },
- {
- "date": "2020-08-31",
- "total_cases": 85399.0,
- "new_cases": 117.0,
- "new_cases_smoothed": 446.0,
- "total_deaths": 9892.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 7368.579,
- "new_cases_per_million": 10.095,
- "new_cases_smoothed_per_million": 38.483,
- "total_deaths_per_million": 853.523,
- "new_deaths_per_million": 0.086,
- "new_deaths_smoothed_per_million": 0.345,
- "new_tests": 19658.0,
- "total_tests": 2312482.0,
- "total_tests_per_thousand": 199.531,
- "new_tests_per_thousand": 1.696,
- "new_tests_smoothed": 21059.0,
- "new_tests_smoothed_per_thousand": 1.817,
- "tests_per_case": 47.217,
- "positive_rate": 0.021,
- "tests_units": "tests performed",
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-01",
- "total_cases": 86033.0,
- "new_cases": 634.0,
- "new_cases_smoothed": 449.714,
- "total_deaths": 9895.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 7423.283,
- "new_cases_per_million": 54.704,
- "new_cases_smoothed_per_million": 38.803,
- "total_deaths_per_million": 853.782,
- "new_deaths_per_million": 0.259,
- "new_deaths_smoothed_per_million": 0.32,
- "new_tests": 28223.0,
- "total_tests": 2340705.0,
- "total_tests_per_thousand": 201.966,
- "new_tests_per_thousand": 2.435,
- "new_tests_smoothed": 21228.0,
- "new_tests_smoothed_per_thousand": 1.832,
- "tests_per_case": 47.203,
- "positive_rate": 0.021,
- "tests_units": "tests performed",
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-02",
- "total_cases": 86598.0,
- "new_cases": 565.0,
- "new_cases_smoothed": 455.143,
- "total_deaths": 9898.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 7472.034,
- "new_cases_per_million": 48.751,
- "new_cases_smoothed_per_million": 39.272,
- "total_deaths_per_million": 854.04,
- "new_deaths_per_million": 0.259,
- "new_deaths_smoothed_per_million": 0.296,
- "new_tests": 30077.0,
- "total_tests": 2370782.0,
- "total_tests_per_thousand": 204.561,
- "new_tests_per_thousand": 2.595,
- "new_tests_smoothed": 22009.0,
- "new_tests_smoothed_per_thousand": 1.899,
- "tests_per_case": 48.356,
- "positive_rate": 0.021,
- "tests_units": "tests performed",
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-03",
- "total_cases": 87173.0,
- "new_cases": 575.0,
- "new_cases_smoothed": 462.143,
- "total_deaths": 9900.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 7521.647,
- "new_cases_per_million": 49.613,
- "new_cases_smoothed_per_million": 39.876,
- "total_deaths_per_million": 854.213,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.271,
- "new_tests": 24024.0,
- "total_tests": 2394806.0,
- "total_tests_per_thousand": 206.634,
- "new_tests_per_thousand": 2.073,
- "new_tests_smoothed": 22396.0,
- "new_tests_smoothed_per_thousand": 1.932,
- "tests_per_case": 48.461000000000006,
- "positive_rate": 0.021,
- "tests_units": "tests performed",
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-04",
- "total_cases": 87850.0,
- "new_cases": 677.0,
- "new_cases_smoothed": 482.429,
- "total_deaths": 9904.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 7580.061,
- "new_cases_per_million": 58.414,
- "new_cases_smoothed_per_million": 41.626,
- "total_deaths_per_million": 854.558,
- "new_deaths_per_million": 0.345,
- "new_deaths_smoothed_per_million": 0.284,
- "new_tests": 26585.0,
- "total_tests": 2421391.0,
- "total_tests_per_thousand": 208.928,
- "new_tests_per_thousand": 2.294,
- "new_tests_smoothed": 22604.0,
- "new_tests_smoothed_per_thousand": 1.95,
- "tests_per_case": 46.855,
- "positive_rate": 0.021,
- "tests_units": "tests performed",
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-05",
- "total_cases": 88578.0,
- "new_cases": 728.0,
- "new_cases_smoothed": 498.714,
- "total_deaths": 9906.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 7642.876,
- "new_cases_per_million": 62.815,
- "new_cases_smoothed_per_million": 43.031,
- "total_deaths_per_million": 854.731,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.259,
- "new_tests": 19742.0,
- "total_tests": 2441133.0,
- "total_tests_per_thousand": 210.631,
- "new_tests_per_thousand": 1.703,
- "new_tests_smoothed": 22701.0,
- "new_tests_smoothed_per_thousand": 1.959,
- "tests_per_case": 45.519,
- "positive_rate": 0.022000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-06",
- "total_cases": 88900.0,
- "new_cases": 322.0,
- "new_cases_smoothed": 516.857,
- "total_deaths": 9907.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 7670.66,
- "new_cases_per_million": 27.783,
- "new_cases_smoothed_per_million": 44.597,
- "total_deaths_per_million": 854.817,
- "new_deaths_per_million": 0.086,
- "new_deaths_smoothed_per_million": 0.197,
- "new_tests": 10970.0,
- "total_tests": 2452103.0,
- "total_tests_per_thousand": 211.578,
- "new_tests_per_thousand": 0.947,
- "new_tests_smoothed": 22754.0,
- "new_tests_smoothed_per_thousand": 1.963,
- "tests_per_case": 44.023999999999994,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-07",
- "total_cases": 89055.0,
- "new_cases": 155.0,
- "new_cases_smoothed": 522.286,
- "total_deaths": 9909.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 7684.034,
- "new_cases_per_million": 13.374,
- "new_cases_smoothed_per_million": 45.065,
- "total_deaths_per_million": 854.99,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.21,
- "new_tests": 23133.0,
- "total_tests": 2475236.0,
- "total_tests_per_thousand": 213.574,
- "new_tests_per_thousand": 1.996,
- "new_tests_smoothed": 23251.0,
- "new_tests_smoothed_per_thousand": 2.006,
- "tests_per_case": 44.518,
- "positive_rate": 0.022000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-08",
- "total_cases": 89973.0,
- "new_cases": 918.0,
- "new_cases_smoothed": 562.857,
- "total_deaths": 9913.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 7763.243,
- "new_cases_per_million": 79.209,
- "new_cases_smoothed_per_million": 48.566,
- "total_deaths_per_million": 855.335,
- "new_deaths_per_million": 0.345,
- "new_deaths_smoothed_per_million": 0.222,
- "new_tests": 35122.0,
- "total_tests": 2510358.0,
- "total_tests_per_thousand": 216.604,
- "new_tests_per_thousand": 3.03,
- "new_tests_smoothed": 24236.0,
- "new_tests_smoothed_per_thousand": 2.091,
- "tests_per_case": 43.059,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-09",
- "total_cases": 90844.0,
- "new_cases": 871.0,
- "new_cases_smoothed": 606.571,
- "total_deaths": 9916.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 7838.396,
- "new_cases_per_million": 75.153,
- "new_cases_smoothed_per_million": 52.337,
- "total_deaths_per_million": 855.593,
- "new_deaths_per_million": 0.259,
- "new_deaths_smoothed_per_million": 0.222,
- "new_tests": 35092.0,
- "total_tests": 2545450.0,
- "total_tests_per_thousand": 219.632,
- "new_tests_per_thousand": 3.028,
- "new_tests_smoothed": 24953.0,
- "new_tests_smoothed_per_thousand": 2.153,
- "tests_per_case": 41.138000000000005,
- "positive_rate": 0.024,
- "tests_units": "tests performed",
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-10",
- "total_cases": 91867.0,
- "new_cases": 1023.0,
- "new_cases_smoothed": 670.571,
- "total_deaths": 9918.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 7926.665,
- "new_cases_per_million": 88.269,
- "new_cases_smoothed_per_million": 57.86,
- "total_deaths_per_million": 855.766,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.222,
- "new_tests": 36263.0,
- "total_tests": 2581713.0,
- "total_tests_per_thousand": 222.761,
- "new_tests_per_thousand": 3.129,
- "new_tests_smoothed": 26701.0,
- "new_tests_smoothed_per_thousand": 2.304,
- "tests_per_case": 39.818000000000005,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-11",
- "total_cases": 93010.0,
- "new_cases": 1143.0,
- "new_cases_smoothed": 737.143,
- "total_deaths": 9921.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 8025.287,
- "new_cases_per_million": 98.623,
- "new_cases_smoothed_per_million": 63.604,
- "total_deaths_per_million": 856.025,
- "new_deaths_per_million": 0.259,
- "new_deaths_smoothed_per_million": 0.21,
- "new_tests": 38054.0,
- "total_tests": 2619767.0,
- "total_tests_per_thousand": 226.044,
- "new_tests_per_thousand": 3.283,
- "new_tests_smoothed": 28339.0,
- "new_tests_smoothed_per_thousand": 2.445,
- "tests_per_case": 38.444,
- "positive_rate": 0.026000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-12",
- "total_cases": 94294.0,
- "new_cases": 1284.0,
- "new_cases_smoothed": 816.571,
- "total_deaths": 9926.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 8136.076,
- "new_cases_per_million": 110.789,
- "new_cases_smoothed_per_million": 70.457,
- "total_deaths_per_million": 856.456,
- "new_deaths_per_million": 0.431,
- "new_deaths_smoothed_per_million": 0.247,
- "new_tests": 27131.0,
- "total_tests": 2646898.0,
- "total_tests_per_thousand": 228.385,
- "new_tests_per_thousand": 2.341,
- "new_tests_smoothed": 29395.0,
- "new_tests_smoothed_per_thousand": 2.536,
- "tests_per_case": 35.998000000000005,
- "positive_rate": 0.027999999999999997,
- "tests_units": "tests performed",
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-13",
- "total_cases": 94912.0,
- "new_cases": 618.0,
- "new_cases_smoothed": 858.857,
- "total_deaths": 9927.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 8189.4,
- "new_cases_per_million": 53.324,
- "new_cases_smoothed_per_million": 74.106,
- "total_deaths_per_million": 856.543,
- "new_deaths_per_million": 0.086,
- "new_deaths_smoothed_per_million": 0.247,
- "new_tests": 19177.0,
- "total_tests": 2666075.0,
- "total_tests_per_thousand": 230.04,
- "new_tests_per_thousand": 1.655,
- "new_tests_smoothed": 30567.0,
- "new_tests_smoothed_per_thousand": 2.637,
- "tests_per_case": 35.59,
- "positive_rate": 0.027999999999999997,
- "tests_units": "tests performed",
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-14",
- "total_cases": 95214.0,
- "new_cases": 302.0,
- "new_cases_smoothed": 879.857,
- "total_deaths": 9928.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 8215.458,
- "new_cases_per_million": 26.058,
- "new_cases_smoothed_per_million": 75.918,
- "total_deaths_per_million": 856.629,
- "new_deaths_per_million": 0.086,
- "new_deaths_smoothed_per_million": 0.234,
- "new_tests": 29310.0,
- "total_tests": 2695385.0,
- "total_tests_per_thousand": 232.569,
- "new_tests_per_thousand": 2.529,
- "new_tests_smoothed": 31450.0,
- "new_tests_smoothed_per_thousand": 2.714,
- "tests_per_case": 35.744,
- "positive_rate": 0.027999999999999997,
- "tests_units": "tests performed",
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-15",
- "total_cases": 96938.0,
- "new_cases": 1724.0,
- "new_cases_smoothed": 995.0,
- "total_deaths": 9932.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 8364.212,
- "new_cases_per_million": 148.754,
- "new_cases_smoothed_per_million": 85.853,
- "total_deaths_per_million": 856.974,
- "new_deaths_per_million": 0.345,
- "new_deaths_smoothed_per_million": 0.234,
- "new_tests": 42313.0,
- "total_tests": 2737698.0,
- "total_tests_per_thousand": 236.22,
- "new_tests_per_thousand": 3.651,
- "new_tests_smoothed": 32477.0,
- "new_tests_smoothed_per_thousand": 2.802,
- "tests_per_case": 32.64,
- "positive_rate": 0.031,
- "tests_units": "tests performed",
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-16",
- "total_cases": 98566.0,
- "new_cases": 1628.0,
- "new_cases_smoothed": 1103.143,
- "total_deaths": 9935.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 8504.682,
- "new_cases_per_million": 140.471,
- "new_cases_smoothed_per_million": 95.184,
- "total_deaths_per_million": 857.233,
- "new_deaths_per_million": 0.259,
- "new_deaths_smoothed_per_million": 0.234,
- "new_tests": 46691.0,
- "total_tests": 2784389.0,
- "total_tests_per_thousand": 240.249,
- "new_tests_per_thousand": 4.029,
- "new_tests_smoothed": 34134.0,
- "new_tests_smoothed_per_thousand": 2.945,
- "tests_per_case": 30.943,
- "positive_rate": 0.032,
- "tests_units": "tests performed",
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-17",
- "total_cases": 100507.0,
- "new_cases": 1941.0,
- "new_cases_smoothed": 1234.286,
- "total_deaths": 9937.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 8672.16,
- "new_cases_per_million": 167.478,
- "new_cases_smoothed_per_million": 106.499,
- "total_deaths_per_million": 857.405,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.234,
- "new_tests": 43229.0,
- "total_tests": 2827618.0,
- "total_tests_per_thousand": 243.979,
- "new_tests_per_thousand": 3.73,
- "new_tests_smoothed": 35129.0,
- "new_tests_smoothed_per_thousand": 3.031,
- "tests_per_case": 28.461,
- "positive_rate": 0.035,
- "tests_units": "tests performed",
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-18",
- "total_cases": 102252.0,
- "new_cases": 1745.0,
- "new_cases_smoothed": 1320.286,
- "total_deaths": 9938.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 8822.725,
- "new_cases_per_million": 150.566,
- "new_cases_smoothed_per_million": 113.92,
- "total_deaths_per_million": 857.492,
- "new_deaths_per_million": 0.086,
- "new_deaths_smoothed_per_million": 0.21,
- "new_tests": 41484.0,
- "total_tests": 2869102.0,
- "total_tests_per_thousand": 247.558,
- "new_tests_per_thousand": 3.579,
- "new_tests_smoothed": 35619.0,
- "new_tests_smoothed_per_thousand": 3.073,
- "tests_per_case": 26.978,
- "positive_rate": 0.037000000000000005,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-19",
- "total_cases": 103977.0,
- "new_cases": 1725.0,
- "new_cases_smoothed": 1383.286,
- "total_deaths": 9943.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 8971.566,
- "new_cases_per_million": 148.84,
- "new_cases_smoothed_per_million": 119.356,
- "total_deaths_per_million": 857.923,
- "new_deaths_per_million": 0.431,
- "new_deaths_smoothed_per_million": 0.21,
- "new_tests": 26464.0,
- "total_tests": 2895566.0,
- "total_tests_per_thousand": 249.841,
- "new_tests_per_thousand": 2.283,
- "new_tests_smoothed": 35524.0,
- "new_tests_smoothed_per_thousand": 3.065,
- "tests_per_case": 25.680999999999997,
- "positive_rate": 0.039,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-20",
- "total_cases": 104850.0,
- "new_cases": 873.0,
- "new_cases_smoothed": 1419.714,
- "total_deaths": 9951.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 9046.892,
- "new_cases_per_million": 75.326,
- "new_cases_smoothed_per_million": 122.499,
- "total_deaths_per_million": 858.613,
- "new_deaths_per_million": 0.69,
- "new_deaths_smoothed_per_million": 0.296,
- "new_tests": 21969.0,
- "total_tests": 2917535.0,
- "total_tests_per_thousand": 251.737,
- "new_tests_per_thousand": 1.896,
- "new_tests_smoothed": 35923.0,
- "new_tests_smoothed_per_thousand": 3.1,
- "tests_per_case": 25.303,
- "positive_rate": 0.04,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-21",
- "total_cases": 105303.0,
- "new_cases": 453.0,
- "new_cases_smoothed": 1441.286,
- "total_deaths": 9954.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 9085.978,
- "new_cases_per_million": 39.087,
- "new_cases_smoothed_per_million": 124.36,
- "total_deaths_per_million": 858.872,
- "new_deaths_per_million": 0.259,
- "new_deaths_smoothed_per_million": 0.32,
- "new_tests": 34539.0,
- "total_tests": 2952074.0,
- "total_tests_per_thousand": 254.717,
- "new_tests_per_thousand": 2.98,
- "new_tests_smoothed": 36670.0,
- "new_tests_smoothed_per_thousand": 3.164,
- "tests_per_case": 25.443,
- "positive_rate": 0.039,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-22",
- "total_cases": 107273.0,
- "new_cases": 1970.0,
- "new_cases_smoothed": 1476.429,
- "total_deaths": 9957.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 9255.958,
- "new_cases_per_million": 169.98,
- "new_cases_smoothed_per_million": 127.392,
- "total_deaths_per_million": 859.131,
- "new_deaths_per_million": 0.259,
- "new_deaths_smoothed_per_million": 0.308,
- "new_tests": 40824.0,
- "total_tests": 2992898.0,
- "total_tests_per_thousand": 258.24,
- "new_tests_per_thousand": 3.522,
- "new_tests_smoothed": 36457.0,
- "new_tests_smoothed_per_thousand": 3.146,
- "tests_per_case": 24.693,
- "positive_rate": 0.04,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-23",
- "total_cases": 108427.0,
- "new_cases": 1154.0,
- "new_cases_smoothed": 1408.714,
- "total_deaths": 9958.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 9355.53,
- "new_cases_per_million": 99.572,
- "new_cases_smoothed_per_million": 121.55,
- "total_deaths_per_million": 859.217,
- "new_deaths_per_million": 0.086,
- "new_deaths_smoothed_per_million": 0.284,
- "new_tests": 33672.0,
- "total_tests": 3026570.0,
- "total_tests_per_thousand": 261.145,
- "new_tests_per_thousand": 2.905,
- "new_tests_smoothed": 34597.0,
- "new_tests_smoothed_per_thousand": 2.985,
- "tests_per_case": 24.559,
- "positive_rate": 0.040999999999999995,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-24",
- "total_cases": 108674.0,
- "new_cases": 247.0,
- "new_cases_smoothed": 1166.714,
- "total_deaths": 9964.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 9376.842,
- "new_cases_per_million": 21.312,
- "new_cases_smoothed_per_million": 100.669,
- "total_deaths_per_million": 859.735,
- "new_deaths_per_million": 0.518,
- "new_deaths_smoothed_per_million": 0.333
- },
- {
- "date": "2020-09-25",
- "total_cases": 108674.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 917.429,
- "total_deaths": 9965.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 9376.842,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 79.16,
- "total_deaths_per_million": 859.821,
- "new_deaths_per_million": 0.086,
- "new_deaths_smoothed_per_million": 0.333
- }
- ]
- },
- "BEN": {
- "continent": "Africa",
- "location": "Benin",
- "population": 12123198.0,
- "population_density": 99.11,
- "median_age": 18.8,
- "aged_65_older": 3.244,
- "aged_70_older": 1.942,
- "gdp_per_capita": 2064.236,
- "extreme_poverty": 49.6,
- "cardiovasc_death_rate": 235.848,
- "diabetes_prevalence": 0.99,
- "female_smokers": 0.6,
- "male_smokers": 12.3,
- "handwashing_facilities": 11.035,
- "hospital_beds_per_thousand": 0.5,
- "life_expectancy": 61.77,
- "human_development_index": 0.515,
- "data": [
- {
- "date": "2020-03-17",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.082,
- "new_cases_per_million": 0.082,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-03-18",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.082,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-03-19",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.082,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-03-20",
- "total_cases": 2.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.165,
- "new_cases_per_million": 0.082,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-03-21",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.165,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-03-22",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.165,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-03-23",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.165,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.024,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-03-24",
- "total_cases": 5.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.412,
- "new_cases_per_million": 0.247,
- "new_cases_smoothed_per_million": 0.047,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-03-25",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.412,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.047,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-03-26",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.412,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.047,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-03-27",
- "total_cases": 6.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.495,
- "new_cases_per_million": 0.082,
- "new_cases_smoothed_per_million": 0.047,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-03-28",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.495,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.047,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-03-29",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.495,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.047,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-03-30",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.495,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.047,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-03-31",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.495,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.012,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-04-01",
- "total_cases": 8.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.66,
- "new_cases_per_million": 0.165,
- "new_cases_smoothed_per_million": 0.035,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-04-02",
- "total_cases": 13.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.072,
- "new_cases_per_million": 0.412,
- "new_cases_smoothed_per_million": 0.094,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-04-03",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.072,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.082,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-04-04",
- "total_cases": 16.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.32,
- "new_cases_per_million": 0.247,
- "new_cases_smoothed_per_million": 0.118,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-04-05",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.32,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.118,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-04-06",
- "total_cases": 22.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.815,
- "new_cases_per_million": 0.495,
- "new_cases_smoothed_per_million": 0.189,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-04-07",
- "total_cases": 26.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2.145,
- "new_cases_per_million": 0.33,
- "new_cases_smoothed_per_million": 0.236,
- "total_deaths_per_million": 0.082,
- "new_deaths_per_million": 0.082,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 70.83
- },
- {
- "date": "2020-04-08",
- "total_cases": 26.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2.145,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.212,
- "total_deaths_per_million": 0.082,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 70.83
- },
- {
- "date": "2020-04-09",
- "total_cases": 26.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2.145,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.153,
- "total_deaths_per_million": 0.082,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 70.83
- },
- {
- "date": "2020-04-10",
- "total_cases": 30.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2.475,
- "new_cases_per_million": 0.33,
- "new_cases_smoothed_per_million": 0.2,
- "total_deaths_per_million": 0.082,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 70.83
- },
- {
- "date": "2020-04-11",
- "total_cases": 35.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2.887,
- "new_cases_per_million": 0.412,
- "new_cases_smoothed_per_million": 0.224,
- "total_deaths_per_million": 0.082,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 70.83
- },
- {
- "date": "2020-04-12",
- "total_cases": 35.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2.887,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.224,
- "total_deaths_per_million": 0.082,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 70.83
- },
- {
- "date": "2020-04-13",
- "total_cases": 35.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2.887,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.153,
- "total_deaths_per_million": 0.082,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 70.83
- },
- {
- "date": "2020-04-14",
- "total_cases": 35.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.887,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.106,
- "total_deaths_per_million": 0.082,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-04-15",
- "total_cases": 35.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.887,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.106,
- "total_deaths_per_million": 0.082,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-04-16",
- "total_cases": 35.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.887,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.106,
- "total_deaths_per_million": 0.082,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-04-17",
- "total_cases": 37.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.052,
- "new_cases_per_million": 0.165,
- "new_cases_smoothed_per_million": 0.082,
- "total_deaths_per_million": 0.082,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-04-18",
- "total_cases": 37.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.052,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.024,
- "total_deaths_per_million": 0.082,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-04-19",
- "total_cases": 37.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.052,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.024,
- "total_deaths_per_million": 0.082,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-04-20",
- "total_cases": 37.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.052,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.024,
- "total_deaths_per_million": 0.082,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-04-21",
- "total_cases": 54.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 4.454,
- "new_cases_per_million": 1.402,
- "new_cases_smoothed_per_million": 0.224,
- "total_deaths_per_million": 0.082,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-04-22",
- "total_cases": 54.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 4.454,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.224,
- "total_deaths_per_million": 0.082,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-04-23",
- "total_cases": 54.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 4.454,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.224,
- "total_deaths_per_million": 0.082,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-04-24",
- "total_cases": 58.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 4.784,
- "new_cases_per_million": 0.33,
- "new_cases_smoothed_per_million": 0.247,
- "total_deaths_per_million": 0.082,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-04-25",
- "total_cases": 58.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 4.784,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.247,
- "total_deaths_per_million": 0.082,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-04-26",
- "total_cases": 58.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 4.784,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.247,
- "total_deaths_per_million": 0.082,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-04-27",
- "total_cases": 64.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 3.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5.279,
- "new_cases_per_million": 0.495,
- "new_cases_smoothed_per_million": 0.318,
- "total_deaths_per_million": 0.082,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-04-28",
- "total_cases": 64.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5.279,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.118,
- "total_deaths_per_million": 0.082,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-04-29",
- "total_cases": 64.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5.279,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.118,
- "total_deaths_per_million": 0.082,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-04-30",
- "total_cases": 69.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 2.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 5.692,
- "new_cases_per_million": 0.412,
- "new_cases_smoothed_per_million": 0.177,
- "total_deaths_per_million": 0.165,
- "new_deaths_per_million": 0.082,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 70.83
- },
- {
- "date": "2020-05-01",
- "total_cases": 84.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 6.929,
- "new_cases_per_million": 1.237,
- "new_cases_smoothed_per_million": 0.306,
- "total_deaths_per_million": 0.165,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 70.83
- },
- {
- "date": "2020-05-02",
- "total_cases": 90.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 4.571,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 7.424,
- "new_cases_per_million": 0.495,
- "new_cases_smoothed_per_million": 0.377,
- "total_deaths_per_million": 0.165,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 70.83
- },
- {
- "date": "2020-05-03",
- "total_cases": 90.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.571,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 7.424,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.377,
- "total_deaths_per_million": 0.165,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 70.83
- },
- {
- "date": "2020-05-04",
- "total_cases": 90.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 7.424,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.306,
- "total_deaths_per_million": 0.165,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 70.83
- },
- {
- "date": "2020-05-05",
- "total_cases": 96.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 4.571,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 7.919,
- "new_cases_per_million": 0.495,
- "new_cases_smoothed_per_million": 0.377,
- "total_deaths_per_million": 0.165,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 70.83
- },
- {
- "date": "2020-05-06",
- "total_cases": 96.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.571,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 7.919,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.377,
- "total_deaths_per_million": 0.165,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 70.83
- },
- {
- "date": "2020-05-07",
- "total_cases": 102.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 4.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 8.414,
- "new_cases_per_million": 0.495,
- "new_cases_smoothed_per_million": 0.389,
- "total_deaths_per_million": 0.165,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-05-08",
- "total_cases": 140.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 8.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11.548,
- "new_cases_per_million": 3.134,
- "new_cases_smoothed_per_million": 0.66,
- "total_deaths_per_million": 0.165,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-05-09",
- "total_cases": 242.0,
- "new_cases": 102.0,
- "new_cases_smoothed": 21.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 19.962,
- "new_cases_per_million": 8.414,
- "new_cases_smoothed_per_million": 1.791,
- "total_deaths_per_million": 0.165,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-05-10",
- "total_cases": 284.0,
- "new_cases": 42.0,
- "new_cases_smoothed": 27.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 23.426,
- "new_cases_per_million": 3.464,
- "new_cases_smoothed_per_million": 2.286,
- "total_deaths_per_million": 0.165,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-05-11",
- "total_cases": 319.0,
- "new_cases": 35.0,
- "new_cases_smoothed": 32.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 26.313,
- "new_cases_per_million": 2.887,
- "new_cases_smoothed_per_million": 2.698,
- "total_deaths_per_million": 0.165,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-12",
- "total_cases": 319.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 31.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 26.313,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.628,
- "total_deaths_per_million": 0.165,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-13",
- "total_cases": 327.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 33.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 26.973,
- "new_cases_per_million": 0.66,
- "new_cases_smoothed_per_million": 2.722,
- "total_deaths_per_million": 0.165,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-14",
- "total_cases": 327.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 32.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 26.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.651,
- "total_deaths_per_million": 0.165,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-15",
- "total_cases": 339.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 28.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 27.963,
- "new_cases_per_million": 0.99,
- "new_cases_smoothed_per_million": 2.345,
- "total_deaths_per_million": 0.165,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-16",
- "total_cases": 339.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 13.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 27.963,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.143,
- "total_deaths_per_million": 0.165,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-17",
- "total_cases": 339.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 27.963,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.648,
- "total_deaths_per_million": 0.165,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 62.96
- },
- {
- "date": "2020-05-18",
- "total_cases": 339.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 27.963,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.236,
- "total_deaths_per_million": 0.165,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-19",
- "total_cases": 339.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 27.963,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.236,
- "total_deaths_per_million": 0.165,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-20",
- "total_cases": 130.0,
- "new_cases": -209.0,
- "new_cases_smoothed": -28.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.723,
- "new_cases_per_million": -17.24,
- "new_cases_smoothed_per_million": -2.321,
- "total_deaths_per_million": 0.165,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-21",
- "total_cases": 130.0,
- "new_cases": 0.0,
- "new_cases_smoothed": -28.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.723,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": -2.321,
- "total_deaths_per_million": 0.165,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-22",
- "total_cases": 135.0,
- "new_cases": 5.0,
- "new_cases_smoothed": -29.143,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 11.136,
- "new_cases_per_million": 0.412,
- "new_cases_smoothed_per_million": -2.404,
- "total_deaths_per_million": 0.247,
- "new_deaths_per_million": 0.082,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-23",
- "total_cases": 135.0,
- "new_cases": 0.0,
- "new_cases_smoothed": -29.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 11.136,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": -2.404,
- "total_deaths_per_million": 0.247,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-24",
- "total_cases": 135.0,
- "new_cases": 0.0,
- "new_cases_smoothed": -29.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 11.136,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": -2.404,
- "total_deaths_per_million": 0.247,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-25",
- "total_cases": 191.0,
- "new_cases": 56.0,
- "new_cases_smoothed": -21.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 15.755,
- "new_cases_per_million": 4.619,
- "new_cases_smoothed_per_million": -1.744,
- "total_deaths_per_million": 0.247,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-26",
- "total_cases": 191.0,
- "new_cases": 0.0,
- "new_cases_smoothed": -21.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 15.755,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": -1.744,
- "total_deaths_per_million": 0.247,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-27",
- "total_cases": 208.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 11.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 17.157,
- "new_cases_per_million": 1.402,
- "new_cases_smoothed_per_million": 0.919,
- "total_deaths_per_million": 0.247,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-28",
- "total_cases": 210.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 11.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 17.322,
- "new_cases_per_million": 0.165,
- "new_cases_smoothed_per_million": 0.943,
- "total_deaths_per_million": 0.247,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-29",
- "total_cases": 210.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 10.714,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 17.322,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.884,
- "total_deaths_per_million": 0.247,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-30",
- "total_cases": 224.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 12.714,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 18.477,
- "new_cases_per_million": 1.155,
- "new_cases_smoothed_per_million": 1.049,
- "total_deaths_per_million": 0.247,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-31",
- "total_cases": 232.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 13.857,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 19.137,
- "new_cases_per_million": 0.66,
- "new_cases_smoothed_per_million": 1.143,
- "total_deaths_per_million": 0.247,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-01",
- "total_cases": 232.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.857,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 19.137,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.483,
- "total_deaths_per_million": 0.247,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-02",
- "total_cases": 243.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 7.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 20.044,
- "new_cases_per_million": 0.907,
- "new_cases_smoothed_per_million": 0.613,
- "total_deaths_per_million": 0.247,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-03",
- "total_cases": 244.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 20.127,
- "new_cases_per_million": 0.082,
- "new_cases_smoothed_per_million": 0.424,
- "total_deaths_per_million": 0.247,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-04",
- "total_cases": 244.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.857,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 20.127,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.401,
- "total_deaths_per_million": 0.247,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-05",
- "total_cases": 261.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 7.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 21.529,
- "new_cases_per_million": 1.402,
- "new_cases_smoothed_per_million": 0.601,
- "total_deaths_per_million": 0.247,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-06",
- "total_cases": 261.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 21.529,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.436,
- "total_deaths_per_million": 0.247,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-07",
- "total_cases": 268.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 4.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 22.106,
- "new_cases_per_million": 0.577,
- "new_cases_smoothed_per_million": 0.424,
- "total_deaths_per_million": 0.33,
- "new_deaths_per_million": 0.082,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-08",
- "total_cases": 268.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 22.106,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.424,
- "total_deaths_per_million": 0.33,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-09",
- "total_cases": 305.0,
- "new_cases": 37.0,
- "new_cases_smoothed": 8.857,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 25.158,
- "new_cases_per_million": 3.052,
- "new_cases_smoothed_per_million": 0.731,
- "total_deaths_per_million": 0.33,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-10",
- "total_cases": 305.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 8.714,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 25.158,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.719,
- "total_deaths_per_million": 0.33,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-11",
- "total_cases": 305.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 8.714,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 25.158,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.719,
- "total_deaths_per_million": 0.33,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-12",
- "total_cases": 305.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.286,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 25.158,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.518,
- "total_deaths_per_million": 0.33,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-13",
- "total_cases": 388.0,
- "new_cases": 83.0,
- "new_cases_smoothed": 18.143,
- "total_deaths": 5.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 32.005,
- "new_cases_per_million": 6.846,
- "new_cases_smoothed_per_million": 1.497,
- "total_deaths_per_million": 0.412,
- "new_deaths_per_million": 0.082,
- "new_deaths_smoothed_per_million": 0.024,
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-14",
- "total_cases": 412.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 20.571,
- "total_deaths": 6.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 33.984,
- "new_cases_per_million": 1.98,
- "new_cases_smoothed_per_million": 1.697,
- "total_deaths_per_million": 0.495,
- "new_deaths_per_million": 0.082,
- "new_deaths_smoothed_per_million": 0.024,
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-15",
- "total_cases": 470.0,
- "new_cases": 58.0,
- "new_cases_smoothed": 28.857,
- "total_deaths": 7.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 38.769,
- "new_cases_per_million": 4.784,
- "new_cases_smoothed_per_million": 2.38,
- "total_deaths_per_million": 0.577,
- "new_deaths_per_million": 0.082,
- "new_deaths_smoothed_per_million": 0.035,
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-16",
- "total_cases": 483.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 25.429,
- "total_deaths": 9.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 39.841,
- "new_cases_per_million": 1.072,
- "new_cases_smoothed_per_million": 2.098,
- "total_deaths_per_million": 0.742,
- "new_deaths_per_million": 0.165,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-17",
- "total_cases": 532.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 32.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 43.883,
- "new_cases_per_million": 4.042,
- "new_cases_smoothed_per_million": 2.675,
- "total_deaths_per_million": 0.742,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-18",
- "total_cases": 572.0,
- "new_cases": 40.0,
- "new_cases_smoothed": 38.143,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 47.182,
- "new_cases_per_million": 3.299,
- "new_cases_smoothed_per_million": 3.146,
- "total_deaths_per_million": 0.742,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-19",
- "total_cases": 597.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 41.714,
- "total_deaths": 11.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 49.244,
- "new_cases_per_million": 2.062,
- "new_cases_smoothed_per_million": 3.441,
- "total_deaths_per_million": 0.907,
- "new_deaths_per_million": 0.165,
- "new_deaths_smoothed_per_million": 0.082,
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-20",
- "total_cases": 650.0,
- "new_cases": 53.0,
- "new_cases_smoothed": 37.429,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 53.616,
- "new_cases_per_million": 4.372,
- "new_cases_smoothed_per_million": 3.087,
- "total_deaths_per_million": 0.907,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.071,
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-21",
- "total_cases": 650.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 34.0,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 53.616,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.805,
- "total_deaths_per_million": 0.907,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-22",
- "total_cases": 765.0,
- "new_cases": 115.0,
- "new_cases_smoothed": 42.143,
- "total_deaths": 13.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 63.102,
- "new_cases_per_million": 9.486,
- "new_cases_smoothed_per_million": 3.476,
- "total_deaths_per_million": 1.072,
- "new_deaths_per_million": 0.165,
- "new_deaths_smoothed_per_million": 0.071,
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-23",
- "total_cases": 807.0,
- "new_cases": 42.0,
- "new_cases_smoothed": 46.286,
- "total_deaths": 13.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 66.567,
- "new_cases_per_million": 3.464,
- "new_cases_smoothed_per_million": 3.818,
- "total_deaths_per_million": 1.072,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.047,
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-24",
- "total_cases": 850.0,
- "new_cases": 43.0,
- "new_cases_smoothed": 45.429,
- "total_deaths": 13.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 70.114,
- "new_cases_per_million": 3.547,
- "new_cases_smoothed_per_million": 3.747,
- "total_deaths_per_million": 1.072,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.047,
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-25",
- "total_cases": 902.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 47.143,
- "total_deaths": 13.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 74.403,
- "new_cases_per_million": 4.289,
- "new_cases_smoothed_per_million": 3.889,
- "total_deaths_per_million": 1.072,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.047,
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-26",
- "total_cases": 1017.0,
- "new_cases": 115.0,
- "new_cases_smoothed": 60.0,
- "total_deaths": 14.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 83.889,
- "new_cases_per_million": 9.486,
- "new_cases_smoothed_per_million": 4.949,
- "total_deaths_per_million": 1.155,
- "new_deaths_per_million": 0.082,
- "new_deaths_smoothed_per_million": 0.035,
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-27",
- "total_cases": 1053.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 57.571,
- "total_deaths": 14.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 86.858,
- "new_cases_per_million": 2.97,
- "new_cases_smoothed_per_million": 4.749,
- "total_deaths_per_million": 1.155,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.035,
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-28",
- "total_cases": 1124.0,
- "new_cases": 71.0,
- "new_cases_smoothed": 67.714,
- "total_deaths": 14.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 92.715,
- "new_cases_per_million": 5.857,
- "new_cases_smoothed_per_million": 5.586,
- "total_deaths_per_million": 1.155,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.035,
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-29",
- "total_cases": 1149.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 54.857,
- "total_deaths": 16.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 94.777,
- "new_cases_per_million": 2.062,
- "new_cases_smoothed_per_million": 4.525,
- "total_deaths_per_million": 1.32,
- "new_deaths_per_million": 0.165,
- "new_deaths_smoothed_per_million": 0.035,
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-30",
- "total_cases": 1187.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 54.286,
- "total_deaths": 19.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 97.911,
- "new_cases_per_million": 3.134,
- "new_cases_smoothed_per_million": 4.478,
- "total_deaths_per_million": 1.567,
- "new_deaths_per_million": 0.247,
- "new_deaths_smoothed_per_million": 0.071,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-01",
- "total_cases": 1199.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 49.857,
- "total_deaths": 21.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 98.901,
- "new_cases_per_million": 0.99,
- "new_cases_smoothed_per_million": 4.113,
- "total_deaths_per_million": 1.732,
- "new_deaths_per_million": 0.165,
- "new_deaths_smoothed_per_million": 0.094,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-02",
- "total_cases": 1199.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 42.429,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 98.901,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.5,
- "total_deaths_per_million": 1.732,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.094,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-03",
- "total_cases": 1199.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 26.0,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 98.901,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.145,
- "total_deaths_per_million": 1.732,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.082,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-04",
- "total_cases": 1199.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 20.857,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 98.901,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.72,
- "total_deaths_per_million": 1.732,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.082,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-05",
- "total_cases": 1199.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 10.714,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 98.901,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.884,
- "total_deaths_per_million": 1.732,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.082,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-06",
- "total_cases": 1199.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.143,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 98.901,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.589,
- "total_deaths_per_million": 1.732,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-07",
- "total_cases": 1199.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 98.901,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.141,
- "total_deaths_per_million": 1.732,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.024,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-08",
- "total_cases": 1199.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 98.901,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 1.732,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-09",
- "total_cases": 1285.0,
- "new_cases": 86.0,
- "new_cases_smoothed": 12.286,
- "total_deaths": 23.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 105.995,
- "new_cases_per_million": 7.094,
- "new_cases_smoothed_per_million": 1.013,
- "total_deaths_per_million": 1.897,
- "new_deaths_per_million": 0.165,
- "new_deaths_smoothed_per_million": 0.024,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-10",
- "total_cases": 1285.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 12.286,
- "total_deaths": 23.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 105.995,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.013,
- "total_deaths_per_million": 1.897,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.024,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-11",
- "total_cases": 1285.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 12.286,
- "total_deaths": 23.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 105.995,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.013,
- "total_deaths_per_million": 1.897,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.024,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-12",
- "total_cases": 1378.0,
- "new_cases": 93.0,
- "new_cases_smoothed": 25.571,
- "total_deaths": 26.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 113.666,
- "new_cases_per_million": 7.671,
- "new_cases_smoothed_per_million": 2.109,
- "total_deaths_per_million": 2.145,
- "new_deaths_per_million": 0.247,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-13",
- "total_cases": 1378.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 25.571,
- "total_deaths": 26.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 113.666,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.109,
- "total_deaths_per_million": 2.145,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-14",
- "total_cases": 1378.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 25.571,
- "total_deaths": 26.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 113.666,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.109,
- "total_deaths_per_million": 2.145,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-15",
- "total_cases": 1378.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 25.571,
- "total_deaths": 26.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 113.666,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.109,
- "total_deaths_per_million": 2.145,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-16",
- "total_cases": 1378.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 13.286,
- "total_deaths": 26.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 113.666,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.096,
- "total_deaths_per_million": 2.145,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.035,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-17",
- "total_cases": 1463.0,
- "new_cases": 85.0,
- "new_cases_smoothed": 25.429,
- "total_deaths": 28.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 120.678,
- "new_cases_per_million": 7.011,
- "new_cases_smoothed_per_million": 2.098,
- "total_deaths_per_million": 2.31,
- "new_deaths_per_million": 0.165,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-18",
- "total_cases": 1602.0,
- "new_cases": 139.0,
- "new_cases_smoothed": 45.286,
- "total_deaths": 31.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 132.143,
- "new_cases_per_million": 11.466,
- "new_cases_smoothed_per_million": 3.735,
- "total_deaths_per_million": 2.557,
- "new_deaths_per_million": 0.247,
- "new_deaths_smoothed_per_million": 0.094,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-19",
- "total_cases": 1602.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 32.0,
- "total_deaths": 31.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 132.143,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.64,
- "total_deaths_per_million": 2.557,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-20",
- "total_cases": 1602.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 32.0,
- "total_deaths": 31.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 132.143,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.64,
- "total_deaths_per_million": 2.557,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-21",
- "total_cases": 1602.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 32.0,
- "total_deaths": 31.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 132.143,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.64,
- "total_deaths_per_million": 2.557,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-22",
- "total_cases": 1602.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 32.0,
- "total_deaths": 31.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 132.143,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.64,
- "total_deaths_per_million": 2.557,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-23",
- "total_cases": 1602.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 32.0,
- "total_deaths": 31.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 132.143,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.64,
- "total_deaths_per_million": 2.557,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-24",
- "total_cases": 1694.0,
- "new_cases": 92.0,
- "new_cases_smoothed": 33.0,
- "total_deaths": 34.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 139.732,
- "new_cases_per_million": 7.589,
- "new_cases_smoothed_per_million": 2.722,
- "total_deaths_per_million": 2.805,
- "new_deaths_per_million": 0.247,
- "new_deaths_smoothed_per_million": 0.071,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-25",
- "total_cases": 1694.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 13.143,
- "total_deaths": 34.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 139.732,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.084,
- "total_deaths_per_million": 2.805,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.035,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-26",
- "total_cases": 1694.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 13.143,
- "total_deaths": 34.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 139.732,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.084,
- "total_deaths_per_million": 2.805,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.035,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-27",
- "total_cases": 1770.0,
- "new_cases": 76.0,
- "new_cases_smoothed": 24.0,
- "total_deaths": 35.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 146.001,
- "new_cases_per_million": 6.269,
- "new_cases_smoothed_per_million": 1.98,
- "total_deaths_per_million": 2.887,
- "new_deaths_per_million": 0.082,
- "new_deaths_smoothed_per_million": 0.047,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-28",
- "total_cases": 1770.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 24.0,
- "total_deaths": 35.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 146.001,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.98,
- "total_deaths_per_million": 2.887,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.047,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-29",
- "total_cases": 1770.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 24.0,
- "total_deaths": 35.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 146.001,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.98,
- "total_deaths_per_million": 2.887,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.047,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-30",
- "total_cases": 1770.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 24.0,
- "total_deaths": 35.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 146.001,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.98,
- "total_deaths_per_million": 2.887,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.047,
- "stringency_index": 41.67
- },
- {
- "date": "2020-07-31",
- "total_cases": 1770.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 10.857,
- "total_deaths": 35.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 146.001,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.896,
- "total_deaths_per_million": 2.887,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-01",
- "total_cases": 1805.0,
- "new_cases": 35.0,
- "new_cases_smoothed": 15.857,
- "total_deaths": 36.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 148.888,
- "new_cases_per_million": 2.887,
- "new_cases_smoothed_per_million": 1.308,
- "total_deaths_per_million": 2.97,
- "new_deaths_per_million": 0.082,
- "new_deaths_smoothed_per_million": 0.024,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-02",
- "total_cases": 1805.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 15.857,
- "total_deaths": 36.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 148.888,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.308,
- "total_deaths_per_million": 2.97,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.024,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-03",
- "total_cases": 1805.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.0,
- "total_deaths": 36.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 148.888,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.412,
- "total_deaths_per_million": 2.97,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-04",
- "total_cases": 1805.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.0,
- "total_deaths": 36.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 148.888,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.412,
- "total_deaths_per_million": 2.97,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-05",
- "total_cases": 1914.0,
- "new_cases": 109.0,
- "new_cases_smoothed": 20.571,
- "total_deaths": 38.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 157.879,
- "new_cases_per_million": 8.991,
- "new_cases_smoothed_per_million": 1.697,
- "total_deaths_per_million": 3.134,
- "new_deaths_per_million": 0.165,
- "new_deaths_smoothed_per_million": 0.035,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-06",
- "total_cases": 1914.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 20.571,
- "total_deaths": 38.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 157.879,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.697,
- "total_deaths_per_million": 3.134,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.035,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-07",
- "total_cases": 1936.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 23.714,
- "total_deaths": 38.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 159.694,
- "new_cases_per_million": 1.815,
- "new_cases_smoothed_per_million": 1.956,
- "total_deaths_per_million": 3.134,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.035,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-08",
- "total_cases": 1936.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 18.714,
- "total_deaths": 38.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 159.694,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.544,
- "total_deaths_per_million": 3.134,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.024,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-09",
- "total_cases": 1936.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 18.714,
- "total_deaths": 38.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 159.694,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.544,
- "total_deaths_per_million": 3.134,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.024,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-10",
- "total_cases": 1936.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 18.714,
- "total_deaths": 38.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 159.694,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.544,
- "total_deaths_per_million": 3.134,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.024,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-11",
- "total_cases": 1936.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 18.714,
- "total_deaths": 38.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 159.694,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.544,
- "total_deaths_per_million": 3.134,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.024,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-12",
- "total_cases": 2001.0,
- "new_cases": 65.0,
- "new_cases_smoothed": 12.429,
- "total_deaths": 38.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 165.055,
- "new_cases_per_million": 5.362,
- "new_cases_smoothed_per_million": 1.025,
- "total_deaths_per_million": 3.134,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-13",
- "total_cases": 2001.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 12.429,
- "total_deaths": 38.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 165.055,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.025,
- "total_deaths_per_million": 3.134,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-14",
- "total_cases": 2001.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 9.286,
- "total_deaths": 38.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 165.055,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.766,
- "total_deaths_per_million": 3.134,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-15",
- "total_cases": 2001.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 9.286,
- "total_deaths": 38.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 165.055,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.766,
- "total_deaths_per_million": 3.134,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-16",
- "total_cases": 2063.0,
- "new_cases": 62.0,
- "new_cases_smoothed": 18.143,
- "total_deaths": 39.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 170.17,
- "new_cases_per_million": 5.114,
- "new_cases_smoothed_per_million": 1.497,
- "total_deaths_per_million": 3.217,
- "new_deaths_per_million": 0.082,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-17",
- "total_cases": 2063.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 18.143,
- "total_deaths": 39.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 170.17,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.497,
- "total_deaths_per_million": 3.217,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-18",
- "total_cases": 2063.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 18.143,
- "total_deaths": 39.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 170.17,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.497,
- "total_deaths_per_million": 3.217,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-19",
- "total_cases": 2063.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 8.857,
- "total_deaths": 39.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 170.17,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.731,
- "total_deaths_per_million": 3.217,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-20",
- "total_cases": 2063.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 8.857,
- "total_deaths": 39.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 170.17,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.731,
- "total_deaths_per_million": 3.217,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-21",
- "total_cases": 2095.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 13.429,
- "total_deaths": 39.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 172.809,
- "new_cases_per_million": 2.64,
- "new_cases_smoothed_per_million": 1.108,
- "total_deaths_per_million": 3.217,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-22",
- "total_cases": 2095.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 13.429,
- "total_deaths": 39.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 172.809,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.108,
- "total_deaths_per_million": 3.217,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-23",
- "total_cases": 2115.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 7.429,
- "total_deaths": 39.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 174.459,
- "new_cases_per_million": 1.65,
- "new_cases_smoothed_per_million": 0.613,
- "total_deaths_per_million": 3.217,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-24",
- "total_cases": 2115.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.429,
- "total_deaths": 39.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 174.459,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.613,
- "total_deaths_per_million": 3.217,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-25",
- "total_cases": 2115.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.429,
- "total_deaths": 39.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 174.459,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.613,
- "total_deaths_per_million": 3.217,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-26",
- "total_cases": 2115.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.429,
- "total_deaths": 39.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 174.459,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.613,
- "total_deaths_per_million": 3.217,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-27",
- "total_cases": 2145.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 11.714,
- "total_deaths": 40.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 176.934,
- "new_cases_per_million": 2.475,
- "new_cases_smoothed_per_million": 0.966,
- "total_deaths_per_million": 3.299,
- "new_deaths_per_million": 0.082,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-28",
- "total_cases": 2145.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.143,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 176.934,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.589,
- "total_deaths_per_million": 3.299,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-29",
- "total_cases": 2145.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.143,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 176.934,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.589,
- "total_deaths_per_million": 3.299,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-30",
- "total_cases": 2145.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.286,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 176.934,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.354,
- "total_deaths_per_million": 3.299,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 41.67
- },
- {
- "date": "2020-08-31",
- "total_cases": 2145.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.286,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 176.934,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.354,
- "total_deaths_per_million": 3.299,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 41.67
- },
- {
- "date": "2020-09-01",
- "total_cases": 2145.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.286,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 176.934,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.354,
- "total_deaths_per_million": 3.299,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 41.67
- },
- {
- "date": "2020-09-02",
- "total_cases": 2145.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.286,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 176.934,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.354,
- "total_deaths_per_million": 3.299,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 41.67
- },
- {
- "date": "2020-09-03",
- "total_cases": 2194.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 7.0,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 180.975,
- "new_cases_per_million": 4.042,
- "new_cases_smoothed_per_million": 0.577,
- "total_deaths_per_million": 3.299,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-09-04",
- "total_cases": 2194.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.0,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 180.975,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.577,
- "total_deaths_per_million": 3.299,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-09-05",
- "total_cases": 2194.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.0,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 180.975,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.577,
- "total_deaths_per_million": 3.299,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-09-06",
- "total_cases": 2213.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 9.714,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 182.543,
- "new_cases_per_million": 1.567,
- "new_cases_smoothed_per_million": 0.801,
- "total_deaths_per_million": 3.299,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-09-07",
- "total_cases": 2213.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 9.714,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 182.543,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.801,
- "total_deaths_per_million": 3.299,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-09-08",
- "total_cases": 2213.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 9.714,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 182.543,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.801,
- "total_deaths_per_million": 3.299,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-09-09",
- "total_cases": 2213.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 9.714,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 182.543,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.801,
- "total_deaths_per_million": 3.299,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-09-10",
- "total_cases": 2242.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 6.857,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 184.935,
- "new_cases_per_million": 2.392,
- "new_cases_smoothed_per_million": 0.566,
- "total_deaths_per_million": 3.299,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-09-11",
- "total_cases": 2242.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.857,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 184.935,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.566,
- "total_deaths_per_million": 3.299,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-09-12",
- "total_cases": 2242.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.857,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 184.935,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.566,
- "total_deaths_per_million": 3.299,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-09-13",
- "total_cases": 2242.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 184.935,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.342,
- "total_deaths_per_million": 3.299,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-09-14",
- "total_cases": 2267.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 7.714,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 186.997,
- "new_cases_per_million": 2.062,
- "new_cases_smoothed_per_million": 0.636,
- "total_deaths_per_million": 3.299,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 41.67
- },
- {
- "date": "2020-09-15",
- "total_cases": 2267.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.714,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 186.997,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.636,
- "total_deaths_per_million": 3.299,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-16",
- "total_cases": 2267.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.714,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 186.997,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.636,
- "total_deaths_per_million": 3.299,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-17",
- "total_cases": 2280.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 188.069,
- "new_cases_per_million": 1.072,
- "new_cases_smoothed_per_million": 0.448,
- "total_deaths_per_million": 3.299,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-18",
- "total_cases": 2280.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 188.069,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.448,
- "total_deaths_per_million": 3.299,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-19",
- "total_cases": 2280.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 188.069,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.448,
- "total_deaths_per_million": 3.299,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-20",
- "total_cases": 2280.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 188.069,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.448,
- "total_deaths_per_million": 3.299,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-21",
- "total_cases": 2280.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 188.069,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.153,
- "total_deaths_per_million": 3.299,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-22",
- "total_cases": 2294.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 3.857,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 189.224,
- "new_cases_per_million": 1.155,
- "new_cases_smoothed_per_million": 0.318,
- "total_deaths_per_million": 3.299,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-23",
- "total_cases": 2294.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.857,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 189.224,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.318,
- "total_deaths_per_million": 3.299,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-24",
- "total_cases": 2325.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 6.429,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 191.781,
- "new_cases_per_million": 2.557,
- "new_cases_smoothed_per_million": 0.53,
- "total_deaths_per_million": 3.299,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-25",
- "total_cases": 2325.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.429,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 191.781,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.53,
- "total_deaths_per_million": 3.299,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- }
- ]
- },
- "BES": {
- "continent": "North America",
- "location": "Bonaire Sint Eustatius and Saba",
- "population": 26221.0,
- "life_expectancy": 77.79,
- "data": [
- {
- "date": "2020-04-02",
- "total_cases": 2.0,
- "new_cases": 2.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 76.275,
- "new_cases_per_million": 76.275,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-04-03",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 76.275,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-04-04",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 76.275,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-04-05",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 76.275,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-04-06",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 76.275,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-04-07",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 76.275,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-04-08",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 76.275,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.896,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-09",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 76.275,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-10",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 76.275,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-11",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 76.275,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-12",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 76.275,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-13",
- "total_cases": 3.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 114.412,
- "new_cases_per_million": 38.137,
- "new_cases_smoothed_per_million": 5.448,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-14",
- "total_cases": 4.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 152.549,
- "new_cases_per_million": 38.137,
- "new_cases_smoothed_per_million": 10.896,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-15",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 152.549,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.896,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-16",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 152.549,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.896,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-17",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 152.549,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.896,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-18",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 152.549,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.896,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-19",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 152.549,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.896,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-20",
- "total_cases": 5.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 190.687,
- "new_cases_per_million": 38.137,
- "new_cases_smoothed_per_million": 10.896,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-21",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 190.687,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.448,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-22",
- "total_cases": 6.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 38.137,
- "new_cases_smoothed_per_million": 10.896,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-23",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.896,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-24",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.896,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-25",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.896,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-26",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.896,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-27",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.448,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-28",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.448,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-29",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-30",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-01",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-02",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-03",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-04",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-05",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-06",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-07",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-08",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-09",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-10",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-11",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-12",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-13",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-14",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-15",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-16",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-17",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-18",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-19",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-20",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-21",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-22",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-23",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-24",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.824,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-25",
- "total_cases": 7.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 38.137,
- "new_cases_smoothed_per_million": 5.448,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-26",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.448,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-27",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.448,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-28",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.448,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-29",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.448,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-30",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.448,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-31",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.448,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-01",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-02",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-03",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-04",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-05",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-06",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-07",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-08",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-09",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-10",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-11",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-12",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-13",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-14",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-15",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-16",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-17",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-18",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-19",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-20",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-21",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-22",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-23",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-24",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-25",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-26",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-27",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-28",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-29",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-30",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-01",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-02",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-03",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-04",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-05",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-06",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-07",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-08",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-09",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-10",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-11",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-12",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-13",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-14",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 266.962,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-15",
- "total_cases": 9.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 343.236,
- "new_cases_per_million": 76.275,
- "new_cases_smoothed_per_million": 10.896,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-16",
- "total_cases": 9.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 343.236,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.896,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-17",
- "total_cases": 10.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 381.374,
- "new_cases_per_million": 38.137,
- "new_cases_smoothed_per_million": 16.345,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-18",
- "total_cases": 10.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 381.374,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 16.345,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-19",
- "total_cases": 10.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 381.374,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 16.345,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-20",
- "total_cases": 10.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 381.374,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 16.345,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-21",
- "total_cases": 10.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 381.374,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 16.345,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-22",
- "total_cases": 10.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 381.374,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.448,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-23",
- "total_cases": 10.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 381.374,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.448,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-24",
- "total_cases": 11.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 419.511,
- "new_cases_per_million": 38.137,
- "new_cases_smoothed_per_million": 5.448,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-25",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 419.511,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.448,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-26",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 419.511,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.448,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-27",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 419.511,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.448,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-28",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 419.511,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.448,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-29",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 419.511,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.448,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-30",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 419.511,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.448,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-31",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 419.511,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-01",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 419.511,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-02",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 419.511,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-03",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 419.511,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-04",
- "total_cases": 13.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 495.786,
- "new_cases_per_million": 76.275,
- "new_cases_smoothed_per_million": 10.896,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-05",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 495.786,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.896,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-06",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 495.786,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.896,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-07",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 495.786,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.896,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-08",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 495.786,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.896,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-09",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 495.786,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.896,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-10",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 495.786,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.896,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-11",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 495.786,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-12",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 495.786,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-13",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 495.786,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-14",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 495.786,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-15",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 495.786,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-16",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 495.786,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-17",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 495.786,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-18",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 495.786,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-19",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 495.786,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-20",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 495.786,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-21",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 495.786,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-22",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 495.786,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-23",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 495.786,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-24",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 495.786,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-25",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 495.786,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-26",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 495.786,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-27",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 495.786,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-28",
- "total_cases": 14.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 533.923,
- "new_cases_per_million": 38.137,
- "new_cases_smoothed_per_million": 5.448,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-29",
- "total_cases": 15.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 572.061,
- "new_cases_per_million": 38.137,
- "new_cases_smoothed_per_million": 10.896,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-30",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 572.061,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.896,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-31",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 572.061,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.896,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-01",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 572.061,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.896,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-02",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 572.061,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.896,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-03",
- "total_cases": 18.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 686.473,
- "new_cases_per_million": 114.412,
- "new_cases_smoothed_per_million": 27.241,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-04",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 686.473,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 21.793,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-05",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 686.473,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 16.345,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-06",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 686.473,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 16.345,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-07",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 686.473,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 16.345,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-08",
- "total_cases": 19.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 724.61,
- "new_cases_per_million": 38.137,
- "new_cases_smoothed_per_million": 21.793,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-09",
- "total_cases": 23.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 877.16,
- "new_cases_per_million": 152.549,
- "new_cases_smoothed_per_million": 43.586,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-10",
- "total_cases": 25.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 953.434,
- "new_cases_per_million": 76.275,
- "new_cases_smoothed_per_million": 38.137,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-11",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 953.434,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 38.137,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-12",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 953.434,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 38.137,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-13",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 953.434,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 38.137,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-14",
- "total_cases": 26.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 991.572,
- "new_cases_per_million": 38.137,
- "new_cases_smoothed_per_million": 43.586,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-15",
- "total_cases": 27.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1029.709,
- "new_cases_per_million": 38.137,
- "new_cases_smoothed_per_million": 43.586,
- "total_deaths_per_million": 38.137,
- "new_deaths_per_million": 38.137,
- "new_deaths_smoothed_per_million": 5.448
- },
- {
- "date": "2020-09-16",
- "total_cases": 28.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1067.846,
- "new_cases_per_million": 38.137,
- "new_cases_smoothed_per_million": 27.241,
- "total_deaths_per_million": 38.137,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 5.448
- },
- {
- "date": "2020-09-17",
- "total_cases": 32.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1220.396,
- "new_cases_per_million": 152.549,
- "new_cases_smoothed_per_million": 38.137,
- "total_deaths_per_million": 38.137,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 5.448
- },
- {
- "date": "2020-09-18",
- "total_cases": 36.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1372.945,
- "new_cases_per_million": 152.549,
- "new_cases_smoothed_per_million": 59.93,
- "total_deaths_per_million": 38.137,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 5.448
- },
- {
- "date": "2020-09-19",
- "total_cases": 36.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1372.945,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 59.93,
- "total_deaths_per_million": 38.137,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 5.448
- },
- {
- "date": "2020-09-20",
- "total_cases": 36.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1372.945,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 59.93,
- "total_deaths_per_million": 38.137,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 5.448
- },
- {
- "date": "2020-09-21",
- "total_cases": 36.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1372.945,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 54.482,
- "total_deaths_per_million": 38.137,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 5.448
- },
- {
- "date": "2020-09-22",
- "total_cases": 56.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2135.693,
- "new_cases_per_million": 762.747,
- "new_cases_smoothed_per_million": 157.998,
- "total_deaths_per_million": 38.137,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-23",
- "total_cases": 64.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2440.792,
- "new_cases_per_million": 305.099,
- "new_cases_smoothed_per_million": 196.135,
- "total_deaths_per_million": 38.137,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-24",
- "total_cases": 69.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 5.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2631.479,
- "new_cases_per_million": 190.687,
- "new_cases_smoothed_per_million": 201.583,
- "total_deaths_per_million": 38.137,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-25",
- "total_cases": 78.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 6.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2974.715,
- "new_cases_per_million": 343.236,
- "new_cases_smoothed_per_million": 228.824,
- "total_deaths_per_million": 38.137,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- }
- ]
- },
- "BFA": {
- "continent": "Africa",
- "location": "Burkina Faso",
- "population": 20903278.0,
- "population_density": 70.151,
- "median_age": 17.6,
- "aged_65_older": 2.409,
- "aged_70_older": 1.358,
- "gdp_per_capita": 1703.102,
- "extreme_poverty": 43.7,
- "cardiovasc_death_rate": 269.048,
- "diabetes_prevalence": 2.42,
- "female_smokers": 1.6,
- "male_smokers": 23.9,
- "handwashing_facilities": 11.877,
- "hospital_beds_per_thousand": 0.4,
- "life_expectancy": 61.58,
- "human_development_index": 0.423,
- "data": [
- {
- "date": "2020-03-11",
- "total_cases": 2.0,
- "new_cases": 2.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.096,
- "new_cases_per_million": 0.096,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-12",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.096,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-15",
- "total_cases": 3.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.144,
- "new_cases_per_million": 0.048,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-16",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.144,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 33.33
- },
- {
- "date": "2020-03-17",
- "total_cases": 20.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.957,
- "new_cases_per_million": 0.813,
- "new_cases_smoothed_per_million": 0.137,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 33.33
- },
- {
- "date": "2020-03-18",
- "total_cases": 20.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.957,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.123,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 33.33
- },
- {
- "date": "2020-03-19",
- "total_cases": 26.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 3.429,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1.244,
- "new_cases_per_million": 0.287,
- "new_cases_smoothed_per_million": 0.164,
- "total_deaths_per_million": 0.048,
- "new_deaths_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 33.33
- },
- {
- "date": "2020-03-20",
- "total_cases": 33.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 4.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1.579,
- "new_cases_per_million": 0.335,
- "new_cases_smoothed_per_million": 0.212,
- "total_deaths_per_million": 0.048,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 33.33
- },
- {
- "date": "2020-03-21",
- "total_cases": 40.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1.914,
- "new_cases_per_million": 0.335,
- "new_cases_smoothed_per_million": 0.26,
- "total_deaths_per_million": 0.048,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-22",
- "total_cases": 64.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 8.714,
- "total_deaths": 3.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 3.062,
- "new_cases_per_million": 1.148,
- "new_cases_smoothed_per_million": 0.417,
- "total_deaths_per_million": 0.144,
- "new_deaths_per_million": 0.096,
- "new_deaths_smoothed_per_million": 0.021,
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-23",
- "total_cases": 64.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 8.714,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 3.062,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.417,
- "total_deaths_per_million": 0.144,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.021,
- "stringency_index": 84.26
- },
- {
- "date": "2020-03-24",
- "total_cases": 75.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 7.857,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 3.588,
- "new_cases_per_million": 0.526,
- "new_cases_smoothed_per_million": 0.376,
- "total_deaths_per_million": 0.144,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.021,
- "stringency_index": 84.26
- },
- {
- "date": "2020-03-25",
- "total_cases": 99.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 11.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 4.736,
- "new_cases_per_million": 1.148,
- "new_cases_smoothed_per_million": 0.54,
- "total_deaths_per_million": 0.144,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.021,
- "stringency_index": 84.26
- },
- {
- "date": "2020-03-26",
- "total_cases": 114.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 12.571,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 5.454,
- "new_cases_per_million": 0.718,
- "new_cases_smoothed_per_million": 0.601,
- "total_deaths_per_million": 0.144,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.014,
- "stringency_index": 84.26
- },
- {
- "date": "2020-03-27",
- "total_cases": 146.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 16.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 6.985,
- "new_cases_per_million": 1.531,
- "new_cases_smoothed_per_million": 0.772,
- "total_deaths_per_million": 0.144,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.014,
- "stringency_index": 84.26
- },
- {
- "date": "2020-03-28",
- "total_cases": 146.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 15.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 6.985,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.724,
- "total_deaths_per_million": 0.144,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.014,
- "stringency_index": 84.26
- },
- {
- "date": "2020-03-29",
- "total_cases": 180.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 16.571,
- "total_deaths": 9.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 8.611,
- "new_cases_per_million": 1.627,
- "new_cases_smoothed_per_million": 0.793,
- "total_deaths_per_million": 0.431,
- "new_deaths_per_million": 0.287,
- "new_deaths_smoothed_per_million": 0.041,
- "stringency_index": 84.26
- },
- {
- "date": "2020-03-30",
- "total_cases": 180.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 16.571,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 8.611,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.793,
- "total_deaths_per_million": 0.431,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.041,
- "stringency_index": 84.26
- },
- {
- "date": "2020-03-31",
- "total_cases": 222.0,
- "new_cases": 42.0,
- "new_cases_smoothed": 21.0,
- "total_deaths": 12.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 10.62,
- "new_cases_per_million": 2.009,
- "new_cases_smoothed_per_million": 1.005,
- "total_deaths_per_million": 0.574,
- "new_deaths_per_million": 0.144,
- "new_deaths_smoothed_per_million": 0.062,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-01",
- "total_cases": 246.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 21.0,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 11.768,
- "new_cases_per_million": 1.148,
- "new_cases_smoothed_per_million": 1.005,
- "total_deaths_per_million": 0.574,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.062,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-02",
- "total_cases": 261.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 21.0,
- "total_deaths": 14.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 12.486,
- "new_cases_per_million": 0.718,
- "new_cases_smoothed_per_million": 1.005,
- "total_deaths_per_million": 0.67,
- "new_deaths_per_million": 0.096,
- "new_deaths_smoothed_per_million": 0.075,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-03",
- "total_cases": 288.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 20.286,
- "total_deaths": 16.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 13.778,
- "new_cases_per_million": 1.292,
- "new_cases_smoothed_per_million": 0.97,
- "total_deaths_per_million": 0.765,
- "new_deaths_per_million": 0.096,
- "new_deaths_smoothed_per_million": 0.089,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-04",
- "total_cases": 288.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 20.286,
- "total_deaths": 16.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 13.778,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.97,
- "total_deaths_per_million": 0.765,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.089,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-05",
- "total_cases": 302.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 17.429,
- "total_deaths": 16.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 14.447,
- "new_cases_per_million": 0.67,
- "new_cases_smoothed_per_million": 0.834,
- "total_deaths_per_million": 0.765,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.048,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-06",
- "total_cases": 345.0,
- "new_cases": 43.0,
- "new_cases_smoothed": 23.571,
- "total_deaths": 17.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 16.505,
- "new_cases_per_million": 2.057,
- "new_cases_smoothed_per_million": 1.128,
- "total_deaths_per_million": 0.813,
- "new_deaths_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.055,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-07",
- "total_cases": 364.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 20.286,
- "total_deaths": 17.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 17.414,
- "new_cases_per_million": 0.909,
- "new_cases_smoothed_per_million": 0.97,
- "total_deaths_per_million": 0.813,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.034,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-08",
- "total_cases": 384.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 19.714,
- "total_deaths": 19.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 18.37,
- "new_cases_per_million": 0.957,
- "new_cases_smoothed_per_million": 0.943,
- "total_deaths_per_million": 0.909,
- "new_deaths_per_million": 0.096,
- "new_deaths_smoothed_per_million": 0.048,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-09",
- "total_cases": 414.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 21.857,
- "total_deaths": 23.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 19.806,
- "new_cases_per_million": 1.435,
- "new_cases_smoothed_per_million": 1.046,
- "total_deaths_per_million": 1.1,
- "new_deaths_per_million": 0.191,
- "new_deaths_smoothed_per_million": 0.062,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-10",
- "total_cases": 443.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 22.143,
- "total_deaths": 24.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 21.193,
- "new_cases_per_million": 1.387,
- "new_cases_smoothed_per_million": 1.059,
- "total_deaths_per_million": 1.148,
- "new_deaths_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.055,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-11",
- "total_cases": 448.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 22.857,
- "total_deaths": 26.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 21.432,
- "new_cases_per_million": 0.239,
- "new_cases_smoothed_per_million": 1.093,
- "total_deaths_per_million": 1.244,
- "new_deaths_per_million": 0.096,
- "new_deaths_smoothed_per_million": 0.068,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-12",
- "total_cases": 484.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 26.0,
- "total_deaths": 27.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 23.154,
- "new_cases_per_million": 1.722,
- "new_cases_smoothed_per_million": 1.244,
- "total_deaths_per_million": 1.292,
- "new_deaths_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.075,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-13",
- "total_cases": 497.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 21.714,
- "total_deaths": 27.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 23.776,
- "new_cases_per_million": 0.622,
- "new_cases_smoothed_per_million": 1.039,
- "total_deaths_per_million": 1.292,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.068,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-14",
- "total_cases": 515.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 21.571,
- "total_deaths": 28.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 24.637,
- "new_cases_per_million": 0.861,
- "new_cases_smoothed_per_million": 1.032,
- "total_deaths_per_million": 1.34,
- "new_deaths_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.075,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-15",
- "total_cases": 528.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 20.571,
- "total_deaths": 30.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 25.259,
- "new_cases_per_million": 0.622,
- "new_cases_smoothed_per_million": 0.984,
- "total_deaths_per_million": 1.435,
- "new_deaths_per_million": 0.096,
- "new_deaths_smoothed_per_million": 0.075,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-16",
- "total_cases": 542.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 18.286,
- "total_deaths": 32.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 25.929,
- "new_cases_per_million": 0.67,
- "new_cases_smoothed_per_million": 0.875,
- "total_deaths_per_million": 1.531,
- "new_deaths_per_million": 0.096,
- "new_deaths_smoothed_per_million": 0.062,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-17",
- "total_cases": 543.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 14.286,
- "total_deaths": 32.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 25.977,
- "new_cases_per_million": 0.048,
- "new_cases_smoothed_per_million": 0.683,
- "total_deaths_per_million": 1.531,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.055,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-18",
- "total_cases": 557.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 15.571,
- "total_deaths": 35.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 26.647,
- "new_cases_per_million": 0.67,
- "new_cases_smoothed_per_million": 0.745,
- "total_deaths_per_million": 1.674,
- "new_deaths_per_million": 0.144,
- "new_deaths_smoothed_per_million": 0.062,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-19",
- "total_cases": 565.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 11.571,
- "total_deaths": 36.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 27.029,
- "new_cases_per_million": 0.383,
- "new_cases_smoothed_per_million": 0.554,
- "total_deaths_per_million": 1.722,
- "new_deaths_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.062,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-20",
- "total_cases": 576.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 11.286,
- "total_deaths": 36.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 27.555,
- "new_cases_per_million": 0.526,
- "new_cases_smoothed_per_million": 0.54,
- "total_deaths_per_million": 1.722,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.062,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-21",
- "total_cases": 581.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 9.429,
- "total_deaths": 38.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 27.795,
- "new_cases_per_million": 0.239,
- "new_cases_smoothed_per_million": 0.451,
- "total_deaths_per_million": 1.818,
- "new_deaths_per_million": 0.096,
- "new_deaths_smoothed_per_million": 0.068,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-22",
- "total_cases": 600.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 10.286,
- "total_deaths": 38.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 28.704,
- "new_cases_per_million": 0.909,
- "new_cases_smoothed_per_million": 0.492,
- "total_deaths_per_million": 1.818,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.055,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-23",
- "total_cases": 609.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 9.571,
- "total_deaths": 39.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 29.134,
- "new_cases_per_million": 0.431,
- "new_cases_smoothed_per_million": 0.458,
- "total_deaths_per_million": 1.866,
- "new_deaths_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.048,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-24",
- "total_cases": 616.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 10.429,
- "total_deaths": 41.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 29.469,
- "new_cases_per_million": 0.335,
- "new_cases_smoothed_per_million": 0.499,
- "total_deaths_per_million": 1.961,
- "new_deaths_per_million": 0.096,
- "new_deaths_smoothed_per_million": 0.062,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-25",
- "total_cases": 626.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 9.857,
- "total_deaths": 41.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 29.947,
- "new_cases_per_million": 0.478,
- "new_cases_smoothed_per_million": 0.472,
- "total_deaths_per_million": 1.961,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.041,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-26",
- "total_cases": 629.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 9.143,
- "total_deaths": 41.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 30.091,
- "new_cases_per_million": 0.144,
- "new_cases_smoothed_per_million": 0.437,
- "total_deaths_per_million": 1.961,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.034,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-27",
- "total_cases": 632.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 8.0,
- "total_deaths": 42.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 30.234,
- "new_cases_per_million": 0.144,
- "new_cases_smoothed_per_million": 0.383,
- "total_deaths_per_million": 2.009,
- "new_deaths_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.041,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-28",
- "total_cases": 635.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 7.714,
- "total_deaths": 42.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 30.378,
- "new_cases_per_million": 0.144,
- "new_cases_smoothed_per_million": 0.369,
- "total_deaths_per_million": 2.009,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.027,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-29",
- "total_cases": 638.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 42.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 30.522,
- "new_cases_per_million": 0.144,
- "new_cases_smoothed_per_million": 0.26,
- "total_deaths_per_million": 2.009,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.027,
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-30",
- "total_cases": 641.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 4.571,
- "total_deaths": 43.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 30.665,
- "new_cases_per_million": 0.144,
- "new_cases_smoothed_per_million": 0.219,
- "total_deaths_per_million": 2.057,
- "new_deaths_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.027,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-01",
- "total_cases": 645.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 43.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 30.856,
- "new_cases_per_million": 0.191,
- "new_cases_smoothed_per_million": 0.198,
- "total_deaths_per_million": 2.057,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.014,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-02",
- "total_cases": 649.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 44.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 31.048,
- "new_cases_per_million": 0.191,
- "new_cases_smoothed_per_million": 0.157,
- "total_deaths_per_million": 2.105,
- "new_deaths_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.021,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-03",
- "total_cases": 652.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 44.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 31.191,
- "new_cases_per_million": 0.144,
- "new_cases_smoothed_per_million": 0.157,
- "total_deaths_per_million": 2.105,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.021,
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-04",
- "total_cases": 662.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 4.286,
- "total_deaths": 45.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 31.67,
- "new_cases_per_million": 0.478,
- "new_cases_smoothed_per_million": 0.205,
- "total_deaths_per_million": 2.153,
- "new_deaths_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.021,
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-05",
- "total_cases": 672.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 5.286,
- "total_deaths": 46.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 32.148,
- "new_cases_per_million": 0.478,
- "new_cases_smoothed_per_million": 0.253,
- "total_deaths_per_million": 2.201,
- "new_deaths_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.027,
- "stringency_index": 67.59
- },
- {
- "date": "2020-05-06",
- "total_cases": 688.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 7.143,
- "total_deaths": 48.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 32.913,
- "new_cases_per_million": 0.765,
- "new_cases_smoothed_per_million": 0.342,
- "total_deaths_per_million": 2.296,
- "new_deaths_per_million": 0.096,
- "new_deaths_smoothed_per_million": 0.041,
- "stringency_index": 67.59
- },
- {
- "date": "2020-05-07",
- "total_cases": 729.0,
- "new_cases": 41.0,
- "new_cases_smoothed": 12.571,
- "total_deaths": 48.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 34.875,
- "new_cases_per_million": 1.961,
- "new_cases_smoothed_per_million": 0.601,
- "total_deaths_per_million": 2.296,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.034,
- "stringency_index": 67.59
- },
- {
- "date": "2020-05-08",
- "total_cases": 736.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 13.0,
- "total_deaths": 48.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 35.21,
- "new_cases_per_million": 0.335,
- "new_cases_smoothed_per_million": 0.622,
- "total_deaths_per_million": 2.296,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.034,
- "stringency_index": 67.59
- },
- {
- "date": "2020-05-09",
- "total_cases": 744.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 13.571,
- "total_deaths": 48.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 35.593,
- "new_cases_per_million": 0.383,
- "new_cases_smoothed_per_million": 0.649,
- "total_deaths_per_million": 2.296,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.027,
- "stringency_index": 67.59
- },
- {
- "date": "2020-05-10",
- "total_cases": 748.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 13.714,
- "total_deaths": 48.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 35.784,
- "new_cases_per_million": 0.191,
- "new_cases_smoothed_per_million": 0.656,
- "total_deaths_per_million": 2.296,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.027,
- "stringency_index": 67.59
- },
- {
- "date": "2020-05-11",
- "total_cases": 751.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 12.714,
- "total_deaths": 49.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 35.927,
- "new_cases_per_million": 0.144,
- "new_cases_smoothed_per_million": 0.608,
- "total_deaths_per_million": 2.344,
- "new_deaths_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.027,
- "stringency_index": 67.59
- },
- {
- "date": "2020-05-12",
- "total_cases": 760.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 12.571,
- "total_deaths": 50.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 36.358,
- "new_cases_per_million": 0.431,
- "new_cases_smoothed_per_million": 0.601,
- "total_deaths_per_million": 2.392,
- "new_deaths_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.027,
- "stringency_index": 67.59
- },
- {
- "date": "2020-05-13",
- "total_cases": 766.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 11.143,
- "total_deaths": 51.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 36.645,
- "new_cases_per_million": 0.287,
- "new_cases_smoothed_per_million": 0.533,
- "total_deaths_per_million": 2.44,
- "new_deaths_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.021,
- "stringency_index": 67.59
- },
- {
- "date": "2020-05-14",
- "total_cases": 773.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 6.286,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 36.98,
- "new_cases_per_million": 0.335,
- "new_cases_smoothed_per_million": 0.301,
- "total_deaths_per_million": 2.44,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.021,
- "stringency_index": 60.19
- },
- {
- "date": "2020-05-15",
- "total_cases": 773.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.286,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 36.98,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.253,
- "total_deaths_per_million": 2.44,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.021,
- "stringency_index": 60.19
- },
- {
- "date": "2020-05-16",
- "total_cases": 782.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 37.41,
- "new_cases_per_million": 0.431,
- "new_cases_smoothed_per_million": 0.26,
- "total_deaths_per_million": 2.44,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.021,
- "stringency_index": 60.19
- },
- {
- "date": "2020-05-17",
- "total_cases": 782.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.857,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 37.41,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.232,
- "total_deaths_per_million": 2.44,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.021,
- "stringency_index": 60.19
- },
- {
- "date": "2020-05-18",
- "total_cases": 796.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 6.429,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 38.08,
- "new_cases_per_million": 0.67,
- "new_cases_smoothed_per_million": 0.308,
- "total_deaths_per_million": 2.44,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.014,
- "stringency_index": 60.19
- },
- {
- "date": "2020-05-19",
- "total_cases": 796.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 38.08,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.246,
- "total_deaths_per_million": 2.44,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 60.19
- },
- {
- "date": "2020-05-20",
- "total_cases": 806.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 5.714,
- "total_deaths": 52.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 38.559,
- "new_cases_per_million": 0.478,
- "new_cases_smoothed_per_million": 0.273,
- "total_deaths_per_million": 2.488,
- "new_deaths_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 60.19
- },
- {
- "date": "2020-05-21",
- "total_cases": 809.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 38.702,
- "new_cases_per_million": 0.144,
- "new_cases_smoothed_per_million": 0.246,
- "total_deaths_per_million": 2.488,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 60.19
- },
- {
- "date": "2020-05-22",
- "total_cases": 812.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 38.846,
- "new_cases_per_million": 0.144,
- "new_cases_smoothed_per_million": 0.267,
- "total_deaths_per_million": 2.488,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 60.19
- },
- {
- "date": "2020-05-23",
- "total_cases": 814.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 4.571,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 38.941,
- "new_cases_per_million": 0.096,
- "new_cases_smoothed_per_million": 0.219,
- "total_deaths_per_million": 2.488,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 60.19
- },
- {
- "date": "2020-05-24",
- "total_cases": 814.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.571,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 38.941,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.219,
- "total_deaths_per_million": 2.488,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 60.19
- },
- {
- "date": "2020-05-25",
- "total_cases": 832.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 39.802,
- "new_cases_per_million": 0.861,
- "new_cases_smoothed_per_million": 0.246,
- "total_deaths_per_million": 2.488,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 60.19
- },
- {
- "date": "2020-05-26",
- "total_cases": 841.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 6.429,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 40.233,
- "new_cases_per_million": 0.431,
- "new_cases_smoothed_per_million": 0.308,
- "total_deaths_per_million": 2.488,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 60.19
- },
- {
- "date": "2020-05-27",
- "total_cases": 845.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 53.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 40.424,
- "new_cases_per_million": 0.191,
- "new_cases_smoothed_per_million": 0.267,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 60.19
- },
- {
- "date": "2020-05-28",
- "total_cases": 845.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 40.424,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.246,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 60.19
- },
- {
- "date": "2020-05-29",
- "total_cases": 847.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 5.0,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 40.52,
- "new_cases_per_million": 0.096,
- "new_cases_smoothed_per_million": 0.239,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 60.19
- },
- {
- "date": "2020-05-30",
- "total_cases": 847.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.714,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 40.52,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.226,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 60.19
- },
- {
- "date": "2020-05-31",
- "total_cases": 853.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 40.807,
- "new_cases_per_million": 0.287,
- "new_cases_smoothed_per_million": 0.267,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 60.19
- },
- {
- "date": "2020-06-01",
- "total_cases": 881.0,
- "new_cases": 28.0,
- "new_cases_smoothed": 7.0,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 42.146,
- "new_cases_per_million": 1.34,
- "new_cases_smoothed_per_million": 0.335,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 45.37
- },
- {
- "date": "2020-06-02",
- "total_cases": 881.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.714,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 42.146,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.273,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 45.37
- },
- {
- "date": "2020-06-03",
- "total_cases": 883.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 42.242,
- "new_cases_per_million": 0.096,
- "new_cases_smoothed_per_million": 0.26,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-06-04",
- "total_cases": 884.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 42.29,
- "new_cases_per_million": 0.048,
- "new_cases_smoothed_per_million": 0.267,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-06-05",
- "total_cases": 885.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 42.338,
- "new_cases_per_million": 0.048,
- "new_cases_smoothed_per_million": 0.26,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-06-06",
- "total_cases": 888.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 5.857,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 42.481,
- "new_cases_per_million": 0.144,
- "new_cases_smoothed_per_million": 0.28,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-06-07",
- "total_cases": 888.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.0,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 42.481,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.239,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-06-08",
- "total_cases": 889.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 42.529,
- "new_cases_per_million": 0.048,
- "new_cases_smoothed_per_million": 0.055,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-06-09",
- "total_cases": 890.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 42.577,
- "new_cases_per_million": 0.048,
- "new_cases_smoothed_per_million": 0.062,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-06-10",
- "total_cases": 891.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 42.625,
- "new_cases_per_million": 0.048,
- "new_cases_smoothed_per_million": 0.055,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-06-11",
- "total_cases": 891.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 42.625,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.048,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-06-12",
- "total_cases": 892.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 42.673,
- "new_cases_per_million": 0.048,
- "new_cases_smoothed_per_million": 0.048,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-06-13",
- "total_cases": 892.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 42.673,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.027,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-06-14",
- "total_cases": 894.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 42.768,
- "new_cases_per_million": 0.096,
- "new_cases_smoothed_per_million": 0.041,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-06-15",
- "total_cases": 894.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 42.768,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.034,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-06-16",
- "total_cases": 894.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 42.768,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.027,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-06-17",
- "total_cases": 895.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 42.816,
- "new_cases_per_million": 0.048,
- "new_cases_smoothed_per_million": 0.027,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-06-18",
- "total_cases": 899.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 43.008,
- "new_cases_per_million": 0.191,
- "new_cases_smoothed_per_million": 0.055,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-06-19",
- "total_cases": 899.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 43.008,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.048,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-06-20",
- "total_cases": 900.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 43.055,
- "new_cases_per_million": 0.048,
- "new_cases_smoothed_per_million": 0.055,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-06-21",
- "total_cases": 902.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 43.151,
- "new_cases_per_million": 0.096,
- "new_cases_smoothed_per_million": 0.055,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-06-22",
- "total_cases": 903.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 43.199,
- "new_cases_per_million": 0.048,
- "new_cases_smoothed_per_million": 0.062,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-06-23",
- "total_cases": 907.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 43.39,
- "new_cases_per_million": 0.191,
- "new_cases_smoothed_per_million": 0.089,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-06-24",
- "total_cases": 919.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 3.429,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 43.964,
- "new_cases_per_million": 0.574,
- "new_cases_smoothed_per_million": 0.164,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-06-25",
- "total_cases": 934.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 5.0,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 44.682,
- "new_cases_per_million": 0.718,
- "new_cases_smoothed_per_million": 0.239,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-06-26",
- "total_cases": 941.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 6.0,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.017,
- "new_cases_per_million": 0.335,
- "new_cases_smoothed_per_million": 0.287,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-06-27",
- "total_cases": 941.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.857,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.017,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.28,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-06-28",
- "total_cases": 941.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.017,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.267,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-06-29",
- "total_cases": 959.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 8.0,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.878,
- "new_cases_per_million": 0.861,
- "new_cases_smoothed_per_million": 0.383,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-06-30",
- "total_cases": 959.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.429,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.878,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.355,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-01",
- "total_cases": 962.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 6.143,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 46.021,
- "new_cases_per_million": 0.144,
- "new_cases_smoothed_per_million": 0.294,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-02",
- "total_cases": 962.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.0,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 46.021,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.191,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-03",
- "total_cases": 980.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 46.883,
- "new_cases_per_million": 0.861,
- "new_cases_smoothed_per_million": 0.267,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-04",
- "total_cases": 987.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 6.571,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 47.217,
- "new_cases_per_million": 0.335,
- "new_cases_smoothed_per_million": 0.314,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-05",
- "total_cases": 987.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.571,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 47.217,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.314,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-06",
- "total_cases": 987.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.0,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 47.217,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.191,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-07",
- "total_cases": 1000.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 5.857,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 47.839,
- "new_cases_per_million": 0.622,
- "new_cases_smoothed_per_million": 0.28,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-08",
- "total_cases": 1003.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 5.857,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 47.983,
- "new_cases_per_million": 0.144,
- "new_cases_smoothed_per_million": 0.28,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-09",
- "total_cases": 1005.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 6.143,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 48.079,
- "new_cases_per_million": 0.096,
- "new_cases_smoothed_per_million": 0.294,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-10",
- "total_cases": 1020.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 5.714,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 48.796,
- "new_cases_per_million": 0.718,
- "new_cases_smoothed_per_million": 0.273,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-11",
- "total_cases": 1020.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.714,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 48.796,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.226,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-12",
- "total_cases": 1033.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 6.571,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 49.418,
- "new_cases_per_million": 0.622,
- "new_cases_smoothed_per_million": 0.314,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-13",
- "total_cases": 1036.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 7.0,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 49.562,
- "new_cases_per_million": 0.144,
- "new_cases_smoothed_per_million": 0.335,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-14",
- "total_cases": 1036.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 49.562,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.246,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-15",
- "total_cases": 1038.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 5.0,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 49.657,
- "new_cases_per_million": 0.096,
- "new_cases_smoothed_per_million": 0.239,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-16",
- "total_cases": 1038.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.714,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 49.657,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.226,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-17",
- "total_cases": 1038.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 49.657,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.123,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-18",
- "total_cases": 1047.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 3.857,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 50.088,
- "new_cases_per_million": 0.431,
- "new_cases_smoothed_per_million": 0.185,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-19",
- "total_cases": 1052.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 50.327,
- "new_cases_per_million": 0.239,
- "new_cases_smoothed_per_million": 0.13,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-20",
- "total_cases": 1065.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 50.949,
- "new_cases_per_million": 0.622,
- "new_cases_smoothed_per_million": 0.198,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-21",
- "total_cases": 1065.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 50.949,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.198,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-22",
- "total_cases": 1065.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.857,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 50.949,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.185,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-23",
- "total_cases": 1066.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 4.0,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 50.997,
- "new_cases_per_million": 0.048,
- "new_cases_smoothed_per_million": 0.191,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-24",
- "total_cases": 1075.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 5.286,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 51.427,
- "new_cases_per_million": 0.431,
- "new_cases_smoothed_per_million": 0.253,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-25",
- "total_cases": 1081.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 4.857,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 51.714,
- "new_cases_per_million": 0.287,
- "new_cases_smoothed_per_million": 0.232,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-26",
- "total_cases": 1086.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 4.857,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 51.954,
- "new_cases_per_million": 0.239,
- "new_cases_smoothed_per_million": 0.232,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-27",
- "total_cases": 1100.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 5.0,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 52.623,
- "new_cases_per_million": 0.67,
- "new_cases_smoothed_per_million": 0.239,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-28",
- "total_cases": 1100.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.0,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 52.623,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.239,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-29",
- "total_cases": 1106.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 5.857,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 52.91,
- "new_cases_per_million": 0.287,
- "new_cases_smoothed_per_million": 0.28,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-30",
- "total_cases": 1117.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 7.286,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 53.437,
- "new_cases_per_million": 0.526,
- "new_cases_smoothed_per_million": 0.349,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-31",
- "total_cases": 1117.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.0,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 53.437,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.287,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-01",
- "total_cases": 1143.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 8.857,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 54.68,
- "new_cases_per_million": 1.244,
- "new_cases_smoothed_per_million": 0.424,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-02",
- "total_cases": 1149.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 9.0,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 54.967,
- "new_cases_per_million": 0.287,
- "new_cases_smoothed_per_million": 0.431,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-03",
- "total_cases": 1150.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 7.143,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 55.015,
- "new_cases_per_million": 0.048,
- "new_cases_smoothed_per_million": 0.342,
- "total_deaths_per_million": 2.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-04",
- "total_cases": 1153.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 7.571,
- "total_deaths": 54.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 55.159,
- "new_cases_per_million": 0.144,
- "new_cases_smoothed_per_million": 0.362,
- "total_deaths_per_million": 2.583,
- "new_deaths_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-05",
- "total_cases": 1156.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 7.143,
- "total_deaths": 54.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 55.302,
- "new_cases_per_million": 0.144,
- "new_cases_smoothed_per_million": 0.342,
- "total_deaths_per_million": 2.583,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-06",
- "total_cases": 1158.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 5.857,
- "total_deaths": 54.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 55.398,
- "new_cases_per_million": 0.096,
- "new_cases_smoothed_per_million": 0.28,
- "total_deaths_per_million": 2.583,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-07",
- "total_cases": 1162.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 6.429,
- "total_deaths": 54.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 55.589,
- "new_cases_per_million": 0.191,
- "new_cases_smoothed_per_million": 0.308,
- "total_deaths_per_million": 2.583,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-08",
- "total_cases": 1175.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 4.571,
- "total_deaths": 54.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 56.211,
- "new_cases_per_million": 0.622,
- "new_cases_smoothed_per_million": 0.219,
- "total_deaths_per_million": 2.583,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-09",
- "total_cases": 1180.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 4.429,
- "total_deaths": 54.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 56.45,
- "new_cases_per_million": 0.239,
- "new_cases_smoothed_per_million": 0.212,
- "total_deaths_per_million": 2.583,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-10",
- "total_cases": 1204.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 7.714,
- "total_deaths": 54.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 57.599,
- "new_cases_per_million": 1.148,
- "new_cases_smoothed_per_million": 0.369,
- "total_deaths_per_million": 2.583,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-11",
- "total_cases": 1211.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 8.286,
- "total_deaths": 54.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 57.933,
- "new_cases_per_million": 0.335,
- "new_cases_smoothed_per_million": 0.396,
- "total_deaths_per_million": 2.583,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-12",
- "total_cases": 1213.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 8.143,
- "total_deaths": 54.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.029,
- "new_cases_per_million": 0.096,
- "new_cases_smoothed_per_million": 0.39,
- "total_deaths_per_million": 2.583,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-13",
- "total_cases": 1228.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 10.0,
- "total_deaths": 54.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.747,
- "new_cases_per_million": 0.718,
- "new_cases_smoothed_per_million": 0.478,
- "total_deaths_per_million": 2.583,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-14",
- "total_cases": 1238.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 10.857,
- "total_deaths": 54.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 59.225,
- "new_cases_per_million": 0.478,
- "new_cases_smoothed_per_million": 0.519,
- "total_deaths_per_million": 2.583,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-15",
- "total_cases": 1240.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 9.286,
- "total_deaths": 54.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 59.321,
- "new_cases_per_million": 0.096,
- "new_cases_smoothed_per_million": 0.444,
- "total_deaths_per_million": 2.583,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-16",
- "total_cases": 1249.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 9.857,
- "total_deaths": 54.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 59.751,
- "new_cases_per_million": 0.431,
- "new_cases_smoothed_per_million": 0.472,
- "total_deaths_per_million": 2.583,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-17",
- "total_cases": 1267.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 9.0,
- "total_deaths": 55.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 60.613,
- "new_cases_per_million": 0.861,
- "new_cases_smoothed_per_million": 0.431,
- "total_deaths_per_million": 2.631,
- "new_deaths_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-18",
- "total_cases": 1280.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 9.857,
- "total_deaths": 55.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 61.234,
- "new_cases_per_million": 0.622,
- "new_cases_smoothed_per_million": 0.472,
- "total_deaths_per_million": 2.631,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-19",
- "total_cases": 1285.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 10.286,
- "total_deaths": 55.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 61.474,
- "new_cases_per_million": 0.239,
- "new_cases_smoothed_per_million": 0.492,
- "total_deaths_per_million": 2.631,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-20",
- "total_cases": 1292.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 9.143,
- "total_deaths": 55.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 61.808,
- "new_cases_per_million": 0.335,
- "new_cases_smoothed_per_million": 0.437,
- "total_deaths_per_million": 2.631,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-21",
- "total_cases": 1297.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 8.429,
- "total_deaths": 55.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 62.048,
- "new_cases_per_million": 0.239,
- "new_cases_smoothed_per_million": 0.403,
- "total_deaths_per_million": 2.631,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-22",
- "total_cases": 1313.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 10.429,
- "total_deaths": 55.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 62.813,
- "new_cases_per_million": 0.765,
- "new_cases_smoothed_per_million": 0.499,
- "total_deaths_per_million": 2.631,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-23",
- "total_cases": 1320.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 10.143,
- "total_deaths": 55.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 63.148,
- "new_cases_per_million": 0.335,
- "new_cases_smoothed_per_million": 0.485,
- "total_deaths_per_million": 2.631,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-24",
- "total_cases": 1328.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 8.714,
- "total_deaths": 55.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 63.531,
- "new_cases_per_million": 0.383,
- "new_cases_smoothed_per_million": 0.417,
- "total_deaths_per_million": 2.631,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-25",
- "total_cases": 1338.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 8.286,
- "total_deaths": 55.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 64.009,
- "new_cases_per_million": 0.478,
- "new_cases_smoothed_per_million": 0.396,
- "total_deaths_per_million": 2.631,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-26",
- "total_cases": 1352.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 9.571,
- "total_deaths": 55.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 64.679,
- "new_cases_per_million": 0.67,
- "new_cases_smoothed_per_million": 0.458,
- "total_deaths_per_million": 2.631,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-27",
- "total_cases": 1352.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 8.571,
- "total_deaths": 55.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 64.679,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.41,
- "total_deaths_per_million": 2.631,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-28",
- "total_cases": 1357.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 8.571,
- "total_deaths": 55.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 64.918,
- "new_cases_per_million": 0.239,
- "new_cases_smoothed_per_million": 0.41,
- "total_deaths_per_million": 2.631,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-29",
- "total_cases": 1358.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 6.429,
- "total_deaths": 55.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 64.966,
- "new_cases_per_million": 0.048,
- "new_cases_smoothed_per_million": 0.308,
- "total_deaths_per_million": 2.631,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-30",
- "total_cases": 1362.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 6.0,
- "total_deaths": 55.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 65.157,
- "new_cases_per_million": 0.191,
- "new_cases_smoothed_per_million": 0.287,
- "total_deaths_per_million": 2.631,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-31",
- "total_cases": 1368.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 5.714,
- "total_deaths": 55.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 65.444,
- "new_cases_per_million": 0.287,
- "new_cases_smoothed_per_million": 0.273,
- "total_deaths_per_million": 2.631,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-09-01",
- "total_cases": 1370.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 4.571,
- "total_deaths": 55.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 65.54,
- "new_cases_per_million": 0.096,
- "new_cases_smoothed_per_million": 0.219,
- "total_deaths_per_million": 2.631,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-09-02",
- "total_cases": 1375.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 55.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 65.779,
- "new_cases_per_million": 0.239,
- "new_cases_smoothed_per_million": 0.157,
- "total_deaths_per_million": 2.631,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-09-03",
- "total_cases": 1378.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 55.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 65.923,
- "new_cases_per_million": 0.144,
- "new_cases_smoothed_per_million": 0.178,
- "total_deaths_per_million": 2.631,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-09-04",
- "total_cases": 1386.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 55.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 66.305,
- "new_cases_per_million": 0.383,
- "new_cases_smoothed_per_million": 0.198,
- "total_deaths_per_million": 2.631,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-09-05",
- "total_cases": 1408.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 7.143,
- "total_deaths": 55.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 67.358,
- "new_cases_per_million": 1.052,
- "new_cases_smoothed_per_million": 0.342,
- "total_deaths_per_million": 2.631,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-09-06",
- "total_cases": 1447.0,
- "new_cases": 39.0,
- "new_cases_smoothed": 12.143,
- "total_deaths": 55.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 69.224,
- "new_cases_per_million": 1.866,
- "new_cases_smoothed_per_million": 0.581,
- "total_deaths_per_million": 2.631,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-09-07",
- "total_cases": 1452.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 12.0,
- "total_deaths": 55.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 69.463,
- "new_cases_per_million": 0.239,
- "new_cases_smoothed_per_million": 0.574,
- "total_deaths_per_million": 2.631,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-09-08",
- "total_cases": 1463.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 13.286,
- "total_deaths": 56.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 69.989,
- "new_cases_per_million": 0.526,
- "new_cases_smoothed_per_million": 0.636,
- "total_deaths_per_million": 2.679,
- "new_deaths_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 48.15
- },
- {
- "date": "2020-09-09",
- "total_cases": 1466.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 13.0,
- "total_deaths": 56.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 70.133,
- "new_cases_per_million": 0.144,
- "new_cases_smoothed_per_million": 0.622,
- "total_deaths_per_million": 2.679,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 48.15
- },
- {
- "date": "2020-09-10",
- "total_cases": 1476.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 14.0,
- "total_deaths": 56.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 70.611,
- "new_cases_per_million": 0.478,
- "new_cases_smoothed_per_million": 0.67,
- "total_deaths_per_million": 2.679,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-11",
- "total_cases": 1486.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 14.286,
- "total_deaths": 56.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 71.089,
- "new_cases_per_million": 0.478,
- "new_cases_smoothed_per_million": 0.683,
- "total_deaths_per_million": 2.679,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-12",
- "total_cases": 1499.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 13.0,
- "total_deaths": 56.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 71.711,
- "new_cases_per_million": 0.622,
- "new_cases_smoothed_per_million": 0.622,
- "total_deaths_per_million": 2.679,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-13",
- "total_cases": 1514.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 9.571,
- "total_deaths": 56.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 72.429,
- "new_cases_per_million": 0.718,
- "new_cases_smoothed_per_million": 0.458,
- "total_deaths_per_million": 2.679,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-14",
- "total_cases": 1707.0,
- "new_cases": 193.0,
- "new_cases_smoothed": 36.429,
- "total_deaths": 56.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 81.662,
- "new_cases_per_million": 9.233,
- "new_cases_smoothed_per_million": 1.743,
- "total_deaths_per_million": 2.679,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-15",
- "total_cases": 1717.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 36.286,
- "total_deaths": 56.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 82.14,
- "new_cases_per_million": 0.478,
- "new_cases_smoothed_per_million": 1.736,
- "total_deaths_per_million": 2.679,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-16",
- "total_cases": 1733.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 38.143,
- "total_deaths": 56.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 82.906,
- "new_cases_per_million": 0.765,
- "new_cases_smoothed_per_million": 1.825,
- "total_deaths_per_million": 2.679,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-17",
- "total_cases": 1748.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 38.857,
- "total_deaths": 56.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 83.623,
- "new_cases_per_million": 0.718,
- "new_cases_smoothed_per_million": 1.859,
- "total_deaths_per_million": 2.679,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-18",
- "total_cases": 1767.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 40.143,
- "total_deaths": 56.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 84.532,
- "new_cases_per_million": 0.909,
- "new_cases_smoothed_per_million": 1.92,
- "total_deaths_per_million": 2.679,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-19",
- "total_cases": 1797.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 42.571,
- "total_deaths": 56.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 85.967,
- "new_cases_per_million": 1.435,
- "new_cases_smoothed_per_million": 2.037,
- "total_deaths_per_million": 2.679,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-20",
- "total_cases": 1816.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 43.143,
- "total_deaths": 56.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 86.876,
- "new_cases_per_million": 0.909,
- "new_cases_smoothed_per_million": 2.064,
- "total_deaths_per_million": 2.679,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-21",
- "total_cases": 1846.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 19.857,
- "total_deaths": 56.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 88.312,
- "new_cases_per_million": 1.435,
- "new_cases_smoothed_per_million": 0.95,
- "total_deaths_per_million": 2.679,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-22",
- "total_cases": 1896.0,
- "new_cases": 50.0,
- "new_cases_smoothed": 25.571,
- "total_deaths": 56.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 90.703,
- "new_cases_per_million": 2.392,
- "new_cases_smoothed_per_million": 1.223,
- "total_deaths_per_million": 2.679,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-23",
- "total_cases": 1907.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 24.857,
- "total_deaths": 56.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 91.23,
- "new_cases_per_million": 0.526,
- "new_cases_smoothed_per_million": 1.189,
- "total_deaths_per_million": 2.679,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-24",
- "total_cases": 1929.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 25.857,
- "total_deaths": 56.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 92.282,
- "new_cases_per_million": 1.052,
- "new_cases_smoothed_per_million": 1.237,
- "total_deaths_per_million": 2.679,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-25",
- "total_cases": 1950.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 26.143,
- "total_deaths": 56.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 93.287,
- "new_cases_per_million": 1.005,
- "new_cases_smoothed_per_million": 1.251,
- "total_deaths_per_million": 2.679,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- }
- ]
- },
- "BGD": {
- "continent": "Asia",
- "location": "Bangladesh",
- "population": 164689383.0,
- "population_density": 1265.036,
- "median_age": 27.5,
- "aged_65_older": 5.098,
- "aged_70_older": 3.262,
- "gdp_per_capita": 3523.984,
- "extreme_poverty": 14.8,
- "cardiovasc_death_rate": 298.003,
- "diabetes_prevalence": 8.38,
- "female_smokers": 1.0,
- "male_smokers": 44.7,
- "handwashing_facilities": 34.808,
- "hospital_beds_per_thousand": 0.8,
- "life_expectancy": 72.59,
- "human_development_index": 0.608,
- "data": [
- {
- "date": "2020-03-04",
- "total_tests": 108.0,
- "total_tests_per_thousand": 0.001,
- "tests_units": "samples tested",
- "stringency_index": 13.89
- },
- {
- "date": "2020-03-05",
- "new_tests": 3.0,
- "total_tests": 111.0,
- "total_tests_per_thousand": 0.001,
- "new_tests_per_thousand": 0.0,
- "tests_units": "samples tested",
- "stringency_index": 13.89
- },
- {
- "date": "2020-03-06",
- "tests_units": "samples tested",
- "stringency_index": 13.89
- },
- {
- "date": "2020-03-07",
- "total_tests": 120.0,
- "total_tests_per_thousand": 0.001,
- "tests_units": "samples tested",
- "stringency_index": 13.89
- },
- {
- "date": "2020-03-08",
- "new_tests": 7.0,
- "total_tests": 127.0,
- "total_tests_per_thousand": 0.001,
- "new_tests_per_thousand": 0.0,
- "tests_units": "samples tested",
- "stringency_index": 13.89
- },
- {
- "date": "2020-03-09",
- "total_cases": 3.0,
- "new_cases": 3.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.018,
- "new_cases_per_million": 0.018,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_tests": 10.0,
- "total_tests": 137.0,
- "total_tests_per_thousand": 0.001,
- "new_tests_per_thousand": 0.0,
- "tests_units": "samples tested",
- "stringency_index": 13.89
- },
- {
- "date": "2020-03-10",
- "new_tests": 10.0,
- "total_tests": 147.0,
- "total_tests_per_thousand": 0.001,
- "new_tests_per_thousand": 0.0,
- "tests_units": "samples tested",
- "stringency_index": 13.89
- },
- {
- "date": "2020-03-11",
- "new_tests": 16.0,
- "total_tests": 163.0,
- "total_tests_per_thousand": 0.001,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 8.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_units": "samples tested",
- "stringency_index": 13.89
- },
- {
- "date": "2020-03-12",
- "new_tests": 24.0,
- "total_tests": 187.0,
- "total_tests_per_thousand": 0.001,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 11.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_units": "samples tested",
- "stringency_index": 13.89
- },
- {
- "date": "2020-03-13",
- "new_tests": 24.0,
- "total_tests": 211.0,
- "total_tests_per_thousand": 0.001,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 14.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_units": "samples tested",
- "stringency_index": 13.89
- },
- {
- "date": "2020-03-14",
- "new_tests": 30.0,
- "total_tests": 241.0,
- "total_tests_per_thousand": 0.001,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 17.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_units": "samples tested",
- "stringency_index": 13.89
- },
- {
- "date": "2020-03-15",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.018,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.003,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 27.0,
- "total_tests": 268.0,
- "total_tests_per_thousand": 0.002,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 20.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_units": "samples tested",
- "stringency_index": 13.89
- },
- {
- "date": "2020-03-16",
- "new_cases_smoothed": 0.0,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 25.0,
- "total_tests": 293.0,
- "total_tests_per_thousand": 0.002,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 22.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "samples tested",
- "stringency_index": 33.33
- },
- {
- "date": "2020-03-17",
- "total_cases": 5.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.03,
- "new_cases_per_million": 0.012,
- "new_cases_smoothed_per_million": 0.002,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 49.0,
- "total_tests": 342.0,
- "total_tests_per_thousand": 0.002,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 28.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_per_case": 98.0,
- "positive_rate": 0.01,
- "tests_units": "samples tested",
- "stringency_index": 33.33
- },
- {
- "date": "2020-03-18",
- "total_cases": 8.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.049,
- "new_cases_per_million": 0.018,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 39.0,
- "total_tests": 381.0,
- "total_tests_per_thousand": 0.002,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 31.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_per_case": 43.4,
- "positive_rate": 0.023,
- "tests_units": "samples tested",
- "stringency_index": 33.33
- },
- {
- "date": "2020-03-19",
- "total_cases": 10.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.061,
- "new_cases_per_million": 0.012,
- "new_cases_smoothed_per_million": 0.006,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 46.0,
- "total_tests": 427.0,
- "total_tests_per_thousand": 0.003,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 34.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_per_case": 34.0,
- "positive_rate": 0.028999999999999998,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-03-20",
- "total_cases": 10.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.061,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.006,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 36.0,
- "total_tests": 463.0,
- "total_tests_per_thousand": 0.003,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 36.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_per_case": 36.0,
- "positive_rate": 0.027999999999999997,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-03-21",
- "total_cases": 17.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.103,
- "new_cases_per_million": 0.043,
- "new_cases_smoothed_per_million": 0.012,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 36.0,
- "total_tests": 499.0,
- "total_tests_per_thousand": 0.003,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 37.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_per_case": 18.5,
- "positive_rate": 0.054000000000000006,
- "tests_units": "samples tested",
- "stringency_index": 81.48
- },
- {
- "date": "2020-03-22",
- "total_cases": 24.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 2.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 0.146,
- "new_cases_per_million": 0.043,
- "new_cases_smoothed_per_million": 0.018,
- "total_deaths_per_million": 0.012,
- "new_deaths_per_million": 0.012,
- "new_deaths_smoothed_per_million": 0.002,
- "new_tests": 65.0,
- "total_tests": 564.0,
- "total_tests_per_thousand": 0.003,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 42.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_per_case": 14.0,
- "positive_rate": 0.071,
- "tests_units": "samples tested",
- "stringency_index": 81.48
- },
- {
- "date": "2020-03-23",
- "total_cases": 27.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 3.429,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 0.164,
- "new_cases_per_million": 0.018,
- "new_cases_smoothed_per_million": 0.021,
- "total_deaths_per_million": 0.018,
- "new_deaths_per_million": 0.006,
- "new_deaths_smoothed_per_million": 0.003,
- "new_tests": 56.0,
- "total_tests": 620.0,
- "total_tests_per_thousand": 0.004,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 47.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_per_case": 13.708,
- "positive_rate": 0.073,
- "tests_units": "samples tested",
- "stringency_index": 81.48
- },
- {
- "date": "2020-03-24",
- "total_cases": 33.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 4.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 0.2,
- "new_cases_per_million": 0.036,
- "new_cases_smoothed_per_million": 0.024,
- "total_deaths_per_million": 0.018,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.003,
- "new_tests": 92.0,
- "total_tests": 712.0,
- "total_tests_per_thousand": 0.004,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 53.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_per_case": 13.25,
- "positive_rate": 0.075,
- "tests_units": "samples tested",
- "stringency_index": 81.48
- },
- {
- "date": "2020-03-25",
- "total_cases": 39.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 4.429,
- "total_deaths": 4.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 0.237,
- "new_cases_per_million": 0.036,
- "new_cases_smoothed_per_million": 0.027,
- "total_deaths_per_million": 0.024,
- "new_deaths_per_million": 0.006,
- "new_deaths_smoothed_per_million": 0.003,
- "new_tests": 82.0,
- "total_tests": 794.0,
- "total_tests_per_thousand": 0.005,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 59.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_per_case": 13.323,
- "positive_rate": 0.075,
- "tests_units": "samples tested",
- "stringency_index": 82.41
- },
- {
- "date": "2020-03-26",
- "total_cases": 39.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 5.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 0.237,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.025,
- "total_deaths_per_million": 0.03,
- "new_deaths_per_million": 0.006,
- "new_deaths_smoothed_per_million": 0.004,
- "new_tests": 126.0,
- "total_tests": 920.0,
- "total_tests_per_thousand": 0.006,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 70.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_per_case": 16.897000000000002,
- "positive_rate": 0.059000000000000004,
- "tests_units": "samples tested",
- "stringency_index": 84.26
- },
- {
- "date": "2020-03-27",
- "total_cases": 48.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 0.291,
- "new_cases_per_million": 0.055,
- "new_cases_smoothed_per_million": 0.033,
- "total_deaths_per_million": 0.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.004,
- "new_tests": 106.0,
- "total_tests": 1026.0,
- "total_tests_per_thousand": 0.006,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 80.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_per_case": 14.737,
- "positive_rate": 0.068,
- "tests_units": "samples tested",
- "stringency_index": 84.26
- },
- {
- "date": "2020-03-28",
- "total_cases": 48.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.429,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 0.291,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.027,
- "total_deaths_per_million": 0.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.004,
- "new_tests": 50.0,
- "total_tests": 1076.0,
- "total_tests_per_thousand": 0.007,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 82.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_per_case": 18.516,
- "positive_rate": 0.054000000000000006,
- "tests_units": "samples tested",
- "stringency_index": 84.26
- },
- {
- "date": "2020-03-29",
- "total_cases": 48.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.429,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 0.291,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.021,
- "total_deaths_per_million": 0.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.003,
- "new_tests": 109.0,
- "total_tests": 1185.0,
- "total_tests_per_thousand": 0.007,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 89.0,
- "new_tests_smoothed_per_thousand": 0.001,
- "tests_per_case": 25.958000000000002,
- "positive_rate": 0.039,
- "tests_units": "samples tested",
- "stringency_index": 84.26
- },
- {
- "date": "2020-03-30",
- "total_cases": 49.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 3.143,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 0.298,
- "new_cases_per_million": 0.006,
- "new_cases_smoothed_per_million": 0.019,
- "total_deaths_per_million": 0.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.002,
- "new_tests": 153.0,
- "total_tests": 1338.0,
- "total_tests_per_thousand": 0.008,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 103.0,
- "new_tests_smoothed_per_thousand": 0.001,
- "tests_per_case": 32.773,
- "positive_rate": 0.031,
- "tests_units": "samples tested",
- "stringency_index": 84.26
- },
- {
- "date": "2020-03-31",
- "total_cases": 49.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 0.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.014,
- "total_deaths_per_million": 0.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.002,
- "new_tests": 264.0,
- "total_tests": 1602.0,
- "total_tests_per_thousand": 0.01,
- "new_tests_per_thousand": 0.002,
- "new_tests_smoothed": 127.0,
- "new_tests_smoothed_per_thousand": 0.001,
- "tests_per_case": 55.562,
- "positive_rate": 0.018000000000000002,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-04-01",
- "total_cases": 51.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 0.31,
- "new_cases_per_million": 0.012,
- "new_cases_smoothed_per_million": 0.01,
- "total_deaths_per_million": 0.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.001,
- "new_tests": 157.0,
- "total_tests": 1759.0,
- "total_tests_per_thousand": 0.011,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 138.0,
- "new_tests_smoothed_per_thousand": 0.001,
- "tests_per_case": 80.5,
- "positive_rate": 0.012,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-04-02",
- "total_cases": 54.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 6.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 0.328,
- "new_cases_per_million": 0.018,
- "new_cases_smoothed_per_million": 0.013,
- "total_deaths_per_million": 0.036,
- "new_deaths_per_million": 0.006,
- "new_deaths_smoothed_per_million": 0.001,
- "new_tests": 147.0,
- "total_tests": 1906.0,
- "total_tests_per_thousand": 0.012,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 141.0,
- "new_tests_smoothed_per_thousand": 0.001,
- "tests_per_case": 65.8,
- "positive_rate": 0.015,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-04-03",
- "total_cases": 56.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 0.34,
- "new_cases_per_million": 0.012,
- "new_cases_smoothed_per_million": 0.007,
- "total_deaths_per_million": 0.036,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.001,
- "new_tests": 207.0,
- "total_tests": 2113.0,
- "total_tests_per_thousand": 0.013,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 155.0,
- "new_tests_smoothed_per_thousand": 0.001,
- "tests_per_case": 135.625,
- "positive_rate": 0.006999999999999999,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-04-04",
- "total_cases": 61.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 0.37,
- "new_cases_per_million": 0.03,
- "new_cases_smoothed_per_million": 0.011,
- "total_deaths_per_million": 0.036,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.001,
- "new_tests": 434.0,
- "total_tests": 2547.0,
- "total_tests_per_thousand": 0.015,
- "new_tests_per_thousand": 0.003,
- "new_tests_smoothed": 210.0,
- "new_tests_smoothed_per_thousand": 0.001,
- "tests_per_case": 113.07700000000001,
- "positive_rate": 0.009000000000000001,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-04-05",
- "total_cases": 70.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 3.143,
- "total_deaths": 8.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 0.425,
- "new_cases_per_million": 0.055,
- "new_cases_smoothed_per_million": 0.019,
- "total_deaths_per_million": 0.049,
- "new_deaths_per_million": 0.012,
- "new_deaths_smoothed_per_million": 0.003,
- "new_tests": 367.0,
- "total_tests": 2914.0,
- "total_tests_per_thousand": 0.018,
- "new_tests_per_thousand": 0.002,
- "new_tests_smoothed": 247.0,
- "new_tests_smoothed_per_thousand": 0.001,
- "tests_per_case": 78.59100000000001,
- "positive_rate": 0.013000000000000001,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-04-06",
- "total_cases": 88.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 9.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 0.534,
- "new_cases_per_million": 0.109,
- "new_cases_smoothed_per_million": 0.034,
- "total_deaths_per_million": 0.055,
- "new_deaths_per_million": 0.006,
- "new_deaths_smoothed_per_million": 0.003,
- "new_tests": 696.0,
- "total_tests": 3610.0,
- "total_tests_per_thousand": 0.022,
- "new_tests_per_thousand": 0.004,
- "new_tests_smoothed": 325.0,
- "new_tests_smoothed_per_thousand": 0.002,
- "tests_per_case": 58.333,
- "positive_rate": 0.017,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-04-07",
- "total_cases": 123.0,
- "new_cases": 35.0,
- "new_cases_smoothed": 10.571,
- "total_deaths": 12.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 0.747,
- "new_cases_per_million": 0.213,
- "new_cases_smoothed_per_million": 0.064,
- "total_deaths_per_million": 0.073,
- "new_deaths_per_million": 0.018,
- "new_deaths_smoothed_per_million": 0.006,
- "new_tests": 792.0,
- "total_tests": 4402.0,
- "total_tests_per_thousand": 0.027,
- "new_tests_per_thousand": 0.005,
- "new_tests_smoothed": 400.0,
- "new_tests_smoothed_per_thousand": 0.002,
- "tests_per_case": 37.838,
- "positive_rate": 0.026000000000000002,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-04-08",
- "total_cases": 164.0,
- "new_cases": 41.0,
- "new_cases_smoothed": 16.143,
- "total_deaths": 17.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 0.996,
- "new_cases_per_million": 0.249,
- "new_cases_smoothed_per_million": 0.098,
- "total_deaths_per_million": 0.103,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.01,
- "new_tests": 981.0,
- "total_tests": 5383.0,
- "total_tests_per_thousand": 0.033,
- "new_tests_per_thousand": 0.006,
- "new_tests_smoothed": 518.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "tests_per_case": 32.088,
- "positive_rate": 0.031,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-04-09",
- "total_cases": 218.0,
- "new_cases": 54.0,
- "new_cases_smoothed": 23.429,
- "total_deaths": 20.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 1.324,
- "new_cases_per_million": 0.328,
- "new_cases_smoothed_per_million": 0.142,
- "total_deaths_per_million": 0.121,
- "new_deaths_per_million": 0.018,
- "new_deaths_smoothed_per_million": 0.012,
- "new_tests": 1097.0,
- "total_tests": 6480.0,
- "total_tests_per_thousand": 0.039,
- "new_tests_per_thousand": 0.007,
- "new_tests_smoothed": 653.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_per_case": 27.872,
- "positive_rate": 0.036000000000000004,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-04-10",
- "total_cases": 330.0,
- "new_cases": 112.0,
- "new_cases_smoothed": 39.143,
- "total_deaths": 21.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 2.004,
- "new_cases_per_million": 0.68,
- "new_cases_smoothed_per_million": 0.238,
- "total_deaths_per_million": 0.128,
- "new_deaths_per_million": 0.006,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 1184.0,
- "total_tests": 7664.0,
- "total_tests_per_thousand": 0.047,
- "new_tests_per_thousand": 0.007,
- "new_tests_smoothed": 793.0,
- "new_tests_smoothed_per_thousand": 0.005,
- "tests_per_case": 20.259,
- "positive_rate": 0.049,
- "tests_units": "samples tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-11",
- "total_cases": 424.0,
- "new_cases": 94.0,
- "new_cases_smoothed": 51.857,
- "total_deaths": 27.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 2.575,
- "new_cases_per_million": 0.571,
- "new_cases_smoothed_per_million": 0.315,
- "total_deaths_per_million": 0.164,
- "new_deaths_per_million": 0.036,
- "new_deaths_smoothed_per_million": 0.018,
- "new_tests": 649.0,
- "total_tests": 8313.0,
- "total_tests_per_thousand": 0.05,
- "new_tests_per_thousand": 0.004,
- "new_tests_smoothed": 824.0,
- "new_tests_smoothed_per_thousand": 0.005,
- "tests_per_case": 15.89,
- "positive_rate": 0.063,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-12",
- "total_cases": 482.0,
- "new_cases": 58.0,
- "new_cases_smoothed": 58.857,
- "total_deaths": 30.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 2.927,
- "new_cases_per_million": 0.352,
- "new_cases_smoothed_per_million": 0.357,
- "total_deaths_per_million": 0.182,
- "new_deaths_per_million": 0.018,
- "new_deaths_smoothed_per_million": 0.019,
- "new_tests": 1340.0,
- "total_tests": 9653.0,
- "total_tests_per_thousand": 0.059,
- "new_tests_per_thousand": 0.008,
- "new_tests_smoothed": 963.0,
- "new_tests_smoothed_per_thousand": 0.006,
- "tests_per_case": 16.362000000000002,
- "positive_rate": 0.061,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-13",
- "total_cases": 621.0,
- "new_cases": 139.0,
- "new_cases_smoothed": 76.143,
- "total_deaths": 34.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 3.771,
- "new_cases_per_million": 0.844,
- "new_cases_smoothed_per_million": 0.462,
- "total_deaths_per_million": 0.206,
- "new_deaths_per_million": 0.024,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 1570.0,
- "total_tests": 11223.0,
- "total_tests_per_thousand": 0.068,
- "new_tests_per_thousand": 0.01,
- "new_tests_smoothed": 1088.0,
- "new_tests_smoothed_per_thousand": 0.007,
- "tests_per_case": 14.289000000000001,
- "positive_rate": 0.07,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-14",
- "total_cases": 803.0,
- "new_cases": 182.0,
- "new_cases_smoothed": 97.143,
- "total_deaths": 39.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 4.876,
- "new_cases_per_million": 1.105,
- "new_cases_smoothed_per_million": 0.59,
- "total_deaths_per_million": 0.237,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.023,
- "new_tests": 1905.0,
- "total_tests": 13128.0,
- "total_tests_per_thousand": 0.08,
- "new_tests_per_thousand": 0.012,
- "new_tests_smoothed": 1247.0,
- "new_tests_smoothed_per_thousand": 0.008,
- "tests_per_case": 12.837,
- "positive_rate": 0.078,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-15",
- "total_cases": 1012.0,
- "new_cases": 209.0,
- "new_cases_smoothed": 121.143,
- "total_deaths": 46.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 6.145,
- "new_cases_per_million": 1.269,
- "new_cases_smoothed_per_million": 0.736,
- "total_deaths_per_million": 0.279,
- "new_deaths_per_million": 0.043,
- "new_deaths_smoothed_per_million": 0.025,
- "new_tests": 1740.0,
- "total_tests": 14868.0,
- "total_tests_per_thousand": 0.09,
- "new_tests_per_thousand": 0.011,
- "new_tests_smoothed": 1355.0,
- "new_tests_smoothed_per_thousand": 0.008,
- "tests_per_case": 11.185,
- "positive_rate": 0.08900000000000001,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-16",
- "total_cases": 1231.0,
- "new_cases": 219.0,
- "new_cases_smoothed": 144.714,
- "total_deaths": 50.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 7.475,
- "new_cases_per_million": 1.33,
- "new_cases_smoothed_per_million": 0.879,
- "total_deaths_per_million": 0.304,
- "new_deaths_per_million": 0.024,
- "new_deaths_smoothed_per_million": 0.026,
- "new_tests": 2135.0,
- "total_tests": 17003.0,
- "total_tests_per_thousand": 0.103,
- "new_tests_per_thousand": 0.013,
- "new_tests_smoothed": 1503.0,
- "new_tests_smoothed_per_thousand": 0.009,
- "tests_per_case": 10.386,
- "positive_rate": 0.096,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-17",
- "total_cases": 1572.0,
- "new_cases": 341.0,
- "new_cases_smoothed": 177.429,
- "total_deaths": 60.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 9.545,
- "new_cases_per_million": 2.071,
- "new_cases_smoothed_per_million": 1.077,
- "total_deaths_per_million": 0.364,
- "new_deaths_per_million": 0.061,
- "new_deaths_smoothed_per_million": 0.034,
- "new_tests": 2190.0,
- "total_tests": 19193.0,
- "total_tests_per_thousand": 0.117,
- "new_tests_per_thousand": 0.013,
- "new_tests_smoothed": 1647.0,
- "new_tests_smoothed_per_thousand": 0.01,
- "tests_per_case": 9.283,
- "positive_rate": 0.10800000000000001,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-18",
- "total_cases": 1838.0,
- "new_cases": 266.0,
- "new_cases_smoothed": 202.0,
- "total_deaths": 75.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 6.857,
- "total_cases_per_million": 11.16,
- "new_cases_per_million": 1.615,
- "new_cases_smoothed_per_million": 1.227,
- "total_deaths_per_million": 0.455,
- "new_deaths_per_million": 0.091,
- "new_deaths_smoothed_per_million": 0.042,
- "new_tests": 2114.0,
- "total_tests": 21307.0,
- "total_tests_per_thousand": 0.129,
- "new_tests_per_thousand": 0.013,
- "new_tests_smoothed": 1856.0,
- "new_tests_smoothed_per_thousand": 0.011,
- "tests_per_case": 9.187999999999999,
- "positive_rate": 0.109,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-19",
- "total_cases": 2144.0,
- "new_cases": 306.0,
- "new_cases_smoothed": 237.429,
- "total_deaths": 84.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 7.714,
- "total_cases_per_million": 13.018,
- "new_cases_per_million": 1.858,
- "new_cases_smoothed_per_million": 1.442,
- "total_deaths_per_million": 0.51,
- "new_deaths_per_million": 0.055,
- "new_deaths_smoothed_per_million": 0.047,
- "new_tests": 2634.0,
- "total_tests": 23941.0,
- "total_tests_per_thousand": 0.145,
- "new_tests_per_thousand": 0.016,
- "new_tests_smoothed": 2041.0,
- "new_tests_smoothed_per_thousand": 0.012,
- "tests_per_case": 8.596,
- "positive_rate": 0.11599999999999999,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-20",
- "total_cases": 2456.0,
- "new_cases": 312.0,
- "new_cases_smoothed": 262.143,
- "total_deaths": 91.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 14.913,
- "new_cases_per_million": 1.894,
- "new_cases_smoothed_per_million": 1.592,
- "total_deaths_per_million": 0.553,
- "new_deaths_per_million": 0.043,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 2663.0,
- "total_tests": 26604.0,
- "total_tests_per_thousand": 0.162,
- "new_tests_per_thousand": 0.016,
- "new_tests_smoothed": 2197.0,
- "new_tests_smoothed_per_thousand": 0.013,
- "tests_per_case": 8.381,
- "positive_rate": 0.11900000000000001,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-21",
- "total_cases": 2948.0,
- "new_cases": 492.0,
- "new_cases_smoothed": 306.429,
- "total_deaths": 101.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 8.857,
- "total_cases_per_million": 17.9,
- "new_cases_per_million": 2.987,
- "new_cases_smoothed_per_million": 1.861,
- "total_deaths_per_million": 0.613,
- "new_deaths_per_million": 0.061,
- "new_deaths_smoothed_per_million": 0.054,
- "new_tests": 2974.0,
- "total_tests": 29578.0,
- "total_tests_per_thousand": 0.18,
- "new_tests_per_thousand": 0.018,
- "new_tests_smoothed": 2350.0,
- "new_tests_smoothed_per_thousand": 0.014,
- "tests_per_case": 7.669,
- "positive_rate": 0.13,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-22",
- "total_cases": 3382.0,
- "new_cases": 434.0,
- "new_cases_smoothed": 338.571,
- "total_deaths": 110.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 9.143,
- "total_cases_per_million": 20.536,
- "new_cases_per_million": 2.635,
- "new_cases_smoothed_per_million": 2.056,
- "total_deaths_per_million": 0.668,
- "new_deaths_per_million": 0.055,
- "new_deaths_smoothed_per_million": 0.056,
- "new_tests": 3096.0,
- "total_tests": 32674.0,
- "total_tests_per_thousand": 0.198,
- "new_tests_per_thousand": 0.019,
- "new_tests_smoothed": 2544.0,
- "new_tests_smoothed_per_thousand": 0.015,
- "tests_per_case": 7.513999999999999,
- "positive_rate": 0.133,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-23",
- "total_cases": 3772.0,
- "new_cases": 390.0,
- "new_cases_smoothed": 363.0,
- "total_deaths": 120.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 10.0,
- "total_cases_per_million": 22.904,
- "new_cases_per_million": 2.368,
- "new_cases_smoothed_per_million": 2.204,
- "total_deaths_per_million": 0.729,
- "new_deaths_per_million": 0.061,
- "new_deaths_smoothed_per_million": 0.061,
- "new_tests": 3416.0,
- "total_tests": 36090.0,
- "total_tests_per_thousand": 0.219,
- "new_tests_per_thousand": 0.021,
- "new_tests_smoothed": 2727.0,
- "new_tests_smoothed_per_thousand": 0.017,
- "tests_per_case": 7.5120000000000005,
- "positive_rate": 0.133,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-24",
- "total_cases": 4186.0,
- "new_cases": 414.0,
- "new_cases_smoothed": 373.429,
- "total_deaths": 127.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 9.571,
- "total_cases_per_million": 25.418,
- "new_cases_per_million": 2.514,
- "new_cases_smoothed_per_million": 2.267,
- "total_deaths_per_million": 0.771,
- "new_deaths_per_million": 0.043,
- "new_deaths_smoothed_per_million": 0.058,
- "new_tests": 3686.0,
- "total_tests": 39776.0,
- "total_tests_per_thousand": 0.242,
- "new_tests_per_thousand": 0.022,
- "new_tests_smoothed": 2940.0,
- "new_tests_smoothed_per_thousand": 0.018,
- "tests_per_case": 7.872999999999999,
- "positive_rate": 0.127,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-25",
- "total_cases": 4689.0,
- "new_cases": 503.0,
- "new_cases_smoothed": 407.286,
- "total_deaths": 131.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 8.0,
- "total_cases_per_million": 28.472,
- "new_cases_per_million": 3.054,
- "new_cases_smoothed_per_million": 2.473,
- "total_deaths_per_million": 0.795,
- "new_deaths_per_million": 0.024,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 3236.0,
- "total_tests": 43012.0,
- "total_tests_per_thousand": 0.261,
- "new_tests_per_thousand": 0.02,
- "new_tests_smoothed": 3101.0,
- "new_tests_smoothed_per_thousand": 0.019,
- "tests_per_case": 7.614,
- "positive_rate": 0.131,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-26",
- "total_cases": 4998.0,
- "new_cases": 309.0,
- "new_cases_smoothed": 407.714,
- "total_deaths": 140.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 8.0,
- "total_cases_per_million": 30.348,
- "new_cases_per_million": 1.876,
- "new_cases_smoothed_per_million": 2.476,
- "total_deaths_per_million": 0.85,
- "new_deaths_per_million": 0.055,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 3473.0,
- "total_tests": 46485.0,
- "total_tests_per_thousand": 0.282,
- "new_tests_per_thousand": 0.021,
- "new_tests_smoothed": 3221.0,
- "new_tests_smoothed_per_thousand": 0.02,
- "tests_per_case": 7.9,
- "positive_rate": 0.127,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-27",
- "total_cases": 5416.0,
- "new_cases": 418.0,
- "new_cases_smoothed": 422.857,
- "total_deaths": 145.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 7.714,
- "total_cases_per_million": 32.886,
- "new_cases_per_million": 2.538,
- "new_cases_smoothed_per_million": 2.568,
- "total_deaths_per_million": 0.88,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.047,
- "new_tests": 3812.0,
- "total_tests": 50297.0,
- "total_tests_per_thousand": 0.305,
- "new_tests_per_thousand": 0.023,
- "new_tests_smoothed": 3385.0,
- "new_tests_smoothed_per_thousand": 0.021,
- "tests_per_case": 8.005,
- "positive_rate": 0.125,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-28",
- "total_cases": 5913.0,
- "new_cases": 497.0,
- "new_cases_smoothed": 423.571,
- "total_deaths": 152.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 7.286,
- "total_cases_per_million": 35.904,
- "new_cases_per_million": 3.018,
- "new_cases_smoothed_per_million": 2.572,
- "total_deaths_per_million": 0.923,
- "new_deaths_per_million": 0.043,
- "new_deaths_smoothed_per_million": 0.044,
- "new_tests": 4436.0,
- "total_tests": 54733.0,
- "total_tests_per_thousand": 0.332,
- "new_tests_per_thousand": 0.027,
- "new_tests_smoothed": 3594.0,
- "new_tests_smoothed_per_thousand": 0.022,
- "tests_per_case": 8.485,
- "positive_rate": 0.11800000000000001,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-29",
- "total_cases": 6462.0,
- "new_cases": 549.0,
- "new_cases_smoothed": 440.0,
- "total_deaths": 155.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 6.429,
- "total_cases_per_million": 39.238,
- "new_cases_per_million": 3.334,
- "new_cases_smoothed_per_million": 2.672,
- "total_deaths_per_million": 0.941,
- "new_deaths_per_million": 0.018,
- "new_deaths_smoothed_per_million": 0.039,
- "new_tests": 4968.0,
- "total_tests": 59701.0,
- "total_tests_per_thousand": 0.363,
- "new_tests_per_thousand": 0.03,
- "new_tests_smoothed": 3861.0,
- "new_tests_smoothed_per_thousand": 0.023,
- "tests_per_case": 8.775,
- "positive_rate": 0.114,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-30",
- "total_cases": 7103.0,
- "new_cases": 641.0,
- "new_cases_smoothed": 475.857,
- "total_deaths": 163.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 6.143,
- "total_cases_per_million": 43.13,
- "new_cases_per_million": 3.892,
- "new_cases_smoothed_per_million": 2.889,
- "total_deaths_per_million": 0.99,
- "new_deaths_per_million": 0.049,
- "new_deaths_smoothed_per_million": 0.037,
- "new_tests": 4965.0,
- "total_tests": 64666.0,
- "total_tests_per_thousand": 0.393,
- "new_tests_per_thousand": 0.03,
- "new_tests_smoothed": 4082.0,
- "new_tests_smoothed_per_thousand": 0.025,
- "tests_per_case": 8.578,
- "positive_rate": 0.11699999999999999,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-05-01",
- "total_cases": 7667.0,
- "new_cases": 564.0,
- "new_cases_smoothed": 497.286,
- "total_deaths": 168.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.857,
- "total_cases_per_million": 46.554,
- "new_cases_per_million": 3.425,
- "new_cases_smoothed_per_million": 3.02,
- "total_deaths_per_million": 1.02,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.036,
- "new_tests": 5573.0,
- "total_tests": 70239.0,
- "total_tests_per_thousand": 0.426,
- "new_tests_per_thousand": 0.034,
- "new_tests_smoothed": 4352.0,
- "new_tests_smoothed_per_thousand": 0.026,
- "tests_per_case": 8.752,
- "positive_rate": 0.114,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-02",
- "total_cases": 8238.0,
- "new_cases": 571.0,
- "new_cases_smoothed": 507.0,
- "total_deaths": 170.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 50.021,
- "new_cases_per_million": 3.467,
- "new_cases_smoothed_per_million": 3.079,
- "total_deaths_per_million": 1.032,
- "new_deaths_per_million": 0.012,
- "new_deaths_smoothed_per_million": 0.034,
- "new_tests": 5827.0,
- "total_tests": 76066.0,
- "total_tests_per_thousand": 0.462,
- "new_tests_per_thousand": 0.035,
- "new_tests_smoothed": 4722.0,
- "new_tests_smoothed_per_thousand": 0.029,
- "tests_per_case": 9.314,
- "positive_rate": 0.107,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-03",
- "total_cases": 8790.0,
- "new_cases": 552.0,
- "new_cases_smoothed": 541.714,
- "total_deaths": 175.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 53.373,
- "new_cases_per_million": 3.352,
- "new_cases_smoothed_per_million": 3.289,
- "total_deaths_per_million": 1.063,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.03,
- "new_tests": 5388.0,
- "total_tests": 81454.0,
- "total_tests_per_thousand": 0.495,
- "new_tests_per_thousand": 0.033,
- "new_tests_smoothed": 4996.0,
- "new_tests_smoothed_per_thousand": 0.03,
- "tests_per_case": 9.222999999999999,
- "positive_rate": 0.10800000000000001,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-04",
- "total_cases": 9455.0,
- "new_cases": 665.0,
- "new_cases_smoothed": 577.0,
- "total_deaths": 177.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 57.411,
- "new_cases_per_million": 4.038,
- "new_cases_smoothed_per_million": 3.504,
- "total_deaths_per_million": 1.075,
- "new_deaths_per_million": 0.012,
- "new_deaths_smoothed_per_million": 0.028,
- "new_tests": 6244.0,
- "total_tests": 87698.0,
- "total_tests_per_thousand": 0.533,
- "new_tests_per_thousand": 0.038,
- "new_tests_smoothed": 5343.0,
- "new_tests_smoothed_per_thousand": 0.032,
- "tests_per_case": 9.26,
- "positive_rate": 0.10800000000000001,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-05",
- "total_cases": 10143.0,
- "new_cases": 688.0,
- "new_cases_smoothed": 604.286,
- "total_deaths": 182.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 61.589,
- "new_cases_per_million": 4.178,
- "new_cases_smoothed_per_million": 3.669,
- "total_deaths_per_million": 1.105,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.026,
- "new_tests": 5705.0,
- "total_tests": 93403.0,
- "total_tests_per_thousand": 0.567,
- "new_tests_per_thousand": 0.035,
- "new_tests_smoothed": 5524.0,
- "new_tests_smoothed_per_thousand": 0.034,
- "tests_per_case": 9.141,
- "positive_rate": 0.109,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-06",
- "total_cases": 10929.0,
- "new_cases": 786.0,
- "new_cases_smoothed": 638.143,
- "total_deaths": 183.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 66.361,
- "new_cases_per_million": 4.773,
- "new_cases_smoothed_per_million": 3.875,
- "total_deaths_per_million": 1.111,
- "new_deaths_per_million": 0.006,
- "new_deaths_smoothed_per_million": 0.024,
- "new_tests": 6241.0,
- "total_tests": 99644.0,
- "total_tests_per_thousand": 0.605,
- "new_tests_per_thousand": 0.038,
- "new_tests_smoothed": 5706.0,
- "new_tests_smoothed_per_thousand": 0.035,
- "tests_per_case": 8.942,
- "positive_rate": 0.11199999999999999,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-07",
- "total_cases": 11719.0,
- "new_cases": 790.0,
- "new_cases_smoothed": 659.429,
- "total_deaths": 186.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 71.158,
- "new_cases_per_million": 4.797,
- "new_cases_smoothed_per_million": 4.004,
- "total_deaths_per_million": 1.129,
- "new_deaths_per_million": 0.018,
- "new_deaths_smoothed_per_million": 0.02,
- "new_tests": 5867.0,
- "total_tests": 105511.0,
- "total_tests_per_thousand": 0.641,
- "new_tests_per_thousand": 0.036,
- "new_tests_smoothed": 5835.0,
- "new_tests_smoothed_per_thousand": 0.035,
- "tests_per_case": 8.849,
- "positive_rate": 0.113,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-08",
- "total_cases": 12425.0,
- "new_cases": 706.0,
- "new_cases_smoothed": 679.714,
- "total_deaths": 199.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 75.445,
- "new_cases_per_million": 4.287,
- "new_cases_smoothed_per_million": 4.127,
- "total_deaths_per_million": 1.208,
- "new_deaths_per_million": 0.079,
- "new_deaths_smoothed_per_million": 0.027,
- "new_tests": 5943.0,
- "total_tests": 111454.0,
- "total_tests_per_thousand": 0.677,
- "new_tests_per_thousand": 0.036,
- "new_tests_smoothed": 5888.0,
- "new_tests_smoothed_per_thousand": 0.036,
- "tests_per_case": 8.662,
- "positive_rate": 0.115,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-09",
- "total_cases": 13134.0,
- "new_cases": 709.0,
- "new_cases_smoothed": 699.429,
- "total_deaths": 206.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 79.75,
- "new_cases_per_million": 4.305,
- "new_cases_smoothed_per_million": 4.247,
- "total_deaths_per_million": 1.251,
- "new_deaths_per_million": 0.043,
- "new_deaths_smoothed_per_million": 0.031,
- "new_tests": 5465.0,
- "total_tests": 116919.0,
- "total_tests_per_thousand": 0.71,
- "new_tests_per_thousand": 0.033,
- "new_tests_smoothed": 5836.0,
- "new_tests_smoothed_per_thousand": 0.035,
- "tests_per_case": 8.344,
- "positive_rate": 0.12,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-10",
- "total_cases": 13770.0,
- "new_cases": 636.0,
- "new_cases_smoothed": 711.429,
- "total_deaths": 214.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 83.612,
- "new_cases_per_million": 3.862,
- "new_cases_smoothed_per_million": 4.32,
- "total_deaths_per_million": 1.299,
- "new_deaths_per_million": 0.049,
- "new_deaths_smoothed_per_million": 0.034,
- "new_tests": 5738.0,
- "total_tests": 122657.0,
- "total_tests_per_thousand": 0.745,
- "new_tests_per_thousand": 0.035,
- "new_tests_smoothed": 5886.0,
- "new_tests_smoothed_per_thousand": 0.036,
- "tests_per_case": 8.273,
- "positive_rate": 0.121,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-11",
- "total_cases": 14657.0,
- "new_cases": 887.0,
- "new_cases_smoothed": 743.143,
- "total_deaths": 228.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 7.286,
- "total_cases_per_million": 88.998,
- "new_cases_per_million": 5.386,
- "new_cases_smoothed_per_million": 4.512,
- "total_deaths_per_million": 1.384,
- "new_deaths_per_million": 0.085,
- "new_deaths_smoothed_per_million": 0.044,
- "new_tests": 7208.0,
- "total_tests": 129865.0,
- "total_tests_per_thousand": 0.789,
- "new_tests_per_thousand": 0.044,
- "new_tests_smoothed": 6024.0,
- "new_tests_smoothed_per_thousand": 0.037,
- "tests_per_case": 8.106,
- "positive_rate": 0.12300000000000001,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-12",
- "total_cases": 15691.0,
- "new_cases": 1034.0,
- "new_cases_smoothed": 792.571,
- "total_deaths": 239.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 95.276,
- "new_cases_per_million": 6.278,
- "new_cases_smoothed_per_million": 4.813,
- "total_deaths_per_million": 1.451,
- "new_deaths_per_million": 0.067,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 6773.0,
- "total_tests": 136638.0,
- "total_tests_per_thousand": 0.83,
- "new_tests_per_thousand": 0.041,
- "new_tests_smoothed": 6176.0,
- "new_tests_smoothed_per_thousand": 0.038,
- "tests_per_case": 7.792000000000001,
- "positive_rate": 0.128,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-13",
- "total_cases": 16660.0,
- "new_cases": 969.0,
- "new_cases_smoothed": 818.714,
- "total_deaths": 250.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 9.571,
- "total_cases_per_million": 101.16,
- "new_cases_per_million": 5.884,
- "new_cases_smoothed_per_million": 4.971,
- "total_deaths_per_million": 1.518,
- "new_deaths_per_million": 0.067,
- "new_deaths_smoothed_per_million": 0.058,
- "new_tests": 7900.0,
- "total_tests": 144538.0,
- "total_tests_per_thousand": 0.878,
- "new_tests_per_thousand": 0.048,
- "new_tests_smoothed": 6413.0,
- "new_tests_smoothed_per_thousand": 0.039,
- "tests_per_case": 7.832999999999999,
- "positive_rate": 0.128,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-14",
- "total_cases": 17822.0,
- "new_cases": 1162.0,
- "new_cases_smoothed": 871.857,
- "total_deaths": 269.0,
- "new_deaths": 19.0,
- "new_deaths_smoothed": 11.857,
- "total_cases_per_million": 108.216,
- "new_cases_per_million": 7.056,
- "new_cases_smoothed_per_million": 5.294,
- "total_deaths_per_million": 1.633,
- "new_deaths_per_million": 0.115,
- "new_deaths_smoothed_per_million": 0.072,
- "new_tests": 7392.0,
- "total_tests": 151930.0,
- "total_tests_per_thousand": 0.923,
- "new_tests_per_thousand": 0.045,
- "new_tests_smoothed": 6631.0,
- "new_tests_smoothed_per_thousand": 0.04,
- "tests_per_case": 7.606,
- "positive_rate": 0.131,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-15",
- "total_cases": 18863.0,
- "new_cases": 1041.0,
- "new_cases_smoothed": 919.714,
- "total_deaths": 283.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 12.0,
- "total_cases_per_million": 114.537,
- "new_cases_per_million": 6.321,
- "new_cases_smoothed_per_million": 5.585,
- "total_deaths_per_million": 1.718,
- "new_deaths_per_million": 0.085,
- "new_deaths_smoothed_per_million": 0.073,
- "new_tests": 8582.0,
- "total_tests": 160512.0,
- "total_tests_per_thousand": 0.975,
- "new_tests_per_thousand": 0.052,
- "new_tests_smoothed": 7008.0,
- "new_tests_smoothed_per_thousand": 0.043,
- "tests_per_case": 7.62,
- "positive_rate": 0.131,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-16",
- "total_cases": 20065.0,
- "new_cases": 1202.0,
- "new_cases_smoothed": 990.143,
- "total_deaths": 298.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 13.143,
- "total_cases_per_million": 121.835,
- "new_cases_per_million": 7.299,
- "new_cases_smoothed_per_million": 6.012,
- "total_deaths_per_million": 1.809,
- "new_deaths_per_million": 0.091,
- "new_deaths_smoothed_per_million": 0.08,
- "new_tests": 6782.0,
- "total_tests": 167294.0,
- "total_tests_per_thousand": 1.016,
- "new_tests_per_thousand": 0.041,
- "new_tests_smoothed": 7196.0,
- "new_tests_smoothed_per_thousand": 0.044,
- "tests_per_case": 7.268,
- "positive_rate": 0.138,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-05-17",
- "total_cases": 20995.0,
- "new_cases": 930.0,
- "new_cases_smoothed": 1032.143,
- "total_deaths": 314.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 14.286,
- "total_cases_per_million": 127.482,
- "new_cases_per_million": 5.647,
- "new_cases_smoothed_per_million": 6.267,
- "total_deaths_per_million": 1.907,
- "new_deaths_per_million": 0.097,
- "new_deaths_smoothed_per_million": 0.087,
- "new_tests": 8114.0,
- "total_tests": 175408.0,
- "total_tests_per_thousand": 1.065,
- "new_tests_per_thousand": 0.049,
- "new_tests_smoothed": 7536.0,
- "new_tests_smoothed_per_thousand": 0.046,
- "tests_per_case": 7.301,
- "positive_rate": 0.13699999999999998,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-05-18",
- "total_cases": 22268.0,
- "new_cases": 1273.0,
- "new_cases_smoothed": 1087.286,
- "total_deaths": 328.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 14.286,
- "total_cases_per_million": 135.212,
- "new_cases_per_million": 7.73,
- "new_cases_smoothed_per_million": 6.602,
- "total_deaths_per_million": 1.992,
- "new_deaths_per_million": 0.085,
- "new_deaths_smoothed_per_million": 0.087,
- "new_tests": 9788.0,
- "total_tests": 185196.0,
- "total_tests_per_thousand": 1.125,
- "new_tests_per_thousand": 0.059,
- "new_tests_smoothed": 7904.0,
- "new_tests_smoothed_per_thousand": 0.048,
- "tests_per_case": 7.269,
- "positive_rate": 0.138,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-05-19",
- "total_cases": 23870.0,
- "new_cases": 1602.0,
- "new_cases_smoothed": 1168.429,
- "total_deaths": 349.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 15.714,
- "total_cases_per_million": 144.94,
- "new_cases_per_million": 9.727,
- "new_cases_smoothed_per_million": 7.095,
- "total_deaths_per_million": 2.119,
- "new_deaths_per_million": 0.128,
- "new_deaths_smoothed_per_million": 0.095,
- "new_tests": 8449.0,
- "total_tests": 193645.0,
- "total_tests_per_thousand": 1.176,
- "new_tests_per_thousand": 0.051,
- "new_tests_smoothed": 8144.0,
- "new_tests_smoothed_per_thousand": 0.049,
- "tests_per_case": 6.97,
- "positive_rate": 0.14300000000000002,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-05-20",
- "total_cases": 25121.0,
- "new_cases": 1251.0,
- "new_cases_smoothed": 1208.714,
- "total_deaths": 370.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 17.143,
- "total_cases_per_million": 152.536,
- "new_cases_per_million": 7.596,
- "new_cases_smoothed_per_million": 7.339,
- "total_deaths_per_million": 2.247,
- "new_deaths_per_million": 0.128,
- "new_deaths_smoothed_per_million": 0.104,
- "new_tests": 10207.0,
- "total_tests": 203852.0,
- "total_tests_per_thousand": 1.238,
- "new_tests_per_thousand": 0.062,
- "new_tests_smoothed": 8473.0,
- "new_tests_smoothed_per_thousand": 0.051,
- "tests_per_case": 7.01,
- "positive_rate": 0.14300000000000002,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-05-21",
- "total_cases": 26738.0,
- "new_cases": 1617.0,
- "new_cases_smoothed": 1273.714,
- "total_deaths": 386.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 16.714,
- "total_cases_per_million": 162.354,
- "new_cases_per_million": 9.818,
- "new_cases_smoothed_per_million": 7.734,
- "total_deaths_per_million": 2.344,
- "new_deaths_per_million": 0.097,
- "new_deaths_smoothed_per_million": 0.101,
- "new_tests": 10262.0,
- "total_tests": 214114.0,
- "total_tests_per_thousand": 1.3,
- "new_tests_per_thousand": 0.062,
- "new_tests_smoothed": 8883.0,
- "new_tests_smoothed_per_thousand": 0.054,
- "tests_per_case": 6.974,
- "positive_rate": 0.14300000000000002,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-05-22",
- "total_cases": 28511.0,
- "new_cases": 1773.0,
- "new_cases_smoothed": 1378.286,
- "total_deaths": 408.0,
- "new_deaths": 22.0,
- "new_deaths_smoothed": 17.857,
- "total_cases_per_million": 173.12,
- "new_cases_per_million": 10.766,
- "new_cases_smoothed_per_million": 8.369,
- "total_deaths_per_million": 2.477,
- "new_deaths_per_million": 0.134,
- "new_deaths_smoothed_per_million": 0.108,
- "new_tests": 9727.0,
- "total_tests": 223841.0,
- "total_tests_per_thousand": 1.359,
- "new_tests_per_thousand": 0.059,
- "new_tests_smoothed": 9047.0,
- "new_tests_smoothed_per_thousand": 0.055,
- "tests_per_case": 6.564,
- "positive_rate": 0.152,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-05-23",
- "total_cases": 30205.0,
- "new_cases": 1694.0,
- "new_cases_smoothed": 1448.571,
- "total_deaths": 432.0,
- "new_deaths": 24.0,
- "new_deaths_smoothed": 19.143,
- "total_cases_per_million": 183.406,
- "new_cases_per_million": 10.286,
- "new_cases_smoothed_per_million": 8.796,
- "total_deaths_per_million": 2.623,
- "new_deaths_per_million": 0.146,
- "new_deaths_smoothed_per_million": 0.116,
- "new_tests": 10834.0,
- "total_tests": 234675.0,
- "total_tests_per_thousand": 1.425,
- "new_tests_per_thousand": 0.066,
- "new_tests_smoothed": 9626.0,
- "new_tests_smoothed_per_thousand": 0.058,
- "tests_per_case": 6.645,
- "positive_rate": 0.15,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-05-24",
- "total_cases": 32078.0,
- "new_cases": 1873.0,
- "new_cases_smoothed": 1583.286,
- "total_deaths": 452.0,
- "new_deaths": 20.0,
- "new_deaths_smoothed": 19.714,
- "total_cases_per_million": 194.779,
- "new_cases_per_million": 11.373,
- "new_cases_smoothed_per_million": 9.614,
- "total_deaths_per_million": 2.745,
- "new_deaths_per_million": 0.121,
- "new_deaths_smoothed_per_million": 0.12,
- "new_tests": 8908.0,
- "total_tests": 243583.0,
- "total_tests_per_thousand": 1.479,
- "new_tests_per_thousand": 0.054,
- "new_tests_smoothed": 9739.0,
- "new_tests_smoothed_per_thousand": 0.059,
- "tests_per_case": 6.151,
- "positive_rate": 0.163,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-05-25",
- "total_cases": 33610.0,
- "new_cases": 1532.0,
- "new_cases_smoothed": 1620.286,
- "total_deaths": 480.0,
- "new_deaths": 28.0,
- "new_deaths_smoothed": 21.714,
- "total_cases_per_million": 204.081,
- "new_cases_per_million": 9.302,
- "new_cases_smoothed_per_million": 9.838,
- "total_deaths_per_million": 2.915,
- "new_deaths_per_million": 0.17,
- "new_deaths_smoothed_per_million": 0.132,
- "new_tests": 9451.0,
- "total_tests": 253034.0,
- "total_tests_per_thousand": 1.536,
- "new_tests_per_thousand": 0.057,
- "new_tests_smoothed": 9691.0,
- "new_tests_smoothed_per_thousand": 0.059,
- "tests_per_case": 5.981,
- "positive_rate": 0.16699999999999998,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-05-26",
- "total_cases": 35585.0,
- "new_cases": 1975.0,
- "new_cases_smoothed": 1673.571,
- "total_deaths": 501.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 21.714,
- "total_cases_per_million": 216.073,
- "new_cases_per_million": 11.992,
- "new_cases_smoothed_per_million": 10.162,
- "total_deaths_per_million": 3.042,
- "new_deaths_per_million": 0.128,
- "new_deaths_smoothed_per_million": 0.132,
- "new_tests": 5407.0,
- "total_tests": 258441.0,
- "total_tests_per_thousand": 1.569,
- "new_tests_per_thousand": 0.033,
- "new_tests_smoothed": 9257.0,
- "new_tests_smoothed_per_thousand": 0.056,
- "tests_per_case": 5.531000000000001,
- "positive_rate": 0.18100000000000002,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-05-27",
- "total_cases": 36751.0,
- "new_cases": 1166.0,
- "new_cases_smoothed": 1661.429,
- "total_deaths": 522.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 21.714,
- "total_cases_per_million": 223.153,
- "new_cases_per_million": 7.08,
- "new_cases_smoothed_per_million": 10.088,
- "total_deaths_per_million": 3.17,
- "new_deaths_per_million": 0.128,
- "new_deaths_smoothed_per_million": 0.132,
- "new_tests": 8015.0,
- "total_tests": 266456.0,
- "total_tests_per_thousand": 1.618,
- "new_tests_per_thousand": 0.049,
- "new_tests_smoothed": 8943.0,
- "new_tests_smoothed_per_thousand": 0.054,
- "tests_per_case": 5.382999999999999,
- "positive_rate": 0.18600000000000003,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-05-28",
- "total_cases": 38292.0,
- "new_cases": 1541.0,
- "new_cases_smoothed": 1650.571,
- "total_deaths": 544.0,
- "new_deaths": 22.0,
- "new_deaths_smoothed": 22.571,
- "total_cases_per_million": 232.51,
- "new_cases_per_million": 9.357,
- "new_cases_smoothed_per_million": 10.022,
- "total_deaths_per_million": 3.303,
- "new_deaths_per_million": 0.134,
- "new_deaths_smoothed_per_million": 0.137,
- "new_tests": 9320.0,
- "total_tests": 275776.0,
- "total_tests_per_thousand": 1.675,
- "new_tests_per_thousand": 0.057,
- "new_tests_smoothed": 8809.0,
- "new_tests_smoothed_per_thousand": 0.053,
- "tests_per_case": 5.337000000000001,
- "positive_rate": 0.187,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-05-29",
- "total_cases": 40321.0,
- "new_cases": 2029.0,
- "new_cases_smoothed": 1687.143,
- "total_deaths": 559.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 21.571,
- "total_cases_per_million": 244.831,
- "new_cases_per_million": 12.32,
- "new_cases_smoothed_per_million": 10.244,
- "total_deaths_per_million": 3.394,
- "new_deaths_per_million": 0.091,
- "new_deaths_smoothed_per_million": 0.131,
- "new_tests": 11291.0,
- "total_tests": 287067.0,
- "total_tests_per_thousand": 1.743,
- "new_tests_per_thousand": 0.069,
- "new_tests_smoothed": 9032.0,
- "new_tests_smoothed_per_thousand": 0.055,
- "tests_per_case": 5.353,
- "positive_rate": 0.187,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-05-30",
- "total_cases": 42844.0,
- "new_cases": 2523.0,
- "new_cases_smoothed": 1805.571,
- "total_deaths": 582.0,
- "new_deaths": 23.0,
- "new_deaths_smoothed": 21.429,
- "total_cases_per_million": 260.15,
- "new_cases_per_million": 15.32,
- "new_cases_smoothed_per_million": 10.963,
- "total_deaths_per_million": 3.534,
- "new_deaths_per_million": 0.14,
- "new_deaths_smoothed_per_million": 0.13,
- "new_tests": 9987.0,
- "total_tests": 297054.0,
- "total_tests_per_thousand": 1.804,
- "new_tests_per_thousand": 0.061,
- "new_tests_smoothed": 8911.0,
- "new_tests_smoothed_per_thousand": 0.054,
- "tests_per_case": 4.935,
- "positive_rate": 0.203,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-05-31",
- "total_cases": 44608.0,
- "new_cases": 1764.0,
- "new_cases_smoothed": 1790.0,
- "total_deaths": 610.0,
- "new_deaths": 28.0,
- "new_deaths_smoothed": 22.571,
- "total_cases_per_million": 270.861,
- "new_cases_per_million": 10.711,
- "new_cases_smoothed_per_million": 10.869,
- "total_deaths_per_million": 3.704,
- "new_deaths_per_million": 0.17,
- "new_deaths_smoothed_per_million": 0.137,
- "new_tests": 11876.0,
- "total_tests": 308930.0,
- "total_tests_per_thousand": 1.876,
- "new_tests_per_thousand": 0.072,
- "new_tests_smoothed": 9335.0,
- "new_tests_smoothed_per_thousand": 0.057,
- "tests_per_case": 5.215,
- "positive_rate": 0.192,
- "tests_units": "samples tested",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-01",
- "total_cases": 47153.0,
- "new_cases": 2545.0,
- "new_cases_smoothed": 1934.714,
- "total_deaths": 650.0,
- "new_deaths": 40.0,
- "new_deaths_smoothed": 24.286,
- "total_cases_per_million": 286.315,
- "new_cases_per_million": 15.453,
- "new_cases_smoothed_per_million": 11.748,
- "total_deaths_per_million": 3.947,
- "new_deaths_per_million": 0.243,
- "new_deaths_smoothed_per_million": 0.147,
- "new_tests": 11439.0,
- "total_tests": 320369.0,
- "total_tests_per_thousand": 1.945,
- "new_tests_per_thousand": 0.069,
- "new_tests_smoothed": 9619.0,
- "new_tests_smoothed_per_thousand": 0.058,
- "tests_per_case": 4.9719999999999995,
- "positive_rate": 0.201,
- "tests_units": "samples tested",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-02",
- "total_cases": 49534.0,
- "new_cases": 2381.0,
- "new_cases_smoothed": 1992.714,
- "total_deaths": 672.0,
- "new_deaths": 22.0,
- "new_deaths_smoothed": 24.429,
- "total_cases_per_million": 300.772,
- "new_cases_per_million": 14.458,
- "new_cases_smoothed_per_million": 12.1,
- "total_deaths_per_million": 4.08,
- "new_deaths_per_million": 0.134,
- "new_deaths_smoothed_per_million": 0.148,
- "new_tests": 12704.0,
- "total_tests": 333073.0,
- "total_tests_per_thousand": 2.022,
- "new_tests_per_thousand": 0.077,
- "new_tests_smoothed": 10662.0,
- "new_tests_smoothed_per_thousand": 0.065,
- "tests_per_case": 5.35,
- "positive_rate": 0.187,
- "tests_units": "samples tested",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-03",
- "total_cases": 52445.0,
- "new_cases": 2911.0,
- "new_cases_smoothed": 2242.0,
- "total_deaths": 709.0,
- "new_deaths": 37.0,
- "new_deaths_smoothed": 26.714,
- "total_cases_per_million": 318.448,
- "new_cases_per_million": 17.676,
- "new_cases_smoothed_per_million": 13.614,
- "total_deaths_per_million": 4.305,
- "new_deaths_per_million": 0.225,
- "new_deaths_smoothed_per_million": 0.162,
- "new_tests": 12510.0,
- "total_tests": 345583.0,
- "total_tests_per_thousand": 2.098,
- "new_tests_per_thousand": 0.076,
- "new_tests_smoothed": 11304.0,
- "new_tests_smoothed_per_thousand": 0.069,
- "tests_per_case": 5.042,
- "positive_rate": 0.198,
- "tests_units": "samples tested",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-04",
- "total_cases": 55140.0,
- "new_cases": 2695.0,
- "new_cases_smoothed": 2406.857,
- "total_deaths": 746.0,
- "new_deaths": 37.0,
- "new_deaths_smoothed": 28.857,
- "total_cases_per_million": 334.812,
- "new_cases_per_million": 16.364,
- "new_cases_smoothed_per_million": 14.615,
- "total_deaths_per_million": 4.53,
- "new_deaths_per_million": 0.225,
- "new_deaths_smoothed_per_million": 0.175,
- "new_tests": 12694.0,
- "total_tests": 358277.0,
- "total_tests_per_thousand": 2.175,
- "new_tests_per_thousand": 0.077,
- "new_tests_smoothed": 11786.0,
- "new_tests_smoothed_per_thousand": 0.072,
- "tests_per_case": 4.897,
- "positive_rate": 0.204,
- "tests_units": "samples tested",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-05",
- "total_cases": 57563.0,
- "new_cases": 2423.0,
- "new_cases_smoothed": 2463.143,
- "total_deaths": 781.0,
- "new_deaths": 35.0,
- "new_deaths_smoothed": 31.714,
- "total_cases_per_million": 349.525,
- "new_cases_per_million": 14.713,
- "new_cases_smoothed_per_million": 14.956,
- "total_deaths_per_million": 4.742,
- "new_deaths_per_million": 0.213,
- "new_deaths_smoothed_per_million": 0.193,
- "new_tests": 14088.0,
- "total_tests": 372365.0,
- "total_tests_per_thousand": 2.261,
- "new_tests_per_thousand": 0.086,
- "new_tests_smoothed": 12185.0,
- "new_tests_smoothed_per_thousand": 0.074,
- "tests_per_case": 4.947,
- "positive_rate": 0.20199999999999999,
- "tests_units": "samples tested",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-06",
- "total_cases": 60391.0,
- "new_cases": 2828.0,
- "new_cases_smoothed": 2506.714,
- "total_deaths": 811.0,
- "new_deaths": 30.0,
- "new_deaths_smoothed": 32.714,
- "total_cases_per_million": 366.696,
- "new_cases_per_million": 17.172,
- "new_cases_smoothed_per_million": 15.221,
- "total_deaths_per_million": 4.924,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.199,
- "new_tests": 12486.0,
- "total_tests": 384851.0,
- "total_tests_per_thousand": 2.337,
- "new_tests_per_thousand": 0.076,
- "new_tests_smoothed": 12542.0,
- "new_tests_smoothed_per_thousand": 0.076,
- "tests_per_case": 5.003,
- "positive_rate": 0.2,
- "tests_units": "samples tested",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-07",
- "total_cases": 63026.0,
- "new_cases": 2635.0,
- "new_cases_smoothed": 2631.143,
- "total_deaths": 846.0,
- "new_deaths": 35.0,
- "new_deaths_smoothed": 33.714,
- "total_cases_per_million": 382.696,
- "new_cases_per_million": 16.0,
- "new_cases_smoothed_per_million": 15.976,
- "total_deaths_per_million": 5.137,
- "new_deaths_per_million": 0.213,
- "new_deaths_smoothed_per_million": 0.205,
- "new_tests": 13136.0,
- "total_tests": 397987.0,
- "total_tests_per_thousand": 2.417,
- "new_tests_per_thousand": 0.08,
- "new_tests_smoothed": 12722.0,
- "new_tests_smoothed_per_thousand": 0.077,
- "tests_per_case": 4.835,
- "positive_rate": 0.207,
- "tests_units": "samples tested",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-08",
- "total_cases": 65769.0,
- "new_cases": 2743.0,
- "new_cases_smoothed": 2659.429,
- "total_deaths": 888.0,
- "new_deaths": 42.0,
- "new_deaths_smoothed": 34.0,
- "total_cases_per_million": 399.352,
- "new_cases_per_million": 16.656,
- "new_cases_smoothed_per_million": 16.148,
- "total_deaths_per_million": 5.392,
- "new_deaths_per_million": 0.255,
- "new_deaths_smoothed_per_million": 0.206,
- "new_tests": 12944.0,
- "total_tests": 410931.0,
- "total_tests_per_thousand": 2.495,
- "new_tests_per_thousand": 0.079,
- "new_tests_smoothed": 12937.0,
- "new_tests_smoothed_per_thousand": 0.079,
- "tests_per_case": 4.865,
- "positive_rate": 0.20600000000000002,
- "tests_units": "samples tested",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-09",
- "total_cases": 68504.0,
- "new_cases": 2735.0,
- "new_cases_smoothed": 2710.0,
- "total_deaths": 930.0,
- "new_deaths": 42.0,
- "new_deaths_smoothed": 36.857,
- "total_cases_per_million": 415.959,
- "new_cases_per_million": 16.607,
- "new_cases_smoothed_per_million": 16.455,
- "total_deaths_per_million": 5.647,
- "new_deaths_per_million": 0.255,
- "new_deaths_smoothed_per_million": 0.224,
- "new_tests": 14564.0,
- "total_tests": 425495.0,
- "total_tests_per_thousand": 2.584,
- "new_tests_per_thousand": 0.088,
- "new_tests_smoothed": 13203.0,
- "new_tests_smoothed_per_thousand": 0.08,
- "tests_per_case": 4.872,
- "positive_rate": 0.205,
- "tests_units": "samples tested",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-10",
- "total_cases": 71675.0,
- "new_cases": 3171.0,
- "new_cases_smoothed": 2747.143,
- "total_deaths": 975.0,
- "new_deaths": 45.0,
- "new_deaths_smoothed": 38.0,
- "total_cases_per_million": 435.213,
- "new_cases_per_million": 19.254,
- "new_cases_smoothed_per_million": 16.681,
- "total_deaths_per_million": 5.92,
- "new_deaths_per_million": 0.273,
- "new_deaths_smoothed_per_million": 0.231,
- "new_tests": 16065.0,
- "total_tests": 441560.0,
- "total_tests_per_thousand": 2.681,
- "new_tests_per_thousand": 0.098,
- "new_tests_smoothed": 13711.0,
- "new_tests_smoothed_per_thousand": 0.083,
- "tests_per_case": 4.9910000000000005,
- "positive_rate": 0.2,
- "tests_units": "samples tested",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-11",
- "total_cases": 74865.0,
- "new_cases": 3190.0,
- "new_cases_smoothed": 2817.857,
- "total_deaths": 1012.0,
- "new_deaths": 37.0,
- "new_deaths_smoothed": 38.0,
- "total_cases_per_million": 454.583,
- "new_cases_per_million": 19.37,
- "new_cases_smoothed_per_million": 17.11,
- "total_deaths_per_million": 6.145,
- "new_deaths_per_million": 0.225,
- "new_deaths_smoothed_per_million": 0.231,
- "new_tests": 15772.0,
- "total_tests": 457332.0,
- "total_tests_per_thousand": 2.777,
- "new_tests_per_thousand": 0.096,
- "new_tests_smoothed": 14151.0,
- "new_tests_smoothed_per_thousand": 0.086,
- "tests_per_case": 5.022,
- "positive_rate": 0.19899999999999998,
- "tests_units": "samples tested",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-12",
- "total_cases": 78052.0,
- "new_cases": 3187.0,
- "new_cases_smoothed": 2927.0,
- "total_deaths": 1049.0,
- "new_deaths": 37.0,
- "new_deaths_smoothed": 38.286,
- "total_cases_per_million": 473.935,
- "new_cases_per_million": 19.352,
- "new_cases_smoothed_per_million": 17.773,
- "total_deaths_per_million": 6.37,
- "new_deaths_per_million": 0.225,
- "new_deaths_smoothed_per_million": 0.232,
- "new_tests": 15990.0,
- "total_tests": 473322.0,
- "total_tests_per_thousand": 2.874,
- "new_tests_per_thousand": 0.097,
- "new_tests_smoothed": 14422.0,
- "new_tests_smoothed_per_thousand": 0.088,
- "tests_per_case": 4.927,
- "positive_rate": 0.203,
- "tests_units": "samples tested",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-13",
- "total_cases": 81523.0,
- "new_cases": 3471.0,
- "new_cases_smoothed": 3018.857,
- "total_deaths": 1095.0,
- "new_deaths": 46.0,
- "new_deaths_smoothed": 40.571,
- "total_cases_per_million": 495.011,
- "new_cases_per_million": 21.076,
- "new_cases_smoothed_per_million": 18.331,
- "total_deaths_per_million": 6.649,
- "new_deaths_per_million": 0.279,
- "new_deaths_smoothed_per_million": 0.246,
- "new_tests": 16638.0,
- "total_tests": 489960.0,
- "total_tests_per_thousand": 2.975,
- "new_tests_per_thousand": 0.101,
- "new_tests_smoothed": 15016.0,
- "new_tests_smoothed_per_thousand": 0.091,
- "tests_per_case": 4.974,
- "positive_rate": 0.201,
- "tests_units": "samples tested",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-14",
- "total_cases": 84379.0,
- "new_cases": 2856.0,
- "new_cases_smoothed": 3050.429,
- "total_deaths": 1139.0,
- "new_deaths": 44.0,
- "new_deaths_smoothed": 41.857,
- "total_cases_per_million": 512.352,
- "new_cases_per_million": 17.342,
- "new_cases_smoothed_per_million": 18.522,
- "total_deaths_per_million": 6.916,
- "new_deaths_per_million": 0.267,
- "new_deaths_smoothed_per_million": 0.254,
- "new_tests": 14505.0,
- "total_tests": 504465.0,
- "total_tests_per_thousand": 3.063,
- "new_tests_per_thousand": 0.088,
- "new_tests_smoothed": 15211.0,
- "new_tests_smoothed_per_thousand": 0.092,
- "tests_per_case": 4.987,
- "positive_rate": 0.201,
- "tests_units": "samples tested",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-15",
- "total_cases": 87520.0,
- "new_cases": 3141.0,
- "new_cases_smoothed": 3107.286,
- "total_deaths": 1171.0,
- "new_deaths": 32.0,
- "new_deaths_smoothed": 40.429,
- "total_cases_per_million": 531.425,
- "new_cases_per_million": 19.072,
- "new_cases_smoothed_per_million": 18.868,
- "total_deaths_per_million": 7.11,
- "new_deaths_per_million": 0.194,
- "new_deaths_smoothed_per_million": 0.245,
- "new_tests": 15038.0,
- "total_tests": 519503.0,
- "total_tests_per_thousand": 3.154,
- "new_tests_per_thousand": 0.091,
- "new_tests_smoothed": 15510.0,
- "new_tests_smoothed_per_thousand": 0.094,
- "tests_per_case": 4.9910000000000005,
- "positive_rate": 0.2,
- "tests_units": "samples tested",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-16",
- "total_cases": 90619.0,
- "new_cases": 3099.0,
- "new_cases_smoothed": 3159.286,
- "total_deaths": 1209.0,
- "new_deaths": 38.0,
- "new_deaths_smoothed": 39.857,
- "total_cases_per_million": 550.242,
- "new_cases_per_million": 18.817,
- "new_cases_smoothed_per_million": 19.183,
- "total_deaths_per_million": 7.341,
- "new_deaths_per_million": 0.231,
- "new_deaths_smoothed_per_million": 0.242,
- "new_tests": 17214.0,
- "total_tests": 536717.0,
- "total_tests_per_thousand": 3.259,
- "new_tests_per_thousand": 0.105,
- "new_tests_smoothed": 15889.0,
- "new_tests_smoothed_per_thousand": 0.096,
- "tests_per_case": 5.029,
- "positive_rate": 0.19899999999999998,
- "tests_units": "samples tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-06-17",
- "total_cases": 94481.0,
- "new_cases": 3862.0,
- "new_cases_smoothed": 3258.0,
- "total_deaths": 1262.0,
- "new_deaths": 53.0,
- "new_deaths_smoothed": 41.0,
- "total_cases_per_million": 573.692,
- "new_cases_per_million": 23.45,
- "new_cases_smoothed_per_million": 19.783,
- "total_deaths_per_million": 7.663,
- "new_deaths_per_million": 0.322,
- "new_deaths_smoothed_per_million": 0.249,
- "new_tests": 17527.0,
- "total_tests": 554244.0,
- "total_tests_per_thousand": 3.365,
- "new_tests_per_thousand": 0.106,
- "new_tests_smoothed": 16098.0,
- "new_tests_smoothed_per_thousand": 0.098,
- "tests_per_case": 4.941,
- "positive_rate": 0.20199999999999999,
- "tests_units": "samples tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-06-18",
- "total_cases": 98489.0,
- "new_cases": 4008.0,
- "new_cases_smoothed": 3374.857,
- "total_deaths": 1305.0,
- "new_deaths": 43.0,
- "new_deaths_smoothed": 41.857,
- "total_cases_per_million": 598.029,
- "new_cases_per_million": 24.337,
- "new_cases_smoothed_per_million": 20.492,
- "total_deaths_per_million": 7.924,
- "new_deaths_per_million": 0.261,
- "new_deaths_smoothed_per_million": 0.254,
- "new_tests": 16259.0,
- "total_tests": 570503.0,
- "total_tests_per_thousand": 3.464,
- "new_tests_per_thousand": 0.099,
- "new_tests_smoothed": 16167.0,
- "new_tests_smoothed_per_thousand": 0.098,
- "tests_per_case": 4.79,
- "positive_rate": 0.209,
- "tests_units": "samples tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-06-19",
- "total_cases": 102292.0,
- "new_cases": 3803.0,
- "new_cases_smoothed": 3462.857,
- "total_deaths": 1343.0,
- "new_deaths": 38.0,
- "new_deaths_smoothed": 42.0,
- "total_cases_per_million": 621.121,
- "new_cases_per_million": 23.092,
- "new_cases_smoothed_per_million": 21.027,
- "total_deaths_per_million": 8.155,
- "new_deaths_per_million": 0.231,
- "new_deaths_smoothed_per_million": 0.255,
- "new_tests": 12045.0,
- "total_tests": 582548.0,
- "total_tests_per_thousand": 3.537,
- "new_tests_per_thousand": 0.073,
- "new_tests_smoothed": 15604.0,
- "new_tests_smoothed_per_thousand": 0.095,
- "tests_per_case": 4.506,
- "positive_rate": 0.222,
- "tests_units": "samples tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-06-20",
- "total_cases": 105535.0,
- "new_cases": 3243.0,
- "new_cases_smoothed": 3430.286,
- "total_deaths": 1388.0,
- "new_deaths": 45.0,
- "new_deaths_smoothed": 41.857,
- "total_cases_per_million": 640.812,
- "new_cases_per_million": 19.692,
- "new_cases_smoothed_per_million": 20.829,
- "total_deaths_per_million": 8.428,
- "new_deaths_per_million": 0.273,
- "new_deaths_smoothed_per_million": 0.254,
- "new_tests": 17031.0,
- "total_tests": 599579.0,
- "total_tests_per_thousand": 3.641,
- "new_tests_per_thousand": 0.103,
- "new_tests_smoothed": 15660.0,
- "new_tests_smoothed_per_thousand": 0.095,
- "tests_per_case": 4.565,
- "positive_rate": 0.21899999999999997,
- "tests_units": "samples tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-06-21",
- "total_cases": 108775.0,
- "new_cases": 3240.0,
- "new_cases_smoothed": 3485.143,
- "total_deaths": 1425.0,
- "new_deaths": 37.0,
- "new_deaths_smoothed": 40.857,
- "total_cases_per_million": 660.486,
- "new_cases_per_million": 19.673,
- "new_cases_smoothed_per_million": 21.162,
- "total_deaths_per_million": 8.653,
- "new_deaths_per_million": 0.225,
- "new_deaths_smoothed_per_million": 0.248,
- "new_tests": 15585.0,
- "total_tests": 615164.0,
- "total_tests_per_thousand": 3.735,
- "new_tests_per_thousand": 0.095,
- "new_tests_smoothed": 15814.0,
- "new_tests_smoothed_per_thousand": 0.096,
- "tests_per_case": 4.538,
- "positive_rate": 0.22,
- "tests_units": "samples tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-06-22",
- "total_cases": 112306.0,
- "new_cases": 3531.0,
- "new_cases_smoothed": 3540.857,
- "total_deaths": 1464.0,
- "new_deaths": 39.0,
- "new_deaths_smoothed": 41.857,
- "total_cases_per_million": 681.926,
- "new_cases_per_million": 21.44,
- "new_cases_smoothed_per_million": 21.5,
- "total_deaths_per_million": 8.889,
- "new_deaths_per_million": 0.237,
- "new_deaths_smoothed_per_million": 0.254,
- "new_tests": 15555.0,
- "total_tests": 630719.0,
- "total_tests_per_thousand": 3.83,
- "new_tests_per_thousand": 0.094,
- "new_tests_smoothed": 15888.0,
- "new_tests_smoothed_per_thousand": 0.096,
- "tests_per_case": 4.487,
- "positive_rate": 0.223,
- "tests_units": "samples tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-06-23",
- "total_cases": 115786.0,
- "new_cases": 3480.0,
- "new_cases_smoothed": 3595.286,
- "total_deaths": 1502.0,
- "new_deaths": 38.0,
- "new_deaths_smoothed": 41.857,
- "total_cases_per_million": 703.057,
- "new_cases_per_million": 21.131,
- "new_cases_smoothed_per_million": 21.831,
- "total_deaths_per_million": 9.12,
- "new_deaths_per_million": 0.231,
- "new_deaths_smoothed_per_million": 0.254,
- "new_tests": 16292.0,
- "total_tests": 647011.0,
- "total_tests_per_thousand": 3.929,
- "new_tests_per_thousand": 0.099,
- "new_tests_smoothed": 15756.0,
- "new_tests_smoothed_per_thousand": 0.096,
- "tests_per_case": 4.382,
- "positive_rate": 0.228,
- "tests_units": "samples tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-06-24",
- "total_cases": 119198.0,
- "new_cases": 3412.0,
- "new_cases_smoothed": 3531.0,
- "total_deaths": 1545.0,
- "new_deaths": 43.0,
- "new_deaths_smoothed": 40.429,
- "total_cases_per_million": 723.775,
- "new_cases_per_million": 20.718,
- "new_cases_smoothed_per_million": 21.44,
- "total_deaths_per_million": 9.381,
- "new_deaths_per_million": 0.261,
- "new_deaths_smoothed_per_million": 0.245,
- "new_tests": 16433.0,
- "total_tests": 663444.0,
- "total_tests_per_thousand": 4.028,
- "new_tests_per_thousand": 0.1,
- "new_tests_smoothed": 15600.0,
- "new_tests_smoothed_per_thousand": 0.095,
- "tests_per_case": 4.418,
- "positive_rate": 0.226,
- "tests_units": "samples tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-06-25",
- "total_cases": 122660.0,
- "new_cases": 3462.0,
- "new_cases_smoothed": 3453.0,
- "total_deaths": 1582.0,
- "new_deaths": 37.0,
- "new_deaths_smoothed": 39.571,
- "total_cases_per_million": 744.796,
- "new_cases_per_million": 21.021,
- "new_cases_smoothed_per_million": 20.967,
- "total_deaths_per_million": 9.606,
- "new_deaths_per_million": 0.225,
- "new_deaths_smoothed_per_million": 0.24,
- "new_tests": 17999.0,
- "total_tests": 681443.0,
- "total_tests_per_thousand": 4.138,
- "new_tests_per_thousand": 0.109,
- "new_tests_smoothed": 15849.0,
- "new_tests_smoothed_per_thousand": 0.096,
- "tests_per_case": 4.59,
- "positive_rate": 0.218,
- "tests_units": "samples tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-06-26",
- "total_cases": 126606.0,
- "new_cases": 3946.0,
- "new_cases_smoothed": 3473.429,
- "total_deaths": 1621.0,
- "new_deaths": 39.0,
- "new_deaths_smoothed": 39.714,
- "total_cases_per_million": 768.756,
- "new_cases_per_million": 23.96,
- "new_cases_smoothed_per_million": 21.091,
- "total_deaths_per_million": 9.843,
- "new_deaths_per_million": 0.237,
- "new_deaths_smoothed_per_million": 0.241,
- "new_tests": 18498.0,
- "total_tests": 699941.0,
- "total_tests_per_thousand": 4.25,
- "new_tests_per_thousand": 0.112,
- "new_tests_smoothed": 16770.0,
- "new_tests_smoothed_per_thousand": 0.102,
- "tests_per_case": 4.828,
- "positive_rate": 0.207,
- "tests_units": "samples tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-06-27",
- "total_cases": 130474.0,
- "new_cases": 3868.0,
- "new_cases_smoothed": 3562.714,
- "total_deaths": 1661.0,
- "new_deaths": 40.0,
- "new_deaths_smoothed": 39.0,
- "total_cases_per_million": 792.243,
- "new_cases_per_million": 23.487,
- "new_cases_smoothed_per_million": 21.633,
- "total_deaths_per_million": 10.086,
- "new_deaths_per_million": 0.243,
- "new_deaths_smoothed_per_million": 0.237,
- "new_tests": 15157.0,
- "total_tests": 715098.0,
- "total_tests_per_thousand": 4.342,
- "new_tests_per_thousand": 0.092,
- "new_tests_smoothed": 16503.0,
- "new_tests_smoothed_per_thousand": 0.1,
- "tests_per_case": 4.632,
- "positive_rate": 0.21600000000000003,
- "tests_units": "samples tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-06-28",
- "total_cases": 133978.0,
- "new_cases": 3504.0,
- "new_cases_smoothed": 3600.429,
- "total_deaths": 1695.0,
- "new_deaths": 34.0,
- "new_deaths_smoothed": 38.571,
- "total_cases_per_million": 813.519,
- "new_cases_per_million": 21.276,
- "new_cases_smoothed_per_million": 21.862,
- "total_deaths_per_million": 10.292,
- "new_deaths_per_million": 0.206,
- "new_deaths_smoothed_per_million": 0.234,
- "new_tests": 18099.0,
- "total_tests": 733197.0,
- "total_tests_per_thousand": 4.452,
- "new_tests_per_thousand": 0.11,
- "new_tests_smoothed": 16862.0,
- "new_tests_smoothed_per_thousand": 0.102,
- "tests_per_case": 4.683,
- "positive_rate": 0.214,
- "tests_units": "samples tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-06-29",
- "total_cases": 137787.0,
- "new_cases": 3809.0,
- "new_cases_smoothed": 3640.143,
- "total_deaths": 1738.0,
- "new_deaths": 43.0,
- "new_deaths_smoothed": 39.143,
- "total_cases_per_million": 836.648,
- "new_cases_per_million": 23.128,
- "new_cases_smoothed_per_million": 22.103,
- "total_deaths_per_million": 10.553,
- "new_deaths_per_million": 0.261,
- "new_deaths_smoothed_per_million": 0.238,
- "new_tests": 17837.0,
- "total_tests": 751034.0,
- "total_tests_per_thousand": 4.56,
- "new_tests_per_thousand": 0.108,
- "new_tests_smoothed": 17188.0,
- "new_tests_smoothed_per_thousand": 0.104,
- "tests_per_case": 4.7219999999999995,
- "positive_rate": 0.212,
- "tests_units": "samples tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-06-30",
- "total_cases": 141801.0,
- "new_cases": 4014.0,
- "new_cases_smoothed": 3716.429,
- "total_deaths": 1783.0,
- "new_deaths": 45.0,
- "new_deaths_smoothed": 40.143,
- "total_cases_per_million": 861.021,
- "new_cases_per_million": 24.373,
- "new_cases_smoothed_per_million": 22.566,
- "total_deaths_per_million": 10.826,
- "new_deaths_per_million": 0.273,
- "new_deaths_smoothed_per_million": 0.244,
- "new_tests": 18426.0,
- "total_tests": 769460.0,
- "total_tests_per_thousand": 4.672,
- "new_tests_per_thousand": 0.112,
- "new_tests_smoothed": 17493.0,
- "new_tests_smoothed_per_thousand": 0.106,
- "tests_per_case": 4.707,
- "positive_rate": 0.212,
- "tests_units": "samples tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-07-01",
- "total_cases": 145483.0,
- "new_cases": 3682.0,
- "new_cases_smoothed": 3755.0,
- "total_deaths": 1847.0,
- "new_deaths": 64.0,
- "new_deaths_smoothed": 43.143,
- "total_cases_per_million": 883.378,
- "new_cases_per_million": 22.357,
- "new_cases_smoothed_per_million": 22.8,
- "total_deaths_per_million": 11.215,
- "new_deaths_per_million": 0.389,
- "new_deaths_smoothed_per_million": 0.262,
- "new_tests": 17875.0,
- "total_tests": 787335.0,
- "total_tests_per_thousand": 4.781,
- "new_tests_per_thousand": 0.109,
- "new_tests_smoothed": 17699.0,
- "new_tests_smoothed_per_thousand": 0.107,
- "tests_per_case": 4.713,
- "positive_rate": 0.212,
- "tests_units": "samples tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-07-02",
- "total_cases": 149258.0,
- "new_cases": 3775.0,
- "new_cases_smoothed": 3799.714,
- "total_deaths": 1888.0,
- "new_deaths": 41.0,
- "new_deaths_smoothed": 43.714,
- "total_cases_per_million": 906.3,
- "new_cases_per_million": 22.922,
- "new_cases_smoothed_per_million": 23.072,
- "total_deaths_per_million": 11.464,
- "new_deaths_per_million": 0.249,
- "new_deaths_smoothed_per_million": 0.265,
- "new_tests": 18362.0,
- "total_tests": 805697.0,
- "total_tests_per_thousand": 4.892,
- "new_tests_per_thousand": 0.111,
- "new_tests_smoothed": 17751.0,
- "new_tests_smoothed_per_thousand": 0.108,
- "tests_per_case": 4.672,
- "positive_rate": 0.214,
- "tests_units": "samples tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-07-03",
- "total_cases": 153277.0,
- "new_cases": 4019.0,
- "new_cases_smoothed": 3810.143,
- "total_deaths": 1926.0,
- "new_deaths": 38.0,
- "new_deaths_smoothed": 43.571,
- "total_cases_per_million": 930.704,
- "new_cases_per_million": 24.404,
- "new_cases_smoothed_per_million": 23.135,
- "total_deaths_per_million": 11.695,
- "new_deaths_per_million": 0.231,
- "new_deaths_smoothed_per_million": 0.265,
- "new_tests": 14650.0,
- "total_tests": 820347.0,
- "total_tests_per_thousand": 4.981,
- "new_tests_per_thousand": 0.089,
- "new_tests_smoothed": 17201.0,
- "new_tests_smoothed_per_thousand": 0.104,
- "tests_per_case": 4.515,
- "positive_rate": 0.222,
- "tests_units": "samples tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-07-04",
- "total_cases": 156391.0,
- "new_cases": 3114.0,
- "new_cases_smoothed": 3702.429,
- "total_deaths": 1968.0,
- "new_deaths": 42.0,
- "new_deaths_smoothed": 43.857,
- "total_cases_per_million": 949.612,
- "new_cases_per_million": 18.908,
- "new_cases_smoothed_per_million": 22.481,
- "total_deaths_per_million": 11.95,
- "new_deaths_per_million": 0.255,
- "new_deaths_smoothed_per_million": 0.266,
- "new_tests": 14727.0,
- "total_tests": 835074.0,
- "total_tests_per_thousand": 5.071,
- "new_tests_per_thousand": 0.089,
- "new_tests_smoothed": 17139.0,
- "new_tests_smoothed_per_thousand": 0.104,
- "tests_per_case": 4.629,
- "positive_rate": 0.21600000000000003,
- "tests_units": "samples tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-07-05",
- "total_cases": 159679.0,
- "new_cases": 3288.0,
- "new_cases_smoothed": 3671.571,
- "total_deaths": 1997.0,
- "new_deaths": 29.0,
- "new_deaths_smoothed": 43.143,
- "total_cases_per_million": 969.577,
- "new_cases_per_million": 19.965,
- "new_cases_smoothed_per_million": 22.294,
- "total_deaths_per_million": 12.126,
- "new_deaths_per_million": 0.176,
- "new_deaths_smoothed_per_million": 0.262,
- "new_tests": 13988.0,
- "total_tests": 849062.0,
- "total_tests_per_thousand": 5.156,
- "new_tests_per_thousand": 0.085,
- "new_tests_smoothed": 16552.0,
- "new_tests_smoothed_per_thousand": 0.101,
- "tests_per_case": 4.508,
- "positive_rate": 0.222,
- "tests_units": "samples tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-07-06",
- "total_cases": 162417.0,
- "new_cases": 2738.0,
- "new_cases_smoothed": 3518.571,
- "total_deaths": 2052.0,
- "new_deaths": 55.0,
- "new_deaths_smoothed": 44.857,
- "total_cases_per_million": 986.202,
- "new_cases_per_million": 16.625,
- "new_cases_smoothed_per_million": 21.365,
- "total_deaths_per_million": 12.46,
- "new_deaths_per_million": 0.334,
- "new_deaths_smoothed_per_million": 0.272,
- "new_tests": 14245.0,
- "total_tests": 863307.0,
- "total_tests_per_thousand": 5.242,
- "new_tests_per_thousand": 0.086,
- "new_tests_smoothed": 16039.0,
- "new_tests_smoothed_per_thousand": 0.097,
- "tests_per_case": 4.558,
- "positive_rate": 0.21899999999999997,
- "tests_units": "samples tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-07-07",
- "total_cases": 165618.0,
- "new_cases": 3201.0,
- "new_cases_smoothed": 3402.429,
- "total_deaths": 2096.0,
- "new_deaths": 44.0,
- "new_deaths_smoothed": 44.714,
- "total_cases_per_million": 1005.639,
- "new_cases_per_million": 19.437,
- "new_cases_smoothed_per_million": 20.66,
- "total_deaths_per_million": 12.727,
- "new_deaths_per_million": 0.267,
- "new_deaths_smoothed_per_million": 0.272,
- "new_tests": 13173.0,
- "total_tests": 876480.0,
- "total_tests_per_thousand": 5.322,
- "new_tests_per_thousand": 0.08,
- "new_tests_smoothed": 15289.0,
- "new_tests_smoothed_per_thousand": 0.093,
- "tests_per_case": 4.494,
- "positive_rate": 0.223,
- "tests_units": "samples tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-07-08",
- "total_cases": 168645.0,
- "new_cases": 3027.0,
- "new_cases_smoothed": 3308.857,
- "total_deaths": 2151.0,
- "new_deaths": 55.0,
- "new_deaths_smoothed": 43.429,
- "total_cases_per_million": 1024.019,
- "new_cases_per_million": 18.38,
- "new_cases_smoothed_per_million": 20.092,
- "total_deaths_per_million": 13.061,
- "new_deaths_per_million": 0.334,
- "new_deaths_smoothed_per_million": 0.264,
- "new_tests": 15672.0,
- "total_tests": 892152.0,
- "total_tests_per_thousand": 5.417,
- "new_tests_per_thousand": 0.095,
- "new_tests_smoothed": 14974.0,
- "new_tests_smoothed_per_thousand": 0.091,
- "tests_per_case": 4.525,
- "positive_rate": 0.221,
- "tests_units": "samples tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-07-09",
- "total_cases": 172134.0,
- "new_cases": 3489.0,
- "new_cases_smoothed": 3268.0,
- "total_deaths": 2197.0,
- "new_deaths": 46.0,
- "new_deaths_smoothed": 44.143,
- "total_cases_per_million": 1045.204,
- "new_cases_per_million": 21.185,
- "new_cases_smoothed_per_million": 19.843,
- "total_deaths_per_million": 13.34,
- "new_deaths_per_million": 0.279,
- "new_deaths_smoothed_per_million": 0.268,
- "new_tests": 15632.0,
- "total_tests": 907784.0,
- "total_tests_per_thousand": 5.512,
- "new_tests_per_thousand": 0.095,
- "new_tests_smoothed": 14584.0,
- "new_tests_smoothed_per_thousand": 0.089,
- "tests_per_case": 4.463,
- "positive_rate": 0.22399999999999998,
- "tests_units": "samples tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-07-10",
- "total_cases": 175494.0,
- "new_cases": 3360.0,
- "new_cases_smoothed": 3173.857,
- "total_deaths": 2238.0,
- "new_deaths": 41.0,
- "new_deaths_smoothed": 44.571,
- "total_cases_per_million": 1065.606,
- "new_cases_per_million": 20.402,
- "new_cases_smoothed_per_million": 19.272,
- "total_deaths_per_million": 13.589,
- "new_deaths_per_million": 0.249,
- "new_deaths_smoothed_per_million": 0.271,
- "new_tests": 13488.0,
- "total_tests": 921272.0,
- "total_tests_per_thousand": 5.594,
- "new_tests_per_thousand": 0.082,
- "new_tests_smoothed": 14418.0,
- "new_tests_smoothed_per_thousand": 0.088,
- "tests_per_case": 4.543,
- "positive_rate": 0.22,
- "tests_units": "samples tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-07-11",
- "total_cases": 178443.0,
- "new_cases": 2949.0,
- "new_cases_smoothed": 3150.286,
- "total_deaths": 2275.0,
- "new_deaths": 37.0,
- "new_deaths_smoothed": 43.857,
- "total_cases_per_million": 1083.512,
- "new_cases_per_million": 17.906,
- "new_cases_smoothed_per_million": 19.129,
- "total_deaths_per_million": 13.814,
- "new_deaths_per_million": 0.225,
- "new_deaths_smoothed_per_million": 0.266,
- "new_tests": 11184.0,
- "total_tests": 932456.0,
- "total_tests_per_thousand": 5.662,
- "new_tests_per_thousand": 0.068,
- "new_tests_smoothed": 13912.0,
- "new_tests_smoothed_per_thousand": 0.084,
- "tests_per_case": 4.416,
- "positive_rate": 0.226,
- "tests_units": "samples tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-07-12",
- "total_cases": 181129.0,
- "new_cases": 2686.0,
- "new_cases_smoothed": 3064.286,
- "total_deaths": 2305.0,
- "new_deaths": 30.0,
- "new_deaths_smoothed": 44.0,
- "total_cases_per_million": 1099.822,
- "new_cases_per_million": 16.309,
- "new_cases_smoothed_per_million": 18.606,
- "total_deaths_per_million": 13.996,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.267,
- "new_tests": 8068.0,
- "total_tests": 940524.0,
- "total_tests_per_thousand": 5.711,
- "new_tests_per_thousand": 0.049,
- "new_tests_smoothed": 13066.0,
- "new_tests_smoothed_per_thousand": 0.079,
- "tests_per_case": 4.263999999999999,
- "positive_rate": 0.235,
- "tests_units": "samples tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-07-13",
- "total_cases": 183795.0,
- "new_cases": 2666.0,
- "new_cases_smoothed": 3054.0,
- "total_deaths": 2352.0,
- "new_deaths": 47.0,
- "new_deaths_smoothed": 42.857,
- "total_cases_per_million": 1116.01,
- "new_cases_per_million": 16.188,
- "new_cases_smoothed_per_million": 18.544,
- "total_deaths_per_million": 14.281,
- "new_deaths_per_million": 0.285,
- "new_deaths_smoothed_per_million": 0.26,
- "new_tests": 12423.0,
- "total_tests": 952947.0,
- "total_tests_per_thousand": 5.786,
- "new_tests_per_thousand": 0.075,
- "new_tests_smoothed": 12806.0,
- "new_tests_smoothed_per_thousand": 0.078,
- "tests_per_case": 4.1930000000000005,
- "positive_rate": 0.23800000000000002,
- "tests_units": "samples tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-07-14",
- "total_cases": 186894.0,
- "new_cases": 3099.0,
- "new_cases_smoothed": 3039.429,
- "total_deaths": 2391.0,
- "new_deaths": 39.0,
- "new_deaths_smoothed": 42.143,
- "total_cases_per_million": 1134.827,
- "new_cases_per_million": 18.817,
- "new_cases_smoothed_per_million": 18.456,
- "total_deaths_per_million": 14.518,
- "new_deaths_per_million": 0.237,
- "new_deaths_smoothed_per_million": 0.256,
- "new_tests": 13453.0,
- "total_tests": 966400.0,
- "total_tests_per_thousand": 5.868,
- "new_tests_per_thousand": 0.082,
- "new_tests_smoothed": 12846.0,
- "new_tests_smoothed_per_thousand": 0.078,
- "tests_per_case": 4.226,
- "positive_rate": 0.237,
- "tests_units": "samples tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-07-15",
- "total_cases": 190057.0,
- "new_cases": 3163.0,
- "new_cases_smoothed": 3058.857,
- "total_deaths": 2424.0,
- "new_deaths": 33.0,
- "new_deaths_smoothed": 39.0,
- "total_cases_per_million": 1154.033,
- "new_cases_per_million": 19.206,
- "new_cases_smoothed_per_million": 18.573,
- "total_deaths_per_million": 14.719,
- "new_deaths_per_million": 0.2,
- "new_deaths_smoothed_per_million": 0.237,
- "new_tests": 14002.0,
- "total_tests": 980402.0,
- "total_tests_per_thousand": 5.953,
- "new_tests_per_thousand": 0.085,
- "new_tests_smoothed": 12607.0,
- "new_tests_smoothed_per_thousand": 0.077,
- "tests_per_case": 4.121,
- "positive_rate": 0.243,
- "tests_units": "samples tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-07-16",
- "total_cases": 193590.0,
- "new_cases": 3533.0,
- "new_cases_smoothed": 3065.143,
- "total_deaths": 2457.0,
- "new_deaths": 33.0,
- "new_deaths_smoothed": 37.143,
- "total_cases_per_million": 1175.486,
- "new_cases_per_million": 21.453,
- "new_cases_smoothed_per_million": 18.612,
- "total_deaths_per_million": 14.919,
- "new_deaths_per_million": 0.2,
- "new_deaths_smoothed_per_million": 0.226,
- "new_tests": 12829.0,
- "total_tests": 993231.0,
- "total_tests_per_thousand": 6.031,
- "new_tests_per_thousand": 0.078,
- "new_tests_smoothed": 12207.0,
- "new_tests_smoothed_per_thousand": 0.074,
- "tests_per_case": 3.983,
- "positive_rate": 0.251,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-07-17",
- "total_cases": 196323.0,
- "new_cases": 2733.0,
- "new_cases_smoothed": 2975.571,
- "total_deaths": 2496.0,
- "new_deaths": 39.0,
- "new_deaths_smoothed": 36.857,
- "total_cases_per_million": 1192.08,
- "new_cases_per_million": 16.595,
- "new_cases_smoothed_per_million": 18.068,
- "total_deaths_per_million": 15.156,
- "new_deaths_per_million": 0.237,
- "new_deaths_smoothed_per_million": 0.224,
- "new_tests": 13520.0,
- "total_tests": 1006751.0,
- "total_tests_per_thousand": 6.113,
- "new_tests_per_thousand": 0.082,
- "new_tests_smoothed": 12211.0,
- "new_tests_smoothed_per_thousand": 0.074,
- "tests_per_case": 4.104,
- "positive_rate": 0.244,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-07-18",
- "total_cases": 199357.0,
- "new_cases": 3034.0,
- "new_cases_smoothed": 2987.714,
- "total_deaths": 2547.0,
- "new_deaths": 51.0,
- "new_deaths_smoothed": 38.857,
- "total_cases_per_million": 1210.503,
- "new_cases_per_million": 18.423,
- "new_cases_smoothed_per_million": 18.142,
- "total_deaths_per_million": 15.465,
- "new_deaths_per_million": 0.31,
- "new_deaths_smoothed_per_million": 0.236,
- "new_tests": 10923.0,
- "total_tests": 1017674.0,
- "total_tests_per_thousand": 6.179,
- "new_tests_per_thousand": 0.066,
- "new_tests_smoothed": 12174.0,
- "new_tests_smoothed_per_thousand": 0.074,
- "tests_per_case": 4.075,
- "positive_rate": 0.245,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-07-19",
- "total_cases": 202066.0,
- "new_cases": 2709.0,
- "new_cases_smoothed": 2991.0,
- "total_deaths": 2581.0,
- "new_deaths": 34.0,
- "new_deaths_smoothed": 39.429,
- "total_cases_per_million": 1226.952,
- "new_cases_per_million": 16.449,
- "new_cases_smoothed_per_million": 18.161,
- "total_deaths_per_million": 15.672,
- "new_deaths_per_million": 0.206,
- "new_deaths_smoothed_per_million": 0.239,
- "new_tests": 10625.0,
- "total_tests": 1028299.0,
- "total_tests_per_thousand": 6.244,
- "new_tests_per_thousand": 0.065,
- "new_tests_smoothed": 12539.0,
- "new_tests_smoothed_per_thousand": 0.076,
- "tests_per_case": 4.192,
- "positive_rate": 0.239,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-07-20",
- "total_cases": 204525.0,
- "new_cases": 2459.0,
- "new_cases_smoothed": 2961.429,
- "total_deaths": 2618.0,
- "new_deaths": 37.0,
- "new_deaths_smoothed": 38.0,
- "total_cases_per_million": 1241.883,
- "new_cases_per_million": 14.931,
- "new_cases_smoothed_per_million": 17.982,
- "total_deaths_per_million": 15.897,
- "new_deaths_per_million": 0.225,
- "new_deaths_smoothed_per_million": 0.231,
- "new_tests": 13362.0,
- "total_tests": 1041661.0,
- "total_tests_per_thousand": 6.325,
- "new_tests_per_thousand": 0.081,
- "new_tests_smoothed": 12673.0,
- "new_tests_smoothed_per_thousand": 0.077,
- "tests_per_case": 4.279,
- "positive_rate": 0.23399999999999999,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-07-21",
- "total_cases": 207453.0,
- "new_cases": 2928.0,
- "new_cases_smoothed": 2937.0,
- "total_deaths": 2668.0,
- "new_deaths": 50.0,
- "new_deaths_smoothed": 39.571,
- "total_cases_per_million": 1259.662,
- "new_cases_per_million": 17.779,
- "new_cases_smoothed_per_million": 17.834,
- "total_deaths_per_million": 16.2,
- "new_deaths_per_million": 0.304,
- "new_deaths_smoothed_per_million": 0.24,
- "new_tests": 12898.0,
- "total_tests": 1054559.0,
- "total_tests_per_thousand": 6.403,
- "new_tests_per_thousand": 0.078,
- "new_tests_smoothed": 12594.0,
- "new_tests_smoothed_per_thousand": 0.076,
- "tests_per_case": 4.288,
- "positive_rate": 0.233,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-07-22",
- "total_cases": 210510.0,
- "new_cases": 3057.0,
- "new_cases_smoothed": 2921.857,
- "total_deaths": 2709.0,
- "new_deaths": 41.0,
- "new_deaths_smoothed": 40.714,
- "total_cases_per_million": 1278.224,
- "new_cases_per_million": 18.562,
- "new_cases_smoothed_per_million": 17.742,
- "total_deaths_per_million": 16.449,
- "new_deaths_per_million": 0.249,
- "new_deaths_smoothed_per_million": 0.247,
- "new_tests": 12050.0,
- "total_tests": 1066609.0,
- "total_tests_per_thousand": 6.476,
- "new_tests_per_thousand": 0.073,
- "new_tests_smoothed": 12315.0,
- "new_tests_smoothed_per_thousand": 0.075,
- "tests_per_case": 4.215,
- "positive_rate": 0.237,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-07-23",
- "total_cases": 213254.0,
- "new_cases": 2744.0,
- "new_cases_smoothed": 2809.143,
- "total_deaths": 2751.0,
- "new_deaths": 42.0,
- "new_deaths_smoothed": 42.0,
- "total_cases_per_million": 1294.886,
- "new_cases_per_million": 16.662,
- "new_cases_smoothed_per_million": 17.057,
- "total_deaths_per_million": 16.704,
- "new_deaths_per_million": 0.255,
- "new_deaths_smoothed_per_million": 0.255,
- "new_tests": 12398.0,
- "total_tests": 1079007.0,
- "total_tests_per_thousand": 6.552,
- "new_tests_per_thousand": 0.075,
- "new_tests_smoothed": 12254.0,
- "new_tests_smoothed_per_thousand": 0.074,
- "tests_per_case": 4.362,
- "positive_rate": 0.22899999999999998,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-07-24",
- "total_cases": 216110.0,
- "new_cases": 2856.0,
- "new_cases_smoothed": 2826.714,
- "total_deaths": 2801.0,
- "new_deaths": 50.0,
- "new_deaths_smoothed": 43.571,
- "total_cases_per_million": 1312.228,
- "new_cases_per_million": 17.342,
- "new_cases_smoothed_per_million": 17.164,
- "total_deaths_per_million": 17.008,
- "new_deaths_per_million": 0.304,
- "new_deaths_smoothed_per_million": 0.265,
- "new_tests": 12027.0,
- "total_tests": 1091034.0,
- "total_tests_per_thousand": 6.625,
- "new_tests_per_thousand": 0.073,
- "new_tests_smoothed": 12040.0,
- "new_tests_smoothed_per_thousand": 0.073,
- "tests_per_case": 4.2589999999999995,
- "positive_rate": 0.235,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-07-25",
- "total_cases": 218658.0,
- "new_cases": 2548.0,
- "new_cases_smoothed": 2757.286,
- "total_deaths": 2836.0,
- "new_deaths": 35.0,
- "new_deaths_smoothed": 41.286,
- "total_cases_per_million": 1327.699,
- "new_cases_per_million": 15.472,
- "new_cases_smoothed_per_million": 16.742,
- "total_deaths_per_million": 17.22,
- "new_deaths_per_million": 0.213,
- "new_deaths_smoothed_per_million": 0.251,
- "new_tests": 10446.0,
- "total_tests": 1101480.0,
- "total_tests_per_thousand": 6.688,
- "new_tests_per_thousand": 0.063,
- "new_tests_smoothed": 11972.0,
- "new_tests_smoothed_per_thousand": 0.073,
- "tests_per_case": 4.342,
- "positive_rate": 0.23,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-07-26",
- "total_cases": 221178.0,
- "new_cases": 2520.0,
- "new_cases_smoothed": 2730.286,
- "total_deaths": 2874.0,
- "new_deaths": 38.0,
- "new_deaths_smoothed": 41.857,
- "total_cases_per_million": 1343.001,
- "new_cases_per_million": 15.302,
- "new_cases_smoothed_per_million": 16.578,
- "total_deaths_per_million": 17.451,
- "new_deaths_per_million": 0.231,
- "new_deaths_smoothed_per_million": 0.254,
- "new_tests": 10078.0,
- "total_tests": 1111558.0,
- "total_tests_per_thousand": 6.749,
- "new_tests_per_thousand": 0.061,
- "new_tests_smoothed": 11894.0,
- "new_tests_smoothed_per_thousand": 0.072,
- "tests_per_case": 4.356,
- "positive_rate": 0.23,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-07-27",
- "total_cases": 223453.0,
- "new_cases": 2275.0,
- "new_cases_smoothed": 2704.0,
- "total_deaths": 2928.0,
- "new_deaths": 54.0,
- "new_deaths_smoothed": 44.286,
- "total_cases_per_million": 1356.815,
- "new_cases_per_million": 13.814,
- "new_cases_smoothed_per_million": 16.419,
- "total_deaths_per_million": 17.779,
- "new_deaths_per_million": 0.328,
- "new_deaths_smoothed_per_million": 0.269,
- "new_tests": 12859.0,
- "total_tests": 1124417.0,
- "total_tests_per_thousand": 6.828,
- "new_tests_per_thousand": 0.078,
- "new_tests_smoothed": 11822.0,
- "new_tests_smoothed_per_thousand": 0.072,
- "tests_per_case": 4.372,
- "positive_rate": 0.22899999999999998,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-07-28",
- "total_cases": 226225.0,
- "new_cases": 2772.0,
- "new_cases_smoothed": 2681.714,
- "total_deaths": 2965.0,
- "new_deaths": 37.0,
- "new_deaths_smoothed": 42.429,
- "total_cases_per_million": 1373.647,
- "new_cases_per_million": 16.832,
- "new_cases_smoothed_per_million": 16.283,
- "total_deaths_per_million": 18.004,
- "new_deaths_per_million": 0.225,
- "new_deaths_smoothed_per_million": 0.258,
- "new_tests": 12714.0,
- "total_tests": 1137131.0,
- "total_tests_per_thousand": 6.905,
- "new_tests_per_thousand": 0.077,
- "new_tests_smoothed": 11796.0,
- "new_tests_smoothed_per_thousand": 0.072,
- "tests_per_case": 4.399,
- "positive_rate": 0.22699999999999998,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-07-29",
- "total_cases": 229185.0,
- "new_cases": 2960.0,
- "new_cases_smoothed": 2667.857,
- "total_deaths": 3000.0,
- "new_deaths": 35.0,
- "new_deaths_smoothed": 41.571,
- "total_cases_per_million": 1391.62,
- "new_cases_per_million": 17.973,
- "new_cases_smoothed_per_million": 16.199,
- "total_deaths_per_million": 18.216,
- "new_deaths_per_million": 0.213,
- "new_deaths_smoothed_per_million": 0.252,
- "new_tests": 14127.0,
- "total_tests": 1151258.0,
- "total_tests_per_thousand": 6.99,
- "new_tests_per_thousand": 0.086,
- "new_tests_smoothed": 12093.0,
- "new_tests_smoothed_per_thousand": 0.073,
- "tests_per_case": 4.533,
- "positive_rate": 0.221,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-07-30",
- "total_cases": 232194.0,
- "new_cases": 3009.0,
- "new_cases_smoothed": 2705.714,
- "total_deaths": 3035.0,
- "new_deaths": 35.0,
- "new_deaths_smoothed": 40.571,
- "total_cases_per_million": 1409.891,
- "new_cases_per_million": 18.271,
- "new_cases_smoothed_per_million": 16.429,
- "total_deaths_per_million": 18.429,
- "new_deaths_per_million": 0.213,
- "new_deaths_smoothed_per_million": 0.246,
- "new_tests": 12937.0,
- "total_tests": 1164195.0,
- "total_tests_per_thousand": 7.069,
- "new_tests_per_thousand": 0.079,
- "new_tests_smoothed": 12170.0,
- "new_tests_smoothed_per_thousand": 0.074,
- "tests_per_case": 4.498,
- "positive_rate": 0.222,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-07-31",
- "total_cases": 234889.0,
- "new_cases": 2695.0,
- "new_cases_smoothed": 2682.714,
- "total_deaths": 3083.0,
- "new_deaths": 48.0,
- "new_deaths_smoothed": 40.286,
- "total_cases_per_million": 1426.255,
- "new_cases_per_million": 16.364,
- "new_cases_smoothed_per_million": 16.29,
- "total_deaths_per_million": 18.72,
- "new_deaths_per_million": 0.291,
- "new_deaths_smoothed_per_million": 0.245,
- "new_tests": 12614.0,
- "total_tests": 1176809.0,
- "total_tests_per_thousand": 7.146,
- "new_tests_per_thousand": 0.077,
- "new_tests_smoothed": 12254.0,
- "new_tests_smoothed_per_thousand": 0.074,
- "tests_per_case": 4.5680000000000005,
- "positive_rate": 0.21899999999999997,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-08-01",
- "total_cases": 237661.0,
- "new_cases": 2772.0,
- "new_cases_smoothed": 2714.714,
- "total_deaths": 3111.0,
- "new_deaths": 28.0,
- "new_deaths_smoothed": 39.286,
- "total_cases_per_million": 1443.086,
- "new_cases_per_million": 16.832,
- "new_cases_smoothed_per_million": 16.484,
- "total_deaths_per_million": 18.89,
- "new_deaths_per_million": 0.17,
- "new_deaths_smoothed_per_million": 0.239,
- "new_tests": 8802.0,
- "total_tests": 1185611.0,
- "total_tests_per_thousand": 7.199,
- "new_tests_per_thousand": 0.053,
- "new_tests_smoothed": 12019.0,
- "new_tests_smoothed_per_thousand": 0.073,
- "tests_per_case": 4.427,
- "positive_rate": 0.226,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-08-02",
- "total_cases": 239860.0,
- "new_cases": 2199.0,
- "new_cases_smoothed": 2668.857,
- "total_deaths": 3132.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 36.857,
- "total_cases_per_million": 1456.439,
- "new_cases_per_million": 13.352,
- "new_cases_smoothed_per_million": 16.205,
- "total_deaths_per_million": 19.018,
- "new_deaths_per_million": 0.128,
- "new_deaths_smoothed_per_million": 0.224,
- "new_tests": 3684.0,
- "total_tests": 1189295.0,
- "total_tests_per_thousand": 7.221,
- "new_tests_per_thousand": 0.022,
- "new_tests_smoothed": 11105.0,
- "new_tests_smoothed_per_thousand": 0.067,
- "tests_per_case": 4.1610000000000005,
- "positive_rate": 0.24,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-08-03",
- "total_cases": 240746.0,
- "new_cases": 886.0,
- "new_cases_smoothed": 2470.429,
- "total_deaths": 3154.0,
- "new_deaths": 22.0,
- "new_deaths_smoothed": 32.286,
- "total_cases_per_million": 1461.819,
- "new_cases_per_million": 5.38,
- "new_cases_smoothed_per_million": 15.001,
- "total_deaths_per_million": 19.151,
- "new_deaths_per_million": 0.134,
- "new_deaths_smoothed_per_million": 0.196,
- "new_tests": 4249.0,
- "total_tests": 1193544.0,
- "total_tests_per_thousand": 7.247,
- "new_tests_per_thousand": 0.026,
- "new_tests_smoothed": 9875.0,
- "new_tests_smoothed_per_thousand": 0.06,
- "tests_per_case": 3.997,
- "positive_rate": 0.25,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-08-04",
- "total_cases": 242102.0,
- "new_cases": 1356.0,
- "new_cases_smoothed": 2268.143,
- "total_deaths": 3184.0,
- "new_deaths": 30.0,
- "new_deaths_smoothed": 31.286,
- "total_cases_per_million": 1470.052,
- "new_cases_per_million": 8.234,
- "new_cases_smoothed_per_million": 13.772,
- "total_deaths_per_million": 19.333,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.19,
- "new_tests": 7712.0,
- "total_tests": 1201256.0,
- "total_tests_per_thousand": 7.294,
- "new_tests_per_thousand": 0.047,
- "new_tests_smoothed": 9161.0,
- "new_tests_smoothed_per_thousand": 0.056,
- "tests_per_case": 4.039,
- "positive_rate": 0.248,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-08-05",
- "total_cases": 244020.0,
- "new_cases": 1918.0,
- "new_cases_smoothed": 2119.286,
- "total_deaths": 3234.0,
- "new_deaths": 50.0,
- "new_deaths_smoothed": 33.429,
- "total_cases_per_million": 1481.698,
- "new_cases_per_million": 11.646,
- "new_cases_smoothed_per_million": 12.868,
- "total_deaths_per_million": 19.637,
- "new_deaths_per_million": 0.304,
- "new_deaths_smoothed_per_million": 0.203,
- "new_tests": 11160.0,
- "total_tests": 1212416.0,
- "total_tests_per_thousand": 7.362,
- "new_tests_per_thousand": 0.068,
- "new_tests_smoothed": 8737.0,
- "new_tests_smoothed_per_thousand": 0.053,
- "tests_per_case": 4.123,
- "positive_rate": 0.243,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-08-06",
- "total_cases": 246674.0,
- "new_cases": 2654.0,
- "new_cases_smoothed": 2068.571,
- "total_deaths": 3267.0,
- "new_deaths": 33.0,
- "new_deaths_smoothed": 33.143,
- "total_cases_per_million": 1497.814,
- "new_cases_per_million": 16.115,
- "new_cases_smoothed_per_million": 12.56,
- "total_deaths_per_million": 19.837,
- "new_deaths_per_million": 0.2,
- "new_deaths_smoothed_per_million": 0.201,
- "new_tests": 12708.0,
- "total_tests": 1225124.0,
- "total_tests_per_thousand": 7.439,
- "new_tests_per_thousand": 0.077,
- "new_tests_smoothed": 8704.0,
- "new_tests_smoothed_per_thousand": 0.053,
- "tests_per_case": 4.208,
- "positive_rate": 0.23800000000000002,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-08-07",
- "total_cases": 249651.0,
- "new_cases": 2977.0,
- "new_cases_smoothed": 2108.857,
- "total_deaths": 3306.0,
- "new_deaths": 39.0,
- "new_deaths_smoothed": 31.857,
- "total_cases_per_million": 1515.89,
- "new_cases_per_million": 18.076,
- "new_cases_smoothed_per_million": 12.805,
- "total_deaths_per_million": 20.074,
- "new_deaths_per_million": 0.237,
- "new_deaths_smoothed_per_million": 0.193,
- "new_tests": 12699.0,
- "total_tests": 1237823.0,
- "total_tests_per_thousand": 7.516,
- "new_tests_per_thousand": 0.077,
- "new_tests_smoothed": 8716.0,
- "new_tests_smoothed_per_thousand": 0.053,
- "tests_per_case": 4.133,
- "positive_rate": 0.242,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-08-08",
- "total_cases": 252502.0,
- "new_cases": 2851.0,
- "new_cases_smoothed": 2120.143,
- "total_deaths": 3333.0,
- "new_deaths": 27.0,
- "new_deaths_smoothed": 31.714,
- "total_cases_per_million": 1533.201,
- "new_cases_per_million": 17.311,
- "new_cases_smoothed_per_million": 12.874,
- "total_deaths_per_million": 20.238,
- "new_deaths_per_million": 0.164,
- "new_deaths_smoothed_per_million": 0.193,
- "new_tests": 11737.0,
- "total_tests": 1249560.0,
- "total_tests_per_thousand": 7.587,
- "new_tests_per_thousand": 0.071,
- "new_tests_smoothed": 9136.0,
- "new_tests_smoothed_per_thousand": 0.055,
- "tests_per_case": 4.309,
- "positive_rate": 0.23199999999999998,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-08-09",
- "total_cases": 255113.0,
- "new_cases": 2611.0,
- "new_cases_smoothed": 2179.0,
- "total_deaths": 3365.0,
- "new_deaths": 32.0,
- "new_deaths_smoothed": 33.286,
- "total_cases_per_million": 1549.056,
- "new_cases_per_million": 15.854,
- "new_cases_smoothed_per_million": 13.231,
- "total_deaths_per_million": 20.432,
- "new_deaths_per_million": 0.194,
- "new_deaths_smoothed_per_million": 0.202,
- "new_tests": 10759.0,
- "total_tests": 1260319.0,
- "total_tests_per_thousand": 7.653,
- "new_tests_per_thousand": 0.065,
- "new_tests_smoothed": 10146.0,
- "new_tests_smoothed_per_thousand": 0.062,
- "tests_per_case": 4.656000000000001,
- "positive_rate": 0.215,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-08-10",
- "total_cases": 257600.0,
- "new_cases": 2487.0,
- "new_cases_smoothed": 2407.714,
- "total_deaths": 3399.0,
- "new_deaths": 34.0,
- "new_deaths_smoothed": 35.0,
- "total_cases_per_million": 1564.157,
- "new_cases_per_million": 15.101,
- "new_cases_smoothed_per_million": 14.62,
- "total_deaths_per_million": 20.639,
- "new_deaths_per_million": 0.206,
- "new_deaths_smoothed_per_million": 0.213,
- "new_tests": 12849.0,
- "total_tests": 1273168.0,
- "total_tests_per_thousand": 7.731,
- "new_tests_per_thousand": 0.078,
- "new_tests_smoothed": 11375.0,
- "new_tests_smoothed_per_thousand": 0.069,
- "tests_per_case": 4.724,
- "positive_rate": 0.212,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-08-11",
- "total_cases": 260507.0,
- "new_cases": 2907.0,
- "new_cases_smoothed": 2629.286,
- "total_deaths": 3438.0,
- "new_deaths": 39.0,
- "new_deaths_smoothed": 36.286,
- "total_cases_per_million": 1581.808,
- "new_cases_per_million": 17.651,
- "new_cases_smoothed_per_million": 15.965,
- "total_deaths_per_million": 20.876,
- "new_deaths_per_million": 0.237,
- "new_deaths_smoothed_per_million": 0.22,
- "new_tests": 14820.0,
- "total_tests": 1287988.0,
- "total_tests_per_thousand": 7.821,
- "new_tests_per_thousand": 0.09,
- "new_tests_smoothed": 12390.0,
- "new_tests_smoothed_per_thousand": 0.075,
- "tests_per_case": 4.712,
- "positive_rate": 0.212,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-08-12",
- "total_cases": 263503.0,
- "new_cases": 2996.0,
- "new_cases_smoothed": 2783.286,
- "total_deaths": 3471.0,
- "new_deaths": 33.0,
- "new_deaths_smoothed": 33.857,
- "total_cases_per_million": 1600.0,
- "new_cases_per_million": 18.192,
- "new_cases_smoothed_per_million": 16.9,
- "total_deaths_per_million": 21.076,
- "new_deaths_per_million": 0.2,
- "new_deaths_smoothed_per_million": 0.206,
- "new_tests": 14751.0,
- "total_tests": 1302739.0,
- "total_tests_per_thousand": 7.91,
- "new_tests_per_thousand": 0.09,
- "new_tests_smoothed": 12903.0,
- "new_tests_smoothed_per_thousand": 0.078,
- "tests_per_case": 4.636,
- "positive_rate": 0.21600000000000003,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-08-13",
- "total_cases": 266498.0,
- "new_cases": 2995.0,
- "new_cases_smoothed": 2832.0,
- "total_deaths": 3513.0,
- "new_deaths": 42.0,
- "new_deaths_smoothed": 35.143,
- "total_cases_per_million": 1618.186,
- "new_cases_per_million": 18.186,
- "new_cases_smoothed_per_million": 17.196,
- "total_deaths_per_million": 21.331,
- "new_deaths_per_million": 0.255,
- "new_deaths_smoothed_per_million": 0.213,
- "new_tests": 13162.0,
- "total_tests": 1315901.0,
- "total_tests_per_thousand": 7.99,
- "new_tests_per_thousand": 0.08,
- "new_tests_smoothed": 12968.0,
- "new_tests_smoothed_per_thousand": 0.079,
- "tests_per_case": 4.579,
- "positive_rate": 0.218,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-08-14",
- "total_cases": 269115.0,
- "new_cases": 2617.0,
- "new_cases_smoothed": 2780.571,
- "total_deaths": 3557.0,
- "new_deaths": 44.0,
- "new_deaths_smoothed": 35.857,
- "total_cases_per_million": 1634.076,
- "new_cases_per_million": 15.891,
- "new_cases_smoothed_per_million": 16.884,
- "total_deaths_per_million": 21.598,
- "new_deaths_per_million": 0.267,
- "new_deaths_smoothed_per_million": 0.218,
- "new_tests": 12856.0,
- "total_tests": 1328757.0,
- "total_tests_per_thousand": 8.068,
- "new_tests_per_thousand": 0.078,
- "new_tests_smoothed": 12991.0,
- "new_tests_smoothed_per_thousand": 0.079,
- "tests_per_case": 4.672,
- "positive_rate": 0.214,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-08-15",
- "total_cases": 271881.0,
- "new_cases": 2766.0,
- "new_cases_smoothed": 2768.429,
- "total_deaths": 3591.0,
- "new_deaths": 34.0,
- "new_deaths_smoothed": 36.857,
- "total_cases_per_million": 1650.871,
- "new_cases_per_million": 16.795,
- "new_cases_smoothed_per_million": 16.81,
- "total_deaths_per_million": 21.805,
- "new_deaths_per_million": 0.206,
- "new_deaths_smoothed_per_million": 0.224,
- "new_tests": 12891.0,
- "total_tests": 1341648.0,
- "total_tests_per_thousand": 8.147,
- "new_tests_per_thousand": 0.078,
- "new_tests_smoothed": 13155.0,
- "new_tests_smoothed_per_thousand": 0.08,
- "tests_per_case": 4.752,
- "positive_rate": 0.21,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-08-16",
- "total_cases": 274525.0,
- "new_cases": 2644.0,
- "new_cases_smoothed": 2773.143,
- "total_deaths": 3625.0,
- "new_deaths": 34.0,
- "new_deaths_smoothed": 37.143,
- "total_cases_per_million": 1666.926,
- "new_cases_per_million": 16.054,
- "new_cases_smoothed_per_million": 16.839,
- "total_deaths_per_million": 22.011,
- "new_deaths_per_million": 0.206,
- "new_deaths_smoothed_per_million": 0.226,
- "new_tests": 10018.0,
- "total_tests": 1351666.0,
- "total_tests_per_thousand": 8.207,
- "new_tests_per_thousand": 0.061,
- "new_tests_smoothed": 13050.0,
- "new_tests_smoothed_per_thousand": 0.079,
- "tests_per_case": 4.706,
- "positive_rate": 0.213,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-08-17",
- "total_cases": 276549.0,
- "new_cases": 2024.0,
- "new_cases_smoothed": 2707.0,
- "total_deaths": 3657.0,
- "new_deaths": 32.0,
- "new_deaths_smoothed": 36.857,
- "total_cases_per_million": 1679.216,
- "new_cases_per_million": 12.29,
- "new_cases_smoothed_per_million": 16.437,
- "total_deaths_per_million": 22.205,
- "new_deaths_per_million": 0.194,
- "new_deaths_smoothed_per_million": 0.224,
- "new_tests": 12523.0,
- "total_tests": 1364189.0,
- "total_tests_per_thousand": 8.283,
- "new_tests_per_thousand": 0.076,
- "new_tests_smoothed": 13003.0,
- "new_tests_smoothed_per_thousand": 0.079,
- "tests_per_case": 4.803,
- "positive_rate": 0.20800000000000002,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-08-18",
- "total_cases": 279144.0,
- "new_cases": 2595.0,
- "new_cases_smoothed": 2662.429,
- "total_deaths": 3694.0,
- "new_deaths": 37.0,
- "new_deaths_smoothed": 36.571,
- "total_cases_per_million": 1694.973,
- "new_cases_per_million": 15.757,
- "new_cases_smoothed_per_million": 16.166,
- "total_deaths_per_million": 22.43,
- "new_deaths_per_million": 0.225,
- "new_deaths_smoothed_per_million": 0.222,
- "new_tests": 14630.0,
- "total_tests": 1378819.0,
- "total_tests_per_thousand": 8.372,
- "new_tests_per_thousand": 0.089,
- "new_tests_smoothed": 12976.0,
- "new_tests_smoothed_per_thousand": 0.079,
- "tests_per_case": 4.874,
- "positive_rate": 0.205,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-08-19",
- "total_cases": 282344.0,
- "new_cases": 3200.0,
- "new_cases_smoothed": 2691.571,
- "total_deaths": 3740.0,
- "new_deaths": 46.0,
- "new_deaths_smoothed": 38.429,
- "total_cases_per_million": 1714.403,
- "new_cases_per_million": 19.431,
- "new_cases_smoothed_per_million": 16.343,
- "total_deaths_per_million": 22.709,
- "new_deaths_per_million": 0.279,
- "new_deaths_smoothed_per_million": 0.233,
- "new_tests": 14678.0,
- "total_tests": 1393497.0,
- "total_tests_per_thousand": 8.461,
- "new_tests_per_thousand": 0.089,
- "new_tests_smoothed": 12965.0,
- "new_tests_smoothed_per_thousand": 0.079,
- "tests_per_case": 4.817,
- "positive_rate": 0.20800000000000002,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-08-20",
- "total_cases": 285091.0,
- "new_cases": 2747.0,
- "new_cases_smoothed": 2656.143,
- "total_deaths": 3781.0,
- "new_deaths": 41.0,
- "new_deaths_smoothed": 38.286,
- "total_cases_per_million": 1731.083,
- "new_cases_per_million": 16.68,
- "new_cases_smoothed_per_million": 16.128,
- "total_deaths_per_million": 22.958,
- "new_deaths_per_million": 0.249,
- "new_deaths_smoothed_per_million": 0.232,
- "new_tests": 14059.0,
- "total_tests": 1407556.0,
- "total_tests_per_thousand": 8.547,
- "new_tests_per_thousand": 0.085,
- "new_tests_smoothed": 13094.0,
- "new_tests_smoothed_per_thousand": 0.08,
- "tests_per_case": 4.93,
- "positive_rate": 0.203,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-08-21",
- "total_cases": 287959.0,
- "new_cases": 2868.0,
- "new_cases_smoothed": 2692.0,
- "total_deaths": 3822.0,
- "new_deaths": 41.0,
- "new_deaths_smoothed": 37.857,
- "total_cases_per_million": 1748.498,
- "new_cases_per_million": 17.415,
- "new_cases_smoothed_per_million": 16.346,
- "total_deaths_per_million": 23.207,
- "new_deaths_per_million": 0.249,
- "new_deaths_smoothed_per_million": 0.23,
- "new_tests": 12943.0,
- "total_tests": 1420499.0,
- "total_tests_per_thousand": 8.625,
- "new_tests_per_thousand": 0.079,
- "new_tests_smoothed": 13106.0,
- "new_tests_smoothed_per_thousand": 0.08,
- "tests_per_case": 4.868,
- "positive_rate": 0.205,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-08-22",
- "total_cases": 290360.0,
- "new_cases": 2401.0,
- "new_cases_smoothed": 2639.857,
- "total_deaths": 3861.0,
- "new_deaths": 39.0,
- "new_deaths_smoothed": 38.571,
- "total_cases_per_million": 1763.077,
- "new_cases_per_million": 14.579,
- "new_cases_smoothed_per_million": 16.029,
- "total_deaths_per_million": 23.444,
- "new_deaths_per_million": 0.237,
- "new_deaths_smoothed_per_million": 0.234,
- "new_tests": 11356.0,
- "total_tests": 1431855.0,
- "total_tests_per_thousand": 8.694,
- "new_tests_per_thousand": 0.069,
- "new_tests_smoothed": 12887.0,
- "new_tests_smoothed_per_thousand": 0.078,
- "tests_per_case": 4.882,
- "positive_rate": 0.205,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-08-23",
- "total_cases": 292625.0,
- "new_cases": 2265.0,
- "new_cases_smoothed": 2585.714,
- "total_deaths": 3907.0,
- "new_deaths": 46.0,
- "new_deaths_smoothed": 40.286,
- "total_cases_per_million": 1776.83,
- "new_cases_per_million": 13.753,
- "new_cases_smoothed_per_million": 15.701,
- "total_deaths_per_million": 23.723,
- "new_deaths_per_million": 0.279,
- "new_deaths_smoothed_per_million": 0.245,
- "new_tests": 10801.0,
- "total_tests": 1442656.0,
- "total_tests_per_thousand": 8.76,
- "new_tests_per_thousand": 0.066,
- "new_tests_smoothed": 12999.0,
- "new_tests_smoothed_per_thousand": 0.079,
- "tests_per_case": 5.027,
- "positive_rate": 0.19899999999999998,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-08-24",
- "total_cases": 294598.0,
- "new_cases": 1973.0,
- "new_cases_smoothed": 2578.429,
- "total_deaths": 3941.0,
- "new_deaths": 34.0,
- "new_deaths_smoothed": 40.571,
- "total_cases_per_million": 1788.81,
- "new_cases_per_million": 11.98,
- "new_cases_smoothed_per_million": 15.656,
- "total_deaths_per_million": 23.93,
- "new_deaths_per_million": 0.206,
- "new_deaths_smoothed_per_million": 0.246,
- "new_tests": 13382.0,
- "total_tests": 1456038.0,
- "total_tests_per_thousand": 8.841,
- "new_tests_per_thousand": 0.081,
- "new_tests_smoothed": 13121.0,
- "new_tests_smoothed_per_thousand": 0.08,
- "tests_per_case": 5.0889999999999995,
- "positive_rate": 0.19699999999999998,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-08-25",
- "total_cases": 297083.0,
- "new_cases": 2485.0,
- "new_cases_smoothed": 2562.714,
- "total_deaths": 3983.0,
- "new_deaths": 42.0,
- "new_deaths_smoothed": 41.286,
- "total_cases_per_million": 1803.899,
- "new_cases_per_million": 15.089,
- "new_cases_smoothed_per_million": 15.561,
- "total_deaths_per_million": 24.185,
- "new_deaths_per_million": 0.255,
- "new_deaths_smoothed_per_million": 0.251,
- "new_tests": 14153.0,
- "total_tests": 1470191.0,
- "total_tests_per_thousand": 8.927,
- "new_tests_per_thousand": 0.086,
- "new_tests_smoothed": 13053.0,
- "new_tests_smoothed_per_thousand": 0.079,
- "tests_per_case": 5.093,
- "positive_rate": 0.196,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-08-26",
- "total_cases": 299628.0,
- "new_cases": 2545.0,
- "new_cases_smoothed": 2469.143,
- "total_deaths": 4028.0,
- "new_deaths": 45.0,
- "new_deaths_smoothed": 41.143,
- "total_cases_per_million": 1819.352,
- "new_cases_per_million": 15.453,
- "new_cases_smoothed_per_million": 14.993,
- "total_deaths_per_million": 24.458,
- "new_deaths_per_million": 0.273,
- "new_deaths_smoothed_per_million": 0.25,
- "new_tests": 15070.0,
- "total_tests": 1485261.0,
- "total_tests_per_thousand": 9.019,
- "new_tests_per_thousand": 0.092,
- "new_tests_smoothed": 13109.0,
- "new_tests_smoothed_per_thousand": 0.08,
- "tests_per_case": 5.309,
- "positive_rate": 0.188,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-08-27",
- "total_cases": 302147.0,
- "new_cases": 2519.0,
- "new_cases_smoothed": 2436.571,
- "total_deaths": 4082.0,
- "new_deaths": 54.0,
- "new_deaths_smoothed": 43.0,
- "total_cases_per_million": 1834.648,
- "new_cases_per_million": 15.295,
- "new_cases_smoothed_per_million": 14.795,
- "total_deaths_per_million": 24.786,
- "new_deaths_per_million": 0.328,
- "new_deaths_smoothed_per_million": 0.261,
- "new_tests": 15124.0,
- "total_tests": 1500385.0,
- "total_tests_per_thousand": 9.11,
- "new_tests_per_thousand": 0.092,
- "new_tests_smoothed": 13261.0,
- "new_tests_smoothed_per_thousand": 0.081,
- "tests_per_case": 5.442,
- "positive_rate": 0.184,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-08-28",
- "total_cases": 304583.0,
- "new_cases": 2436.0,
- "new_cases_smoothed": 2374.857,
- "total_deaths": 4127.0,
- "new_deaths": 45.0,
- "new_deaths_smoothed": 43.571,
- "total_cases_per_million": 1849.439,
- "new_cases_per_million": 14.791,
- "new_cases_smoothed_per_million": 14.42,
- "total_deaths_per_million": 25.059,
- "new_deaths_per_million": 0.273,
- "new_deaths_smoothed_per_million": 0.265,
- "new_tests": 13741.0,
- "total_tests": 1514126.0,
- "total_tests_per_thousand": 9.194,
- "new_tests_per_thousand": 0.083,
- "new_tests_smoothed": 13375.0,
- "new_tests_smoothed_per_thousand": 0.081,
- "tests_per_case": 5.632000000000001,
- "positive_rate": 0.17800000000000002,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-08-29",
- "total_cases": 306794.0,
- "new_cases": 2211.0,
- "new_cases_smoothed": 2347.714,
- "total_deaths": 4174.0,
- "new_deaths": 47.0,
- "new_deaths_smoothed": 44.714,
- "total_cases_per_million": 1862.864,
- "new_cases_per_million": 13.425,
- "new_cases_smoothed_per_million": 14.255,
- "total_deaths_per_million": 25.345,
- "new_deaths_per_million": 0.285,
- "new_deaths_smoothed_per_million": 0.272,
- "new_tests": 11689.0,
- "total_tests": 1525815.0,
- "total_tests_per_thousand": 9.265,
- "new_tests_per_thousand": 0.071,
- "new_tests_smoothed": 13423.0,
- "new_tests_smoothed_per_thousand": 0.082,
- "tests_per_case": 5.7170000000000005,
- "positive_rate": 0.175,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-08-30",
- "total_cases": 308925.0,
- "new_cases": 2131.0,
- "new_cases_smoothed": 2328.571,
- "total_deaths": 4206.0,
- "new_deaths": 32.0,
- "new_deaths_smoothed": 42.714,
- "total_cases_per_million": 1875.804,
- "new_cases_per_million": 12.94,
- "new_cases_smoothed_per_million": 14.139,
- "total_deaths_per_million": 25.539,
- "new_deaths_per_million": 0.194,
- "new_deaths_smoothed_per_million": 0.259,
- "new_tests": 11934.0,
- "total_tests": 1537749.0,
- "total_tests_per_thousand": 9.337,
- "new_tests_per_thousand": 0.072,
- "new_tests_smoothed": 13585.0,
- "new_tests_smoothed_per_thousand": 0.082,
- "tests_per_case": 5.834,
- "positive_rate": 0.171,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-08-31",
- "total_cases": 310822.0,
- "new_cases": 1897.0,
- "new_cases_smoothed": 2317.714,
- "total_deaths": 4248.0,
- "new_deaths": 42.0,
- "new_deaths_smoothed": 43.857,
- "total_cases_per_million": 1887.323,
- "new_cases_per_million": 11.519,
- "new_cases_smoothed_per_million": 14.073,
- "total_deaths_per_million": 25.794,
- "new_deaths_per_million": 0.255,
- "new_deaths_smoothed_per_million": 0.266,
- "new_tests": 12454.0,
- "total_tests": 1550203.0,
- "total_tests_per_thousand": 9.413,
- "new_tests_per_thousand": 0.076,
- "new_tests_smoothed": 13452.0,
- "new_tests_smoothed_per_thousand": 0.082,
- "tests_per_case": 5.803999999999999,
- "positive_rate": 0.172,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-09-01",
- "total_cases": 312996.0,
- "new_cases": 2174.0,
- "new_cases_smoothed": 2273.286,
- "total_deaths": 4281.0,
- "new_deaths": 33.0,
- "new_deaths_smoothed": 42.571,
- "total_cases_per_million": 1900.523,
- "new_cases_per_million": 13.201,
- "new_cases_smoothed_per_million": 13.803,
- "total_deaths_per_million": 25.994,
- "new_deaths_per_million": 0.2,
- "new_deaths_smoothed_per_million": 0.258,
- "new_tests": 12209.0,
- "total_tests": 1562412.0,
- "total_tests_per_thousand": 9.487,
- "new_tests_per_thousand": 0.074,
- "new_tests_smoothed": 13174.0,
- "new_tests_smoothed_per_thousand": 0.08,
- "tests_per_case": 5.795,
- "positive_rate": 0.17300000000000001,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-09-02",
- "total_cases": 314946.0,
- "new_cases": 1950.0,
- "new_cases_smoothed": 2188.286,
- "total_deaths": 4316.0,
- "new_deaths": 35.0,
- "new_deaths_smoothed": 41.143,
- "total_cases_per_million": 1912.364,
- "new_cases_per_million": 11.84,
- "new_cases_smoothed_per_million": 13.287,
- "total_deaths_per_million": 26.207,
- "new_deaths_per_million": 0.213,
- "new_deaths_smoothed_per_million": 0.25,
- "new_tests": 15204.0,
- "total_tests": 1577616.0,
- "total_tests_per_thousand": 9.579,
- "new_tests_per_thousand": 0.092,
- "new_tests_smoothed": 13194.0,
- "new_tests_smoothed_per_thousand": 0.08,
- "tests_per_case": 6.029,
- "positive_rate": 0.166,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-09-03",
- "total_cases": 317528.0,
- "new_cases": 2582.0,
- "new_cases_smoothed": 2197.286,
- "total_deaths": 4351.0,
- "new_deaths": 35.0,
- "new_deaths_smoothed": 38.429,
- "total_cases_per_million": 1928.042,
- "new_cases_per_million": 15.678,
- "new_cases_smoothed_per_million": 13.342,
- "total_deaths_per_million": 26.419,
- "new_deaths_per_million": 0.213,
- "new_deaths_smoothed_per_million": 0.233,
- "new_tests": 14422.0,
- "total_tests": 1592038.0,
- "total_tests_per_thousand": 9.667,
- "new_tests_per_thousand": 0.088,
- "new_tests_smoothed": 13093.0,
- "new_tests_smoothed_per_thousand": 0.08,
- "tests_per_case": 5.959,
- "positive_rate": 0.168,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-09-04",
- "total_cases": 319686.0,
- "new_cases": 2158.0,
- "new_cases_smoothed": 2157.571,
- "total_deaths": 4383.0,
- "new_deaths": 32.0,
- "new_deaths_smoothed": 36.571,
- "total_cases_per_million": 1941.145,
- "new_cases_per_million": 13.103,
- "new_cases_smoothed_per_million": 13.101,
- "total_deaths_per_million": 26.614,
- "new_deaths_per_million": 0.194,
- "new_deaths_smoothed_per_million": 0.222,
- "new_tests": 13073.0,
- "total_tests": 1605111.0,
- "total_tests_per_thousand": 9.746,
- "new_tests_per_thousand": 0.079,
- "new_tests_smoothed": 12998.0,
- "new_tests_smoothed_per_thousand": 0.079,
- "tests_per_case": 6.024,
- "positive_rate": 0.166,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-09-05",
- "total_cases": 321615.0,
- "new_cases": 1929.0,
- "new_cases_smoothed": 2117.286,
- "total_deaths": 4412.0,
- "new_deaths": 29.0,
- "new_deaths_smoothed": 34.0,
- "total_cases_per_million": 1952.858,
- "new_cases_per_million": 11.713,
- "new_cases_smoothed_per_million": 12.856,
- "total_deaths_per_million": 26.79,
- "new_deaths_per_million": 0.176,
- "new_deaths_smoothed_per_million": 0.206,
- "new_tests": 12847.0,
- "total_tests": 1617958.0,
- "total_tests_per_thousand": 9.824,
- "new_tests_per_thousand": 0.078,
- "new_tests_smoothed": 13163.0,
- "new_tests_smoothed_per_thousand": 0.08,
- "tests_per_case": 6.2170000000000005,
- "positive_rate": 0.161,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-09-06",
- "total_cases": 323565.0,
- "new_cases": 1950.0,
- "new_cases_smoothed": 2091.429,
- "total_deaths": 4447.0,
- "new_deaths": 35.0,
- "new_deaths_smoothed": 34.429,
- "total_cases_per_million": 1964.699,
- "new_cases_per_million": 11.84,
- "new_cases_smoothed_per_million": 12.699,
- "total_deaths_per_million": 27.002,
- "new_deaths_per_million": 0.213,
- "new_deaths_smoothed_per_million": 0.209,
- "new_tests": 11354.0,
- "total_tests": 1629312.0,
- "total_tests_per_thousand": 9.893,
- "new_tests_per_thousand": 0.069,
- "new_tests_smoothed": 13080.0,
- "new_tests_smoothed_per_thousand": 0.079,
- "tests_per_case": 6.254,
- "positive_rate": 0.16,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-09-07",
- "total_cases": 325157.0,
- "new_cases": 1592.0,
- "new_cases_smoothed": 2047.857,
- "total_deaths": 4449.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 28.714,
- "total_cases_per_million": 1974.365,
- "new_cases_per_million": 9.667,
- "new_cases_smoothed_per_million": 12.435,
- "total_deaths_per_million": 27.014,
- "new_deaths_per_million": 0.012,
- "new_deaths_smoothed_per_million": 0.174,
- "new_tests": 15412.0,
- "total_tests": 1644724.0,
- "total_tests_per_thousand": 9.987,
- "new_tests_per_thousand": 0.094,
- "new_tests_smoothed": 13503.0,
- "new_tests_smoothed_per_thousand": 0.082,
- "tests_per_case": 6.593999999999999,
- "positive_rate": 0.152,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-09-08",
- "total_cases": 327359.0,
- "new_cases": 2202.0,
- "new_cases_smoothed": 2051.857,
- "total_deaths": 4516.0,
- "new_deaths": 67.0,
- "new_deaths_smoothed": 33.571,
- "total_cases_per_million": 1987.736,
- "new_cases_per_million": 13.371,
- "new_cases_smoothed_per_million": 12.459,
- "total_deaths_per_million": 27.421,
- "new_deaths_per_million": 0.407,
- "new_deaths_smoothed_per_million": 0.204,
- "new_tests": 14973.0,
- "total_tests": 1659697.0,
- "total_tests_per_thousand": 10.078,
- "new_tests_per_thousand": 0.091,
- "new_tests_smoothed": 13898.0,
- "new_tests_smoothed_per_thousand": 0.084,
- "tests_per_case": 6.773,
- "positive_rate": 0.14800000000000002,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-09-09",
- "total_cases": 329251.0,
- "new_cases": 1892.0,
- "new_cases_smoothed": 2043.571,
- "total_deaths": 4552.0,
- "new_deaths": 36.0,
- "new_deaths_smoothed": 33.714,
- "total_cases_per_million": 1999.224,
- "new_cases_per_million": 11.488,
- "new_cases_smoothed_per_million": 12.409,
- "total_deaths_per_million": 27.64,
- "new_deaths_per_million": 0.219,
- "new_deaths_smoothed_per_million": 0.205,
- "new_tests": 14755.0,
- "total_tests": 1674452.0,
- "total_tests_per_thousand": 10.167,
- "new_tests_per_thousand": 0.09,
- "new_tests_smoothed": 13834.0,
- "new_tests_smoothed_per_thousand": 0.084,
- "tests_per_case": 6.77,
- "positive_rate": 0.14800000000000002,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-09-10",
- "total_cases": 331078.0,
- "new_cases": 1827.0,
- "new_cases_smoothed": 1935.714,
- "total_deaths": 4593.0,
- "new_deaths": 41.0,
- "new_deaths_smoothed": 34.571,
- "total_cases_per_million": 2010.318,
- "new_cases_per_million": 11.094,
- "new_cases_smoothed_per_million": 11.754,
- "total_deaths_per_million": 27.889,
- "new_deaths_per_million": 0.249,
- "new_deaths_smoothed_per_million": 0.21,
- "new_tests": 15559.0,
- "total_tests": 1690011.0,
- "total_tests_per_thousand": 10.262,
- "new_tests_per_thousand": 0.094,
- "new_tests_smoothed": 13996.0,
- "new_tests_smoothed_per_thousand": 0.085,
- "tests_per_case": 7.23,
- "positive_rate": 0.138,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-09-11",
- "total_cases": 332970.0,
- "new_cases": 1892.0,
- "new_cases_smoothed": 1897.714,
- "total_deaths": 4634.0,
- "new_deaths": 41.0,
- "new_deaths_smoothed": 35.857,
- "total_cases_per_million": 2021.806,
- "new_cases_per_million": 11.488,
- "new_cases_smoothed_per_million": 11.523,
- "total_deaths_per_million": 28.138,
- "new_deaths_per_million": 0.249,
- "new_deaths_smoothed_per_million": 0.218,
- "new_tests": 14747.0,
- "total_tests": 1704758.0,
- "total_tests_per_thousand": 10.351,
- "new_tests_per_thousand": 0.09,
- "new_tests_smoothed": 14235.0,
- "new_tests_smoothed_per_thousand": 0.086,
- "tests_per_case": 7.501,
- "positive_rate": 0.133,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-09-12",
- "total_cases": 334762.0,
- "new_cases": 1792.0,
- "new_cases_smoothed": 1878.143,
- "total_deaths": 4668.0,
- "new_deaths": 34.0,
- "new_deaths_smoothed": 36.571,
- "total_cases_per_million": 2032.687,
- "new_cases_per_million": 10.881,
- "new_cases_smoothed_per_million": 11.404,
- "total_deaths_per_million": 28.344,
- "new_deaths_per_million": 0.206,
- "new_deaths_smoothed_per_million": 0.222,
- "new_tests": 10723.0,
- "total_tests": 1715481.0,
- "total_tests_per_thousand": 10.416,
- "new_tests_per_thousand": 0.065,
- "new_tests_smoothed": 13932.0,
- "new_tests_smoothed_per_thousand": 0.085,
- "tests_per_case": 7.417999999999999,
- "positive_rate": 0.135,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-09-13",
- "total_cases": 336044.0,
- "new_cases": 1282.0,
- "new_cases_smoothed": 1782.714,
- "total_deaths": 4702.0,
- "new_deaths": 34.0,
- "new_deaths_smoothed": 36.429,
- "total_cases_per_million": 2040.472,
- "new_cases_per_million": 7.784,
- "new_cases_smoothed_per_million": 10.825,
- "total_deaths_per_million": 28.551,
- "new_deaths_per_million": 0.206,
- "new_deaths_smoothed_per_million": 0.221,
- "new_tests": 12999.0,
- "total_tests": 1728480.0,
- "total_tests_per_thousand": 10.495,
- "new_tests_per_thousand": 0.079,
- "new_tests_smoothed": 14167.0,
- "new_tests_smoothed_per_thousand": 0.086,
- "tests_per_case": 7.947,
- "positive_rate": 0.126,
- "tests_units": "samples tested",
- "stringency_index": 80.09
- },
- {
- "date": "2020-09-14",
- "total_cases": 337520.0,
- "new_cases": 1476.0,
- "new_cases_smoothed": 1766.143,
- "total_deaths": 4733.0,
- "new_deaths": 31.0,
- "new_deaths_smoothed": 40.571,
- "total_cases_per_million": 2049.434,
- "new_cases_per_million": 8.962,
- "new_cases_smoothed_per_million": 10.724,
- "total_deaths_per_million": 28.739,
- "new_deaths_per_million": 0.188,
- "new_deaths_smoothed_per_million": 0.246,
- "new_tests": 14216.0,
- "total_tests": 1742696.0,
- "total_tests_per_thousand": 10.582,
- "new_tests_per_thousand": 0.086,
- "new_tests_smoothed": 13996.0,
- "new_tests_smoothed_per_thousand": 0.085,
- "tests_per_case": 7.925,
- "positive_rate": 0.126,
- "tests_units": "samples tested"
- },
- {
- "date": "2020-09-15",
- "total_cases": 339332.0,
- "new_cases": 1812.0,
- "new_cases_smoothed": 1710.429,
- "total_deaths": 4759.0,
- "new_deaths": 26.0,
- "new_deaths_smoothed": 34.714,
- "total_cases_per_million": 2060.436,
- "new_cases_per_million": 11.003,
- "new_cases_smoothed_per_million": 10.386,
- "total_deaths_per_million": 28.897,
- "new_deaths_per_million": 0.158,
- "new_deaths_smoothed_per_million": 0.211,
- "new_tests": 14050.0,
- "total_tests": 1756746.0,
- "total_tests_per_thousand": 10.667,
- "new_tests_per_thousand": 0.085,
- "new_tests_smoothed": 13864.0,
- "new_tests_smoothed_per_thousand": 0.084,
- "tests_per_case": 8.106,
- "positive_rate": 0.12300000000000001,
- "tests_units": "samples tested"
- },
- {
- "date": "2020-09-16",
- "total_cases": 341056.0,
- "new_cases": 1724.0,
- "new_cases_smoothed": 1686.429,
- "total_deaths": 4802.0,
- "new_deaths": 43.0,
- "new_deaths_smoothed": 35.714,
- "total_cases_per_million": 2070.905,
- "new_cases_per_million": 10.468,
- "new_cases_smoothed_per_million": 10.24,
- "total_deaths_per_million": 29.158,
- "new_deaths_per_million": 0.261,
- "new_deaths_smoothed_per_million": 0.217,
- "new_tests": 13360.0,
- "total_tests": 1770106.0,
- "total_tests_per_thousand": 10.748,
- "new_tests_per_thousand": 0.081,
- "new_tests_smoothed": 13665.0,
- "new_tests_smoothed_per_thousand": 0.083,
- "tests_per_case": 8.103,
- "positive_rate": 0.12300000000000001,
- "tests_units": "samples tested"
- },
- {
- "date": "2020-09-17",
- "total_cases": 342671.0,
- "new_cases": 1615.0,
- "new_cases_smoothed": 1656.143,
- "total_deaths": 4823.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 32.857,
- "total_cases_per_million": 2080.711,
- "new_cases_per_million": 9.806,
- "new_cases_smoothed_per_million": 10.056,
- "total_deaths_per_million": 29.285,
- "new_deaths_per_million": 0.128,
- "new_deaths_smoothed_per_million": 0.2,
- "new_tests": 13673.0,
- "total_tests": 1783779.0,
- "total_tests_per_thousand": 10.831,
- "new_tests_per_thousand": 0.083,
- "new_tests_smoothed": 13395.0,
- "new_tests_smoothed_per_thousand": 0.081,
- "tests_per_case": 8.088,
- "positive_rate": 0.124,
- "tests_units": "samples tested"
- },
- {
- "date": "2020-09-18",
- "total_cases": 344264.0,
- "new_cases": 1593.0,
- "new_cases_smoothed": 1613.429,
- "total_deaths": 4859.0,
- "new_deaths": 36.0,
- "new_deaths_smoothed": 32.143,
- "total_cases_per_million": 2090.384,
- "new_cases_per_million": 9.673,
- "new_cases_smoothed_per_million": 9.797,
- "total_deaths_per_million": 29.504,
- "new_deaths_per_million": 0.219,
- "new_deaths_smoothed_per_million": 0.195
- },
- {
- "date": "2020-09-19",
- "total_cases": 345805.0,
- "new_cases": 1541.0,
- "new_cases_smoothed": 1577.571,
- "total_deaths": 4881.0,
- "new_deaths": 22.0,
- "new_deaths_smoothed": 30.429,
- "total_cases_per_million": 2099.741,
- "new_cases_per_million": 9.357,
- "new_cases_smoothed_per_million": 9.579,
- "total_deaths_per_million": 29.638,
- "new_deaths_per_million": 0.134,
- "new_deaths_smoothed_per_million": 0.185
- },
- {
- "date": "2020-09-20",
- "total_cases": 347372.0,
- "new_cases": 1567.0,
- "new_cases_smoothed": 1618.286,
- "total_deaths": 4913.0,
- "new_deaths": 32.0,
- "new_deaths_smoothed": 30.143,
- "total_cases_per_million": 2109.256,
- "new_cases_per_million": 9.515,
- "new_cases_smoothed_per_million": 9.826,
- "total_deaths_per_million": 29.832,
- "new_deaths_per_million": 0.194,
- "new_deaths_smoothed_per_million": 0.183
- },
- {
- "date": "2020-09-21",
- "total_cases": 348916.0,
- "new_cases": 1544.0,
- "new_cases_smoothed": 1628.0,
- "total_deaths": 4939.0,
- "new_deaths": 26.0,
- "new_deaths_smoothed": 29.429,
- "total_cases_per_million": 2118.631,
- "new_cases_per_million": 9.375,
- "new_cases_smoothed_per_million": 9.885,
- "total_deaths_per_million": 29.99,
- "new_deaths_per_million": 0.158,
- "new_deaths_smoothed_per_million": 0.179
- },
- {
- "date": "2020-09-22",
- "total_cases": 350621.0,
- "new_cases": 1705.0,
- "new_cases_smoothed": 1612.714,
- "total_deaths": 4979.0,
- "new_deaths": 40.0,
- "new_deaths_smoothed": 31.429,
- "total_cases_per_million": 2128.984,
- "new_cases_per_million": 10.353,
- "new_cases_smoothed_per_million": 9.792,
- "total_deaths_per_million": 30.233,
- "new_deaths_per_million": 0.243,
- "new_deaths_smoothed_per_million": 0.191
- },
- {
- "date": "2020-09-23",
- "total_cases": 352178.0,
- "new_cases": 1557.0,
- "new_cases_smoothed": 1588.857,
- "total_deaths": 5007.0,
- "new_deaths": 28.0,
- "new_deaths_smoothed": 29.286,
- "total_cases_per_million": 2138.438,
- "new_cases_per_million": 9.454,
- "new_cases_smoothed_per_million": 9.648,
- "total_deaths_per_million": 30.403,
- "new_deaths_per_million": 0.17,
- "new_deaths_smoothed_per_million": 0.178
- },
- {
- "date": "2020-09-24",
- "total_cases": 353844.0,
- "new_cases": 1666.0,
- "new_cases_smoothed": 1596.143,
- "total_deaths": 5044.0,
- "new_deaths": 37.0,
- "new_deaths_smoothed": 31.571,
- "total_cases_per_million": 2148.554,
- "new_cases_per_million": 10.116,
- "new_cases_smoothed_per_million": 9.692,
- "total_deaths_per_million": 30.627,
- "new_deaths_per_million": 0.225,
- "new_deaths_smoothed_per_million": 0.192
- },
- {
- "date": "2020-09-25",
- "total_cases": 355384.0,
- "new_cases": 1540.0,
- "new_cases_smoothed": 1588.571,
- "total_deaths": 5072.0,
- "new_deaths": 28.0,
- "new_deaths_smoothed": 30.429,
- "total_cases_per_million": 2157.905,
- "new_cases_per_million": 9.351,
- "new_cases_smoothed_per_million": 9.646,
- "total_deaths_per_million": 30.797,
- "new_deaths_per_million": 0.17,
- "new_deaths_smoothed_per_million": 0.185
- }
- ]
- },
- "BGR": {
- "continent": "Europe",
- "location": "Bulgaria",
- "population": 6948445.0,
- "population_density": 65.18,
- "median_age": 44.7,
- "aged_65_older": 20.801,
- "aged_70_older": 13.272,
- "gdp_per_capita": 18563.307,
- "extreme_poverty": 1.5,
- "cardiovasc_death_rate": 424.688,
- "diabetes_prevalence": 5.81,
- "female_smokers": 30.1,
- "male_smokers": 44.4,
- "hospital_beds_per_thousand": 7.454,
- "life_expectancy": 75.05,
- "human_development_index": 0.813,
- "data": [
- {
- "date": "2020-03-08",
- "total_cases": 2.0,
- "new_cases": 2.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.288,
- "new_cases_per_million": 0.288,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 21.3
- },
- {
- "date": "2020-03-09",
- "total_cases": 4.0,
- "new_cases": 2.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.576,
- "new_cases_per_million": 0.288,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 21.3
- },
- {
- "date": "2020-03-12",
- "total_cases": 7.0,
- "new_cases": 3.0,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "total_cases_per_million": 1.007,
- "new_cases_per_million": 0.432,
- "total_deaths_per_million": 0.144,
- "new_deaths_per_million": 0.144,
- "stringency_index": 26.85
- },
- {
- "date": "2020-03-13",
- "total_cases": 23.0,
- "new_cases": 16.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 3.31,
- "new_cases_per_million": 2.303,
- "total_deaths_per_million": 0.144,
- "new_deaths_per_million": 0.0,
- "stringency_index": 50.93
- },
- {
- "date": "2020-03-14",
- "total_cases": 31.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 4.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 4.461,
- "new_cases_per_million": 1.151,
- "new_cases_smoothed_per_million": 0.637,
- "total_deaths_per_million": 0.144,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.021,
- "stringency_index": 50.93
- },
- {
- "date": "2020-03-15",
- "total_cases": 41.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 2.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 5.901,
- "new_cases_per_million": 1.439,
- "new_cases_smoothed_per_million": 0.802,
- "total_deaths_per_million": 0.288,
- "new_deaths_per_million": 0.144,
- "new_deaths_smoothed_per_million": 0.041,
- "stringency_index": 50.93
- },
- {
- "date": "2020-03-16",
- "total_cases": 51.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 6.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 7.34,
- "new_cases_per_million": 1.439,
- "new_cases_smoothed_per_million": 0.966,
- "total_deaths_per_million": 0.288,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.041,
- "stringency_index": 50.93
- },
- {
- "date": "2020-03-17",
- "total_cases": 62.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 8.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 8.923,
- "new_cases_per_million": 1.583,
- "new_cases_smoothed_per_million": 1.192,
- "total_deaths_per_million": 0.288,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.041,
- "stringency_index": 56.48
- },
- {
- "date": "2020-03-18",
- "total_cases": 81.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 11.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 11.657,
- "new_cases_per_million": 2.734,
- "new_cases_smoothed_per_million": 1.583,
- "total_deaths_per_million": 0.288,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.041,
- "stringency_index": 70.37
- },
- {
- "date": "2020-03-19",
- "total_cases": 92.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 12.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 13.24,
- "new_cases_per_million": 1.583,
- "new_cases_smoothed_per_million": 1.748,
- "total_deaths_per_million": 0.288,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.021,
- "stringency_index": 70.37
- },
- {
- "date": "2020-03-20",
- "total_cases": 105.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 11.714,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 15.111,
- "new_cases_per_million": 1.871,
- "new_cases_smoothed_per_million": 1.686,
- "total_deaths_per_million": 0.432,
- "new_deaths_per_million": 0.144,
- "new_deaths_smoothed_per_million": 0.041,
- "stringency_index": 70.37
- },
- {
- "date": "2020-03-21",
- "total_cases": 127.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 13.714,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 18.277,
- "new_cases_per_million": 3.166,
- "new_cases_smoothed_per_million": 1.974,
- "total_deaths_per_million": 0.432,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.041,
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-22",
- "total_cases": 163.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 17.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 23.458,
- "new_cases_per_million": 5.181,
- "new_cases_smoothed_per_million": 2.508,
- "total_deaths_per_million": 0.432,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.021,
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-23",
- "total_cases": 185.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 19.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 26.625,
- "new_cases_per_million": 3.166,
- "new_cases_smoothed_per_million": 2.755,
- "total_deaths_per_million": 0.432,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.021,
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-24",
- "total_cases": 201.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 19.857,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 28.927,
- "new_cases_per_million": 2.303,
- "new_cases_smoothed_per_million": 2.858,
- "total_deaths_per_million": 0.432,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.021,
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-25",
- "total_cases": 220.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 19.857,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 31.662,
- "new_cases_per_million": 2.734,
- "new_cases_smoothed_per_million": 2.858,
- "total_deaths_per_million": 0.432,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.021,
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-26",
- "total_cases": 242.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 21.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 34.828,
- "new_cases_per_million": 3.166,
- "new_cases_smoothed_per_million": 3.084,
- "total_deaths_per_million": 0.432,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.021,
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-27",
- "total_cases": 264.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 22.714,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 37.994,
- "new_cases_per_million": 3.166,
- "new_cases_smoothed_per_million": 3.269,
- "total_deaths_per_million": 0.432,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-28",
- "total_cases": 293.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 23.714,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 42.168,
- "new_cases_per_million": 4.174,
- "new_cases_smoothed_per_million": 3.413,
- "total_deaths_per_million": 0.432,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-29",
- "total_cases": 331.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 24.0,
- "total_deaths": 7.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 47.637,
- "new_cases_per_million": 5.469,
- "new_cases_smoothed_per_million": 3.454,
- "total_deaths_per_million": 1.007,
- "new_deaths_per_million": 0.576,
- "new_deaths_smoothed_per_million": 0.082,
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-30",
- "total_cases": 346.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 23.0,
- "total_deaths": 8.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 49.795,
- "new_cases_per_million": 2.159,
- "new_cases_smoothed_per_million": 3.31,
- "total_deaths_per_million": 1.151,
- "new_deaths_per_million": 0.144,
- "new_deaths_smoothed_per_million": 0.103,
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-31",
- "total_cases": 359.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 22.571,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 51.666,
- "new_cases_per_million": 1.871,
- "new_cases_smoothed_per_million": 3.248,
- "total_deaths_per_million": 1.151,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.103,
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-01",
- "total_cases": 399.0,
- "new_cases": 40.0,
- "new_cases_smoothed": 25.571,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 57.423,
- "new_cases_per_million": 5.757,
- "new_cases_smoothed_per_million": 3.68,
- "total_deaths_per_million": 1.151,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.103,
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-02",
- "total_cases": 422.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 25.714,
- "total_deaths": 10.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 60.733,
- "new_cases_per_million": 3.31,
- "new_cases_smoothed_per_million": 3.701,
- "total_deaths_per_million": 1.439,
- "new_deaths_per_million": 0.288,
- "new_deaths_smoothed_per_million": 0.144,
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-03",
- "total_cases": 457.0,
- "new_cases": 35.0,
- "new_cases_smoothed": 27.571,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 65.77,
- "new_cases_per_million": 5.037,
- "new_cases_smoothed_per_million": 3.968,
- "total_deaths_per_million": 1.439,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.144,
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-04",
- "total_cases": 485.0,
- "new_cases": 28.0,
- "new_cases_smoothed": 27.429,
- "total_deaths": 14.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 69.8,
- "new_cases_per_million": 4.03,
- "new_cases_smoothed_per_million": 3.947,
- "total_deaths_per_million": 2.015,
- "new_deaths_per_million": 0.576,
- "new_deaths_smoothed_per_million": 0.226,
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-05",
- "total_cases": 503.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 24.571,
- "total_deaths": 17.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 72.39,
- "new_cases_per_million": 2.591,
- "new_cases_smoothed_per_million": 3.536,
- "total_deaths_per_million": 2.447,
- "new_deaths_per_million": 0.432,
- "new_deaths_smoothed_per_million": 0.206,
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-06",
- "total_cases": 531.0,
- "new_cases": 28.0,
- "new_cases_smoothed": 26.429,
- "total_deaths": 20.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 76.42,
- "new_cases_per_million": 4.03,
- "new_cases_smoothed_per_million": 3.804,
- "total_deaths_per_million": 2.878,
- "new_deaths_per_million": 0.432,
- "new_deaths_smoothed_per_million": 0.247,
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-07",
- "total_cases": 549.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 27.143,
- "total_deaths": 22.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 79.01,
- "new_cases_per_million": 2.591,
- "new_cases_smoothed_per_million": 3.906,
- "total_deaths_per_million": 3.166,
- "new_deaths_per_million": 0.288,
- "new_deaths_smoothed_per_million": 0.288,
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-08",
- "total_cases": 577.0,
- "new_cases": 28.0,
- "new_cases_smoothed": 25.429,
- "total_deaths": 23.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 83.04,
- "new_cases_per_million": 4.03,
- "new_cases_smoothed_per_million": 3.66,
- "total_deaths_per_million": 3.31,
- "new_deaths_per_million": 0.144,
- "new_deaths_smoothed_per_million": 0.308,
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-09",
- "total_cases": 593.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 24.429,
- "total_deaths": 24.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 85.343,
- "new_cases_per_million": 2.303,
- "new_cases_smoothed_per_million": 3.516,
- "total_deaths_per_million": 3.454,
- "new_deaths_per_million": 0.144,
- "new_deaths_smoothed_per_million": 0.288,
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-10",
- "total_cases": 624.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 23.857,
- "total_deaths": 24.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 89.804,
- "new_cases_per_million": 4.461,
- "new_cases_smoothed_per_million": 3.433,
- "total_deaths_per_million": 3.454,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.288,
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-11",
- "total_cases": 635.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 21.429,
- "total_deaths": 25.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 91.387,
- "new_cases_per_million": 1.583,
- "new_cases_smoothed_per_million": 3.084,
- "total_deaths_per_million": 3.598,
- "new_deaths_per_million": 0.144,
- "new_deaths_smoothed_per_million": 0.226,
- "total_tests": 18502.0,
- "total_tests_per_thousand": 2.663,
- "tests_units": "tests performed",
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-12",
- "total_cases": 661.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 22.571,
- "total_deaths": 28.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 95.129,
- "new_cases_per_million": 3.742,
- "new_cases_smoothed_per_million": 3.248,
- "total_deaths_per_million": 4.03,
- "new_deaths_per_million": 0.432,
- "new_deaths_smoothed_per_million": 0.226,
- "tests_units": "tests performed",
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-13",
- "total_cases": 675.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 20.571,
- "total_deaths": 29.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 97.144,
- "new_cases_per_million": 2.015,
- "new_cases_smoothed_per_million": 2.961,
- "total_deaths_per_million": 4.174,
- "new_deaths_per_million": 0.144,
- "new_deaths_smoothed_per_million": 0.185,
- "tests_units": "tests performed",
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-14",
- "total_cases": 685.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 19.429,
- "total_deaths": 32.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 98.583,
- "new_cases_per_million": 1.439,
- "new_cases_smoothed_per_million": 2.796,
- "total_deaths_per_million": 4.605,
- "new_deaths_per_million": 0.432,
- "new_deaths_smoothed_per_million": 0.206,
- "tests_units": "tests performed",
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-15",
- "total_cases": 713.0,
- "new_cases": 28.0,
- "new_cases_smoothed": 19.429,
- "total_deaths": 35.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 102.613,
- "new_cases_per_million": 4.03,
- "new_cases_smoothed_per_million": 2.796,
- "total_deaths_per_million": 5.037,
- "new_deaths_per_million": 0.432,
- "new_deaths_smoothed_per_million": 0.247,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-16",
- "total_cases": 747.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 22.0,
- "total_deaths": 36.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 107.506,
- "new_cases_per_million": 4.893,
- "new_cases_smoothed_per_million": 3.166,
- "total_deaths_per_million": 5.181,
- "new_deaths_per_million": 0.144,
- "new_deaths_smoothed_per_million": 0.247,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-17",
- "total_cases": 800.0,
- "new_cases": 53.0,
- "new_cases_smoothed": 25.143,
- "total_deaths": 38.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 115.134,
- "new_cases_per_million": 7.628,
- "new_cases_smoothed_per_million": 3.618,
- "total_deaths_per_million": 5.469,
- "new_deaths_per_million": 0.288,
- "new_deaths_smoothed_per_million": 0.288,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-18",
- "total_cases": 846.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 30.143,
- "total_deaths": 41.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 121.754,
- "new_cases_per_million": 6.62,
- "new_cases_smoothed_per_million": 4.338,
- "total_deaths_per_million": 5.901,
- "new_deaths_per_million": 0.432,
- "new_deaths_smoothed_per_million": 0.329,
- "new_tests_smoothed": 989.0,
- "new_tests_smoothed_per_thousand": 0.142,
- "tests_per_case": 32.81,
- "positive_rate": 0.03,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-19",
- "total_cases": 878.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 31.0,
- "total_deaths": 41.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 126.359,
- "new_cases_per_million": 4.605,
- "new_cases_smoothed_per_million": 4.461,
- "total_deaths_per_million": 5.901,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.267,
- "total_tests": 26417.0,
- "total_tests_per_thousand": 3.802,
- "new_tests_smoothed": 989.0,
- "new_tests_smoothed_per_thousand": 0.142,
- "tests_per_case": 31.903000000000002,
- "positive_rate": 0.031,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-20",
- "total_cases": 915.0,
- "new_cases": 37.0,
- "new_cases_smoothed": 34.286,
- "total_deaths": 43.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 131.684,
- "new_cases_per_million": 5.325,
- "new_cases_smoothed_per_million": 4.934,
- "total_deaths_per_million": 6.188,
- "new_deaths_per_million": 0.288,
- "new_deaths_smoothed_per_million": 0.288,
- "new_tests_smoothed": 876.0,
- "new_tests_smoothed_per_thousand": 0.126,
- "tests_per_case": 25.55,
- "positive_rate": 0.039,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-21",
- "total_cases": 929.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 34.857,
- "total_deaths": 43.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 133.699,
- "new_cases_per_million": 2.015,
- "new_cases_smoothed_per_million": 5.017,
- "total_deaths_per_million": 6.188,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.226,
- "new_tests_smoothed": 762.0,
- "new_tests_smoothed_per_thousand": 0.11,
- "tests_per_case": 21.861,
- "positive_rate": 0.046,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-22",
- "total_cases": 975.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 37.429,
- "total_deaths": 45.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 140.319,
- "new_cases_per_million": 6.62,
- "new_cases_smoothed_per_million": 5.387,
- "total_deaths_per_million": 6.476,
- "new_deaths_per_million": 0.288,
- "new_deaths_smoothed_per_million": 0.206,
- "total_tests": 27000.0,
- "total_tests_per_thousand": 3.886,
- "new_tests_smoothed": 649.0,
- "new_tests_smoothed_per_thousand": 0.093,
- "tests_per_case": 17.34,
- "positive_rate": 0.057999999999999996,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-23",
- "total_cases": 1024.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 39.571,
- "total_deaths": 49.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 147.371,
- "new_cases_per_million": 7.052,
- "new_cases_smoothed_per_million": 5.695,
- "total_deaths_per_million": 7.052,
- "new_deaths_per_million": 0.576,
- "new_deaths_smoothed_per_million": 0.267,
- "new_tests_smoothed": 879.0,
- "new_tests_smoothed_per_thousand": 0.127,
- "tests_per_case": 22.213,
- "positive_rate": 0.045,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-24",
- "total_cases": 1097.0,
- "new_cases": 73.0,
- "new_cases_smoothed": 42.429,
- "total_deaths": 52.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 157.877,
- "new_cases_per_million": 10.506,
- "new_cases_smoothed_per_million": 6.106,
- "total_deaths_per_million": 7.484,
- "new_deaths_per_million": 0.432,
- "new_deaths_smoothed_per_million": 0.288,
- "new_tests_smoothed": 1109.0,
- "new_tests_smoothed_per_thousand": 0.16,
- "tests_per_case": 26.138,
- "positive_rate": 0.038,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-25",
- "total_cases": 1188.0,
- "new_cases": 91.0,
- "new_cases_smoothed": 48.857,
- "total_deaths": 54.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 170.974,
- "new_cases_per_million": 13.096,
- "new_cases_smoothed_per_million": 7.031,
- "total_deaths_per_million": 7.772,
- "new_deaths_per_million": 0.288,
- "new_deaths_smoothed_per_million": 0.267,
- "new_tests_smoothed": 1339.0,
- "new_tests_smoothed_per_thousand": 0.193,
- "tests_per_case": 27.406,
- "positive_rate": 0.036000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-26",
- "total_cases": 1247.0,
- "new_cases": 59.0,
- "new_cases_smoothed": 52.714,
- "total_deaths": 55.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 179.465,
- "new_cases_per_million": 8.491,
- "new_cases_smoothed_per_million": 7.586,
- "total_deaths_per_million": 7.915,
- "new_deaths_per_million": 0.144,
- "new_deaths_smoothed_per_million": 0.288,
- "new_tests_smoothed": 1570.0,
- "new_tests_smoothed_per_thousand": 0.226,
- "tests_per_case": 29.783,
- "positive_rate": 0.034,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-27",
- "total_cases": 1300.0,
- "new_cases": 53.0,
- "new_cases_smoothed": 55.0,
- "total_deaths": 56.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 187.092,
- "new_cases_per_million": 7.628,
- "new_cases_smoothed_per_million": 7.915,
- "total_deaths_per_million": 8.059,
- "new_deaths_per_million": 0.144,
- "new_deaths_smoothed_per_million": 0.267,
- "new_tests_smoothed": 1913.0,
- "new_tests_smoothed_per_thousand": 0.275,
- "tests_per_case": 34.782,
- "positive_rate": 0.028999999999999998,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-28",
- "total_cases": 1363.0,
- "new_cases": 63.0,
- "new_cases_smoothed": 62.0,
- "total_deaths": 58.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 196.159,
- "new_cases_per_million": 9.067,
- "new_cases_smoothed_per_million": 8.923,
- "total_deaths_per_million": 8.347,
- "new_deaths_per_million": 0.288,
- "new_deaths_smoothed_per_million": 0.308,
- "new_tests_smoothed": 2257.0,
- "new_tests_smoothed_per_thousand": 0.325,
- "tests_per_case": 36.403,
- "positive_rate": 0.027000000000000003,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-29",
- "total_cases": 1399.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 60.571,
- "total_deaths": 58.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 201.34,
- "new_cases_per_million": 5.181,
- "new_cases_smoothed_per_million": 8.717,
- "total_deaths_per_million": 8.347,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.267,
- "total_tests": 45208.0,
- "total_tests_per_thousand": 6.506,
- "new_tests_smoothed": 2601.0,
- "new_tests_smoothed_per_thousand": 0.374,
- "tests_per_case": 42.941,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-30",
- "total_cases": 1447.0,
- "new_cases": 48.0,
- "new_cases_smoothed": 60.429,
- "total_deaths": 64.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 208.248,
- "new_cases_per_million": 6.908,
- "new_cases_smoothed_per_million": 8.697,
- "total_deaths_per_million": 9.211,
- "new_deaths_per_million": 0.864,
- "new_deaths_smoothed_per_million": 0.308,
- "new_tests_smoothed": 2323.0,
- "new_tests_smoothed_per_thousand": 0.334,
- "tests_per_case": 38.442,
- "positive_rate": 0.026000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-05-01",
- "total_cases": 1506.0,
- "new_cases": 59.0,
- "new_cases_smoothed": 58.429,
- "total_deaths": 66.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 216.739,
- "new_cases_per_million": 8.491,
- "new_cases_smoothed_per_million": 8.409,
- "total_deaths_per_million": 9.499,
- "new_deaths_per_million": 0.288,
- "new_deaths_smoothed_per_million": 0.288,
- "total_tests": 46510.0,
- "total_tests_per_thousand": 6.694,
- "new_tests_smoothed": 2044.0,
- "new_tests_smoothed_per_thousand": 0.294,
- "tests_per_case": 34.983000000000004,
- "positive_rate": 0.028999999999999998,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-05-02",
- "total_cases": 1588.0,
- "new_cases": 82.0,
- "new_cases_smoothed": 57.143,
- "total_deaths": 69.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 228.54,
- "new_cases_per_million": 11.801,
- "new_cases_smoothed_per_million": 8.224,
- "total_deaths_per_million": 9.93,
- "new_deaths_per_million": 0.432,
- "new_deaths_smoothed_per_million": 0.308,
- "new_tests": 1126.0,
- "total_tests": 47636.0,
- "total_tests_per_thousand": 6.856,
- "new_tests_per_thousand": 0.162,
- "new_tests_smoothed": 1833.0,
- "new_tests_smoothed_per_thousand": 0.264,
- "tests_per_case": 32.078,
- "positive_rate": 0.031,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-05-03",
- "total_cases": 1594.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 49.571,
- "total_deaths": 72.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 229.404,
- "new_cases_per_million": 0.864,
- "new_cases_smoothed_per_million": 7.134,
- "total_deaths_per_million": 10.362,
- "new_deaths_per_million": 0.432,
- "new_deaths_smoothed_per_million": 0.35,
- "new_tests": 982.0,
- "total_tests": 48618.0,
- "total_tests_per_thousand": 6.997,
- "new_tests_per_thousand": 0.141,
- "new_tests_smoothed": 1602.0,
- "new_tests_smoothed_per_thousand": 0.231,
- "tests_per_case": 32.317,
- "positive_rate": 0.031,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-05-04",
- "total_cases": 1618.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 45.429,
- "total_deaths": 73.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 232.858,
- "new_cases_per_million": 3.454,
- "new_cases_smoothed_per_million": 6.538,
- "total_deaths_per_million": 10.506,
- "new_deaths_per_million": 0.144,
- "new_deaths_smoothed_per_million": 0.35,
- "new_tests": 527.0,
- "total_tests": 49145.0,
- "total_tests_per_thousand": 7.073,
- "new_tests_per_thousand": 0.076,
- "new_tests_smoothed": 1306.0,
- "new_tests_smoothed_per_thousand": 0.188,
- "tests_per_case": 28.748,
- "positive_rate": 0.035,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-05-05",
- "total_cases": 1652.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 41.286,
- "total_deaths": 78.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 237.751,
- "new_cases_per_million": 4.893,
- "new_cases_smoothed_per_million": 5.942,
- "total_deaths_per_million": 11.226,
- "new_deaths_per_million": 0.72,
- "new_deaths_smoothed_per_million": 0.411,
- "new_tests": 1158.0,
- "total_tests": 50303.0,
- "total_tests_per_thousand": 7.239,
- "new_tests_per_thousand": 0.167,
- "new_tests_smoothed": 1099.0,
- "new_tests_smoothed_per_thousand": 0.158,
- "tests_per_case": 26.619,
- "positive_rate": 0.038,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-05-06",
- "total_cases": 1689.0,
- "new_cases": 37.0,
- "new_cases_smoothed": 41.429,
- "total_deaths": 78.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 243.076,
- "new_cases_per_million": 5.325,
- "new_cases_smoothed_per_million": 5.962,
- "total_deaths_per_million": 11.226,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.411,
- "new_tests": 1465.0,
- "total_tests": 51768.0,
- "total_tests_per_thousand": 7.45,
- "new_tests_per_thousand": 0.211,
- "new_tests_smoothed": 937.0,
- "new_tests_smoothed_per_thousand": 0.135,
- "tests_per_case": 22.616999999999997,
- "positive_rate": 0.044000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 62.04
- },
- {
- "date": "2020-05-07",
- "total_cases": 1778.0,
- "new_cases": 89.0,
- "new_cases_smoothed": 47.286,
- "total_deaths": 84.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 255.885,
- "new_cases_per_million": 12.809,
- "new_cases_smoothed_per_million": 6.805,
- "total_deaths_per_million": 12.089,
- "new_deaths_per_million": 0.864,
- "new_deaths_smoothed_per_million": 0.411,
- "new_tests": 1163.0,
- "total_tests": 52931.0,
- "total_tests_per_thousand": 7.618,
- "new_tests_per_thousand": 0.167,
- "new_tests_smoothed": 1010.0,
- "new_tests_smoothed_per_thousand": 0.145,
- "tests_per_case": 21.36,
- "positive_rate": 0.047,
- "tests_units": "tests performed",
- "stringency_index": 62.04
- },
- {
- "date": "2020-05-08",
- "total_cases": 1829.0,
- "new_cases": 51.0,
- "new_cases_smoothed": 46.143,
- "total_deaths": 84.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 263.224,
- "new_cases_per_million": 7.34,
- "new_cases_smoothed_per_million": 6.641,
- "total_deaths_per_million": 12.089,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.37,
- "new_tests": 1397.0,
- "total_tests": 54328.0,
- "total_tests_per_thousand": 7.819,
- "new_tests_per_thousand": 0.201,
- "new_tests_smoothed": 1117.0,
- "new_tests_smoothed_per_thousand": 0.161,
- "tests_per_case": 24.206999999999997,
- "positive_rate": 0.040999999999999995,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-05-09",
- "total_cases": 1911.0,
- "new_cases": 82.0,
- "new_cases_smoothed": 46.143,
- "total_deaths": 88.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 275.026,
- "new_cases_per_million": 11.801,
- "new_cases_smoothed_per_million": 6.641,
- "total_deaths_per_million": 12.665,
- "new_deaths_per_million": 0.576,
- "new_deaths_smoothed_per_million": 0.391,
- "new_tests": 1777.0,
- "total_tests": 56105.0,
- "total_tests_per_thousand": 8.074,
- "new_tests_per_thousand": 0.256,
- "new_tests_smoothed": 1210.0,
- "new_tests_smoothed_per_thousand": 0.174,
- "tests_per_case": 26.223000000000003,
- "positive_rate": 0.038,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-05-10",
- "total_cases": 1955.0,
- "new_cases": 44.0,
- "new_cases_smoothed": 51.571,
- "total_deaths": 90.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 281.358,
- "new_cases_per_million": 6.332,
- "new_cases_smoothed_per_million": 7.422,
- "total_deaths_per_million": 12.953,
- "new_deaths_per_million": 0.288,
- "new_deaths_smoothed_per_million": 0.37,
- "new_tests": 1126.0,
- "total_tests": 57231.0,
- "total_tests_per_thousand": 8.237,
- "new_tests_per_thousand": 0.162,
- "new_tests_smoothed": 1230.0,
- "new_tests_smoothed_per_thousand": 0.177,
- "tests_per_case": 23.85,
- "positive_rate": 0.042,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-05-11",
- "total_cases": 1965.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 49.571,
- "total_deaths": 91.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 282.797,
- "new_cases_per_million": 1.439,
- "new_cases_smoothed_per_million": 7.134,
- "total_deaths_per_million": 13.096,
- "new_deaths_per_million": 0.144,
- "new_deaths_smoothed_per_million": 0.37,
- "new_tests": 403.0,
- "total_tests": 57634.0,
- "total_tests_per_thousand": 8.295,
- "new_tests_per_thousand": 0.058,
- "new_tests_smoothed": 1213.0,
- "new_tests_smoothed_per_thousand": 0.175,
- "tests_per_case": 24.47,
- "positive_rate": 0.040999999999999995,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-05-12",
- "total_cases": 1990.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 48.286,
- "total_deaths": 93.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 286.395,
- "new_cases_per_million": 3.598,
- "new_cases_smoothed_per_million": 6.949,
- "total_deaths_per_million": 13.384,
- "new_deaths_per_million": 0.288,
- "new_deaths_smoothed_per_million": 0.308,
- "new_tests": 1079.0,
- "total_tests": 58713.0,
- "total_tests_per_thousand": 8.45,
- "new_tests_per_thousand": 0.155,
- "new_tests_smoothed": 1201.0,
- "new_tests_smoothed_per_thousand": 0.173,
- "tests_per_case": 24.873,
- "positive_rate": 0.04,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-05-13",
- "total_cases": 2023.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 47.714,
- "total_deaths": 95.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 291.144,
- "new_cases_per_million": 4.749,
- "new_cases_smoothed_per_million": 6.867,
- "total_deaths_per_million": 13.672,
- "new_deaths_per_million": 0.288,
- "new_deaths_smoothed_per_million": 0.35,
- "new_tests": 1387.0,
- "total_tests": 60100.0,
- "total_tests_per_thousand": 8.649,
- "new_tests_per_thousand": 0.2,
- "new_tests_smoothed": 1190.0,
- "new_tests_smoothed_per_thousand": 0.171,
- "tests_per_case": 24.94,
- "positive_rate": 0.04,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-05-14",
- "total_cases": 2069.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 41.571,
- "total_deaths": 96.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 297.764,
- "new_cases_per_million": 6.62,
- "new_cases_smoothed_per_million": 5.983,
- "total_deaths_per_million": 13.816,
- "new_deaths_per_million": 0.144,
- "new_deaths_smoothed_per_million": 0.247,
- "new_tests": 1611.0,
- "total_tests": 61711.0,
- "total_tests_per_thousand": 8.881,
- "new_tests_per_thousand": 0.232,
- "new_tests_smoothed": 1254.0,
- "new_tests_smoothed_per_thousand": 0.18,
- "tests_per_case": 30.165,
- "positive_rate": 0.033,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-05-15",
- "total_cases": 2100.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 38.714,
- "total_deaths": 99.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 302.226,
- "new_cases_per_million": 4.461,
- "new_cases_smoothed_per_million": 5.572,
- "total_deaths_per_million": 14.248,
- "new_deaths_per_million": 0.432,
- "new_deaths_smoothed_per_million": 0.308,
- "new_tests": 1608.0,
- "total_tests": 63319.0,
- "total_tests_per_thousand": 9.113,
- "new_tests_per_thousand": 0.231,
- "new_tests_smoothed": 1284.0,
- "new_tests_smoothed_per_thousand": 0.185,
- "tests_per_case": 33.166,
- "positive_rate": 0.03,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-05-16",
- "total_cases": 2138.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 32.429,
- "total_deaths": 102.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 307.695,
- "new_cases_per_million": 5.469,
- "new_cases_smoothed_per_million": 4.667,
- "total_deaths_per_million": 14.68,
- "new_deaths_per_million": 0.432,
- "new_deaths_smoothed_per_million": 0.288,
- "new_tests": 1161.0,
- "total_tests": 64480.0,
- "total_tests_per_thousand": 9.28,
- "new_tests_per_thousand": 0.167,
- "new_tests_smoothed": 1196.0,
- "new_tests_smoothed_per_thousand": 0.172,
- "tests_per_case": 36.881,
- "positive_rate": 0.027000000000000003,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-05-17",
- "total_cases": 2211.0,
- "new_cases": 73.0,
- "new_cases_smoothed": 36.571,
- "total_deaths": 108.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 318.201,
- "new_cases_per_million": 10.506,
- "new_cases_smoothed_per_million": 5.263,
- "total_deaths_per_million": 15.543,
- "new_deaths_per_million": 0.864,
- "new_deaths_smoothed_per_million": 0.37,
- "new_tests": 1094.0,
- "total_tests": 65574.0,
- "total_tests_per_thousand": 9.437,
- "new_tests_per_thousand": 0.157,
- "new_tests_smoothed": 1192.0,
- "new_tests_smoothed_per_thousand": 0.172,
- "tests_per_case": 32.594,
- "positive_rate": 0.031,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-05-18",
- "total_cases": 2235.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 38.571,
- "total_deaths": 110.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 321.655,
- "new_cases_per_million": 3.454,
- "new_cases_smoothed_per_million": 5.551,
- "total_deaths_per_million": 15.831,
- "new_deaths_per_million": 0.288,
- "new_deaths_smoothed_per_million": 0.391,
- "new_tests": 362.0,
- "total_tests": 65936.0,
- "total_tests_per_thousand": 9.489,
- "new_tests_per_thousand": 0.052,
- "new_tests_smoothed": 1186.0,
- "new_tests_smoothed_per_thousand": 0.171,
- "tests_per_case": 30.748,
- "positive_rate": 0.033,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-05-19",
- "total_cases": 2259.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 38.429,
- "total_deaths": 112.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 325.109,
- "new_cases_per_million": 3.454,
- "new_cases_smoothed_per_million": 5.531,
- "total_deaths_per_million": 16.119,
- "new_deaths_per_million": 0.288,
- "new_deaths_smoothed_per_million": 0.391,
- "new_tests": 874.0,
- "total_tests": 66810.0,
- "total_tests_per_thousand": 9.615,
- "new_tests_per_thousand": 0.126,
- "new_tests_smoothed": 1157.0,
- "new_tests_smoothed_per_thousand": 0.167,
- "tests_per_case": 30.108,
- "positive_rate": 0.033,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-05-20",
- "total_cases": 2292.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 38.429,
- "total_deaths": 116.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 329.858,
- "new_cases_per_million": 4.749,
- "new_cases_smoothed_per_million": 5.531,
- "total_deaths_per_million": 16.694,
- "new_deaths_per_million": 0.576,
- "new_deaths_smoothed_per_million": 0.432,
- "new_tests": 1433.0,
- "total_tests": 68243.0,
- "total_tests_per_thousand": 9.821,
- "new_tests_per_thousand": 0.206,
- "new_tests_smoothed": 1163.0,
- "new_tests_smoothed_per_thousand": 0.167,
- "tests_per_case": 30.264,
- "positive_rate": 0.033,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-05-21",
- "total_cases": 2331.0,
- "new_cases": 39.0,
- "new_cases_smoothed": 37.429,
- "total_deaths": 120.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 335.471,
- "new_cases_per_million": 5.613,
- "new_cases_smoothed_per_million": 5.387,
- "total_deaths_per_million": 17.27,
- "new_deaths_per_million": 0.576,
- "new_deaths_smoothed_per_million": 0.493,
- "new_tests_smoothed": 1173.0,
- "new_tests_smoothed_per_thousand": 0.169,
- "tests_per_case": 31.34,
- "positive_rate": 0.032,
- "tests_units": "tests performed",
- "stringency_index": 59.26
- },
- {
- "date": "2020-05-22",
- "total_cases": 2372.0,
- "new_cases": 41.0,
- "new_cases_smoothed": 38.857,
- "total_deaths": 125.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 341.371,
- "new_cases_per_million": 5.901,
- "new_cases_smoothed_per_million": 5.592,
- "total_deaths_per_million": 17.99,
- "new_deaths_per_million": 0.72,
- "new_deaths_smoothed_per_million": 0.535,
- "total_tests": 71605.0,
- "total_tests_per_thousand": 10.305,
- "new_tests_smoothed": 1184.0,
- "new_tests_smoothed_per_thousand": 0.17,
- "tests_per_case": 30.471,
- "positive_rate": 0.033,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-05-23",
- "total_cases": 2408.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 38.571,
- "total_deaths": 126.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 346.552,
- "new_cases_per_million": 5.181,
- "new_cases_smoothed_per_million": 5.551,
- "total_deaths_per_million": 18.134,
- "new_deaths_per_million": 0.144,
- "new_deaths_smoothed_per_million": 0.493,
- "new_tests": 1605.0,
- "total_tests": 73210.0,
- "total_tests_per_thousand": 10.536,
- "new_tests_per_thousand": 0.231,
- "new_tests_smoothed": 1247.0,
- "new_tests_smoothed_per_thousand": 0.179,
- "tests_per_case": 32.33,
- "positive_rate": 0.031,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-05-24",
- "total_cases": 2408.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 28.143,
- "total_deaths": 126.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 346.552,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.05,
- "total_deaths_per_million": 18.134,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.37,
- "new_tests": 886.0,
- "total_tests": 74096.0,
- "total_tests_per_thousand": 10.664,
- "new_tests_per_thousand": 0.128,
- "new_tests_smoothed": 1217.0,
- "new_tests_smoothed_per_thousand": 0.175,
- "tests_per_case": 43.244,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-05-25",
- "total_cases": 2433.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 28.286,
- "total_deaths": 130.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 350.15,
- "new_cases_per_million": 3.598,
- "new_cases_smoothed_per_million": 4.071,
- "total_deaths_per_million": 18.709,
- "new_deaths_per_million": 0.576,
- "new_deaths_smoothed_per_million": 0.411,
- "new_tests": 443.0,
- "total_tests": 74539.0,
- "total_tests_per_thousand": 10.727,
- "new_tests_per_thousand": 0.064,
- "new_tests_smoothed": 1229.0,
- "new_tests_smoothed_per_thousand": 0.177,
- "tests_per_case": 43.449,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-05-26",
- "total_cases": 2433.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 24.857,
- "total_deaths": 130.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 350.15,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.577,
- "total_deaths_per_million": 18.709,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.37,
- "new_tests": 295.0,
- "total_tests": 74834.0,
- "total_tests_per_thousand": 10.77,
- "new_tests_per_thousand": 0.042,
- "new_tests_smoothed": 1146.0,
- "new_tests_smoothed_per_thousand": 0.165,
- "tests_per_case": 46.103,
- "positive_rate": 0.022000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-05-27",
- "total_cases": 2460.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 24.0,
- "total_deaths": 133.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 354.036,
- "new_cases_per_million": 3.886,
- "new_cases_smoothed_per_million": 3.454,
- "total_deaths_per_million": 19.141,
- "new_deaths_per_million": 0.432,
- "new_deaths_smoothed_per_million": 0.35,
- "new_tests": 1557.0,
- "total_tests": 76391.0,
- "total_tests_per_thousand": 10.994,
- "new_tests_per_thousand": 0.224,
- "new_tests_smoothed": 1164.0,
- "new_tests_smoothed_per_thousand": 0.168,
- "tests_per_case": 48.5,
- "positive_rate": 0.021,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-05-28",
- "total_cases": 2460.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 18.429,
- "total_deaths": 133.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 354.036,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.652,
- "total_deaths_per_million": 19.141,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.267,
- "new_tests": 1273.0,
- "total_tests": 77664.0,
- "total_tests_per_thousand": 11.177,
- "new_tests_per_thousand": 0.183,
- "new_tests_smoothed": 1106.0,
- "new_tests_smoothed_per_thousand": 0.159,
- "tests_per_case": 60.016000000000005,
- "positive_rate": 0.017,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-05-29",
- "total_cases": 2485.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 16.143,
- "total_deaths": 136.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 357.634,
- "new_cases_per_million": 3.598,
- "new_cases_smoothed_per_million": 2.323,
- "total_deaths_per_million": 19.573,
- "new_deaths_per_million": 0.432,
- "new_deaths_smoothed_per_million": 0.226,
- "new_tests": 1725.0,
- "total_tests": 79389.0,
- "total_tests_per_thousand": 11.425,
- "new_tests_per_thousand": 0.248,
- "new_tests_smoothed": 1112.0,
- "new_tests_smoothed_per_thousand": 0.16,
- "tests_per_case": 68.885,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-05-30",
- "total_cases": 2499.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 13.0,
- "total_deaths": 139.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 359.649,
- "new_cases_per_million": 2.015,
- "new_cases_smoothed_per_million": 1.871,
- "total_deaths_per_million": 20.004,
- "new_deaths_per_million": 0.432,
- "new_deaths_smoothed_per_million": 0.267,
- "new_tests": 1353.0,
- "total_tests": 80742.0,
- "total_tests_per_thousand": 11.62,
- "new_tests_per_thousand": 0.195,
- "new_tests_smoothed": 1076.0,
- "new_tests_smoothed_per_thousand": 0.155,
- "tests_per_case": 82.76899999999999,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 50.93
- },
- {
- "date": "2020-05-31",
- "total_cases": 2513.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 15.0,
- "total_deaths": 140.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 361.664,
- "new_cases_per_million": 2.015,
- "new_cases_smoothed_per_million": 2.159,
- "total_deaths_per_million": 20.148,
- "new_deaths_per_million": 0.144,
- "new_deaths_smoothed_per_million": 0.288,
- "new_tests": 606.0,
- "total_tests": 81348.0,
- "total_tests_per_thousand": 11.707,
- "new_tests_per_thousand": 0.087,
- "new_tests_smoothed": 1036.0,
- "new_tests_smoothed_per_thousand": 0.149,
- "tests_per_case": 69.067,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 44.44
- },
- {
- "date": "2020-06-01",
- "total_cases": 2513.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 11.429,
- "total_deaths": 140.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 361.664,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.645,
- "total_deaths_per_million": 20.148,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.206,
- "new_tests": 346.0,
- "total_tests": 81694.0,
- "total_tests_per_thousand": 11.757,
- "new_tests_per_thousand": 0.05,
- "new_tests_smoothed": 1022.0,
- "new_tests_smoothed_per_thousand": 0.147,
- "tests_per_case": 89.425,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 44.44
- },
- {
- "date": "2020-06-02",
- "total_cases": 2513.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 11.429,
- "total_deaths": 144.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 361.664,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.645,
- "total_deaths_per_million": 20.724,
- "new_deaths_per_million": 0.576,
- "new_deaths_smoothed_per_million": 0.288,
- "new_tests": 1220.0,
- "total_tests": 82914.0,
- "total_tests_per_thousand": 11.933,
- "new_tests_per_thousand": 0.176,
- "new_tests_smoothed": 1154.0,
- "new_tests_smoothed_per_thousand": 0.166,
- "tests_per_case": 100.975,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 44.44
- },
- {
- "date": "2020-06-03",
- "total_cases": 2538.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 11.143,
- "total_deaths": 144.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 365.262,
- "new_cases_per_million": 3.598,
- "new_cases_smoothed_per_million": 1.604,
- "total_deaths_per_million": 20.724,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.226,
- "new_tests": 1347.0,
- "total_tests": 84261.0,
- "total_tests_per_thousand": 12.127,
- "new_tests_per_thousand": 0.194,
- "new_tests_smoothed": 1124.0,
- "new_tests_smoothed_per_thousand": 0.162,
- "tests_per_case": 100.87200000000001,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 44.44
- },
- {
- "date": "2020-06-04",
- "total_cases": 2585.0,
- "new_cases": 47.0,
- "new_cases_smoothed": 17.857,
- "total_deaths": 147.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 372.026,
- "new_cases_per_million": 6.764,
- "new_cases_smoothed_per_million": 2.57,
- "total_deaths_per_million": 21.156,
- "new_deaths_per_million": 0.432,
- "new_deaths_smoothed_per_million": 0.288,
- "new_tests": 1569.0,
- "total_tests": 85830.0,
- "total_tests_per_thousand": 12.352,
- "new_tests_per_thousand": 0.226,
- "new_tests_smoothed": 1167.0,
- "new_tests_smoothed_per_thousand": 0.168,
- "tests_per_case": 65.352,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 44.44
- },
- {
- "date": "2020-06-05",
- "total_cases": 2585.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 14.286,
- "total_deaths": 147.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 372.026,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.056,
- "total_deaths_per_million": 21.156,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.226,
- "new_tests": 2060.0,
- "total_tests": 87890.0,
- "total_tests_per_thousand": 12.649,
- "new_tests_per_thousand": 0.296,
- "new_tests_smoothed": 1214.0,
- "new_tests_smoothed_per_thousand": 0.175,
- "tests_per_case": 84.98,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 44.44
- },
- {
- "date": "2020-06-06",
- "total_cases": 2668.0,
- "new_cases": 83.0,
- "new_cases_smoothed": 24.143,
- "total_deaths": 160.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 383.971,
- "new_cases_per_million": 11.945,
- "new_cases_smoothed_per_million": 3.475,
- "total_deaths_per_million": 23.027,
- "new_deaths_per_million": 1.871,
- "new_deaths_smoothed_per_million": 0.432,
- "new_tests": 1196.0,
- "total_tests": 89086.0,
- "total_tests_per_thousand": 12.821,
- "new_tests_per_thousand": 0.172,
- "new_tests_smoothed": 1192.0,
- "new_tests_smoothed_per_thousand": 0.172,
- "tests_per_case": 49.373000000000005,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 44.44
- },
- {
- "date": "2020-06-07",
- "total_cases": 2711.0,
- "new_cases": 43.0,
- "new_cases_smoothed": 28.286,
- "total_deaths": 160.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 390.159,
- "new_cases_per_million": 6.188,
- "new_cases_smoothed_per_million": 4.071,
- "total_deaths_per_million": 23.027,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.411,
- "new_tests": 816.0,
- "total_tests": 89902.0,
- "total_tests_per_thousand": 12.938,
- "new_tests_per_thousand": 0.117,
- "new_tests_smoothed": 1222.0,
- "new_tests_smoothed_per_thousand": 0.176,
- "tests_per_case": 43.202,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 44.44
- },
- {
- "date": "2020-06-08",
- "total_cases": 2727.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 30.571,
- "total_deaths": 160.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 392.462,
- "new_cases_per_million": 2.303,
- "new_cases_smoothed_per_million": 4.4,
- "total_deaths_per_million": 23.027,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.411,
- "new_tests": 427.0,
- "total_tests": 90329.0,
- "total_tests_per_thousand": 13.0,
- "new_tests_per_thousand": 0.061,
- "new_tests_smoothed": 1234.0,
- "new_tests_smoothed_per_thousand": 0.178,
- "tests_per_case": 40.364000000000004,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 44.44
- },
- {
- "date": "2020-06-09",
- "total_cases": 2810.0,
- "new_cases": 83.0,
- "new_cases_smoothed": 42.429,
- "total_deaths": 164.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 404.407,
- "new_cases_per_million": 11.945,
- "new_cases_smoothed_per_million": 6.106,
- "total_deaths_per_million": 23.602,
- "new_deaths_per_million": 0.576,
- "new_deaths_smoothed_per_million": 0.411,
- "new_tests": 1406.0,
- "total_tests": 91735.0,
- "total_tests_per_thousand": 13.202,
- "new_tests_per_thousand": 0.202,
- "new_tests_smoothed": 1260.0,
- "new_tests_smoothed_per_thousand": 0.181,
- "tests_per_case": 29.697,
- "positive_rate": 0.034,
- "tests_units": "tests performed",
- "stringency_index": 44.44
- },
- {
- "date": "2020-06-10",
- "total_cases": 2889.0,
- "new_cases": 79.0,
- "new_cases_smoothed": 50.143,
- "total_deaths": 167.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 415.776,
- "new_cases_per_million": 11.369,
- "new_cases_smoothed_per_million": 7.216,
- "total_deaths_per_million": 24.034,
- "new_deaths_per_million": 0.432,
- "new_deaths_smoothed_per_million": 0.473,
- "new_tests": 1777.0,
- "total_tests": 93512.0,
- "total_tests_per_thousand": 13.458,
- "new_tests_per_thousand": 0.256,
- "new_tests_smoothed": 1322.0,
- "new_tests_smoothed_per_thousand": 0.19,
- "tests_per_case": 26.365,
- "positive_rate": 0.038,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-11",
- "total_cases": 2993.0,
- "new_cases": 104.0,
- "new_cases_smoothed": 58.286,
- "total_deaths": 167.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 430.744,
- "new_cases_per_million": 14.967,
- "new_cases_smoothed_per_million": 8.388,
- "total_deaths_per_million": 24.034,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.411,
- "new_tests": 2308.0,
- "total_tests": 95820.0,
- "total_tests_per_thousand": 13.79,
- "new_tests_per_thousand": 0.332,
- "new_tests_smoothed": 1427.0,
- "new_tests_smoothed_per_thousand": 0.205,
- "tests_per_case": 24.483,
- "positive_rate": 0.040999999999999995,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-12",
- "total_cases": 3086.0,
- "new_cases": 93.0,
- "new_cases_smoothed": 71.571,
- "total_deaths": 168.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 444.128,
- "new_cases_per_million": 13.384,
- "new_cases_smoothed_per_million": 10.3,
- "total_deaths_per_million": 24.178,
- "new_deaths_per_million": 0.144,
- "new_deaths_smoothed_per_million": 0.432,
- "new_tests": 2640.0,
- "total_tests": 98460.0,
- "total_tests_per_thousand": 14.17,
- "new_tests_per_thousand": 0.38,
- "new_tests_smoothed": 1510.0,
- "new_tests_smoothed_per_thousand": 0.217,
- "tests_per_case": 21.098000000000003,
- "positive_rate": 0.047,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-13",
- "total_cases": 3191.0,
- "new_cases": 105.0,
- "new_cases_smoothed": 74.714,
- "total_deaths": 172.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 459.239,
- "new_cases_per_million": 15.111,
- "new_cases_smoothed_per_million": 10.753,
- "total_deaths_per_million": 24.754,
- "new_deaths_per_million": 0.576,
- "new_deaths_smoothed_per_million": 0.247,
- "new_tests": 2642.0,
- "total_tests": 101102.0,
- "total_tests_per_thousand": 14.55,
- "new_tests_per_thousand": 0.38,
- "new_tests_smoothed": 1717.0,
- "new_tests_smoothed_per_thousand": 0.247,
- "tests_per_case": 22.980999999999998,
- "positive_rate": 0.044000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-14",
- "total_cases": 3266.0,
- "new_cases": 75.0,
- "new_cases_smoothed": 79.286,
- "total_deaths": 172.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 470.033,
- "new_cases_per_million": 10.794,
- "new_cases_smoothed_per_million": 11.411,
- "total_deaths_per_million": 24.754,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.247,
- "new_tests": 1975.0,
- "total_tests": 103077.0,
- "total_tests_per_thousand": 14.835,
- "new_tests_per_thousand": 0.284,
- "new_tests_smoothed": 1882.0,
- "new_tests_smoothed_per_thousand": 0.271,
- "tests_per_case": 23.737,
- "positive_rate": 0.042,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-15",
- "total_cases": 3290.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 80.429,
- "total_deaths": 174.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 473.487,
- "new_cases_per_million": 3.454,
- "new_cases_smoothed_per_million": 11.575,
- "total_deaths_per_million": 25.042,
- "new_deaths_per_million": 0.288,
- "new_deaths_smoothed_per_million": 0.288,
- "new_tests": 1409.0,
- "total_tests": 104486.0,
- "total_tests_per_thousand": 15.037,
- "new_tests_per_thousand": 0.203,
- "new_tests_smoothed": 2022.0,
- "new_tests_smoothed_per_thousand": 0.291,
- "tests_per_case": 25.14,
- "positive_rate": 0.04,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-16",
- "total_cases": 3341.0,
- "new_cases": 51.0,
- "new_cases_smoothed": 75.857,
- "total_deaths": 176.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 480.827,
- "new_cases_per_million": 7.34,
- "new_cases_smoothed_per_million": 10.917,
- "total_deaths_per_million": 25.329,
- "new_deaths_per_million": 0.288,
- "new_deaths_smoothed_per_million": 0.247,
- "new_tests": 3839.0,
- "total_tests": 108325.0,
- "total_tests_per_thousand": 15.59,
- "new_tests_per_thousand": 0.552,
- "new_tests_smoothed": 2370.0,
- "new_tests_smoothed_per_thousand": 0.341,
- "tests_per_case": 31.243000000000002,
- "positive_rate": 0.032,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-17",
- "total_cases": 3453.0,
- "new_cases": 112.0,
- "new_cases_smoothed": 80.571,
- "total_deaths": 181.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 496.946,
- "new_cases_per_million": 16.119,
- "new_cases_smoothed_per_million": 11.596,
- "total_deaths_per_million": 26.049,
- "new_deaths_per_million": 0.72,
- "new_deaths_smoothed_per_million": 0.288,
- "new_tests_smoothed": 2413.0,
- "new_tests_smoothed_per_thousand": 0.347,
- "tests_per_case": 29.949,
- "positive_rate": 0.033,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-18",
- "total_cases": 3542.0,
- "new_cases": 89.0,
- "new_cases_smoothed": 78.429,
- "total_deaths": 184.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 509.754,
- "new_cases_per_million": 12.809,
- "new_cases_smoothed_per_million": 11.287,
- "total_deaths_per_million": 26.481,
- "new_deaths_per_million": 0.432,
- "new_deaths_smoothed_per_million": 0.35,
- "total_tests": 112483.0,
- "total_tests_per_thousand": 16.188,
- "new_tests_smoothed": 2380.0,
- "new_tests_smoothed_per_thousand": 0.343,
- "tests_per_case": 30.346,
- "positive_rate": 0.033,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-06-19",
- "total_cases": 3674.0,
- "new_cases": 132.0,
- "new_cases_smoothed": 84.0,
- "total_deaths": 190.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 528.751,
- "new_cases_per_million": 18.997,
- "new_cases_smoothed_per_million": 12.089,
- "total_deaths_per_million": 27.344,
- "new_deaths_per_million": 0.864,
- "new_deaths_smoothed_per_million": 0.452,
- "new_tests_smoothed": 2270.0,
- "new_tests_smoothed_per_thousand": 0.327,
- "tests_per_case": 27.024,
- "positive_rate": 0.037000000000000005,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-06-20",
- "total_cases": 3755.0,
- "new_cases": 81.0,
- "new_cases_smoothed": 80.571,
- "total_deaths": 193.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 540.409,
- "new_cases_per_million": 11.657,
- "new_cases_smoothed_per_million": 11.596,
- "total_deaths_per_million": 27.776,
- "new_deaths_per_million": 0.432,
- "new_deaths_smoothed_per_million": 0.432,
- "total_tests": 116214.0,
- "total_tests_per_thousand": 16.725,
- "new_tests_smoothed": 2159.0,
- "new_tests_smoothed_per_thousand": 0.311,
- "tests_per_case": 26.796,
- "positive_rate": 0.037000000000000005,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-06-21",
- "total_cases": 3872.0,
- "new_cases": 117.0,
- "new_cases_smoothed": 86.571,
- "total_deaths": 199.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 557.247,
- "new_cases_per_million": 16.838,
- "new_cases_smoothed_per_million": 12.459,
- "total_deaths_per_million": 28.64,
- "new_deaths_per_million": 0.864,
- "new_deaths_smoothed_per_million": 0.555,
- "new_tests_smoothed": 1917.0,
- "new_tests_smoothed_per_thousand": 0.276,
- "tests_per_case": 22.144000000000002,
- "positive_rate": 0.045,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-06-22",
- "total_cases": 3905.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 87.857,
- "total_deaths": 199.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 561.996,
- "new_cases_per_million": 4.749,
- "new_cases_smoothed_per_million": 12.644,
- "total_deaths_per_million": 28.64,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.514,
- "total_tests": 116780.0,
- "total_tests_per_thousand": 16.807,
- "new_tests_smoothed": 1756.0,
- "new_tests_smoothed_per_thousand": 0.253,
- "tests_per_case": 19.987000000000002,
- "positive_rate": 0.05,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-06-23",
- "total_cases": 3984.0,
- "new_cases": 79.0,
- "new_cases_smoothed": 91.857,
- "total_deaths": 207.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 573.366,
- "new_cases_per_million": 11.369,
- "new_cases_smoothed_per_million": 13.22,
- "total_deaths_per_million": 29.791,
- "new_deaths_per_million": 1.151,
- "new_deaths_smoothed_per_million": 0.637,
- "new_tests": 2776.0,
- "total_tests": 119556.0,
- "total_tests_per_thousand": 17.206,
- "new_tests_per_thousand": 0.4,
- "new_tests_smoothed": 1604.0,
- "new_tests_smoothed_per_thousand": 0.231,
- "tests_per_case": 17.462,
- "positive_rate": 0.057,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-06-24",
- "total_cases": 4114.0,
- "new_cases": 130.0,
- "new_cases_smoothed": 94.429,
- "total_deaths": 208.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 592.075,
- "new_cases_per_million": 18.709,
- "new_cases_smoothed_per_million": 13.59,
- "total_deaths_per_million": 29.935,
- "new_deaths_per_million": 0.144,
- "new_deaths_smoothed_per_million": 0.555,
- "new_tests": 2946.0,
- "total_tests": 122502.0,
- "total_tests_per_thousand": 17.63,
- "new_tests_per_thousand": 0.424,
- "new_tests_smoothed": 1728.0,
- "new_tests_smoothed_per_thousand": 0.249,
- "tests_per_case": 18.3,
- "positive_rate": 0.055,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-06-25",
- "total_cases": 4242.0,
- "new_cases": 128.0,
- "new_cases_smoothed": 100.0,
- "total_deaths": 209.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 610.496,
- "new_cases_per_million": 18.421,
- "new_cases_smoothed_per_million": 14.392,
- "total_deaths_per_million": 30.079,
- "new_deaths_per_million": 0.144,
- "new_deaths_smoothed_per_million": 0.514,
- "new_tests": 3016.0,
- "total_tests": 125518.0,
- "total_tests_per_thousand": 18.064,
- "new_tests_per_thousand": 0.434,
- "new_tests_smoothed": 1862.0,
- "new_tests_smoothed_per_thousand": 0.268,
- "tests_per_case": 18.62,
- "positive_rate": 0.054000000000000006,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-06-26",
- "total_cases": 4408.0,
- "new_cases": 166.0,
- "new_cases_smoothed": 104.857,
- "total_deaths": 211.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 634.387,
- "new_cases_per_million": 23.89,
- "new_cases_smoothed_per_million": 15.091,
- "total_deaths_per_million": 30.367,
- "new_deaths_per_million": 0.288,
- "new_deaths_smoothed_per_million": 0.432,
- "new_tests": 2775.0,
- "total_tests": 128293.0,
- "total_tests_per_thousand": 18.464,
- "new_tests_per_thousand": 0.399,
- "new_tests_smoothed": 1992.0,
- "new_tests_smoothed_per_thousand": 0.287,
- "tests_per_case": 18.997,
- "positive_rate": 0.053,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-06-27",
- "total_cases": 4513.0,
- "new_cases": 105.0,
- "new_cases_smoothed": 108.286,
- "total_deaths": 215.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 649.498,
- "new_cases_per_million": 15.111,
- "new_cases_smoothed_per_million": 15.584,
- "total_deaths_per_million": 30.942,
- "new_deaths_per_million": 0.576,
- "new_deaths_smoothed_per_million": 0.452,
- "new_tests": 2750.0,
- "total_tests": 131043.0,
- "total_tests_per_thousand": 18.859,
- "new_tests_per_thousand": 0.396,
- "new_tests_smoothed": 2118.0,
- "new_tests_smoothed_per_thousand": 0.305,
- "tests_per_case": 19.559,
- "positive_rate": 0.051,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-06-28",
- "total_cases": 4625.0,
- "new_cases": 112.0,
- "new_cases_smoothed": 107.571,
- "total_deaths": 216.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 665.617,
- "new_cases_per_million": 16.119,
- "new_cases_smoothed_per_million": 15.481,
- "total_deaths_per_million": 31.086,
- "new_deaths_per_million": 0.144,
- "new_deaths_smoothed_per_million": 0.35,
- "new_tests": 1528.0,
- "total_tests": 132571.0,
- "total_tests_per_thousand": 19.079,
- "new_tests_per_thousand": 0.22,
- "new_tests_smoothed": 2296.0,
- "new_tests_smoothed_per_thousand": 0.33,
- "tests_per_case": 21.344,
- "positive_rate": 0.047,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-06-29",
- "total_cases": 4691.0,
- "new_cases": 66.0,
- "new_cases_smoothed": 112.286,
- "total_deaths": 219.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 675.115,
- "new_cases_per_million": 9.499,
- "new_cases_smoothed_per_million": 16.16,
- "total_deaths_per_million": 31.518,
- "new_deaths_per_million": 0.432,
- "new_deaths_smoothed_per_million": 0.411,
- "new_tests": 1034.0,
- "total_tests": 133605.0,
- "total_tests_per_thousand": 19.228,
- "new_tests_per_thousand": 0.149,
- "new_tests_smoothed": 2404.0,
- "new_tests_smoothed_per_thousand": 0.346,
- "tests_per_case": 21.41,
- "positive_rate": 0.047,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-06-30",
- "total_cases": 4831.0,
- "new_cases": 140.0,
- "new_cases_smoothed": 121.0,
- "total_deaths": 223.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 695.263,
- "new_cases_per_million": 20.148,
- "new_cases_smoothed_per_million": 17.414,
- "total_deaths_per_million": 32.094,
- "new_deaths_per_million": 0.576,
- "new_deaths_smoothed_per_million": 0.329,
- "new_tests": 4525.0,
- "total_tests": 138130.0,
- "total_tests_per_thousand": 19.879,
- "new_tests_per_thousand": 0.651,
- "new_tests_smoothed": 2653.0,
- "new_tests_smoothed_per_thousand": 0.382,
- "tests_per_case": 21.926,
- "positive_rate": 0.046,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-07-01",
- "total_cases": 4989.0,
- "new_cases": 158.0,
- "new_cases_smoothed": 125.0,
- "total_deaths": 230.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 718.002,
- "new_cases_per_million": 22.739,
- "new_cases_smoothed_per_million": 17.99,
- "total_deaths_per_million": 33.101,
- "new_deaths_per_million": 1.007,
- "new_deaths_smoothed_per_million": 0.452,
- "new_tests": 3343.0,
- "total_tests": 141473.0,
- "total_tests_per_thousand": 20.36,
- "new_tests_per_thousand": 0.481,
- "new_tests_smoothed": 2710.0,
- "new_tests_smoothed_per_thousand": 0.39,
- "tests_per_case": 21.68,
- "positive_rate": 0.046,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-07-02",
- "total_cases": 5154.0,
- "new_cases": 165.0,
- "new_cases_smoothed": 130.286,
- "total_deaths": 232.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 741.749,
- "new_cases_per_million": 23.746,
- "new_cases_smoothed_per_million": 18.75,
- "total_deaths_per_million": 33.389,
- "new_deaths_per_million": 0.288,
- "new_deaths_smoothed_per_million": 0.473,
- "new_tests": 2896.0,
- "total_tests": 144369.0,
- "total_tests_per_thousand": 20.777,
- "new_tests_per_thousand": 0.417,
- "new_tests_smoothed": 2693.0,
- "new_tests_smoothed_per_thousand": 0.388,
- "tests_per_case": 20.67,
- "positive_rate": 0.048,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-07-03",
- "total_cases": 5315.0,
- "new_cases": 161.0,
- "new_cases_smoothed": 129.571,
- "total_deaths": 232.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 764.919,
- "new_cases_per_million": 23.171,
- "new_cases_smoothed_per_million": 18.648,
- "total_deaths_per_million": 33.389,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.432,
- "new_tests": 3155.0,
- "total_tests": 147524.0,
- "total_tests_per_thousand": 21.231,
- "new_tests_per_thousand": 0.454,
- "new_tests_smoothed": 2747.0,
- "new_tests_smoothed_per_thousand": 0.395,
- "tests_per_case": 21.201,
- "positive_rate": 0.047,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-07-04",
- "total_cases": 5497.0,
- "new_cases": 182.0,
- "new_cases_smoothed": 140.571,
- "total_deaths": 239.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 791.112,
- "new_cases_per_million": 26.193,
- "new_cases_smoothed_per_million": 20.231,
- "total_deaths_per_million": 34.396,
- "new_deaths_per_million": 1.007,
- "new_deaths_smoothed_per_million": 0.493,
- "new_tests": 2538.0,
- "total_tests": 150062.0,
- "total_tests_per_thousand": 21.596,
- "new_tests_per_thousand": 0.365,
- "new_tests_smoothed": 2717.0,
- "new_tests_smoothed_per_thousand": 0.391,
- "tests_per_case": 19.328,
- "positive_rate": 0.052000000000000005,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-07-05",
- "total_cases": 5677.0,
- "new_cases": 180.0,
- "new_cases_smoothed": 150.286,
- "total_deaths": 241.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 817.017,
- "new_cases_per_million": 25.905,
- "new_cases_smoothed_per_million": 21.629,
- "total_deaths_per_million": 34.684,
- "new_deaths_per_million": 0.288,
- "new_deaths_smoothed_per_million": 0.514,
- "new_tests": 3514.0,
- "total_tests": 153576.0,
- "total_tests_per_thousand": 22.102,
- "new_tests_per_thousand": 0.506,
- "new_tests_smoothed": 3001.0,
- "new_tests_smoothed_per_thousand": 0.432,
- "tests_per_case": 19.969,
- "positive_rate": 0.05,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-07-06",
- "total_cases": 5740.0,
- "new_cases": 63.0,
- "new_cases_smoothed": 149.857,
- "total_deaths": 246.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 826.084,
- "new_cases_per_million": 9.067,
- "new_cases_smoothed_per_million": 21.567,
- "total_deaths_per_million": 35.404,
- "new_deaths_per_million": 0.72,
- "new_deaths_smoothed_per_million": 0.555,
- "new_tests": 2775.0,
- "total_tests": 156351.0,
- "total_tests_per_thousand": 22.502,
- "new_tests_per_thousand": 0.399,
- "new_tests_smoothed": 3249.0,
- "new_tests_smoothed_per_thousand": 0.468,
- "tests_per_case": 21.680999999999997,
- "positive_rate": 0.046,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-07-07",
- "total_cases": 5914.0,
- "new_cases": 174.0,
- "new_cases_smoothed": 154.714,
- "total_deaths": 250.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 851.126,
- "new_cases_per_million": 25.042,
- "new_cases_smoothed_per_million": 22.266,
- "total_deaths_per_million": 35.979,
- "new_deaths_per_million": 0.576,
- "new_deaths_smoothed_per_million": 0.555,
- "new_tests_smoothed": 2851.0,
- "new_tests_smoothed_per_thousand": 0.41,
- "tests_per_case": 18.428,
- "positive_rate": 0.054000000000000006,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-07-08",
- "total_cases": 6102.0,
- "new_cases": 188.0,
- "new_cases_smoothed": 159.0,
- "total_deaths": 254.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 878.182,
- "new_cases_per_million": 27.056,
- "new_cases_smoothed_per_million": 22.883,
- "total_deaths_per_million": 36.555,
- "new_deaths_per_million": 0.576,
- "new_deaths_smoothed_per_million": 0.493,
- "total_tests": 159818.0,
- "total_tests_per_thousand": 23.001,
- "new_tests_smoothed": 2621.0,
- "new_tests_smoothed_per_thousand": 0.377,
- "tests_per_case": 16.484,
- "positive_rate": 0.061,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-07-09",
- "total_cases": 6342.0,
- "new_cases": 240.0,
- "new_cases_smoothed": 169.714,
- "total_deaths": 259.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 912.722,
- "new_cases_per_million": 34.54,
- "new_cases_smoothed_per_million": 24.425,
- "total_deaths_per_million": 37.275,
- "new_deaths_per_million": 0.72,
- "new_deaths_smoothed_per_million": 0.555,
- "new_tests": 4286.0,
- "total_tests": 164104.0,
- "total_tests_per_thousand": 23.617,
- "new_tests_per_thousand": 0.617,
- "new_tests_smoothed": 2819.0,
- "new_tests_smoothed_per_thousand": 0.406,
- "tests_per_case": 16.61,
- "positive_rate": 0.06,
- "tests_units": "tests performed",
- "stringency_index": 44.44
- },
- {
- "date": "2020-07-10",
- "total_cases": 6672.0,
- "new_cases": 330.0,
- "new_cases_smoothed": 193.857,
- "total_deaths": 262.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 960.215,
- "new_cases_per_million": 47.493,
- "new_cases_smoothed_per_million": 27.899,
- "total_deaths_per_million": 37.706,
- "new_deaths_per_million": 0.432,
- "new_deaths_smoothed_per_million": 0.617,
- "new_tests": 3686.0,
- "total_tests": 167790.0,
- "total_tests_per_thousand": 24.148,
- "new_tests_per_thousand": 0.53,
- "new_tests_smoothed": 2895.0,
- "new_tests_smoothed_per_thousand": 0.417,
- "tests_per_case": 14.934000000000001,
- "positive_rate": 0.067,
- "tests_units": "tests performed",
- "stringency_index": 47.22
- },
- {
- "date": "2020-07-11",
- "total_cases": 6964.0,
- "new_cases": 292.0,
- "new_cases_smoothed": 209.571,
- "total_deaths": 262.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 1002.239,
- "new_cases_per_million": 42.024,
- "new_cases_smoothed_per_million": 30.161,
- "total_deaths_per_million": 37.706,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.473,
- "new_tests": 4540.0,
- "total_tests": 172330.0,
- "total_tests_per_thousand": 24.801,
- "new_tests_per_thousand": 0.653,
- "new_tests_smoothed": 3181.0,
- "new_tests_smoothed_per_thousand": 0.458,
- "tests_per_case": 15.179,
- "positive_rate": 0.066,
- "tests_units": "tests performed",
- "stringency_index": 47.22
- },
- {
- "date": "2020-07-12",
- "total_cases": 7175.0,
- "new_cases": 211.0,
- "new_cases_smoothed": 214.0,
- "total_deaths": 262.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 1032.605,
- "new_cases_per_million": 30.367,
- "new_cases_smoothed_per_million": 30.798,
- "total_deaths_per_million": 37.706,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.432,
- "new_tests": 2806.0,
- "total_tests": 175136.0,
- "total_tests_per_thousand": 25.205,
- "new_tests_per_thousand": 0.404,
- "new_tests_smoothed": 3080.0,
- "new_tests_smoothed_per_thousand": 0.443,
- "tests_per_case": 14.392999999999999,
- "positive_rate": 0.069,
- "tests_units": "tests performed",
- "stringency_index": 47.22
- },
- {
- "date": "2020-07-13",
- "total_cases": 7252.0,
- "new_cases": 77.0,
- "new_cases_smoothed": 216.0,
- "total_deaths": 268.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 1043.687,
- "new_cases_per_million": 11.082,
- "new_cases_smoothed_per_million": 31.086,
- "total_deaths_per_million": 38.57,
- "new_deaths_per_million": 0.864,
- "new_deaths_smoothed_per_million": 0.452,
- "new_tests": 1198.0,
- "total_tests": 176334.0,
- "total_tests_per_thousand": 25.377,
- "new_tests_per_thousand": 0.172,
- "new_tests_smoothed": 2855.0,
- "new_tests_smoothed_per_thousand": 0.411,
- "tests_per_case": 13.218,
- "positive_rate": 0.076,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-07-14",
- "total_cases": 7411.0,
- "new_cases": 159.0,
- "new_cases_smoothed": 213.857,
- "total_deaths": 276.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 1066.57,
- "new_cases_per_million": 22.883,
- "new_cases_smoothed_per_million": 30.778,
- "total_deaths_per_million": 39.721,
- "new_deaths_per_million": 1.151,
- "new_deaths_smoothed_per_million": 0.535,
- "new_tests": 3341.0,
- "total_tests": 179675.0,
- "total_tests_per_thousand": 25.858,
- "new_tests_per_thousand": 0.481,
- "new_tests_smoothed": 3084.0,
- "new_tests_smoothed_per_thousand": 0.444,
- "tests_per_case": 14.421,
- "positive_rate": 0.069,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-07-15",
- "total_cases": 7645.0,
- "new_cases": 234.0,
- "new_cases_smoothed": 220.429,
- "total_deaths": 283.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 1100.246,
- "new_cases_per_million": 33.677,
- "new_cases_smoothed_per_million": 31.723,
- "total_deaths_per_million": 40.729,
- "new_deaths_per_million": 1.007,
- "new_deaths_smoothed_per_million": 0.596,
- "new_tests": 4885.0,
- "total_tests": 184560.0,
- "total_tests_per_thousand": 26.561,
- "new_tests_per_thousand": 0.703,
- "new_tests_smoothed": 3535.0,
- "new_tests_smoothed_per_thousand": 0.509,
- "tests_per_case": 16.037,
- "positive_rate": 0.062,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-07-16",
- "total_cases": 7877.0,
- "new_cases": 232.0,
- "new_cases_smoothed": 219.286,
- "total_deaths": 289.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 1133.635,
- "new_cases_per_million": 33.389,
- "new_cases_smoothed_per_million": 31.559,
- "total_deaths_per_million": 41.592,
- "new_deaths_per_million": 0.864,
- "new_deaths_smoothed_per_million": 0.617,
- "new_tests": 5393.0,
- "total_tests": 189953.0,
- "total_tests_per_thousand": 27.337,
- "new_tests_per_thousand": 0.776,
- "new_tests_smoothed": 3693.0,
- "new_tests_smoothed_per_thousand": 0.531,
- "tests_per_case": 16.840999999999998,
- "positive_rate": 0.059000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 27.78
- },
- {
- "date": "2020-07-17",
- "total_cases": 8144.0,
- "new_cases": 267.0,
- "new_cases_smoothed": 210.286,
- "total_deaths": 293.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 1172.061,
- "new_cases_per_million": 38.426,
- "new_cases_smoothed_per_million": 30.264,
- "total_deaths_per_million": 42.168,
- "new_deaths_per_million": 0.576,
- "new_deaths_smoothed_per_million": 0.637,
- "new_tests": 6526.0,
- "total_tests": 196479.0,
- "total_tests_per_thousand": 28.277,
- "new_tests_per_thousand": 0.939,
- "new_tests_smoothed": 4098.0,
- "new_tests_smoothed_per_thousand": 0.59,
- "tests_per_case": 19.488,
- "positive_rate": 0.051,
- "tests_units": "tests performed",
- "stringency_index": 27.78
- },
- {
- "date": "2020-07-18",
- "total_cases": 8442.0,
- "new_cases": 298.0,
- "new_cases_smoothed": 211.143,
- "total_deaths": 297.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 1214.948,
- "new_cases_per_million": 42.887,
- "new_cases_smoothed_per_million": 30.387,
- "total_deaths_per_million": 42.743,
- "new_deaths_per_million": 0.576,
- "new_deaths_smoothed_per_million": 0.72,
- "new_tests": 4884.0,
- "total_tests": 201363.0,
- "total_tests_per_thousand": 28.98,
- "new_tests_per_thousand": 0.703,
- "new_tests_smoothed": 4148.0,
- "new_tests_smoothed_per_thousand": 0.597,
- "tests_per_case": 19.645,
- "positive_rate": 0.051,
- "tests_units": "tests performed",
- "stringency_index": 27.78
- },
- {
- "date": "2020-07-19",
- "total_cases": 8638.0,
- "new_cases": 196.0,
- "new_cases_smoothed": 209.0,
- "total_deaths": 299.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 5.286,
- "total_cases_per_million": 1243.156,
- "new_cases_per_million": 28.208,
- "new_cases_smoothed_per_million": 30.079,
- "total_deaths_per_million": 43.031,
- "new_deaths_per_million": 0.288,
- "new_deaths_smoothed_per_million": 0.761,
- "new_tests": 2003.0,
- "total_tests": 203366.0,
- "total_tests_per_thousand": 29.268,
- "new_tests_per_thousand": 0.288,
- "new_tests_smoothed": 4033.0,
- "new_tests_smoothed_per_thousand": 0.58,
- "tests_per_case": 19.297,
- "positive_rate": 0.052000000000000005,
- "tests_units": "tests performed",
- "stringency_index": 27.78
- },
- {
- "date": "2020-07-20",
- "total_cases": 8733.0,
- "new_cases": 95.0,
- "new_cases_smoothed": 211.571,
- "total_deaths": 300.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 1256.828,
- "new_cases_per_million": 13.672,
- "new_cases_smoothed_per_million": 30.449,
- "total_deaths_per_million": 43.175,
- "new_deaths_per_million": 0.144,
- "new_deaths_smoothed_per_million": 0.658,
- "new_tests": 3155.0,
- "total_tests": 206521.0,
- "total_tests_per_thousand": 29.722,
- "new_tests_per_thousand": 0.454,
- "new_tests_smoothed": 4312.0,
- "new_tests_smoothed_per_thousand": 0.621,
- "tests_per_case": 20.381,
- "positive_rate": 0.049,
- "tests_units": "tests performed",
- "stringency_index": 27.78
- },
- {
- "date": "2020-07-21",
- "total_cases": 8929.0,
- "new_cases": 196.0,
- "new_cases_smoothed": 216.857,
- "total_deaths": 308.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 1285.036,
- "new_cases_per_million": 28.208,
- "new_cases_smoothed_per_million": 31.209,
- "total_deaths_per_million": 44.326,
- "new_deaths_per_million": 1.151,
- "new_deaths_smoothed_per_million": 0.658,
- "new_tests": 9051.0,
- "total_tests": 215572.0,
- "total_tests_per_thousand": 31.024,
- "new_tests_per_thousand": 1.303,
- "new_tests_smoothed": 5128.0,
- "new_tests_smoothed_per_thousand": 0.738,
- "tests_per_case": 23.647,
- "positive_rate": 0.042,
- "tests_units": "tests performed",
- "stringency_index": 27.78
- },
- {
- "date": "2020-07-22",
- "total_cases": 9254.0,
- "new_cases": 325.0,
- "new_cases_smoothed": 229.857,
- "total_deaths": 313.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 1331.809,
- "new_cases_per_million": 46.773,
- "new_cases_smoothed_per_million": 33.08,
- "total_deaths_per_million": 45.046,
- "new_deaths_per_million": 0.72,
- "new_deaths_smoothed_per_million": 0.617,
- "new_tests_smoothed": 4872.0,
- "new_tests_smoothed_per_thousand": 0.701,
- "tests_per_case": 21.195999999999998,
- "positive_rate": 0.047,
- "tests_units": "tests performed",
- "stringency_index": 27.78
- },
- {
- "date": "2020-07-23",
- "total_cases": 9584.0,
- "new_cases": 330.0,
- "new_cases_smoothed": 243.857,
- "total_deaths": 321.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 1379.301,
- "new_cases_per_million": 47.493,
- "new_cases_smoothed_per_million": 35.095,
- "total_deaths_per_million": 46.197,
- "new_deaths_per_million": 1.151,
- "new_deaths_smoothed_per_million": 0.658,
- "total_tests": 221755.0,
- "total_tests_per_thousand": 31.914,
- "new_tests_smoothed": 4543.0,
- "new_tests_smoothed_per_thousand": 0.654,
- "tests_per_case": 18.63,
- "positive_rate": 0.054000000000000006,
- "tests_units": "tests performed",
- "stringency_index": 27.78
- },
- {
- "date": "2020-07-24",
- "total_cases": 9853.0,
- "new_cases": 269.0,
- "new_cases_smoothed": 244.143,
- "total_deaths": 329.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 1418.015,
- "new_cases_per_million": 38.714,
- "new_cases_smoothed_per_million": 35.136,
- "total_deaths_per_million": 47.349,
- "new_deaths_per_million": 1.151,
- "new_deaths_smoothed_per_million": 0.74,
- "new_tests": 5913.0,
- "total_tests": 227668.0,
- "total_tests_per_thousand": 32.765,
- "new_tests_per_thousand": 0.851,
- "new_tests_smoothed": 4456.0,
- "new_tests_smoothed_per_thousand": 0.641,
- "tests_per_case": 18.252,
- "positive_rate": 0.055,
- "tests_units": "tests performed",
- "stringency_index": 27.78
- },
- {
- "date": "2020-07-25",
- "total_cases": 10123.0,
- "new_cases": 270.0,
- "new_cases_smoothed": 240.143,
- "total_deaths": 337.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 5.714,
- "total_cases_per_million": 1456.873,
- "new_cases_per_million": 38.858,
- "new_cases_smoothed_per_million": 34.561,
- "total_deaths_per_million": 48.5,
- "new_deaths_per_million": 1.151,
- "new_deaths_smoothed_per_million": 0.822,
- "new_tests": 8124.0,
- "total_tests": 235792.0,
- "total_tests_per_thousand": 33.934,
- "new_tests_per_thousand": 1.169,
- "new_tests_smoothed": 4918.0,
- "new_tests_smoothed_per_thousand": 0.708,
- "tests_per_case": 20.479,
- "positive_rate": 0.049,
- "tests_units": "tests performed",
- "stringency_index": 27.78
- },
- {
- "date": "2020-07-26",
- "total_cases": 10312.0,
- "new_cases": 189.0,
- "new_cases_smoothed": 239.143,
- "total_deaths": 338.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 1484.073,
- "new_cases_per_million": 27.2,
- "new_cases_smoothed_per_million": 34.417,
- "total_deaths_per_million": 48.644,
- "new_deaths_per_million": 0.144,
- "new_deaths_smoothed_per_million": 0.802,
- "new_tests_smoothed": 5156.0,
- "new_tests_smoothed_per_thousand": 0.742,
- "tests_per_case": 21.56,
- "positive_rate": 0.046,
- "tests_units": "tests performed",
- "stringency_index": 27.78
- },
- {
- "date": "2020-07-27",
- "total_cases": 10427.0,
- "new_cases": 115.0,
- "new_cases_smoothed": 242.0,
- "total_deaths": 340.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 5.714,
- "total_cases_per_million": 1500.624,
- "new_cases_per_million": 16.55,
- "new_cases_smoothed_per_million": 34.828,
- "total_deaths_per_million": 48.932,
- "new_deaths_per_million": 0.288,
- "new_deaths_smoothed_per_million": 0.822,
- "total_tests": 243126.0,
- "total_tests_per_thousand": 34.99,
- "new_tests_smoothed": 5229.0,
- "new_tests_smoothed_per_thousand": 0.753,
- "tests_per_case": 21.607,
- "positive_rate": 0.046,
- "tests_units": "tests performed",
- "stringency_index": 27.78
- },
- {
- "date": "2020-07-28",
- "total_cases": 10621.0,
- "new_cases": 194.0,
- "new_cases_smoothed": 241.714,
- "total_deaths": 347.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 1528.543,
- "new_cases_per_million": 27.92,
- "new_cases_smoothed_per_million": 34.787,
- "total_deaths_per_million": 49.939,
- "new_deaths_per_million": 1.007,
- "new_deaths_smoothed_per_million": 0.802,
- "new_tests": 5303.0,
- "total_tests": 248429.0,
- "total_tests_per_thousand": 35.753,
- "new_tests_per_thousand": 0.763,
- "new_tests_smoothed": 4694.0,
- "new_tests_smoothed_per_thousand": 0.676,
- "tests_per_case": 19.42,
- "positive_rate": 0.051,
- "tests_units": "tests performed",
- "stringency_index": 27.78
- },
- {
- "date": "2020-07-29",
- "total_cases": 10871.0,
- "new_cases": 250.0,
- "new_cases_smoothed": 231.0,
- "total_deaths": 355.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 6.0,
- "total_cases_per_million": 1564.523,
- "new_cases_per_million": 35.979,
- "new_cases_smoothed_per_million": 33.245,
- "total_deaths_per_million": 51.091,
- "new_deaths_per_million": 1.151,
- "new_deaths_smoothed_per_million": 0.864,
- "new_tests": 6395.0,
- "total_tests": 254824.0,
- "total_tests_per_thousand": 36.674,
- "new_tests_per_thousand": 0.92,
- "new_tests_smoothed": 5166.0,
- "new_tests_smoothed_per_thousand": 0.743,
- "tests_per_case": 22.364,
- "positive_rate": 0.045,
- "tests_units": "tests performed",
- "stringency_index": 27.78
- },
- {
- "date": "2020-07-30",
- "total_cases": 11155.0,
- "new_cases": 284.0,
- "new_cases_smoothed": 224.429,
- "total_deaths": 368.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 6.714,
- "total_cases_per_million": 1605.395,
- "new_cases_per_million": 40.872,
- "new_cases_smoothed_per_million": 32.299,
- "total_deaths_per_million": 52.961,
- "new_deaths_per_million": 1.871,
- "new_deaths_smoothed_per_million": 0.966,
- "new_tests": 6639.0,
- "total_tests": 261463.0,
- "total_tests_per_thousand": 37.629,
- "new_tests_per_thousand": 0.955,
- "new_tests_smoothed": 5673.0,
- "new_tests_smoothed_per_thousand": 0.816,
- "tests_per_case": 25.278000000000002,
- "positive_rate": 0.04,
- "tests_units": "tests performed",
- "stringency_index": 30.56
- },
- {
- "date": "2020-07-31",
- "total_cases": 11420.0,
- "new_cases": 265.0,
- "new_cases_smoothed": 223.857,
- "total_deaths": 374.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 6.429,
- "total_cases_per_million": 1643.533,
- "new_cases_per_million": 38.138,
- "new_cases_smoothed_per_million": 32.217,
- "total_deaths_per_million": 53.825,
- "new_deaths_per_million": 0.864,
- "new_deaths_smoothed_per_million": 0.925,
- "new_tests": 5582.0,
- "total_tests": 267045.0,
- "total_tests_per_thousand": 38.432,
- "new_tests_per_thousand": 0.803,
- "new_tests_smoothed": 5625.0,
- "new_tests_smoothed_per_thousand": 0.81,
- "tests_per_case": 25.128,
- "positive_rate": 0.04,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-01",
- "total_cases": 11690.0,
- "new_cases": 270.0,
- "new_cases_smoothed": 223.857,
- "total_deaths": 383.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 1682.391,
- "new_cases_per_million": 38.858,
- "new_cases_smoothed_per_million": 32.217,
- "total_deaths_per_million": 55.12,
- "new_deaths_per_million": 1.295,
- "new_deaths_smoothed_per_million": 0.946,
- "new_tests": 3955.0,
- "total_tests": 271000.0,
- "total_tests_per_thousand": 39.002,
- "new_tests_per_thousand": 0.569,
- "new_tests_smoothed": 5030.0,
- "new_tests_smoothed_per_thousand": 0.724,
- "tests_per_case": 22.47,
- "positive_rate": 0.045,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-02",
- "total_cases": 11836.0,
- "new_cases": 146.0,
- "new_cases_smoothed": 217.714,
- "total_deaths": 385.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 6.714,
- "total_cases_per_million": 1703.403,
- "new_cases_per_million": 21.012,
- "new_cases_smoothed_per_million": 31.333,
- "total_deaths_per_million": 55.408,
- "new_deaths_per_million": 0.288,
- "new_deaths_smoothed_per_million": 0.966,
- "new_tests": 1491.0,
- "total_tests": 272491.0,
- "total_tests_per_thousand": 39.216,
- "new_tests_per_thousand": 0.215,
- "new_tests_smoothed": 4719.0,
- "new_tests_smoothed_per_thousand": 0.679,
- "tests_per_case": 21.675,
- "positive_rate": 0.046,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-03",
- "total_cases": 11955.0,
- "new_cases": 119.0,
- "new_cases_smoothed": 218.286,
- "total_deaths": 388.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 6.857,
- "total_cases_per_million": 1720.529,
- "new_cases_per_million": 17.126,
- "new_cases_smoothed_per_million": 31.415,
- "total_deaths_per_million": 55.84,
- "new_deaths_per_million": 0.432,
- "new_deaths_smoothed_per_million": 0.987,
- "new_tests": 4137.0,
- "total_tests": 276628.0,
- "total_tests_per_thousand": 39.811,
- "new_tests_per_thousand": 0.595,
- "new_tests_smoothed": 4786.0,
- "new_tests_smoothed_per_thousand": 0.689,
- "tests_per_case": 21.925,
- "positive_rate": 0.046,
- "tests_units": "tests performed",
- "stringency_index": 33.33
- },
- {
- "date": "2020-08-04",
- "total_cases": 11955.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 190.571,
- "total_deaths": 388.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 5.857,
- "total_cases_per_million": 1720.529,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 27.426,
- "total_deaths_per_million": 55.84,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.843,
- "new_tests": 5325.0,
- "total_tests": 281953.0,
- "total_tests_per_thousand": 40.578,
- "new_tests_per_thousand": 0.766,
- "new_tests_smoothed": 4789.0,
- "new_tests_smoothed_per_thousand": 0.689,
- "tests_per_case": 25.13,
- "positive_rate": 0.04,
- "tests_units": "tests performed",
- "stringency_index": 30.56
- },
- {
- "date": "2020-08-05",
- "total_cases": 12159.0,
- "new_cases": 204.0,
- "new_cases_smoothed": 184.0,
- "total_deaths": 404.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 7.0,
- "total_cases_per_million": 1749.888,
- "new_cases_per_million": 29.359,
- "new_cases_smoothed_per_million": 26.481,
- "total_deaths_per_million": 58.143,
- "new_deaths_per_million": 2.303,
- "new_deaths_smoothed_per_million": 1.007,
- "new_tests_smoothed": 4283.0,
- "new_tests_smoothed_per_thousand": 0.616,
- "tests_per_case": 23.276999999999997,
- "positive_rate": 0.043,
- "tests_units": "tests performed",
- "stringency_index": 30.56
- },
- {
- "date": "2020-08-06",
- "total_cases": 12414.0,
- "new_cases": 255.0,
- "new_cases_smoothed": 179.857,
- "total_deaths": 415.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 6.714,
- "total_cases_per_million": 1786.587,
- "new_cases_per_million": 36.699,
- "new_cases_smoothed_per_million": 25.885,
- "total_deaths_per_million": 59.726,
- "new_deaths_per_million": 1.583,
- "new_deaths_smoothed_per_million": 0.966,
- "total_tests": 287654.0,
- "total_tests_per_thousand": 41.398,
- "new_tests_smoothed": 3742.0,
- "new_tests_smoothed_per_thousand": 0.539,
- "tests_per_case": 20.805,
- "positive_rate": 0.048,
- "tests_units": "tests performed",
- "stringency_index": 30.56
- },
- {
- "date": "2020-08-07",
- "total_cases": 12717.0,
- "new_cases": 303.0,
- "new_cases_smoothed": 185.286,
- "total_deaths": 424.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 7.143,
- "total_cases_per_million": 1830.194,
- "new_cases_per_million": 43.607,
- "new_cases_smoothed_per_million": 26.666,
- "total_deaths_per_million": 61.021,
- "new_deaths_per_million": 1.295,
- "new_deaths_smoothed_per_million": 1.028,
- "new_tests": 6433.0,
- "total_tests": 294087.0,
- "total_tests_per_thousand": 42.324,
- "new_tests_per_thousand": 0.926,
- "new_tests_smoothed": 3863.0,
- "new_tests_smoothed_per_thousand": 0.556,
- "tests_per_case": 20.849,
- "positive_rate": 0.048,
- "tests_units": "tests performed",
- "stringency_index": 30.56
- },
- {
- "date": "2020-08-08",
- "total_cases": 13014.0,
- "new_cases": 297.0,
- "new_cases_smoothed": 189.143,
- "total_deaths": 435.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 7.429,
- "total_cases_per_million": 1872.937,
- "new_cases_per_million": 42.743,
- "new_cases_smoothed_per_million": 27.221,
- "total_deaths_per_million": 62.604,
- "new_deaths_per_million": 1.583,
- "new_deaths_smoothed_per_million": 1.069,
- "new_tests": 5837.0,
- "total_tests": 299924.0,
- "total_tests_per_thousand": 43.164,
- "new_tests_per_thousand": 0.84,
- "new_tests_smoothed": 4132.0,
- "new_tests_smoothed_per_thousand": 0.595,
- "tests_per_case": 21.846,
- "positive_rate": 0.046,
- "tests_units": "tests performed",
- "stringency_index": 30.56
- },
- {
- "date": "2020-08-09",
- "total_cases": 13343.0,
- "new_cases": 329.0,
- "new_cases_smoothed": 215.286,
- "total_deaths": 445.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 1920.286,
- "new_cases_per_million": 47.349,
- "new_cases_smoothed_per_million": 30.983,
- "total_deaths_per_million": 64.043,
- "new_deaths_per_million": 1.439,
- "new_deaths_smoothed_per_million": 1.234,
- "new_tests": 3612.0,
- "total_tests": 303536.0,
- "total_tests_per_thousand": 43.684,
- "new_tests_per_thousand": 0.52,
- "new_tests_smoothed": 4435.0,
- "new_tests_smoothed_per_thousand": 0.638,
- "tests_per_case": 20.601,
- "positive_rate": 0.049,
- "tests_units": "tests performed",
- "stringency_index": 30.56
- },
- {
- "date": "2020-08-10",
- "total_cases": 13396.0,
- "new_cases": 53.0,
- "new_cases_smoothed": 205.857,
- "total_deaths": 447.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 8.429,
- "total_cases_per_million": 1927.913,
- "new_cases_per_million": 7.628,
- "new_cases_smoothed_per_million": 29.626,
- "total_deaths_per_million": 64.331,
- "new_deaths_per_million": 0.288,
- "new_deaths_smoothed_per_million": 1.213,
- "new_tests": 1275.0,
- "total_tests": 304811.0,
- "total_tests_per_thousand": 43.868,
- "new_tests_per_thousand": 0.183,
- "new_tests_smoothed": 4026.0,
- "new_tests_smoothed_per_thousand": 0.579,
- "tests_per_case": 19.557000000000002,
- "positive_rate": 0.051,
- "tests_units": "tests performed",
- "stringency_index": 30.56
- },
- {
- "date": "2020-08-11",
- "total_cases": 13512.0,
- "new_cases": 116.0,
- "new_cases_smoothed": 222.429,
- "total_deaths": 459.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 10.143,
- "total_cases_per_million": 1944.608,
- "new_cases_per_million": 16.694,
- "new_cases_smoothed_per_million": 32.011,
- "total_deaths_per_million": 66.058,
- "new_deaths_per_million": 1.727,
- "new_deaths_smoothed_per_million": 1.46,
- "new_tests": 3667.0,
- "total_tests": 308478.0,
- "total_tests_per_thousand": 44.395,
- "new_tests_per_thousand": 0.528,
- "new_tests_smoothed": 3789.0,
- "new_tests_smoothed_per_thousand": 0.545,
- "tests_per_case": 17.035,
- "positive_rate": 0.059000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 30.56
- },
- {
- "date": "2020-08-12",
- "total_cases": 13722.0,
- "new_cases": 210.0,
- "new_cases_smoothed": 223.286,
- "total_deaths": 471.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 9.571,
- "total_cases_per_million": 1974.83,
- "new_cases_per_million": 30.223,
- "new_cases_smoothed_per_million": 32.135,
- "total_deaths_per_million": 67.785,
- "new_deaths_per_million": 1.727,
- "new_deaths_smoothed_per_million": 1.377,
- "new_tests": 5388.0,
- "total_tests": 313866.0,
- "total_tests_per_thousand": 45.171,
- "new_tests_per_thousand": 0.775,
- "new_tests_smoothed": 4152.0,
- "new_tests_smoothed_per_thousand": 0.598,
- "tests_per_case": 18.595,
- "positive_rate": 0.054000000000000006,
- "tests_units": "tests performed",
- "stringency_index": 30.56
- },
- {
- "date": "2020-08-13",
- "total_cases": 13893.0,
- "new_cases": 171.0,
- "new_cases_smoothed": 211.286,
- "total_deaths": 482.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 9.571,
- "total_cases_per_million": 1999.44,
- "new_cases_per_million": 24.61,
- "new_cases_smoothed_per_million": 30.408,
- "total_deaths_per_million": 69.368,
- "new_deaths_per_million": 1.583,
- "new_deaths_smoothed_per_million": 1.377,
- "new_tests": 5108.0,
- "total_tests": 318974.0,
- "total_tests_per_thousand": 45.906,
- "new_tests_per_thousand": 0.735,
- "new_tests_smoothed": 4474.0,
- "new_tests_smoothed_per_thousand": 0.644,
- "tests_per_case": 21.175,
- "positive_rate": 0.047,
- "tests_units": "tests performed",
- "stringency_index": 30.56
- },
- {
- "date": "2020-08-14",
- "total_cases": 14069.0,
- "new_cases": 176.0,
- "new_cases_smoothed": 193.143,
- "total_deaths": 484.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 2024.77,
- "new_cases_per_million": 25.329,
- "new_cases_smoothed_per_million": 27.797,
- "total_deaths_per_million": 69.656,
- "new_deaths_per_million": 0.288,
- "new_deaths_smoothed_per_million": 1.234,
- "new_tests": 5877.0,
- "total_tests": 324851.0,
- "total_tests_per_thousand": 46.752,
- "new_tests_per_thousand": 0.846,
- "new_tests_smoothed": 4395.0,
- "new_tests_smoothed_per_thousand": 0.633,
- "tests_per_case": 22.755,
- "positive_rate": 0.044000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 30.56
- },
- {
- "date": "2020-08-15",
- "total_cases": 14243.0,
- "new_cases": 174.0,
- "new_cases_smoothed": 175.571,
- "total_deaths": 492.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 2049.811,
- "new_cases_per_million": 25.042,
- "new_cases_smoothed_per_million": 25.268,
- "total_deaths_per_million": 70.807,
- "new_deaths_per_million": 1.151,
- "new_deaths_smoothed_per_million": 1.172,
- "new_tests": 5934.0,
- "total_tests": 330785.0,
- "total_tests_per_thousand": 47.606,
- "new_tests_per_thousand": 0.854,
- "new_tests_smoothed": 4409.0,
- "new_tests_smoothed_per_thousand": 0.635,
- "tests_per_case": 25.112,
- "positive_rate": 0.04,
- "tests_units": "tests performed",
- "stringency_index": 30.56
- },
- {
- "date": "2020-08-16",
- "total_cases": 14333.0,
- "new_cases": 90.0,
- "new_cases_smoothed": 141.429,
- "total_deaths": 495.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 7.143,
- "total_cases_per_million": 2062.764,
- "new_cases_per_million": 12.953,
- "new_cases_smoothed_per_million": 20.354,
- "total_deaths_per_million": 71.239,
- "new_deaths_per_million": 0.432,
- "new_deaths_smoothed_per_million": 1.028,
- "new_tests": 2745.0,
- "total_tests": 333530.0,
- "total_tests_per_thousand": 48.001,
- "new_tests_per_thousand": 0.395,
- "new_tests_smoothed": 4285.0,
- "new_tests_smoothed_per_thousand": 0.617,
- "tests_per_case": 30.298000000000002,
- "positive_rate": 0.033,
- "tests_units": "tests performed",
- "stringency_index": 30.56
- },
- {
- "date": "2020-08-17",
- "total_cases": 14365.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 138.429,
- "total_deaths": 498.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 7.286,
- "total_cases_per_million": 2067.369,
- "new_cases_per_million": 4.605,
- "new_cases_smoothed_per_million": 19.922,
- "total_deaths_per_million": 71.671,
- "new_deaths_per_million": 0.432,
- "new_deaths_smoothed_per_million": 1.049,
- "new_tests": 781.0,
- "total_tests": 334311.0,
- "total_tests_per_thousand": 48.113,
- "new_tests_per_thousand": 0.112,
- "new_tests_smoothed": 4214.0,
- "new_tests_smoothed_per_thousand": 0.606,
- "tests_per_case": 30.441999999999997,
- "positive_rate": 0.033,
- "tests_units": "tests performed",
- "stringency_index": 30.56
- },
- {
- "date": "2020-08-18",
- "total_cases": 14500.0,
- "new_cases": 135.0,
- "new_cases_smoothed": 141.143,
- "total_deaths": 512.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 7.571,
- "total_cases_per_million": 2086.798,
- "new_cases_per_million": 19.429,
- "new_cases_smoothed_per_million": 20.313,
- "total_deaths_per_million": 73.686,
- "new_deaths_per_million": 2.015,
- "new_deaths_smoothed_per_million": 1.09,
- "new_tests": 5252.0,
- "total_tests": 339563.0,
- "total_tests_per_thousand": 48.869,
- "new_tests_per_thousand": 0.756,
- "new_tests_smoothed": 4441.0,
- "new_tests_smoothed_per_thousand": 0.639,
- "tests_per_case": 31.465,
- "positive_rate": 0.032,
- "tests_units": "tests performed",
- "stringency_index": 30.56
- },
- {
- "date": "2020-08-19",
- "total_cases": 14669.0,
- "new_cases": 169.0,
- "new_cases_smoothed": 135.286,
- "total_deaths": 519.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 6.857,
- "total_cases_per_million": 2111.12,
- "new_cases_per_million": 24.322,
- "new_cases_smoothed_per_million": 19.47,
- "total_deaths_per_million": 74.693,
- "new_deaths_per_million": 1.007,
- "new_deaths_smoothed_per_million": 0.987,
- "new_tests": 3667.0,
- "total_tests": 343230.0,
- "total_tests_per_thousand": 49.397,
- "new_tests_per_thousand": 0.528,
- "new_tests_smoothed": 4195.0,
- "new_tests_smoothed_per_thousand": 0.604,
- "tests_per_case": 31.008000000000003,
- "positive_rate": 0.032,
- "tests_units": "tests performed",
- "stringency_index": 30.56
- },
- {
- "date": "2020-08-20",
- "total_cases": 14820.0,
- "new_cases": 151.0,
- "new_cases_smoothed": 132.429,
- "total_deaths": 527.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 6.429,
- "total_cases_per_million": 2132.851,
- "new_cases_per_million": 21.731,
- "new_cases_smoothed_per_million": 19.059,
- "total_deaths_per_million": 75.844,
- "new_deaths_per_million": 1.151,
- "new_deaths_smoothed_per_million": 0.925,
- "new_tests": 8649.0,
- "total_tests": 351879.0,
- "total_tests_per_thousand": 50.641,
- "new_tests_per_thousand": 1.245,
- "new_tests_smoothed": 4701.0,
- "new_tests_smoothed_per_thousand": 0.677,
- "tests_per_case": 35.498000000000005,
- "positive_rate": 0.027999999999999997,
- "tests_units": "tests performed",
- "stringency_index": 30.56
- },
- {
- "date": "2020-08-21",
- "total_cases": 14962.0,
- "new_cases": 142.0,
- "new_cases_smoothed": 127.571,
- "total_deaths": 532.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 6.857,
- "total_cases_per_million": 2153.288,
- "new_cases_per_million": 20.436,
- "new_cases_smoothed_per_million": 18.36,
- "total_deaths_per_million": 76.564,
- "new_deaths_per_million": 0.72,
- "new_deaths_smoothed_per_million": 0.987,
- "new_tests": 6844.0,
- "total_tests": 358723.0,
- "total_tests_per_thousand": 51.626,
- "new_tests_per_thousand": 0.985,
- "new_tests_smoothed": 4839.0,
- "new_tests_smoothed_per_thousand": 0.696,
- "tests_per_case": 37.931999999999995,
- "positive_rate": 0.026000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 30.56
- },
- {
- "date": "2020-08-22",
- "total_cases": 15131.0,
- "new_cases": 169.0,
- "new_cases_smoothed": 126.857,
- "total_deaths": 539.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 6.714,
- "total_cases_per_million": 2177.61,
- "new_cases_per_million": 24.322,
- "new_cases_smoothed_per_million": 18.257,
- "total_deaths_per_million": 77.571,
- "new_deaths_per_million": 1.007,
- "new_deaths_smoothed_per_million": 0.966,
- "new_tests": 6373.0,
- "total_tests": 365096.0,
- "total_tests_per_thousand": 52.544,
- "new_tests_per_thousand": 0.917,
- "new_tests_smoothed": 4902.0,
- "new_tests_smoothed_per_thousand": 0.705,
- "tests_per_case": 38.641999999999996,
- "positive_rate": 0.026000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 30.56
- },
- {
- "date": "2020-08-23",
- "total_cases": 15227.0,
- "new_cases": 96.0,
- "new_cases_smoothed": 127.714,
- "total_deaths": 545.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 7.143,
- "total_cases_per_million": 2191.426,
- "new_cases_per_million": 13.816,
- "new_cases_smoothed_per_million": 18.38,
- "total_deaths_per_million": 78.435,
- "new_deaths_per_million": 0.864,
- "new_deaths_smoothed_per_million": 1.028,
- "new_tests": 3402.0,
- "total_tests": 368498.0,
- "total_tests_per_thousand": 53.033,
- "new_tests_per_thousand": 0.49,
- "new_tests_smoothed": 4995.0,
- "new_tests_smoothed_per_thousand": 0.719,
- "tests_per_case": 39.111,
- "positive_rate": 0.026000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 30.56
- },
- {
- "date": "2020-08-24",
- "total_cases": 15287.0,
- "new_cases": 60.0,
- "new_cases_smoothed": 131.714,
- "total_deaths": 545.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 6.714,
- "total_cases_per_million": 2200.061,
- "new_cases_per_million": 8.635,
- "new_cases_smoothed_per_million": 18.956,
- "total_deaths_per_million": 78.435,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.966,
- "new_tests": 2288.0,
- "total_tests": 370786.0,
- "total_tests_per_thousand": 53.362,
- "new_tests_per_thousand": 0.329,
- "new_tests_smoothed": 5211.0,
- "new_tests_smoothed_per_thousand": 0.75,
- "tests_per_case": 39.563,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 30.56
- },
- {
- "date": "2020-08-25",
- "total_cases": 15386.0,
- "new_cases": 99.0,
- "new_cases_smoothed": 126.571,
- "total_deaths": 563.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 7.286,
- "total_cases_per_million": 2214.308,
- "new_cases_per_million": 14.248,
- "new_cases_smoothed_per_million": 18.216,
- "total_deaths_per_million": 81.025,
- "new_deaths_per_million": 2.591,
- "new_deaths_smoothed_per_million": 1.049,
- "new_tests": 3588.0,
- "total_tests": 374374.0,
- "total_tests_per_thousand": 53.879,
- "new_tests_per_thousand": 0.516,
- "new_tests_smoothed": 4973.0,
- "new_tests_smoothed_per_thousand": 0.716,
- "tests_per_case": 39.29,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 30.56
- },
- {
- "date": "2020-08-26",
- "total_cases": 15589.0,
- "new_cases": 203.0,
- "new_cases_smoothed": 131.429,
- "total_deaths": 572.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 7.571,
- "total_cases_per_million": 2243.524,
- "new_cases_per_million": 29.215,
- "new_cases_smoothed_per_million": 18.915,
- "total_deaths_per_million": 82.321,
- "new_deaths_per_million": 1.295,
- "new_deaths_smoothed_per_million": 1.09,
- "new_tests": 10076.0,
- "total_tests": 384450.0,
- "total_tests_per_thousand": 55.329,
- "new_tests_per_thousand": 1.45,
- "new_tests_smoothed": 5889.0,
- "new_tests_smoothed_per_thousand": 0.848,
- "tests_per_case": 44.808,
- "positive_rate": 0.022000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 30.56
- },
- {
- "date": "2020-08-27",
- "total_cases": 15751.0,
- "new_cases": 162.0,
- "new_cases_smoothed": 133.0,
- "total_deaths": 586.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 8.429,
- "total_cases_per_million": 2266.838,
- "new_cases_per_million": 23.315,
- "new_cases_smoothed_per_million": 19.141,
- "total_deaths_per_million": 84.335,
- "new_deaths_per_million": 2.015,
- "new_deaths_smoothed_per_million": 1.213,
- "new_tests_smoothed": 5199.0,
- "new_tests_smoothed_per_thousand": 0.748,
- "tests_per_case": 39.09,
- "positive_rate": 0.026000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 30.56
- },
- {
- "date": "2020-08-28",
- "total_cases": 15908.0,
- "new_cases": 157.0,
- "new_cases_smoothed": 135.143,
- "total_deaths": 594.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 8.857,
- "total_cases_per_million": 2289.433,
- "new_cases_per_million": 22.595,
- "new_cases_smoothed_per_million": 19.449,
- "total_deaths_per_million": 85.487,
- "new_deaths_per_million": 1.151,
- "new_deaths_smoothed_per_million": 1.275,
- "total_tests": 392089.0,
- "total_tests_per_thousand": 56.428,
- "new_tests_smoothed": 4767.0,
- "new_tests_smoothed_per_thousand": 0.686,
- "tests_per_case": 35.274,
- "positive_rate": 0.027999999999999997,
- "tests_units": "tests performed",
- "stringency_index": 30.56
- },
- {
- "date": "2020-08-29",
- "total_cases": 16065.0,
- "new_cases": 157.0,
- "new_cases_smoothed": 133.429,
- "total_deaths": 603.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 9.143,
- "total_cases_per_million": 2312.028,
- "new_cases_per_million": 22.595,
- "new_cases_smoothed_per_million": 19.203,
- "total_deaths_per_million": 86.782,
- "new_deaths_per_million": 1.295,
- "new_deaths_smoothed_per_million": 1.316,
- "new_tests": 6337.0,
- "total_tests": 398426.0,
- "total_tests_per_thousand": 57.34,
- "new_tests_per_thousand": 0.912,
- "new_tests_smoothed": 4761.0,
- "new_tests_smoothed_per_thousand": 0.685,
- "tests_per_case": 35.681999999999995,
- "positive_rate": 0.027999999999999997,
- "tests_units": "tests performed",
- "stringency_index": 30.56
- },
- {
- "date": "2020-08-30",
- "total_cases": 16164.0,
- "new_cases": 99.0,
- "new_cases_smoothed": 133.857,
- "total_deaths": 605.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 2326.276,
- "new_cases_per_million": 14.248,
- "new_cases_smoothed_per_million": 19.264,
- "total_deaths_per_million": 87.07,
- "new_deaths_per_million": 0.288,
- "new_deaths_smoothed_per_million": 1.234,
- "new_tests": 6257.0,
- "total_tests": 404683.0,
- "total_tests_per_thousand": 58.241,
- "new_tests_per_thousand": 0.9,
- "new_tests_smoothed": 5169.0,
- "new_tests_smoothed_per_thousand": 0.744,
- "tests_per_case": 38.616,
- "positive_rate": 0.026000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 30.56
- },
- {
- "date": "2020-08-31",
- "total_cases": 16190.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 129.0,
- "total_deaths": 613.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 9.714,
- "total_cases_per_million": 2330.018,
- "new_cases_per_million": 3.742,
- "new_cases_smoothed_per_million": 18.565,
- "total_deaths_per_million": 88.221,
- "new_deaths_per_million": 1.151,
- "new_deaths_smoothed_per_million": 1.398,
- "new_tests_smoothed": 5152.0,
- "new_tests_smoothed_per_thousand": 0.741,
- "tests_per_case": 39.938,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-01",
- "total_cases": 16266.0,
- "new_cases": 76.0,
- "new_cases_smoothed": 125.714,
- "total_deaths": 629.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 9.429,
- "total_cases_per_million": 2340.955,
- "new_cases_per_million": 10.938,
- "new_cases_smoothed_per_million": 18.092,
- "total_deaths_per_million": 90.524,
- "new_deaths_per_million": 2.303,
- "new_deaths_smoothed_per_million": 1.357,
- "total_tests": 409013.0,
- "total_tests_per_thousand": 58.864,
- "new_tests_smoothed": 4948.0,
- "new_tests_smoothed_per_thousand": 0.712,
- "tests_per_case": 39.359,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-02",
- "total_cases": 16266.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 96.714,
- "total_deaths": 629.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 2340.955,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 13.919,
- "total_deaths_per_million": 90.524,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.172,
- "new_tests": 6784.0,
- "total_tests": 415797.0,
- "total_tests_per_thousand": 59.84,
- "new_tests_per_thousand": 0.976,
- "new_tests_smoothed": 4478.0,
- "new_tests_smoothed_per_thousand": 0.644,
- "tests_per_case": 46.301,
- "positive_rate": 0.022000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-03",
- "total_cases": 16454.0,
- "new_cases": 188.0,
- "new_cases_smoothed": 100.429,
- "total_deaths": 642.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 8.0,
- "total_cases_per_million": 2368.012,
- "new_cases_per_million": 27.056,
- "new_cases_smoothed_per_million": 14.453,
- "total_deaths_per_million": 92.395,
- "new_deaths_per_million": 1.871,
- "new_deaths_smoothed_per_million": 1.151,
- "new_tests": 5443.0,
- "total_tests": 421240.0,
- "total_tests_per_thousand": 60.624,
- "new_tests_per_thousand": 0.783,
- "new_tests_smoothed": 4710.0,
- "new_tests_smoothed_per_thousand": 0.678,
- "tests_per_case": 46.898999999999994,
- "positive_rate": 0.021,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-04",
- "total_cases": 16617.0,
- "new_cases": 163.0,
- "new_cases_smoothed": 101.286,
- "total_deaths": 648.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 7.714,
- "total_cases_per_million": 2391.47,
- "new_cases_per_million": 23.458,
- "new_cases_smoothed_per_million": 14.577,
- "total_deaths_per_million": 93.258,
- "new_deaths_per_million": 0.864,
- "new_deaths_smoothed_per_million": 1.11,
- "new_tests": 7026.0,
- "total_tests": 428266.0,
- "total_tests_per_thousand": 61.635,
- "new_tests_per_thousand": 1.011,
- "new_tests_smoothed": 5168.0,
- "new_tests_smoothed_per_thousand": 0.744,
- "tests_per_case": 51.023999999999994,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-05",
- "total_cases": 16775.0,
- "new_cases": 158.0,
- "new_cases_smoothed": 101.429,
- "total_deaths": 658.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 7.857,
- "total_cases_per_million": 2414.209,
- "new_cases_per_million": 22.739,
- "new_cases_smoothed_per_million": 14.597,
- "total_deaths_per_million": 94.697,
- "new_deaths_per_million": 1.439,
- "new_deaths_smoothed_per_million": 1.131,
- "new_tests": 8129.0,
- "total_tests": 436395.0,
- "total_tests_per_thousand": 62.805,
- "new_tests_per_thousand": 1.17,
- "new_tests_smoothed": 5424.0,
- "new_tests_smoothed_per_thousand": 0.781,
- "tests_per_case": 53.476000000000006,
- "positive_rate": 0.019,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-06",
- "total_cases": 16954.0,
- "new_cases": 179.0,
- "new_cases_smoothed": 112.857,
- "total_deaths": 665.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 2439.97,
- "new_cases_per_million": 25.761,
- "new_cases_smoothed_per_million": 16.242,
- "total_deaths_per_million": 95.705,
- "new_deaths_per_million": 1.007,
- "new_deaths_smoothed_per_million": 1.234,
- "new_tests": 4765.0,
- "total_tests": 441160.0,
- "total_tests_per_thousand": 63.49,
- "new_tests_per_thousand": 0.686,
- "new_tests_smoothed": 5211.0,
- "new_tests_smoothed_per_thousand": 0.75,
- "tests_per_case": 46.173,
- "positive_rate": 0.022000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-07",
- "total_cases": 17050.0,
- "new_cases": 96.0,
- "new_cases_smoothed": 122.857,
- "total_deaths": 671.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 8.286,
- "total_cases_per_million": 2453.786,
- "new_cases_per_million": 13.816,
- "new_cases_smoothed_per_million": 17.681,
- "total_deaths_per_million": 96.568,
- "new_deaths_per_million": 0.864,
- "new_deaths_smoothed_per_million": 1.192,
- "new_tests_smoothed": 5269.0,
- "new_tests_smoothed_per_thousand": 0.758,
- "tests_per_case": 42.887,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-08",
- "total_cases": 17146.0,
- "new_cases": 96.0,
- "new_cases_smoothed": 125.714,
- "total_deaths": 677.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 6.857,
- "total_cases_per_million": 2467.602,
- "new_cases_per_million": 13.816,
- "new_cases_smoothed_per_million": 18.092,
- "total_deaths_per_million": 97.432,
- "new_deaths_per_million": 0.864,
- "new_deaths_smoothed_per_million": 0.987,
- "total_tests": 446303.0,
- "total_tests_per_thousand": 64.231,
- "new_tests_smoothed": 5327.0,
- "new_tests_smoothed_per_thousand": 0.767,
- "tests_per_case": 42.373999999999995,
- "positive_rate": 0.024,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-09",
- "total_cases": 17313.0,
- "new_cases": 167.0,
- "new_cases_smoothed": 149.571,
- "total_deaths": 692.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 9.0,
- "total_cases_per_million": 2491.637,
- "new_cases_per_million": 24.034,
- "new_cases_smoothed_per_million": 21.526,
- "total_deaths_per_million": 99.591,
- "new_deaths_per_million": 2.159,
- "new_deaths_smoothed_per_million": 1.295,
- "new_tests": 5145.0,
- "total_tests": 451448.0,
- "total_tests_per_thousand": 64.971,
- "new_tests_per_thousand": 0.74,
- "new_tests_smoothed": 5093.0,
- "new_tests_smoothed_per_thousand": 0.733,
- "tests_per_case": 34.051,
- "positive_rate": 0.028999999999999998,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-10",
- "total_cases": 17435.0,
- "new_cases": 122.0,
- "new_cases_smoothed": 140.143,
- "total_deaths": 702.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 2509.195,
- "new_cases_per_million": 17.558,
- "new_cases_smoothed_per_million": 20.169,
- "total_deaths_per_million": 101.03,
- "new_deaths_per_million": 1.439,
- "new_deaths_smoothed_per_million": 1.234,
- "new_tests_smoothed": 5026.0,
- "new_tests_smoothed_per_thousand": 0.723,
- "tests_per_case": 35.863,
- "positive_rate": 0.027999999999999997,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-11",
- "total_cases": 17598.0,
- "new_cases": 163.0,
- "new_cases_smoothed": 140.143,
- "total_deaths": 706.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 8.286,
- "total_cases_per_million": 2532.653,
- "new_cases_per_million": 23.458,
- "new_cases_smoothed_per_million": 20.169,
- "total_deaths_per_million": 101.605,
- "new_deaths_per_million": 0.576,
- "new_deaths_smoothed_per_million": 1.192,
- "total_tests": 461403.0,
- "total_tests_per_thousand": 66.404,
- "new_tests_smoothed": 4734.0,
- "new_tests_smoothed_per_thousand": 0.681,
- "tests_per_case": 33.78,
- "positive_rate": 0.03,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-12",
- "total_cases": 17799.0,
- "new_cases": 201.0,
- "new_cases_smoothed": 146.286,
- "total_deaths": 713.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 7.857,
- "total_cases_per_million": 2561.58,
- "new_cases_per_million": 28.927,
- "new_cases_smoothed_per_million": 21.053,
- "total_deaths_per_million": 102.613,
- "new_deaths_per_million": 1.007,
- "new_deaths_smoothed_per_million": 1.131,
- "new_tests": 2330.0,
- "total_tests": 463733.0,
- "total_tests_per_thousand": 66.739,
- "new_tests_per_thousand": 0.335,
- "new_tests_smoothed": 3905.0,
- "new_tests_smoothed_per_thousand": 0.562,
- "tests_per_case": 26.694000000000003,
- "positive_rate": 0.037000000000000005,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-13",
- "total_cases": 17891.0,
- "new_cases": 92.0,
- "new_cases_smoothed": 133.857,
- "total_deaths": 717.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 7.429,
- "total_cases_per_million": 2574.821,
- "new_cases_per_million": 13.24,
- "new_cases_smoothed_per_million": 19.264,
- "total_deaths_per_million": 103.189,
- "new_deaths_per_million": 0.576,
- "new_deaths_smoothed_per_million": 1.069,
- "new_tests_smoothed": 3291.0,
- "new_tests_smoothed_per_thousand": 0.474,
- "tests_per_case": 24.586,
- "positive_rate": 0.040999999999999995,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-14",
- "total_cases": 17918.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 124.0,
- "total_deaths": 720.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 7.0,
- "total_cases_per_million": 2578.706,
- "new_cases_per_million": 3.886,
- "new_cases_smoothed_per_million": 17.846,
- "total_deaths_per_million": 103.62,
- "new_deaths_per_million": 0.432,
- "new_deaths_smoothed_per_million": 1.007,
- "total_tests": 464657.0,
- "total_tests_per_thousand": 66.872,
- "new_tests_smoothed": 2989.0,
- "new_tests_smoothed_per_thousand": 0.43,
- "tests_per_case": 24.105,
- "positive_rate": 0.040999999999999995,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-15",
- "total_cases": 18061.0,
- "new_cases": 143.0,
- "new_cases_smoothed": 130.714,
- "total_deaths": 730.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 7.571,
- "total_cases_per_million": 2599.287,
- "new_cases_per_million": 20.58,
- "new_cases_smoothed_per_million": 18.812,
- "total_deaths_per_million": 105.059,
- "new_deaths_per_million": 1.439,
- "new_deaths_smoothed_per_million": 1.09,
- "new_tests": 7475.0,
- "total_tests": 472132.0,
- "total_tests_per_thousand": 67.948,
- "new_tests_per_thousand": 1.076,
- "new_tests_smoothed": 3690.0,
- "new_tests_smoothed_per_thousand": 0.531,
- "tests_per_case": 28.23,
- "positive_rate": 0.035,
- "tests_units": "tests performed",
- "stringency_index": 35.19
- },
- {
- "date": "2020-09-16",
- "total_cases": 18216.0,
- "new_cases": 155.0,
- "new_cases_smoothed": 129.0,
- "total_deaths": 736.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 6.286,
- "total_cases_per_million": 2621.594,
- "new_cases_per_million": 22.307,
- "new_cases_smoothed_per_million": 18.565,
- "total_deaths_per_million": 105.923,
- "new_deaths_per_million": 0.864,
- "new_deaths_smoothed_per_million": 0.905,
- "new_tests": 4835.0,
- "total_tests": 476967.0,
- "total_tests_per_thousand": 68.644,
- "new_tests_per_thousand": 0.696,
- "new_tests_smoothed": 3646.0,
- "new_tests_smoothed_per_thousand": 0.525,
- "tests_per_case": 28.264,
- "positive_rate": 0.035,
- "tests_units": "tests performed",
- "stringency_index": 35.19
- },
- {
- "date": "2020-09-17",
- "total_cases": 18390.0,
- "new_cases": 174.0,
- "new_cases_smoothed": 136.429,
- "total_deaths": 744.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 6.0,
- "total_cases_per_million": 2646.635,
- "new_cases_per_million": 25.042,
- "new_cases_smoothed_per_million": 19.634,
- "total_deaths_per_million": 107.074,
- "new_deaths_per_million": 1.151,
- "new_deaths_smoothed_per_million": 0.864,
- "new_tests_smoothed": 3353.0,
- "new_tests_smoothed_per_thousand": 0.483,
- "tests_per_case": 24.576999999999998,
- "positive_rate": 0.040999999999999995,
- "tests_units": "tests performed",
- "stringency_index": 35.19
- },
- {
- "date": "2020-09-18",
- "total_cases": 18544.0,
- "new_cases": 154.0,
- "new_cases_smoothed": 135.143,
- "total_deaths": 744.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 5.429,
- "total_cases_per_million": 2668.799,
- "new_cases_per_million": 22.163,
- "new_cases_smoothed_per_million": 19.449,
- "total_deaths_per_million": 107.074,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.781,
- "total_tests": 482823.0,
- "total_tests_per_thousand": 69.486,
- "new_tests_smoothed": 3060.0,
- "new_tests_smoothed_per_thousand": 0.44,
- "tests_per_case": 22.643,
- "positive_rate": 0.044000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 35.19
- },
- {
- "date": "2020-09-19",
- "total_cases": 18733.0,
- "new_cases": 189.0,
- "new_cases_smoothed": 133.429,
- "total_deaths": 753.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 5.714,
- "total_cases_per_million": 2695.999,
- "new_cases_per_million": 27.2,
- "new_cases_smoothed_per_million": 19.203,
- "total_deaths_per_million": 108.37,
- "new_deaths_per_million": 1.295,
- "new_deaths_smoothed_per_million": 0.822,
- "new_tests": 8957.0,
- "total_tests": 491780.0,
- "total_tests_per_thousand": 70.776,
- "new_tests_per_thousand": 1.289,
- "new_tests_smoothed": 4007.0,
- "new_tests_smoothed_per_thousand": 0.577,
- "tests_per_case": 30.031,
- "positive_rate": 0.033,
- "tests_units": "tests performed",
- "stringency_index": 35.19
- },
- {
- "date": "2020-09-20",
- "total_cases": 18819.0,
- "new_cases": 86.0,
- "new_cases_smoothed": 132.571,
- "total_deaths": 755.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 5.429,
- "total_cases_per_million": 2708.376,
- "new_cases_per_million": 12.377,
- "new_cases_smoothed_per_million": 19.079,
- "total_deaths_per_million": 108.657,
- "new_deaths_per_million": 0.288,
- "new_deaths_smoothed_per_million": 0.781,
- "new_tests_smoothed": 4030.0,
- "new_tests_smoothed_per_thousand": 0.58,
- "tests_per_case": 30.399,
- "positive_rate": 0.033,
- "tests_units": "tests performed",
- "stringency_index": 35.19
- },
- {
- "date": "2020-09-21",
- "total_cases": 18863.0,
- "new_cases": 44.0,
- "new_cases_smoothed": 135.0,
- "total_deaths": 761.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.857,
- "total_cases_per_million": 2714.708,
- "new_cases_per_million": 6.332,
- "new_cases_smoothed_per_million": 19.429,
- "total_deaths_per_million": 109.521,
- "new_deaths_per_million": 0.864,
- "new_deaths_smoothed_per_million": 0.843,
- "total_tests": 493029.0,
- "total_tests_per_thousand": 70.955,
- "new_tests_smoothed": 4053.0,
- "new_tests_smoothed_per_thousand": 0.583,
- "tests_per_case": 30.022,
- "positive_rate": 0.033,
- "tests_units": "tests performed",
- "stringency_index": 35.19
- },
- {
- "date": "2020-09-22",
- "total_cases": 19014.0,
- "new_cases": 151.0,
- "new_cases_smoothed": 136.143,
- "total_deaths": 765.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 2736.44,
- "new_cases_per_million": 21.731,
- "new_cases_smoothed_per_million": 19.593,
- "total_deaths_per_million": 110.097,
- "new_deaths_per_million": 0.576,
- "new_deaths_smoothed_per_million": 0.72,
- "new_tests": 2988.0,
- "total_tests": 496017.0,
- "total_tests_per_thousand": 71.385,
- "new_tests_per_thousand": 0.43,
- "new_tests_smoothed": 3412.0,
- "new_tests_smoothed_per_thousand": 0.491,
- "tests_per_case": 25.061999999999998,
- "positive_rate": 0.04,
- "tests_units": "tests performed",
- "stringency_index": 35.19
- },
- {
- "date": "2020-09-23",
- "total_cases": 19123.0,
- "new_cases": 109.0,
- "new_cases_smoothed": 129.571,
- "total_deaths": 767.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 2752.127,
- "new_cases_per_million": 15.687,
- "new_cases_smoothed_per_million": 18.648,
- "total_deaths_per_million": 110.384,
- "new_deaths_per_million": 0.288,
- "new_deaths_smoothed_per_million": 0.637,
- "new_tests": 3049.0,
- "total_tests": 499066.0,
- "total_tests_per_thousand": 71.824,
- "new_tests_per_thousand": 0.439,
- "new_tests_smoothed": 3157.0,
- "new_tests_smoothed_per_thousand": 0.454,
- "tests_per_case": 24.365,
- "positive_rate": 0.040999999999999995,
- "tests_units": "tests performed",
- "stringency_index": 35.19
- },
- {
- "date": "2020-09-24",
- "total_cases": 19283.0,
- "new_cases": 160.0,
- "new_cases_smoothed": 127.571,
- "total_deaths": 779.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 2775.153,
- "new_cases_per_million": 23.027,
- "new_cases_smoothed_per_million": 18.36,
- "total_deaths_per_million": 112.111,
- "new_deaths_per_million": 1.727,
- "new_deaths_smoothed_per_million": 0.72,
- "new_tests": 8385.0,
- "total_tests": 507451.0,
- "total_tests_per_thousand": 73.031,
- "new_tests_per_thousand": 1.207,
- "new_tests_smoothed": 3937.0,
- "new_tests_smoothed_per_thousand": 0.567,
- "tests_per_case": 30.861,
- "positive_rate": 0.032,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-25",
- "total_cases": 19573.0,
- "new_cases": 290.0,
- "new_cases_smoothed": 147.0,
- "total_deaths": 785.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.857,
- "total_cases_per_million": 2816.889,
- "new_cases_per_million": 41.736,
- "new_cases_smoothed_per_million": 21.156,
- "total_deaths_per_million": 112.975,
- "new_deaths_per_million": 0.864,
- "new_deaths_smoothed_per_million": 0.843
- }
- ]
- },
- "BHR": {
- "continent": "Asia",
- "location": "Bahrain",
- "population": 1701583.0,
- "population_density": 1935.907,
- "median_age": 32.4,
- "aged_65_older": 2.372,
- "aged_70_older": 1.387,
- "gdp_per_capita": 43290.705,
- "cardiovasc_death_rate": 151.689,
- "diabetes_prevalence": 16.52,
- "female_smokers": 5.8,
- "male_smokers": 37.6,
- "hospital_beds_per_thousand": 2.0,
- "life_expectancy": 77.29,
- "human_development_index": 0.846,
- "data": [
- {
- "date": "2019-12-31",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-01-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-02",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-03",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-04",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-05",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-06",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-07",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-08",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-09",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-10",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-11",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-12",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-13",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-14",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-15",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-16",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-17",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-18",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-19",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-20",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-21",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-22",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 8.33
- },
- {
- "date": "2020-01-23",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 8.33
- },
- {
- "date": "2020-01-24",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 8.33
- },
- {
- "date": "2020-01-25",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 8.33
- },
- {
- "date": "2020-01-26",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 8.33
- },
- {
- "date": "2020-01-27",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-01-28",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-01-29",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-01-30",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-01-31",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-02",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-03",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-04",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-05",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-06",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-07",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-08",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-09",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-10",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-11",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-12",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-13",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-14",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-15",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-16",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-17",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-18",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-19",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-20",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-21",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-22",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-23",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-24",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.588,
- "new_cases_per_million": 0.588,
- "new_cases_smoothed_per_million": 0.084,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 25.0
- },
- {
- "date": "2020-02-25",
- "total_cases": 2.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.175,
- "new_cases_per_million": 0.588,
- "new_cases_smoothed_per_million": 0.168,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 25.0
- },
- {
- "date": "2020-02-26",
- "total_cases": 23.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 13.517,
- "new_cases_per_million": 12.341,
- "new_cases_smoothed_per_million": 1.931,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 30.56
- },
- {
- "date": "2020-02-27",
- "total_cases": 33.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 4.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 19.394,
- "new_cases_per_million": 5.877,
- "new_cases_smoothed_per_million": 2.771,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 30.56
- },
- {
- "date": "2020-02-28",
- "total_cases": 33.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 19.394,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.771,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 30.56
- },
- {
- "date": "2020-02-29",
- "total_cases": 38.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 22.332,
- "new_cases_per_million": 2.938,
- "new_cases_smoothed_per_million": 3.19,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-01",
- "total_cases": 41.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 5.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 24.095,
- "new_cases_per_million": 1.763,
- "new_cases_smoothed_per_million": 3.442,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-02",
- "total_cases": 47.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 6.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 27.621,
- "new_cases_per_million": 3.526,
- "new_cases_smoothed_per_million": 3.862,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-03",
- "new_cases_smoothed": 6.429,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 3.778,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-04",
- "total_cases": 49.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 28.797,
- "new_cases_per_million": 1.175,
- "new_cases_smoothed_per_million": 2.183,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-05",
- "total_cases": 52.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 30.56,
- "new_cases_per_million": 1.763,
- "new_cases_smoothed_per_million": 1.595,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "total_tests": 5334.0,
- "total_tests_per_thousand": 3.135,
- "tests_units": "units unclear",
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-06",
- "total_cases": 52.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 30.56,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.595,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "tests_units": "units unclear",
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-07",
- "total_cases": 56.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 32.911,
- "new_cases_per_million": 2.351,
- "new_cases_smoothed_per_million": 1.511,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "total_tests": 6420.0,
- "total_tests_per_thousand": 3.773,
- "tests_units": "units unclear",
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-08",
- "total_cases": 63.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 3.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 37.024,
- "new_cases_per_million": 4.114,
- "new_cases_smoothed_per_million": 1.847,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "tests_units": "units unclear",
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-09",
- "total_cases": 79.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 4.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 46.427,
- "new_cases_per_million": 9.403,
- "new_cases_smoothed_per_million": 2.687,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "total_tests": 7830.0,
- "total_tests_per_thousand": 4.602,
- "tests_units": "units unclear",
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-10",
- "total_cases": 109.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 8.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 64.058,
- "new_cases_per_million": 17.631,
- "new_cases_smoothed_per_million": 5.205,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 524.0,
- "total_tests": 8354.0,
- "total_tests_per_thousand": 4.91,
- "new_tests_per_thousand": 0.308,
- "tests_units": "units unclear",
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-11",
- "total_cases": 110.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 8.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 64.646,
- "new_cases_per_million": 0.588,
- "new_cases_smoothed_per_million": 5.121,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 456.0,
- "total_tests": 8810.0,
- "total_tests_per_thousand": 5.178,
- "new_tests_per_thousand": 0.268,
- "tests_units": "units unclear",
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-12",
- "total_cases": 162.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 15.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 95.205,
- "new_cases_per_million": 30.56,
- "new_cases_smoothed_per_million": 9.235,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 232.0,
- "total_tests": 9042.0,
- "total_tests_per_thousand": 5.314,
- "new_tests_per_thousand": 0.136,
- "new_tests_smoothed": 530.0,
- "new_tests_smoothed_per_thousand": 0.311,
- "tests_per_case": 33.727,
- "positive_rate": 0.03,
- "tests_units": "units unclear",
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-13",
- "total_cases": 162.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 15.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 95.205,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.235,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 562.0,
- "new_tests_smoothed_per_thousand": 0.33,
- "tests_per_case": 35.764,
- "positive_rate": 0.027999999999999997,
- "tests_units": "units unclear",
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-14",
- "total_cases": 210.0,
- "new_cases": 48.0,
- "new_cases_smoothed": 22.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 123.414,
- "new_cases_per_million": 28.209,
- "new_cases_smoothed_per_million": 12.929,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 595.0,
- "new_tests_smoothed_per_thousand": 0.35,
- "tests_per_case": 27.045,
- "positive_rate": 0.037000000000000005,
- "tests_units": "units unclear",
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-15",
- "total_cases": 211.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 21.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 124.002,
- "new_cases_per_million": 0.588,
- "new_cases_smoothed_per_million": 12.425,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 605.0,
- "new_tests_smoothed_per_thousand": 0.356,
- "tests_per_case": 28.615,
- "positive_rate": 0.035,
- "tests_units": "units unclear",
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-16",
- "total_cases": 214.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 19.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 125.765,
- "new_cases_per_million": 1.763,
- "new_cases_smoothed_per_million": 11.334,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "total_tests": 12131.0,
- "total_tests_per_thousand": 7.129,
- "new_tests_smoothed": 614.0,
- "new_tests_smoothed_per_thousand": 0.361,
- "tests_per_case": 31.837,
- "positive_rate": 0.031,
- "tests_units": "units unclear",
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-17",
- "total_cases": 221.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 16.0,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 129.879,
- "new_cases_per_million": 4.114,
- "new_cases_smoothed_per_million": 9.403,
- "total_deaths_per_million": 0.588,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 0.084,
- "new_tests": 1422.0,
- "total_tests": 13553.0,
- "total_tests_per_thousand": 7.965,
- "new_tests_per_thousand": 0.836,
- "new_tests_smoothed": 743.0,
- "new_tests_smoothed_per_thousand": 0.437,
- "tests_per_case": 46.438,
- "positive_rate": 0.022000000000000002,
- "tests_units": "units unclear",
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-18",
- "total_cases": 237.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 18.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 139.282,
- "new_cases_per_million": 9.403,
- "new_cases_smoothed_per_million": 10.662,
- "total_deaths_per_million": 0.588,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.084,
- "new_tests_smoothed": 942.0,
- "new_tests_smoothed_per_thousand": 0.554,
- "tests_per_case": 51.92100000000001,
- "positive_rate": 0.019,
- "tests_units": "units unclear",
- "stringency_index": 66.67
- },
- {
- "date": "2020-03-19",
- "total_cases": 256.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 13.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 150.448,
- "new_cases_per_million": 11.166,
- "new_cases_smoothed_per_million": 7.892,
- "total_deaths_per_million": 0.588,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.084,
- "new_tests_smoothed": 1173.0,
- "new_tests_smoothed_per_thousand": 0.689,
- "tests_per_case": 87.351,
- "positive_rate": 0.011000000000000001,
- "tests_units": "units unclear",
- "stringency_index": 66.67
- },
- {
- "date": "2020-03-20",
- "total_cases": 269.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 15.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 158.088,
- "new_cases_per_million": 7.64,
- "new_cases_smoothed_per_million": 8.983,
- "total_deaths_per_million": 0.588,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.084,
- "total_tests": 19098.0,
- "total_tests_per_thousand": 11.224,
- "new_tests_smoothed": 1326.0,
- "new_tests_smoothed_per_thousand": 0.779,
- "tests_per_case": 86.74799999999999,
- "positive_rate": 0.012,
- "tests_units": "units unclear",
- "stringency_index": 66.67
- },
- {
- "date": "2020-03-21",
- "total_cases": 285.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 10.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 167.491,
- "new_cases_per_million": 9.403,
- "new_cases_smoothed_per_million": 6.297,
- "total_deaths_per_million": 0.588,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.084,
- "new_tests_smoothed": 1505.0,
- "new_tests_smoothed_per_thousand": 0.884,
- "tests_per_case": 140.467,
- "positive_rate": 0.006999999999999999,
- "tests_units": "units unclear",
- "stringency_index": 66.67
- },
- {
- "date": "2020-03-22",
- "total_cases": 306.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 13.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 179.833,
- "new_cases_per_million": 12.341,
- "new_cases_smoothed_per_million": 7.976,
- "total_deaths_per_million": 0.588,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.084,
- "new_tests_smoothed": 1684.0,
- "new_tests_smoothed_per_thousand": 0.99,
- "tests_per_case": 124.084,
- "positive_rate": 0.008,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-03-23",
- "total_cases": 334.0,
- "new_cases": 28.0,
- "new_cases_smoothed": 17.143,
- "total_deaths": 2.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 196.288,
- "new_cases_per_million": 16.455,
- "new_cases_smoothed_per_million": 10.075,
- "total_deaths_per_million": 1.175,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 0.168,
- "total_tests": 25169.0,
- "total_tests_per_thousand": 14.792,
- "new_tests_smoothed": 1863.0,
- "new_tests_smoothed_per_thousand": 1.095,
- "tests_per_case": 108.675,
- "positive_rate": 0.009000000000000001,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-03-24",
- "total_cases": 339.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 16.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 199.226,
- "new_cases_per_million": 2.938,
- "new_cases_smoothed_per_million": 9.907,
- "total_deaths_per_million": 1.175,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.084,
- "new_tests_smoothed": 1867.0,
- "new_tests_smoothed_per_thousand": 1.097,
- "tests_per_case": 110.75399999999999,
- "positive_rate": 0.009000000000000001,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-03-25",
- "total_cases": 390.0,
- "new_cases": 51.0,
- "new_cases_smoothed": 21.857,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 229.198,
- "new_cases_per_million": 29.972,
- "new_cases_smoothed_per_million": 12.845,
- "total_deaths_per_million": 1.763,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 0.168,
- "new_tests_smoothed": 1811.0,
- "new_tests_smoothed_per_thousand": 1.064,
- "tests_per_case": 82.85600000000001,
- "positive_rate": 0.012,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-03-26",
- "total_cases": 419.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 23.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 246.241,
- "new_cases_per_million": 17.043,
- "new_cases_smoothed_per_million": 13.685,
- "total_deaths_per_million": 1.763,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.168,
- "total_tests": 29533.0,
- "total_tests_per_thousand": 17.356,
- "new_tests_smoothed": 1755.0,
- "new_tests_smoothed_per_thousand": 1.031,
- "tests_per_case": 75.368,
- "positive_rate": 0.013000000000000001,
- "tests_units": "units unclear",
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-27",
- "total_cases": 458.0,
- "new_cases": 39.0,
- "new_cases_smoothed": 27.0,
- "total_deaths": 4.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 269.161,
- "new_cases_per_million": 22.92,
- "new_cases_smoothed_per_million": 15.868,
- "total_deaths_per_million": 2.351,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 0.252,
- "new_tests_smoothed": 1603.0,
- "new_tests_smoothed_per_thousand": 0.942,
- "tests_per_case": 59.37,
- "positive_rate": 0.017,
- "tests_units": "units unclear",
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-28",
- "total_cases": 466.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 25.857,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 273.863,
- "new_cases_per_million": 4.702,
- "new_cases_smoothed_per_million": 15.196,
- "total_deaths_per_million": 2.351,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.252,
- "new_tests_smoothed": 1427.0,
- "new_tests_smoothed_per_thousand": 0.839,
- "tests_per_case": 55.188,
- "positive_rate": 0.018000000000000002,
- "tests_units": "units unclear",
- "stringency_index": 78.7
- },
- {
- "date": "2020-03-29",
- "total_cases": 473.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 23.857,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 277.976,
- "new_cases_per_million": 4.114,
- "new_cases_smoothed_per_million": 14.021,
- "total_deaths_per_million": 2.351,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.252,
- "total_tests": 31895.0,
- "total_tests_per_thousand": 18.744,
- "new_tests_smoothed": 1250.0,
- "new_tests_smoothed_per_thousand": 0.735,
- "tests_per_case": 52.395,
- "positive_rate": 0.019,
- "tests_units": "units unclear",
- "stringency_index": 78.7
- },
- {
- "date": "2020-03-30",
- "total_cases": 500.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 23.714,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 293.844,
- "new_cases_per_million": 15.868,
- "new_cases_smoothed_per_million": 13.937,
- "total_deaths_per_million": 2.351,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.168,
- "new_tests": 701.0,
- "total_tests": 32596.0,
- "total_tests_per_thousand": 19.156,
- "new_tests_per_thousand": 0.412,
- "new_tests_smoothed": 1061.0,
- "new_tests_smoothed_per_thousand": 0.624,
- "tests_per_case": 44.74100000000001,
- "positive_rate": 0.022000000000000002,
- "tests_units": "units unclear",
- "stringency_index": 78.7
- },
- {
- "date": "2020-03-31",
- "total_cases": 515.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 25.143,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 302.659,
- "new_cases_per_million": 8.815,
- "new_cases_smoothed_per_million": 14.776,
- "total_deaths_per_million": 2.351,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.168,
- "new_tests_smoothed": 1046.0,
- "new_tests_smoothed_per_thousand": 0.615,
- "tests_per_case": 41.602,
- "positive_rate": 0.024,
- "tests_units": "units unclear",
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-01",
- "total_cases": 567.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 25.286,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 333.219,
- "new_cases_per_million": 30.56,
- "new_cases_smoothed_per_million": 14.86,
- "total_deaths_per_million": 2.351,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.084,
- "new_tests_smoothed": 1031.0,
- "new_tests_smoothed_per_thousand": 0.606,
- "tests_per_case": 40.774,
- "positive_rate": 0.025,
- "tests_units": "units unclear",
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-02",
- "total_cases": 569.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 21.429,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 334.395,
- "new_cases_per_million": 1.175,
- "new_cases_smoothed_per_million": 12.593,
- "total_deaths_per_million": 2.351,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.084,
- "new_tests_smoothed": 1016.0,
- "new_tests_smoothed_per_thousand": 0.597,
- "tests_per_case": 47.413000000000004,
- "positive_rate": 0.021,
- "tests_units": "units unclear",
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-03",
- "total_cases": 643.0,
- "new_cases": 74.0,
- "new_cases_smoothed": 26.429,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 377.883,
- "new_cases_per_million": 43.489,
- "new_cases_smoothed_per_million": 15.532,
- "total_deaths_per_million": 2.351,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "total_tests": 37996.0,
- "total_tests_per_thousand": 22.33,
- "new_tests_smoothed": 1097.0,
- "new_tests_smoothed_per_thousand": 0.645,
- "tests_per_case": 41.508,
- "positive_rate": 0.024,
- "tests_units": "units unclear",
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-04",
- "total_cases": 643.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 25.286,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 377.883,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 14.86,
- "total_deaths_per_million": 2.351,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1260.0,
- "total_tests": 39256.0,
- "total_tests_per_thousand": 23.07,
- "new_tests_per_thousand": 0.74,
- "new_tests_smoothed": 1164.0,
- "new_tests_smoothed_per_thousand": 0.684,
- "tests_per_case": 46.034,
- "positive_rate": 0.022000000000000002,
- "tests_units": "units unclear",
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-05",
- "total_cases": 688.0,
- "new_cases": 45.0,
- "new_cases_smoothed": 30.714,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 404.329,
- "new_cases_per_million": 26.446,
- "new_cases_smoothed_per_million": 18.05,
- "total_deaths_per_million": 2.351,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 5130.0,
- "total_tests": 44386.0,
- "total_tests_per_thousand": 26.085,
- "new_tests_per_thousand": 3.015,
- "new_tests_smoothed": 1784.0,
- "new_tests_smoothed_per_thousand": 1.048,
- "tests_per_case": 58.083999999999996,
- "positive_rate": 0.017,
- "tests_units": "units unclear",
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-06",
- "total_cases": 700.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 28.571,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 411.382,
- "new_cases_per_million": 7.052,
- "new_cases_smoothed_per_million": 16.791,
- "total_deaths_per_million": 2.351,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 3298.0,
- "total_tests": 47684.0,
- "total_tests_per_thousand": 28.023,
- "new_tests_per_thousand": 1.938,
- "new_tests_smoothed": 2155.0,
- "new_tests_smoothed_per_thousand": 1.266,
- "tests_per_case": 75.425,
- "positive_rate": 0.013000000000000001,
- "tests_units": "units unclear",
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-07",
- "total_cases": 756.0,
- "new_cases": 56.0,
- "new_cases_smoothed": 34.429,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 444.292,
- "new_cases_per_million": 32.911,
- "new_cases_smoothed_per_million": 20.233,
- "total_deaths_per_million": 2.351,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 2443.0,
- "total_tests": 50127.0,
- "total_tests_per_thousand": 29.459,
- "new_tests_per_thousand": 1.436,
- "new_tests_smoothed": 2312.0,
- "new_tests_smoothed_per_thousand": 1.359,
- "tests_per_case": 67.154,
- "positive_rate": 0.015,
- "tests_units": "units unclear",
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-08",
- "total_cases": 811.0,
- "new_cases": 55.0,
- "new_cases_smoothed": 34.857,
- "total_deaths": 5.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 476.615,
- "new_cases_per_million": 32.323,
- "new_cases_smoothed_per_million": 20.485,
- "total_deaths_per_million": 2.938,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 0.084,
- "new_tests": 2677.0,
- "total_tests": 52804.0,
- "total_tests_per_thousand": 31.032,
- "new_tests_per_thousand": 1.573,
- "new_tests_smoothed": 2501.0,
- "new_tests_smoothed_per_thousand": 1.47,
- "tests_per_case": 71.75,
- "positive_rate": 0.013999999999999999,
- "tests_units": "units unclear",
- "stringency_index": 78.7
- },
- {
- "date": "2020-04-09",
- "total_cases": 823.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 36.286,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 483.667,
- "new_cases_per_million": 7.052,
- "new_cases_smoothed_per_million": 21.325,
- "total_deaths_per_million": 2.938,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.084,
- "new_tests": 2292.0,
- "total_tests": 55096.0,
- "total_tests_per_thousand": 32.379,
- "new_tests_per_thousand": 1.347,
- "new_tests_smoothed": 2636.0,
- "new_tests_smoothed_per_thousand": 1.549,
- "tests_per_case": 72.646,
- "positive_rate": 0.013999999999999999,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-10",
- "total_cases": 887.0,
- "new_cases": 64.0,
- "new_cases_smoothed": 34.857,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 521.279,
- "new_cases_per_million": 37.612,
- "new_cases_smoothed_per_million": 20.485,
- "total_deaths_per_million": 2.938,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.084,
- "new_tests": 2585.0,
- "total_tests": 57681.0,
- "total_tests_per_thousand": 33.898,
- "new_tests_per_thousand": 1.519,
- "new_tests_smoothed": 2812.0,
- "new_tests_smoothed_per_thousand": 1.653,
- "tests_per_case": 80.672,
- "positive_rate": 0.012,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-11",
- "total_cases": 998.0,
- "new_cases": 111.0,
- "new_cases_smoothed": 50.714,
- "total_deaths": 6.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 586.513,
- "new_cases_per_million": 65.233,
- "new_cases_smoothed_per_million": 29.804,
- "total_deaths_per_million": 3.526,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 0.168,
- "new_tests": 3025.0,
- "total_tests": 60706.0,
- "total_tests_per_thousand": 35.676,
- "new_tests_per_thousand": 1.778,
- "new_tests_smoothed": 3064.0,
- "new_tests_smoothed_per_thousand": 1.801,
- "tests_per_case": 60.417,
- "positive_rate": 0.017,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-12",
- "total_cases": 1040.0,
- "new_cases": 42.0,
- "new_cases_smoothed": 50.286,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 611.196,
- "new_cases_per_million": 24.683,
- "new_cases_smoothed_per_million": 29.552,
- "total_deaths_per_million": 3.526,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.168,
- "new_tests": 3267.0,
- "total_tests": 63973.0,
- "total_tests_per_thousand": 37.596,
- "new_tests_per_thousand": 1.92,
- "new_tests_smoothed": 2798.0,
- "new_tests_smoothed_per_thousand": 1.644,
- "tests_per_case": 55.641999999999996,
- "positive_rate": 0.018000000000000002,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-13",
- "total_cases": 1136.0,
- "new_cases": 96.0,
- "new_cases_smoothed": 62.286,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 667.614,
- "new_cases_per_million": 56.418,
- "new_cases_smoothed_per_million": 36.605,
- "total_deaths_per_million": 3.526,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.168,
- "new_tests": 3354.0,
- "total_tests": 67327.0,
- "total_tests_per_thousand": 39.567,
- "new_tests_per_thousand": 1.971,
- "new_tests_smoothed": 2806.0,
- "new_tests_smoothed_per_thousand": 1.649,
- "tests_per_case": 45.05,
- "positive_rate": 0.022000000000000002,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-14",
- "total_cases": 1361.0,
- "new_cases": 225.0,
- "new_cases_smoothed": 86.429,
- "total_deaths": 7.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 799.843,
- "new_cases_per_million": 132.23,
- "new_cases_smoothed_per_million": 50.793,
- "total_deaths_per_million": 4.114,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 0.252,
- "new_tests": 3486.0,
- "total_tests": 70813.0,
- "total_tests_per_thousand": 41.616,
- "new_tests_per_thousand": 2.049,
- "new_tests_smoothed": 2955.0,
- "new_tests_smoothed_per_thousand": 1.737,
- "tests_per_case": 34.19,
- "positive_rate": 0.028999999999999998,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-15",
- "total_cases": 1528.0,
- "new_cases": 167.0,
- "new_cases_smoothed": 102.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 897.987,
- "new_cases_per_million": 98.144,
- "new_cases_smoothed_per_million": 60.196,
- "total_deaths_per_million": 4.114,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.168,
- "new_tests": 2459.0,
- "total_tests": 73272.0,
- "total_tests_per_thousand": 43.061,
- "new_tests_per_thousand": 1.445,
- "new_tests_smoothed": 2924.0,
- "new_tests_smoothed_per_thousand": 1.718,
- "tests_per_case": 28.546999999999997,
- "positive_rate": 0.035,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-16",
- "total_cases": 1673.0,
- "new_cases": 145.0,
- "new_cases_smoothed": 121.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 983.202,
- "new_cases_per_million": 85.215,
- "new_cases_smoothed_per_million": 71.362,
- "total_deaths_per_million": 4.114,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.168,
- "new_tests": 3672.0,
- "total_tests": 76944.0,
- "total_tests_per_thousand": 45.219,
- "new_tests_per_thousand": 2.158,
- "new_tests_smoothed": 3121.0,
- "new_tests_smoothed_per_thousand": 1.834,
- "tests_per_case": 25.701999999999998,
- "positive_rate": 0.039,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-17",
- "total_cases": 1700.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 116.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 999.07,
- "new_cases_per_million": 15.868,
- "new_cases_smoothed_per_million": 68.256,
- "total_deaths_per_million": 4.114,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.168,
- "new_tests": 2668.0,
- "total_tests": 79612.0,
- "total_tests_per_thousand": 46.787,
- "new_tests_per_thousand": 1.568,
- "new_tests_smoothed": 3133.0,
- "new_tests_smoothed_per_thousand": 1.841,
- "tests_per_case": 26.975,
- "positive_rate": 0.037000000000000005,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-18",
- "total_cases": 1744.0,
- "new_cases": 44.0,
- "new_cases_smoothed": 106.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1024.928,
- "new_cases_per_million": 25.858,
- "new_cases_smoothed_per_million": 62.631,
- "total_deaths_per_million": 4.114,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.084,
- "new_tests": 2956.0,
- "total_tests": 82568.0,
- "total_tests_per_thousand": 48.524,
- "new_tests_per_thousand": 1.737,
- "new_tests_smoothed": 3123.0,
- "new_tests_smoothed_per_thousand": 1.835,
- "tests_per_case": 29.304000000000002,
- "positive_rate": 0.034,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-19",
- "total_cases": 1773.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 104.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1041.971,
- "new_cases_per_million": 17.043,
- "new_cases_smoothed_per_million": 61.539,
- "total_deaths_per_million": 4.114,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.084,
- "new_tests": 4164.0,
- "total_tests": 86732.0,
- "total_tests_per_thousand": 50.971,
- "new_tests_per_thousand": 2.447,
- "new_tests_smoothed": 3251.0,
- "new_tests_smoothed_per_thousand": 1.911,
- "tests_per_case": 31.046,
- "positive_rate": 0.032,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-20",
- "total_cases": 1873.0,
- "new_cases": 100.0,
- "new_cases_smoothed": 105.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1100.74,
- "new_cases_per_million": 58.769,
- "new_cases_smoothed_per_million": 61.875,
- "total_deaths_per_million": 4.114,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.084,
- "new_tests": 3575.0,
- "total_tests": 90307.0,
- "total_tests_per_thousand": 53.072,
- "new_tests_per_thousand": 2.101,
- "new_tests_smoothed": 3283.0,
- "new_tests_smoothed_per_thousand": 1.929,
- "tests_per_case": 31.182,
- "positive_rate": 0.032,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-21",
- "total_cases": 1907.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 78.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1120.721,
- "new_cases_per_million": 19.981,
- "new_cases_smoothed_per_million": 45.84,
- "total_deaths_per_million": 4.114,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 4073.0,
- "total_tests": 94380.0,
- "total_tests_per_thousand": 55.466,
- "new_tests_per_thousand": 2.394,
- "new_tests_smoothed": 3367.0,
- "new_tests_smoothed_per_thousand": 1.979,
- "tests_per_case": 43.167,
- "positive_rate": 0.023,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-22",
- "total_cases": 1973.0,
- "new_cases": 66.0,
- "new_cases_smoothed": 63.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1159.509,
- "new_cases_per_million": 38.787,
- "new_cases_smoothed_per_million": 37.36,
- "total_deaths_per_million": 4.114,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 3416.0,
- "total_tests": 97796.0,
- "total_tests_per_thousand": 57.474,
- "new_tests_per_thousand": 2.008,
- "new_tests_smoothed": 3503.0,
- "new_tests_smoothed_per_thousand": 2.059,
- "tests_per_case": 55.103,
- "positive_rate": 0.018000000000000002,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-23",
- "total_cases": 2007.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 47.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1179.49,
- "new_cases_per_million": 19.981,
- "new_cases_smoothed_per_million": 28.041,
- "total_deaths_per_million": 4.114,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 2235.0,
- "total_tests": 100031.0,
- "total_tests_per_thousand": 58.787,
- "new_tests_per_thousand": 1.313,
- "new_tests_smoothed": 3298.0,
- "new_tests_smoothed_per_thousand": 1.938,
- "tests_per_case": 69.12,
- "positive_rate": 0.013999999999999999,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-24",
- "total_cases": 2217.0,
- "new_cases": 210.0,
- "new_cases_smoothed": 73.857,
- "total_deaths": 8.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1302.904,
- "new_cases_per_million": 123.414,
- "new_cases_smoothed_per_million": 43.405,
- "total_deaths_per_million": 4.702,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 0.084,
- "new_tests": 5334.0,
- "total_tests": 105365.0,
- "total_tests_per_thousand": 61.922,
- "new_tests_per_thousand": 3.135,
- "new_tests_smoothed": 3679.0,
- "new_tests_smoothed_per_thousand": 2.162,
- "tests_per_case": 49.812,
- "positive_rate": 0.02,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-25",
- "total_cases": 2518.0,
- "new_cases": 301.0,
- "new_cases_smoothed": 110.571,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1479.799,
- "new_cases_per_million": 176.894,
- "new_cases_smoothed_per_million": 64.982,
- "total_deaths_per_million": 4.702,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.084,
- "new_tests": 5042.0,
- "total_tests": 110407.0,
- "total_tests_per_thousand": 64.885,
- "new_tests_per_thousand": 2.963,
- "new_tests_smoothed": 3977.0,
- "new_tests_smoothed_per_thousand": 2.337,
- "tests_per_case": 35.968,
- "positive_rate": 0.027999999999999997,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-26",
- "total_cases": 2589.0,
- "new_cases": 71.0,
- "new_cases_smoothed": 116.571,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1521.524,
- "new_cases_per_million": 41.726,
- "new_cases_smoothed_per_million": 68.508,
- "total_deaths_per_million": 4.702,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.084,
- "new_tests": 3703.0,
- "total_tests": 114110.0,
- "total_tests_per_thousand": 67.061,
- "new_tests_per_thousand": 2.176,
- "new_tests_smoothed": 3911.0,
- "new_tests_smoothed_per_thousand": 2.298,
- "tests_per_case": 33.55,
- "positive_rate": 0.03,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-27",
- "total_cases": 2647.0,
- "new_cases": 58.0,
- "new_cases_smoothed": 110.571,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1555.61,
- "new_cases_per_million": 34.086,
- "new_cases_smoothed_per_million": 64.982,
- "total_deaths_per_million": 4.702,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.084,
- "new_tests": 3687.0,
- "total_tests": 117797.0,
- "total_tests_per_thousand": 69.228,
- "new_tests_per_thousand": 2.167,
- "new_tests_smoothed": 3927.0,
- "new_tests_smoothed_per_thousand": 2.308,
- "tests_per_case": 35.516,
- "positive_rate": 0.027999999999999997,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-28",
- "total_cases": 2723.0,
- "new_cases": 76.0,
- "new_cases_smoothed": 116.571,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1600.275,
- "new_cases_per_million": 44.664,
- "new_cases_smoothed_per_million": 68.508,
- "total_deaths_per_million": 4.702,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.084,
- "new_tests": 3909.0,
- "total_tests": 121706.0,
- "total_tests_per_thousand": 71.525,
- "new_tests_per_thousand": 2.297,
- "new_tests_smoothed": 3904.0,
- "new_tests_smoothed_per_thousand": 2.294,
- "tests_per_case": 33.49,
- "positive_rate": 0.03,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-29",
- "total_cases": 2811.0,
- "new_cases": 88.0,
- "new_cases_smoothed": 119.714,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1651.991,
- "new_cases_per_million": 51.717,
- "new_cases_smoothed_per_million": 70.355,
- "total_deaths_per_million": 4.702,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.084,
- "new_tests": 5199.0,
- "total_tests": 126905.0,
- "total_tests_per_thousand": 74.581,
- "new_tests_per_thousand": 3.055,
- "new_tests_smoothed": 4158.0,
- "new_tests_smoothed_per_thousand": 2.444,
- "tests_per_case": 34.733000000000004,
- "positive_rate": 0.028999999999999998,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-30",
- "total_cases": 2921.0,
- "new_cases": 110.0,
- "new_cases_smoothed": 130.571,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1716.637,
- "new_cases_per_million": 64.646,
- "new_cases_smoothed_per_million": 76.735,
- "total_deaths_per_million": 4.702,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.084,
- "new_tests": 2789.0,
- "total_tests": 129694.0,
- "total_tests_per_thousand": 76.22,
- "new_tests_per_thousand": 1.639,
- "new_tests_smoothed": 4238.0,
- "new_tests_smoothed_per_thousand": 2.491,
- "tests_per_case": 32.457,
- "positive_rate": 0.031,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-01",
- "total_cases": 3040.0,
- "new_cases": 119.0,
- "new_cases_smoothed": 117.571,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1786.572,
- "new_cases_per_million": 69.935,
- "new_cases_smoothed_per_million": 69.095,
- "total_deaths_per_million": 4.702,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 4388.0,
- "total_tests": 134082.0,
- "total_tests_per_thousand": 78.798,
- "new_tests_per_thousand": 2.579,
- "new_tests_smoothed": 4102.0,
- "new_tests_smoothed_per_thousand": 2.411,
- "tests_per_case": 34.889,
- "positive_rate": 0.028999999999999998,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-02",
- "total_cases": 3170.0,
- "new_cases": 130.0,
- "new_cases_smoothed": 93.143,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1862.971,
- "new_cases_per_million": 76.399,
- "new_cases_smoothed_per_million": 54.739,
- "total_deaths_per_million": 4.702,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 4196.0,
- "total_tests": 138278.0,
- "total_tests_per_thousand": 81.264,
- "new_tests_per_thousand": 2.466,
- "new_tests_smoothed": 3982.0,
- "new_tests_smoothed_per_thousand": 2.34,
- "tests_per_case": 42.751999999999995,
- "positive_rate": 0.023,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-03",
- "total_cases": 3284.0,
- "new_cases": 114.0,
- "new_cases_smoothed": 99.286,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1929.968,
- "new_cases_per_million": 66.996,
- "new_cases_smoothed_per_million": 58.349,
- "total_deaths_per_million": 4.702,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 5877.0,
- "total_tests": 144155.0,
- "total_tests_per_thousand": 84.718,
- "new_tests_per_thousand": 3.454,
- "new_tests_smoothed": 4292.0,
- "new_tests_smoothed_per_thousand": 2.522,
- "tests_per_case": 43.229,
- "positive_rate": 0.023,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-04",
- "total_cases": 3383.0,
- "new_cases": 99.0,
- "new_cases_smoothed": 105.143,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1988.149,
- "new_cases_per_million": 58.181,
- "new_cases_smoothed_per_million": 61.791,
- "total_deaths_per_million": 4.702,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 5431.0,
- "total_tests": 149586.0,
- "total_tests_per_thousand": 87.91,
- "new_tests_per_thousand": 3.192,
- "new_tests_smoothed": 4541.0,
- "new_tests_smoothed_per_thousand": 2.669,
- "tests_per_case": 43.18899999999999,
- "positive_rate": 0.023,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-05",
- "total_cases": 3533.0,
- "new_cases": 150.0,
- "new_cases_smoothed": 115.714,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2076.302,
- "new_cases_per_million": 88.153,
- "new_cases_smoothed_per_million": 68.004,
- "total_deaths_per_million": 4.702,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 5915.0,
- "total_tests": 155501.0,
- "total_tests_per_thousand": 91.386,
- "new_tests_per_thousand": 3.476,
- "new_tests_smoothed": 4828.0,
- "new_tests_smoothed_per_thousand": 2.837,
- "tests_per_case": 41.723,
- "positive_rate": 0.024,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-06",
- "total_cases": 3720.0,
- "new_cases": 187.0,
- "new_cases_smoothed": 129.857,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2186.2,
- "new_cases_per_million": 109.898,
- "new_cases_smoothed_per_million": 76.315,
- "total_deaths_per_million": 4.702,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 4840.0,
- "total_tests": 160341.0,
- "total_tests_per_thousand": 94.23,
- "new_tests_per_thousand": 2.844,
- "new_tests_smoothed": 4777.0,
- "new_tests_smoothed_per_thousand": 2.807,
- "tests_per_case": 36.787,
- "positive_rate": 0.027000000000000003,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-07",
- "total_cases": 3934.0,
- "new_cases": 214.0,
- "new_cases_smoothed": 144.714,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2311.965,
- "new_cases_per_million": 125.765,
- "new_cases_smoothed_per_million": 85.047,
- "total_deaths_per_million": 4.702,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 6037.0,
- "total_tests": 166378.0,
- "total_tests_per_thousand": 97.778,
- "new_tests_per_thousand": 3.548,
- "new_tests_smoothed": 5241.0,
- "new_tests_smoothed_per_thousand": 3.08,
- "tests_per_case": 36.216,
- "positive_rate": 0.027999999999999997,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-08",
- "total_cases": 4199.0,
- "new_cases": 265.0,
- "new_cases_smoothed": 165.571,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2467.702,
- "new_cases_per_million": 155.737,
- "new_cases_smoothed_per_million": 97.304,
- "total_deaths_per_million": 4.702,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 5780.0,
- "total_tests": 172158.0,
- "total_tests_per_thousand": 101.175,
- "new_tests_per_thousand": 3.397,
- "new_tests_smoothed": 5439.0,
- "new_tests_smoothed_per_thousand": 3.196,
- "tests_per_case": 32.85,
- "positive_rate": 0.03,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-09",
- "total_cases": 4444.0,
- "new_cases": 245.0,
- "new_cases_smoothed": 182.0,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2611.686,
- "new_cases_per_million": 143.984,
- "new_cases_smoothed_per_million": 106.959,
- "total_deaths_per_million": 4.702,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 6195.0,
- "total_tests": 178353.0,
- "total_tests_per_thousand": 104.816,
- "new_tests_per_thousand": 3.641,
- "new_tests_smoothed": 5725.0,
- "new_tests_smoothed_per_thousand": 3.365,
- "tests_per_case": 31.456,
- "positive_rate": 0.032,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-10",
- "total_cases": 4774.0,
- "new_cases": 330.0,
- "new_cases_smoothed": 212.857,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2805.623,
- "new_cases_per_million": 193.937,
- "new_cases_smoothed_per_million": 125.094,
- "total_deaths_per_million": 4.702,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 5676.0,
- "total_tests": 184029.0,
- "total_tests_per_thousand": 108.152,
- "new_tests_per_thousand": 3.336,
- "new_tests_smoothed": 5696.0,
- "new_tests_smoothed_per_thousand": 3.347,
- "tests_per_case": 26.76,
- "positive_rate": 0.037000000000000005,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-11",
- "total_cases": 4941.0,
- "new_cases": 167.0,
- "new_cases_smoothed": 222.571,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2903.767,
- "new_cases_per_million": 98.144,
- "new_cases_smoothed_per_million": 130.803,
- "total_deaths_per_million": 4.702,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 6751.0,
- "total_tests": 190780.0,
- "total_tests_per_thousand": 112.119,
- "new_tests_per_thousand": 3.967,
- "new_tests_smoothed": 5885.0,
- "new_tests_smoothed_per_thousand": 3.459,
- "tests_per_case": 26.441,
- "positive_rate": 0.038,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-12",
- "total_cases": 5236.0,
- "new_cases": 295.0,
- "new_cases_smoothed": 243.286,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3077.135,
- "new_cases_per_million": 173.368,
- "new_cases_smoothed_per_million": 142.976,
- "total_deaths_per_million": 4.702,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 7118.0,
- "total_tests": 197898.0,
- "total_tests_per_thousand": 116.302,
- "new_tests_per_thousand": 4.183,
- "new_tests_smoothed": 6057.0,
- "new_tests_smoothed_per_thousand": 3.56,
- "tests_per_case": 24.897,
- "positive_rate": 0.04,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-13",
- "total_cases": 5531.0,
- "new_cases": 295.0,
- "new_cases_smoothed": 258.714,
- "total_deaths": 9.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 3250.503,
- "new_cases_per_million": 173.368,
- "new_cases_smoothed_per_million": 152.043,
- "total_deaths_per_million": 5.289,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 0.084,
- "new_tests": 7672.0,
- "total_tests": 205570.0,
- "total_tests_per_thousand": 120.811,
- "new_tests_per_thousand": 4.509,
- "new_tests_smoothed": 6461.0,
- "new_tests_smoothed_per_thousand": 3.797,
- "tests_per_case": 24.973000000000003,
- "positive_rate": 0.04,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-14",
- "total_cases": 5816.0,
- "new_cases": 285.0,
- "new_cases_smoothed": 268.857,
- "total_deaths": 10.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3417.994,
- "new_cases_per_million": 167.491,
- "new_cases_smoothed_per_million": 158.004,
- "total_deaths_per_million": 5.877,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 0.168,
- "new_tests": 5557.0,
- "total_tests": 211127.0,
- "total_tests_per_thousand": 124.077,
- "new_tests_per_thousand": 3.266,
- "new_tests_smoothed": 6393.0,
- "new_tests_smoothed_per_thousand": 3.757,
- "tests_per_case": 23.778000000000002,
- "positive_rate": 0.042,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-15",
- "total_cases": 6198.0,
- "new_cases": 382.0,
- "new_cases_smoothed": 285.571,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3642.491,
- "new_cases_per_million": 224.497,
- "new_cases_smoothed_per_million": 167.827,
- "total_deaths_per_million": 5.877,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.168,
- "new_tests": 11415.0,
- "total_tests": 222542.0,
- "total_tests_per_thousand": 130.785,
- "new_tests_per_thousand": 6.708,
- "new_tests_smoothed": 7198.0,
- "new_tests_smoothed_per_thousand": 4.23,
- "tests_per_case": 25.206,
- "positive_rate": 0.04,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-16",
- "total_cases": 6583.0,
- "new_cases": 385.0,
- "new_cases_smoothed": 305.571,
- "total_deaths": 12.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 3868.75,
- "new_cases_per_million": 226.26,
- "new_cases_smoothed_per_million": 179.581,
- "total_deaths_per_million": 7.052,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 0.336,
- "new_tests": 7646.0,
- "total_tests": 230188.0,
- "total_tests_per_thousand": 135.279,
- "new_tests_per_thousand": 4.493,
- "new_tests_smoothed": 7405.0,
- "new_tests_smoothed_per_thousand": 4.352,
- "tests_per_case": 24.233,
- "positive_rate": 0.040999999999999995,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-17",
- "total_cases": 6747.0,
- "new_cases": 164.0,
- "new_cases_smoothed": 281.857,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 3965.131,
- "new_cases_per_million": 96.381,
- "new_cases_smoothed_per_million": 165.644,
- "total_deaths_per_million": 7.052,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.336,
- "new_tests": 6640.0,
- "total_tests": 236828.0,
- "total_tests_per_thousand": 139.181,
- "new_tests_per_thousand": 3.902,
- "new_tests_smoothed": 7543.0,
- "new_tests_smoothed_per_thousand": 4.433,
- "tests_per_case": 26.761999999999997,
- "positive_rate": 0.037000000000000005,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-18",
- "total_cases": 6956.0,
- "new_cases": 209.0,
- "new_cases_smoothed": 287.857,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 4087.958,
- "new_cases_per_million": 122.827,
- "new_cases_smoothed_per_million": 169.17,
- "total_deaths_per_million": 7.052,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.336,
- "new_tests": 6203.0,
- "total_tests": 243031.0,
- "total_tests_per_thousand": 142.826,
- "new_tests_per_thousand": 3.645,
- "new_tests_smoothed": 7464.0,
- "new_tests_smoothed_per_thousand": 4.387,
- "tests_per_case": 25.93,
- "positive_rate": 0.039,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-19",
- "total_cases": 7184.0,
- "new_cases": 228.0,
- "new_cases_smoothed": 278.286,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 4221.951,
- "new_cases_per_million": 133.993,
- "new_cases_smoothed_per_million": 163.545,
- "total_deaths_per_million": 7.052,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.336,
- "new_tests": 5174.0,
- "total_tests": 248205.0,
- "total_tests_per_thousand": 145.867,
- "new_tests_per_thousand": 3.041,
- "new_tests_smoothed": 7187.0,
- "new_tests_smoothed_per_thousand": 4.224,
- "tests_per_case": 25.826,
- "positive_rate": 0.039,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-20",
- "total_cases": 7532.0,
- "new_cases": 348.0,
- "new_cases_smoothed": 285.857,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 4426.466,
- "new_cases_per_million": 204.515,
- "new_cases_smoothed_per_million": 167.995,
- "total_deaths_per_million": 7.052,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.252,
- "new_tests": 7428.0,
- "total_tests": 255633.0,
- "total_tests_per_thousand": 150.232,
- "new_tests_per_thousand": 4.365,
- "new_tests_smoothed": 7152.0,
- "new_tests_smoothed_per_thousand": 4.203,
- "tests_per_case": 25.019000000000002,
- "positive_rate": 0.04,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-21",
- "total_cases": 7888.0,
- "new_cases": 356.0,
- "new_cases_smoothed": 296.0,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 4635.683,
- "new_cases_per_million": 209.217,
- "new_cases_smoothed_per_million": 173.956,
- "total_deaths_per_million": 7.052,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.168,
- "new_tests_smoothed": 7326.0,
- "new_tests_smoothed_per_thousand": 4.305,
- "tests_per_case": 24.75,
- "positive_rate": 0.04,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-22",
- "total_cases": 8174.0,
- "new_cases": 286.0,
- "new_cases_smoothed": 282.286,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 4803.762,
- "new_cases_per_million": 168.079,
- "new_cases_smoothed_per_million": 165.896,
- "total_deaths_per_million": 7.052,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.168,
- "total_tests": 269179.0,
- "total_tests_per_thousand": 158.193,
- "new_tests_smoothed": 6662.0,
- "new_tests_smoothed_per_thousand": 3.915,
- "tests_per_case": 23.6,
- "positive_rate": 0.042,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-23",
- "total_cases": 8414.0,
- "new_cases": 240.0,
- "new_cases_smoothed": 261.571,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 4944.807,
- "new_cases_per_million": 141.045,
- "new_cases_smoothed_per_million": 153.722,
- "total_deaths_per_million": 7.052,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 7373.0,
- "total_tests": 276552.0,
- "total_tests_per_thousand": 162.526,
- "new_tests_per_thousand": 4.333,
- "new_tests_smoothed": 6623.0,
- "new_tests_smoothed_per_thousand": 3.892,
- "tests_per_case": 25.32,
- "positive_rate": 0.039,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-24",
- "total_cases": 8802.0,
- "new_cases": 388.0,
- "new_cases_smoothed": 293.571,
- "total_deaths": 13.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 5172.83,
- "new_cases_per_million": 228.023,
- "new_cases_smoothed_per_million": 172.528,
- "total_deaths_per_million": 7.64,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 0.084,
- "new_tests": 4652.0,
- "total_tests": 281204.0,
- "total_tests_per_thousand": 165.26,
- "new_tests_per_thousand": 2.734,
- "new_tests_smoothed": 6339.0,
- "new_tests_smoothed_per_thousand": 3.725,
- "tests_per_case": 21.593000000000004,
- "positive_rate": 0.046,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-25",
- "total_cases": 9138.0,
- "new_cases": 336.0,
- "new_cases_smoothed": 311.714,
- "total_deaths": 14.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 5370.293,
- "new_cases_per_million": 197.463,
- "new_cases_smoothed_per_million": 183.191,
- "total_deaths_per_million": 8.228,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 0.168,
- "new_tests": 2680.0,
- "total_tests": 283884.0,
- "total_tests_per_thousand": 166.835,
- "new_tests_per_thousand": 1.575,
- "new_tests_smoothed": 5836.0,
- "new_tests_smoothed_per_thousand": 3.43,
- "tests_per_case": 18.722,
- "positive_rate": 0.053,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-26",
- "total_cases": 9171.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 283.857,
- "total_deaths": 14.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 5389.687,
- "new_cases_per_million": 19.394,
- "new_cases_smoothed_per_million": 166.819,
- "total_deaths_per_million": 8.228,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.168,
- "new_tests": 2339.0,
- "total_tests": 286223.0,
- "total_tests_per_thousand": 168.21,
- "new_tests_per_thousand": 1.375,
- "new_tests_smoothed": 5431.0,
- "new_tests_smoothed_per_thousand": 3.192,
- "tests_per_case": 19.133,
- "positive_rate": 0.052000000000000005,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-27",
- "total_cases": 9366.0,
- "new_cases": 195.0,
- "new_cases_smoothed": 262.0,
- "total_deaths": 14.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 5504.286,
- "new_cases_per_million": 114.599,
- "new_cases_smoothed_per_million": 153.974,
- "total_deaths_per_million": 8.228,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.168,
- "new_tests": 4904.0,
- "total_tests": 291127.0,
- "total_tests_per_thousand": 171.092,
- "new_tests_per_thousand": 2.882,
- "new_tests_smoothed": 5071.0,
- "new_tests_smoothed_per_thousand": 2.98,
- "tests_per_case": 19.355,
- "positive_rate": 0.052000000000000005,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-28",
- "total_cases": 9633.0,
- "new_cases": 267.0,
- "new_cases_smoothed": 249.286,
- "total_deaths": 15.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 5661.199,
- "new_cases_per_million": 156.913,
- "new_cases_smoothed_per_million": 146.502,
- "total_deaths_per_million": 8.815,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 0.252,
- "new_tests": 6746.0,
- "total_tests": 297873.0,
- "total_tests_per_thousand": 175.056,
- "new_tests_per_thousand": 3.965,
- "new_tests_smoothed": 5067.0,
- "new_tests_smoothed_per_thousand": 2.978,
- "tests_per_case": 20.326,
- "positive_rate": 0.049,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-29",
- "total_cases": 10052.0,
- "new_cases": 419.0,
- "new_cases_smoothed": 268.286,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 5907.44,
- "new_cases_per_million": 246.241,
- "new_cases_smoothed_per_million": 157.668,
- "total_deaths_per_million": 8.815,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.252,
- "new_tests": 6306.0,
- "total_tests": 304179.0,
- "total_tests_per_thousand": 178.762,
- "new_tests_per_thousand": 3.706,
- "new_tests_smoothed": 5000.0,
- "new_tests_smoothed_per_thousand": 2.938,
- "tests_per_case": 18.637,
- "positive_rate": 0.054000000000000006,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-30",
- "total_cases": 10449.0,
- "new_cases": 397.0,
- "new_cases_smoothed": 290.714,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 6140.752,
- "new_cases_per_million": 233.312,
- "new_cases_smoothed_per_million": 170.849,
- "total_deaths_per_million": 8.815,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.252,
- "new_tests": 5394.0,
- "total_tests": 309573.0,
- "total_tests_per_thousand": 181.932,
- "new_tests_per_thousand": 3.17,
- "new_tests_smoothed": 4717.0,
- "new_tests_smoothed_per_thousand": 2.772,
- "tests_per_case": 16.226,
- "positive_rate": 0.062,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-05-31",
- "total_cases": 10793.0,
- "new_cases": 344.0,
- "new_cases_smoothed": 284.429,
- "total_deaths": 17.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 6342.917,
- "new_cases_per_million": 202.165,
- "new_cases_smoothed_per_million": 167.155,
- "total_deaths_per_million": 9.991,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 0.336,
- "new_tests": 7234.0,
- "total_tests": 316807.0,
- "total_tests_per_thousand": 186.184,
- "new_tests_per_thousand": 4.251,
- "new_tests_smoothed": 5086.0,
- "new_tests_smoothed_per_thousand": 2.989,
- "tests_per_case": 17.881,
- "positive_rate": 0.055999999999999994,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-01",
- "total_cases": 11398.0,
- "new_cases": 605.0,
- "new_cases_smoothed": 322.857,
- "total_deaths": 19.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 6698.468,
- "new_cases_per_million": 355.551,
- "new_cases_smoothed_per_million": 189.739,
- "total_deaths_per_million": 11.166,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 0.42,
- "new_tests": 6355.0,
- "total_tests": 323162.0,
- "total_tests_per_thousand": 189.918,
- "new_tests_per_thousand": 3.735,
- "new_tests_smoothed": 5611.0,
- "new_tests_smoothed_per_thousand": 3.298,
- "tests_per_case": 17.379,
- "positive_rate": 0.057999999999999996,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-02",
- "total_cases": 11804.0,
- "new_cases": 406.0,
- "new_cases_smoothed": 376.143,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 6937.07,
- "new_cases_per_million": 238.601,
- "new_cases_smoothed_per_million": 221.055,
- "total_deaths_per_million": 11.166,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.42,
- "new_tests": 7571.0,
- "total_tests": 330733.0,
- "total_tests_per_thousand": 194.368,
- "new_tests_per_thousand": 4.449,
- "new_tests_smoothed": 6359.0,
- "new_tests_smoothed_per_thousand": 3.737,
- "tests_per_case": 16.906,
- "positive_rate": 0.059000000000000004,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-03",
- "total_cases": 12311.0,
- "new_cases": 507.0,
- "new_cases_smoothed": 420.714,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 7235.028,
- "new_cases_per_million": 297.958,
- "new_cases_smoothed_per_million": 247.249,
- "total_deaths_per_million": 11.166,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.42,
- "new_tests": 7040.0,
- "total_tests": 337773.0,
- "total_tests_per_thousand": 198.505,
- "new_tests_per_thousand": 4.137,
- "new_tests_smoothed": 6664.0,
- "new_tests_smoothed_per_thousand": 3.916,
- "tests_per_case": 15.84,
- "positive_rate": 0.063,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-04",
- "total_cases": 12815.0,
- "new_cases": 504.0,
- "new_cases_smoothed": 454.571,
- "total_deaths": 20.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 7531.222,
- "new_cases_per_million": 296.195,
- "new_cases_smoothed_per_million": 267.146,
- "total_deaths_per_million": 11.754,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 0.42,
- "new_tests": 7564.0,
- "total_tests": 345337.0,
- "total_tests_per_thousand": 202.95,
- "new_tests_per_thousand": 4.445,
- "new_tests_smoothed": 6781.0,
- "new_tests_smoothed_per_thousand": 3.985,
- "tests_per_case": 14.917,
- "positive_rate": 0.067,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-05",
- "total_cases": 13296.0,
- "new_cases": 481.0,
- "new_cases_smoothed": 463.429,
- "total_deaths": 21.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 7813.9,
- "new_cases_per_million": 282.678,
- "new_cases_smoothed_per_million": 272.351,
- "total_deaths_per_million": 12.341,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 0.504,
- "new_tests": 8785.0,
- "total_tests": 354122.0,
- "total_tests_per_thousand": 208.113,
- "new_tests_per_thousand": 5.163,
- "new_tests_smoothed": 7135.0,
- "new_tests_smoothed_per_thousand": 4.193,
- "tests_per_case": 15.395999999999999,
- "positive_rate": 0.065,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-06",
- "total_cases": 13835.0,
- "new_cases": 539.0,
- "new_cases_smoothed": 483.714,
- "total_deaths": 23.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 8130.664,
- "new_cases_per_million": 316.764,
- "new_cases_smoothed_per_million": 284.273,
- "total_deaths_per_million": 13.517,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 0.672,
- "new_tests": 7254.0,
- "total_tests": 361376.0,
- "total_tests_per_thousand": 212.376,
- "new_tests_per_thousand": 4.263,
- "new_tests_smoothed": 7400.0,
- "new_tests_smoothed_per_thousand": 4.349,
- "tests_per_case": 15.298,
- "positive_rate": 0.065,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-07",
- "total_cases": 14383.0,
- "new_cases": 548.0,
- "new_cases_smoothed": 512.857,
- "total_deaths": 24.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 8452.717,
- "new_cases_per_million": 322.053,
- "new_cases_smoothed_per_million": 301.4,
- "total_deaths_per_million": 14.105,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 0.588,
- "new_tests": 5680.0,
- "total_tests": 367056.0,
- "total_tests_per_thousand": 215.714,
- "new_tests_per_thousand": 3.338,
- "new_tests_smoothed": 7178.0,
- "new_tests_smoothed_per_thousand": 4.218,
- "tests_per_case": 13.995999999999999,
- "positive_rate": 0.071,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-08",
- "total_cases": 14763.0,
- "new_cases": 380.0,
- "new_cases_smoothed": 480.714,
- "total_deaths": 26.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 8676.039,
- "new_cases_per_million": 223.321,
- "new_cases_smoothed_per_million": 282.51,
- "total_deaths_per_million": 15.28,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 0.588,
- "new_tests": 7306.0,
- "total_tests": 374362.0,
- "total_tests_per_thousand": 220.008,
- "new_tests_per_thousand": 4.294,
- "new_tests_smoothed": 7314.0,
- "new_tests_smoothed_per_thousand": 4.298,
- "tests_per_case": 15.215,
- "positive_rate": 0.066,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-09",
- "total_cases": 15417.0,
- "new_cases": 654.0,
- "new_cases_smoothed": 516.143,
- "total_deaths": 27.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 9060.387,
- "new_cases_per_million": 384.348,
- "new_cases_smoothed_per_million": 303.331,
- "total_deaths_per_million": 15.868,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 0.672,
- "new_tests": 3873.0,
- "total_tests": 378235.0,
- "total_tests_per_thousand": 222.284,
- "new_tests_per_thousand": 2.276,
- "new_tests_smoothed": 6786.0,
- "new_tests_smoothed_per_thousand": 3.988,
- "tests_per_case": 13.148,
- "positive_rate": 0.076,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-10",
- "total_cases": 16200.0,
- "new_cases": 783.0,
- "new_cases_smoothed": 555.571,
- "total_deaths": 29.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 9520.546,
- "new_cases_per_million": 460.16,
- "new_cases_smoothed_per_million": 326.503,
- "total_deaths_per_million": 17.043,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 0.84,
- "new_tests": 7899.0,
- "total_tests": 386134.0,
- "total_tests_per_thousand": 226.926,
- "new_tests_per_thousand": 4.642,
- "new_tests_smoothed": 6909.0,
- "new_tests_smoothed_per_thousand": 4.06,
- "tests_per_case": 12.436,
- "positive_rate": 0.08,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-11",
- "total_cases": 16667.0,
- "new_cases": 467.0,
- "new_cases_smoothed": 550.286,
- "total_deaths": 32.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 9794.997,
- "new_cases_per_million": 274.45,
- "new_cases_smoothed_per_million": 323.396,
- "total_deaths_per_million": 18.806,
- "new_deaths_per_million": 1.763,
- "new_deaths_smoothed_per_million": 1.007,
- "new_tests": 7776.0,
- "total_tests": 393910.0,
- "total_tests_per_thousand": 231.496,
- "new_tests_per_thousand": 4.57,
- "new_tests_smoothed": 6939.0,
- "new_tests_smoothed_per_thousand": 4.078,
- "tests_per_case": 12.61,
- "positive_rate": 0.079,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-12",
- "total_cases": 16667.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 481.571,
- "total_deaths": 34.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 9794.997,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 283.014,
- "total_deaths_per_million": 19.981,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 1.091,
- "new_tests": 9126.0,
- "total_tests": 403036.0,
- "total_tests_per_thousand": 236.859,
- "new_tests_per_thousand": 5.363,
- "new_tests_smoothed": 6988.0,
- "new_tests_smoothed_per_thousand": 4.107,
- "tests_per_case": 14.511,
- "positive_rate": 0.069,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-13",
- "total_cases": 17713.0,
- "new_cases": 1046.0,
- "new_cases_smoothed": 554.0,
- "total_deaths": 36.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 10409.718,
- "new_cases_per_million": 614.722,
- "new_cases_smoothed_per_million": 325.579,
- "total_deaths_per_million": 21.157,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 1.091,
- "new_tests": 7806.0,
- "total_tests": 410842.0,
- "total_tests_per_thousand": 241.447,
- "new_tests_per_thousand": 4.587,
- "new_tests_smoothed": 7067.0,
- "new_tests_smoothed_per_thousand": 4.153,
- "tests_per_case": 12.755999999999998,
- "positive_rate": 0.078,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-14",
- "total_cases": 18227.0,
- "new_cases": 514.0,
- "new_cases_smoothed": 549.143,
- "total_deaths": 39.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 10711.79,
- "new_cases_per_million": 302.072,
- "new_cases_smoothed_per_million": 322.725,
- "total_deaths_per_million": 22.92,
- "new_deaths_per_million": 1.763,
- "new_deaths_smoothed_per_million": 1.259,
- "new_tests": 7571.0,
- "total_tests": 418413.0,
- "total_tests_per_thousand": 245.896,
- "new_tests_per_thousand": 4.449,
- "new_tests_smoothed": 7337.0,
- "new_tests_smoothed_per_thousand": 4.312,
- "tests_per_case": 13.360999999999999,
- "positive_rate": 0.075,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-15",
- "total_cases": 18544.0,
- "new_cases": 317.0,
- "new_cases_smoothed": 540.143,
- "total_deaths": 43.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 10898.087,
- "new_cases_per_million": 186.297,
- "new_cases_smoothed_per_million": 317.436,
- "total_deaths_per_million": 25.271,
- "new_deaths_per_million": 2.351,
- "new_deaths_smoothed_per_million": 1.427,
- "new_tests": 6779.0,
- "total_tests": 425192.0,
- "total_tests_per_thousand": 249.88,
- "new_tests_per_thousand": 3.984,
- "new_tests_smoothed": 7261.0,
- "new_tests_smoothed_per_thousand": 4.267,
- "tests_per_case": 13.443,
- "positive_rate": 0.07400000000000001,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-16",
- "total_cases": 19013.0,
- "new_cases": 469.0,
- "new_cases_smoothed": 513.714,
- "total_deaths": 46.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 11173.713,
- "new_cases_per_million": 275.626,
- "new_cases_smoothed_per_million": 301.904,
- "total_deaths_per_million": 27.034,
- "new_deaths_per_million": 1.763,
- "new_deaths_smoothed_per_million": 1.595,
- "new_tests": 12888.0,
- "total_tests": 438080.0,
- "total_tests_per_thousand": 257.454,
- "new_tests_per_thousand": 7.574,
- "new_tests_smoothed": 8549.0,
- "new_tests_smoothed_per_thousand": 5.024,
- "tests_per_case": 16.642,
- "positive_rate": 0.06,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-17",
- "total_cases": 19553.0,
- "new_cases": 540.0,
- "new_cases_smoothed": 479.0,
- "total_deaths": 47.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 11491.064,
- "new_cases_per_million": 317.352,
- "new_cases_smoothed_per_million": 281.503,
- "total_deaths_per_million": 27.621,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 1.511,
- "new_tests_smoothed": 8584.0,
- "new_tests_smoothed_per_thousand": 5.045,
- "tests_per_case": 17.921,
- "positive_rate": 0.055999999999999994,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-18",
- "total_cases": 19961.0,
- "new_cases": 408.0,
- "new_cases_smoothed": 470.571,
- "total_deaths": 49.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 11730.841,
- "new_cases_per_million": 239.777,
- "new_cases_smoothed_per_million": 276.549,
- "total_deaths_per_million": 28.797,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 1.427,
- "total_tests": 454368.0,
- "total_tests_per_thousand": 267.027,
- "new_tests_smoothed": 8637.0,
- "new_tests_smoothed_per_thousand": 5.076,
- "tests_per_case": 18.354,
- "positive_rate": 0.054000000000000006,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-19",
- "total_cases": 20430.0,
- "new_cases": 469.0,
- "new_cases_smoothed": 537.571,
- "total_deaths": 55.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 12006.467,
- "new_cases_per_million": 275.626,
- "new_cases_smoothed_per_million": 315.924,
- "total_deaths_per_million": 32.323,
- "new_deaths_per_million": 3.526,
- "new_deaths_smoothed_per_million": 1.763,
- "new_tests_smoothed": 8479.0,
- "new_tests_smoothed_per_thousand": 4.983,
- "tests_per_case": 15.773,
- "positive_rate": 0.063,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-20",
- "total_cases": 20916.0,
- "new_cases": 486.0,
- "new_cases_smoothed": 457.571,
- "total_deaths": 57.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 12292.083,
- "new_cases_per_million": 285.616,
- "new_cases_smoothed_per_million": 268.909,
- "total_deaths_per_million": 33.498,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 1.763,
- "total_tests": 470409.0,
- "total_tests_per_thousand": 276.454,
- "new_tests_smoothed": 8510.0,
- "new_tests_smoothed_per_thousand": 5.001,
- "tests_per_case": 18.598,
- "positive_rate": 0.054000000000000006,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-21",
- "total_cases": 21331.0,
- "new_cases": 415.0,
- "new_cases_smoothed": 443.429,
- "total_deaths": 60.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 12535.974,
- "new_cases_per_million": 243.891,
- "new_cases_smoothed_per_million": 260.598,
- "total_deaths_per_million": 35.261,
- "new_deaths_per_million": 1.763,
- "new_deaths_smoothed_per_million": 1.763,
- "new_tests_smoothed": 8521.0,
- "new_tests_smoothed_per_thousand": 5.008,
- "tests_per_case": 19.215999999999998,
- "positive_rate": 0.052000000000000005,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-22",
- "total_cases": 21764.0,
- "new_cases": 433.0,
- "new_cases_smoothed": 460.0,
- "total_deaths": 63.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 12790.443,
- "new_cases_per_million": 254.469,
- "new_cases_smoothed_per_million": 270.337,
- "total_deaths_per_million": 37.024,
- "new_deaths_per_million": 1.763,
- "new_deaths_smoothed_per_million": 1.679,
- "total_tests": 485715.0,
- "total_tests_per_thousand": 285.449,
- "new_tests_smoothed": 8646.0,
- "new_tests_smoothed_per_thousand": 5.081,
- "tests_per_case": 18.796,
- "positive_rate": 0.053,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-23",
- "total_cases": 22407.0,
- "new_cases": 643.0,
- "new_cases_smoothed": 484.857,
- "total_deaths": 65.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 13168.326,
- "new_cases_per_million": 377.883,
- "new_cases_smoothed_per_million": 284.945,
- "total_deaths_per_million": 38.2,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 1.595,
- "new_tests_smoothed": 7399.0,
- "new_tests_smoothed_per_thousand": 4.348,
- "tests_per_case": 15.26,
- "positive_rate": 0.066,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-24",
- "total_cases": 23062.0,
- "new_cases": 655.0,
- "new_cases_smoothed": 501.286,
- "total_deaths": 67.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 13553.262,
- "new_cases_per_million": 384.936,
- "new_cases_smoothed_per_million": 294.6,
- "total_deaths_per_million": 39.375,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 1.679,
- "total_tests": 494028.0,
- "total_tests_per_thousand": 290.334,
- "new_tests_smoothed": 6829.0,
- "new_tests_smoothed_per_thousand": 4.013,
- "tests_per_case": 13.623,
- "positive_rate": 0.073,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-25",
- "total_cases": 23570.0,
- "new_cases": 508.0,
- "new_cases_smoothed": 515.571,
- "total_deaths": 69.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 13851.807,
- "new_cases_per_million": 298.546,
- "new_cases_smoothed_per_million": 302.995,
- "total_deaths_per_million": 40.55,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 1.679,
- "new_tests": 8735.0,
- "total_tests": 502763.0,
- "total_tests_per_thousand": 295.468,
- "new_tests_per_thousand": 5.133,
- "new_tests_smoothed": 6914.0,
- "new_tests_smoothed_per_thousand": 4.063,
- "tests_per_case": 13.41,
- "positive_rate": 0.075,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-26",
- "total_cases": 24081.0,
- "new_cases": 511.0,
- "new_cases_smoothed": 521.571,
- "total_deaths": 71.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 14152.116,
- "new_cases_per_million": 300.309,
- "new_cases_smoothed_per_million": 306.521,
- "total_deaths_per_million": 41.726,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 1.343,
- "new_tests": 8695.0,
- "total_tests": 511458.0,
- "total_tests_per_thousand": 300.578,
- "new_tests_per_thousand": 5.11,
- "new_tests_smoothed": 7010.0,
- "new_tests_smoothed_per_thousand": 4.12,
- "tests_per_case": 13.44,
- "positive_rate": 0.07400000000000001,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-27",
- "total_cases": 24805.0,
- "new_cases": 724.0,
- "new_cases_smoothed": 555.571,
- "total_deaths": 78.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 14577.602,
- "new_cases_per_million": 425.486,
- "new_cases_smoothed_per_million": 326.503,
- "total_deaths_per_million": 45.84,
- "new_deaths_per_million": 4.114,
- "new_deaths_smoothed_per_million": 1.763,
- "new_tests": 9643.0,
- "total_tests": 521101.0,
- "total_tests_per_thousand": 306.245,
- "new_tests_per_thousand": 5.667,
- "new_tests_smoothed": 7242.0,
- "new_tests_smoothed_per_thousand": 4.256,
- "tests_per_case": 13.035,
- "positive_rate": 0.077,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-28",
- "total_cases": 25267.0,
- "new_cases": 462.0,
- "new_cases_smoothed": 562.286,
- "total_deaths": 78.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 14849.114,
- "new_cases_per_million": 271.512,
- "new_cases_smoothed_per_million": 330.449,
- "total_deaths_per_million": 45.84,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.511,
- "new_tests": 8141.0,
- "total_tests": 529242.0,
- "total_tests_per_thousand": 311.029,
- "new_tests_per_thousand": 4.784,
- "new_tests_smoothed": 7311.0,
- "new_tests_smoothed_per_thousand": 4.297,
- "tests_per_case": 13.002,
- "positive_rate": 0.077,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-29",
- "total_cases": 25705.0,
- "new_cases": 438.0,
- "new_cases_smoothed": 563.0,
- "total_deaths": 83.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 15106.521,
- "new_cases_per_million": 257.407,
- "new_cases_smoothed_per_million": 330.868,
- "total_deaths_per_million": 48.778,
- "new_deaths_per_million": 2.938,
- "new_deaths_smoothed_per_million": 1.679,
- "new_tests": 7274.0,
- "total_tests": 536516.0,
- "total_tests_per_thousand": 315.304,
- "new_tests_per_thousand": 4.275,
- "new_tests_smoothed": 7257.0,
- "new_tests_smoothed_per_thousand": 4.265,
- "tests_per_case": 12.89,
- "positive_rate": 0.078,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-30",
- "total_cases": 26239.0,
- "new_cases": 534.0,
- "new_cases_smoothed": 547.429,
- "total_deaths": 84.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 15420.347,
- "new_cases_per_million": 313.825,
- "new_cases_smoothed_per_million": 321.717,
- "total_deaths_per_million": 49.366,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 1.595,
- "new_tests": 8609.0,
- "total_tests": 545125.0,
- "total_tests_per_thousand": 320.363,
- "new_tests_per_thousand": 5.059,
- "new_tests_smoothed": 7893.0,
- "new_tests_smoothed_per_thousand": 4.639,
- "tests_per_case": 14.418,
- "positive_rate": 0.069,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-07-01",
- "total_cases": 26758.0,
- "new_cases": 519.0,
- "new_cases_smoothed": 528.0,
- "total_deaths": 87.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 15725.357,
- "new_cases_per_million": 305.01,
- "new_cases_smoothed_per_million": 310.299,
- "total_deaths_per_million": 51.129,
- "new_deaths_per_million": 1.763,
- "new_deaths_smoothed_per_million": 1.679,
- "new_tests": 9114.0,
- "total_tests": 554239.0,
- "total_tests_per_thousand": 325.72,
- "new_tests_per_thousand": 5.356,
- "new_tests_smoothed": 8602.0,
- "new_tests_smoothed_per_thousand": 5.055,
- "tests_per_case": 16.292,
- "positive_rate": 0.061,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-07-02",
- "total_cases": 27414.0,
- "new_cases": 656.0,
- "new_cases_smoothed": 549.143,
- "total_deaths": 92.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 16110.88,
- "new_cases_per_million": 385.523,
- "new_cases_smoothed_per_million": 322.725,
- "total_deaths_per_million": 54.067,
- "new_deaths_per_million": 2.938,
- "new_deaths_smoothed_per_million": 1.931,
- "new_tests": 10126.0,
- "total_tests": 564365.0,
- "total_tests_per_thousand": 331.671,
- "new_tests_per_thousand": 5.951,
- "new_tests_smoothed": 8800.0,
- "new_tests_smoothed_per_thousand": 5.172,
- "tests_per_case": 16.025,
- "positive_rate": 0.062,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-07-03",
- "total_cases": 27837.0,
- "new_cases": 423.0,
- "new_cases_smoothed": 536.571,
- "total_deaths": 94.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 16359.472,
- "new_cases_per_million": 248.592,
- "new_cases_smoothed_per_million": 315.337,
- "total_deaths_per_million": 55.243,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 1.931,
- "new_tests": 9740.0,
- "total_tests": 574105.0,
- "total_tests_per_thousand": 337.395,
- "new_tests_per_thousand": 5.724,
- "new_tests_smoothed": 8950.0,
- "new_tests_smoothed_per_thousand": 5.26,
- "tests_per_case": 16.68,
- "positive_rate": 0.06,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-07-04",
- "total_cases": 28410.0,
- "new_cases": 573.0,
- "new_cases_smoothed": 515.0,
- "total_deaths": 95.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 16696.218,
- "new_cases_per_million": 336.745,
- "new_cases_smoothed_per_million": 302.659,
- "total_deaths_per_million": 55.83,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 1.427,
- "new_tests": 9965.0,
- "total_tests": 584070.0,
- "total_tests_per_thousand": 343.251,
- "new_tests_per_thousand": 5.856,
- "new_tests_smoothed": 8996.0,
- "new_tests_smoothed_per_thousand": 5.287,
- "tests_per_case": 17.468,
- "positive_rate": 0.057,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-07-05",
- "total_cases": 28857.0,
- "new_cases": 447.0,
- "new_cases_smoothed": 512.857,
- "total_deaths": 97.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 16958.914,
- "new_cases_per_million": 262.697,
- "new_cases_smoothed_per_million": 301.4,
- "total_deaths_per_million": 57.006,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 1.595,
- "new_tests": 18081.0,
- "total_tests": 602151.0,
- "total_tests_per_thousand": 353.877,
- "new_tests_per_thousand": 10.626,
- "new_tests_smoothed": 10416.0,
- "new_tests_smoothed_per_thousand": 6.121,
- "tests_per_case": 20.31,
- "positive_rate": 0.049,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-07-06",
- "total_cases": 29367.0,
- "new_cases": 510.0,
- "new_cases_smoothed": 523.143,
- "total_deaths": 97.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 17258.635,
- "new_cases_per_million": 299.721,
- "new_cases_smoothed_per_million": 307.445,
- "total_deaths_per_million": 57.006,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.175,
- "new_tests": 9945.0,
- "total_tests": 612096.0,
- "total_tests_per_thousand": 359.722,
- "new_tests_per_thousand": 5.845,
- "new_tests_smoothed": 10797.0,
- "new_tests_smoothed_per_thousand": 6.345,
- "tests_per_case": 20.639,
- "positive_rate": 0.048,
- "tests_units": "units unclear",
- "stringency_index": 75.0
- },
- {
- "date": "2020-07-07",
- "total_cases": 29821.0,
- "new_cases": 454.0,
- "new_cases_smoothed": 511.714,
- "total_deaths": 98.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 17525.445,
- "new_cases_per_million": 266.81,
- "new_cases_smoothed_per_million": 300.728,
- "total_deaths_per_million": 57.593,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 1.175,
- "new_tests_smoothed": 10900.0,
- "new_tests_smoothed_per_thousand": 6.406,
- "tests_per_case": 21.301,
- "positive_rate": 0.047,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-07-08",
- "total_cases": 30321.0,
- "new_cases": 500.0,
- "new_cases_smoothed": 509.0,
- "total_deaths": 98.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 17819.289,
- "new_cases_per_million": 293.844,
- "new_cases_smoothed_per_million": 299.133,
- "total_deaths_per_million": 57.593,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.924,
- "total_tests": 630753.0,
- "total_tests_per_thousand": 370.686,
- "new_tests_smoothed": 10931.0,
- "new_tests_smoothed_per_thousand": 6.424,
- "tests_per_case": 21.475,
- "positive_rate": 0.047,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-07-09",
- "total_cases": 30931.0,
- "new_cases": 610.0,
- "new_cases_smoothed": 502.429,
- "total_deaths": 100.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 18177.779,
- "new_cases_per_million": 358.49,
- "new_cases_smoothed_per_million": 295.271,
- "total_deaths_per_million": 58.769,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 0.672,
- "new_tests_smoothed": 10160.0,
- "new_tests_smoothed_per_thousand": 5.971,
- "tests_per_case": 20.222,
- "positive_rate": 0.049,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-07-10",
- "total_cases": 31528.0,
- "new_cases": 597.0,
- "new_cases_smoothed": 527.286,
- "total_deaths": 103.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 18528.629,
- "new_cases_per_million": 350.85,
- "new_cases_smoothed_per_million": 309.88,
- "total_deaths_per_million": 60.532,
- "new_deaths_per_million": 1.763,
- "new_deaths_smoothed_per_million": 0.756,
- "total_tests": 640219.0,
- "total_tests_per_thousand": 376.249,
- "new_tests_smoothed": 9445.0,
- "new_tests_smoothed_per_thousand": 5.551,
- "tests_per_case": 17.912,
- "positive_rate": 0.055999999999999994,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-07-11",
- "total_cases": 32039.0,
- "new_cases": 511.0,
- "new_cases_smoothed": 518.429,
- "total_deaths": 104.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 18828.938,
- "new_cases_per_million": 300.309,
- "new_cases_smoothed_per_million": 304.674,
- "total_deaths_per_million": 61.12,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 0.756,
- "new_tests": 8801.0,
- "total_tests": 649020.0,
- "total_tests_per_thousand": 381.421,
- "new_tests_per_thousand": 5.172,
- "new_tests_smoothed": 9279.0,
- "new_tests_smoothed_per_thousand": 5.453,
- "tests_per_case": 17.898,
- "positive_rate": 0.055999999999999994,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-07-12",
- "total_cases": 32470.0,
- "new_cases": 431.0,
- "new_cases_smoothed": 516.143,
- "total_deaths": 104.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 19082.231,
- "new_cases_per_million": 253.294,
- "new_cases_smoothed_per_million": 303.331,
- "total_deaths_per_million": 61.12,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.588,
- "new_tests": 7639.0,
- "total_tests": 656659.0,
- "total_tests_per_thousand": 385.911,
- "new_tests_per_thousand": 4.489,
- "new_tests_smoothed": 7787.0,
- "new_tests_smoothed_per_thousand": 4.576,
- "tests_per_case": 15.087,
- "positive_rate": 0.066,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-07-13",
- "total_cases": 32941.0,
- "new_cases": 471.0,
- "new_cases_smoothed": 510.571,
- "total_deaths": 109.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 19359.032,
- "new_cases_per_million": 276.801,
- "new_cases_smoothed_per_million": 300.057,
- "total_deaths_per_million": 64.058,
- "new_deaths_per_million": 2.938,
- "new_deaths_smoothed_per_million": 1.007,
- "new_tests": 9589.0,
- "total_tests": 666248.0,
- "total_tests_per_thousand": 391.546,
- "new_tests_per_thousand": 5.635,
- "new_tests_smoothed": 7736.0,
- "new_tests_smoothed_per_thousand": 4.546,
- "tests_per_case": 15.152000000000001,
- "positive_rate": 0.066,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-07-14",
- "total_cases": 33476.0,
- "new_cases": 535.0,
- "new_cases_smoothed": 522.143,
- "total_deaths": 109.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 19673.445,
- "new_cases_per_million": 314.413,
- "new_cases_smoothed_per_million": 306.857,
- "total_deaths_per_million": 64.058,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.924,
- "new_tests": 9203.0,
- "total_tests": 675451.0,
- "total_tests_per_thousand": 396.954,
- "new_tests_per_thousand": 5.408,
- "new_tests_smoothed": 7718.0,
- "new_tests_smoothed_per_thousand": 4.536,
- "tests_per_case": 14.780999999999999,
- "positive_rate": 0.068,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-07-15",
- "total_cases": 34078.0,
- "new_cases": 602.0,
- "new_cases_smoothed": 536.714,
- "total_deaths": 111.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 20027.233,
- "new_cases_per_million": 353.788,
- "new_cases_smoothed_per_million": 315.421,
- "total_deaths_per_million": 65.233,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 1.091,
- "new_tests": 9867.0,
- "total_tests": 685318.0,
- "total_tests_per_thousand": 402.753,
- "new_tests_per_thousand": 5.799,
- "new_tests_smoothed": 7795.0,
- "new_tests_smoothed_per_thousand": 4.581,
- "tests_per_case": 14.524000000000001,
- "positive_rate": 0.069,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-07-16",
- "total_cases": 34560.0,
- "new_cases": 482.0,
- "new_cases_smoothed": 518.429,
- "total_deaths": 117.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 20310.499,
- "new_cases_per_million": 283.266,
- "new_cases_smoothed_per_million": 304.674,
- "total_deaths_per_million": 68.76,
- "new_deaths_per_million": 3.526,
- "new_deaths_smoothed_per_million": 1.427,
- "new_tests": 8221.0,
- "total_tests": 693539.0,
- "total_tests_per_thousand": 407.585,
- "new_tests_per_thousand": 4.831,
- "new_tests_smoothed": 8293.0,
- "new_tests_smoothed_per_thousand": 4.874,
- "tests_per_case": 15.995999999999999,
- "positive_rate": 0.063,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-07-17",
- "total_cases": 35084.0,
- "new_cases": 524.0,
- "new_cases_smoothed": 508.0,
- "total_deaths": 121.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 20618.448,
- "new_cases_per_million": 307.949,
- "new_cases_smoothed_per_million": 298.546,
- "total_deaths_per_million": 71.11,
- "new_deaths_per_million": 2.351,
- "new_deaths_smoothed_per_million": 1.511,
- "new_tests": 9463.0,
- "total_tests": 703002.0,
- "total_tests_per_thousand": 413.146,
- "new_tests_per_thousand": 5.561,
- "new_tests_smoothed": 8969.0,
- "new_tests_smoothed_per_thousand": 5.271,
- "tests_per_case": 17.656,
- "positive_rate": 0.057,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-07-18",
- "total_cases": 35473.0,
- "new_cases": 389.0,
- "new_cases_smoothed": 490.571,
- "total_deaths": 124.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 20847.058,
- "new_cases_per_million": 228.611,
- "new_cases_smoothed_per_million": 288.303,
- "total_deaths_per_million": 72.873,
- "new_deaths_per_million": 1.763,
- "new_deaths_smoothed_per_million": 1.679,
- "new_tests": 7684.0,
- "total_tests": 710686.0,
- "total_tests_per_thousand": 417.662,
- "new_tests_per_thousand": 4.516,
- "new_tests_smoothed": 8809.0,
- "new_tests_smoothed_per_thousand": 5.177,
- "tests_per_case": 17.957,
- "positive_rate": 0.055999999999999994,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-07-19",
- "total_cases": 36004.0,
- "new_cases": 531.0,
- "new_cases_smoothed": 504.857,
- "total_deaths": 124.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 21159.121,
- "new_cases_per_million": 312.062,
- "new_cases_smoothed_per_million": 296.699,
- "total_deaths_per_million": 72.873,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.679,
- "new_tests": 7037.0,
- "total_tests": 717723.0,
- "total_tests_per_thousand": 421.797,
- "new_tests_per_thousand": 4.136,
- "new_tests_smoothed": 8723.0,
- "new_tests_smoothed_per_thousand": 5.126,
- "tests_per_case": 17.278,
- "positive_rate": 0.057999999999999996,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-07-20",
- "total_cases": 36422.0,
- "new_cases": 418.0,
- "new_cases_smoothed": 497.286,
- "total_deaths": 126.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 21404.774,
- "new_cases_per_million": 245.654,
- "new_cases_smoothed_per_million": 292.249,
- "total_deaths_per_million": 74.049,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 1.427,
- "new_tests": 8417.0,
- "total_tests": 726140.0,
- "total_tests_per_thousand": 426.744,
- "new_tests_per_thousand": 4.947,
- "new_tests_smoothed": 8556.0,
- "new_tests_smoothed_per_thousand": 5.028,
- "tests_per_case": 17.205,
- "positive_rate": 0.057999999999999996,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-07-21",
- "total_cases": 36936.0,
- "new_cases": 514.0,
- "new_cases_smoothed": 494.286,
- "total_deaths": 128.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 21706.846,
- "new_cases_per_million": 302.072,
- "new_cases_smoothed_per_million": 290.486,
- "total_deaths_per_million": 75.224,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 1.595,
- "new_tests": 18554.0,
- "total_tests": 744694.0,
- "total_tests_per_thousand": 437.648,
- "new_tests_per_thousand": 10.904,
- "new_tests_smoothed": 9892.0,
- "new_tests_smoothed_per_thousand": 5.813,
- "tests_per_case": 20.012999999999998,
- "positive_rate": 0.05,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-07-22",
- "total_cases": 37316.0,
- "new_cases": 380.0,
- "new_cases_smoothed": 462.571,
- "total_deaths": 129.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 21930.167,
- "new_cases_per_million": 223.321,
- "new_cases_smoothed_per_million": 271.848,
- "total_deaths_per_million": 75.812,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 1.511,
- "new_tests_smoothed": 9628.0,
- "new_tests_smoothed_per_thousand": 5.658,
- "tests_per_case": 20.814,
- "positive_rate": 0.048,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-07-23",
- "total_cases": 37637.0,
- "new_cases": 321.0,
- "new_cases_smoothed": 439.571,
- "total_deaths": 130.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 22118.815,
- "new_cases_per_million": 188.648,
- "new_cases_smoothed_per_million": 258.331,
- "total_deaths_per_million": 76.399,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 1.091,
- "total_tests": 760733.0,
- "total_tests_per_thousand": 447.074,
- "new_tests_smoothed": 9599.0,
- "new_tests_smoothed_per_thousand": 5.641,
- "tests_per_case": 21.837,
- "positive_rate": 0.046,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-07-24",
- "total_cases": 37996.0,
- "new_cases": 359.0,
- "new_cases_smoothed": 416.0,
- "total_deaths": 134.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 22329.795,
- "new_cases_per_million": 210.98,
- "new_cases_smoothed_per_million": 244.478,
- "total_deaths_per_million": 78.75,
- "new_deaths_per_million": 2.351,
- "new_deaths_smoothed_per_million": 1.091,
- "new_tests_smoothed": 9629.0,
- "new_tests_smoothed_per_thousand": 5.659,
- "tests_per_case": 23.147,
- "positive_rate": 0.043,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-07-25",
- "total_cases": 38458.0,
- "new_cases": 462.0,
- "new_cases_smoothed": 426.429,
- "total_deaths": 136.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 22601.307,
- "new_cases_per_million": 271.512,
- "new_cases_smoothed_per_million": 250.607,
- "total_deaths_per_million": 79.926,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 1.007,
- "total_tests": 780081.0,
- "total_tests_per_thousand": 458.444,
- "new_tests_smoothed": 9914.0,
- "new_tests_smoothed_per_thousand": 5.826,
- "tests_per_case": 23.249000000000002,
- "positive_rate": 0.043,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-07-26",
- "total_cases": 38747.0,
- "new_cases": 289.0,
- "new_cases_smoothed": 391.857,
- "total_deaths": 137.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 22771.149,
- "new_cases_per_million": 169.842,
- "new_cases_smoothed_per_million": 230.29,
- "total_deaths_per_million": 80.513,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 1.091,
- "new_tests_smoothed": 10245.0,
- "new_tests_smoothed_per_thousand": 6.021,
- "tests_per_case": 26.145,
- "positive_rate": 0.038,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-07-27",
- "total_cases": 39131.0,
- "new_cases": 384.0,
- "new_cases_smoothed": 387.0,
- "total_deaths": 140.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 22996.821,
- "new_cases_per_million": 225.672,
- "new_cases_smoothed_per_million": 227.435,
- "total_deaths_per_million": 82.276,
- "new_deaths_per_million": 1.763,
- "new_deaths_smoothed_per_million": 1.175,
- "total_tests": 798799.0,
- "total_tests_per_thousand": 469.445,
- "new_tests_smoothed": 10380.0,
- "new_tests_smoothed_per_thousand": 6.1,
- "tests_per_case": 26.822,
- "positive_rate": 0.037000000000000005,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-07-28",
- "total_cases": 39482.0,
- "new_cases": 351.0,
- "new_cases_smoothed": 363.714,
- "total_deaths": 141.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 23203.1,
- "new_cases_per_million": 206.279,
- "new_cases_smoothed_per_million": 213.751,
- "total_deaths_per_million": 82.864,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 1.091,
- "new_tests": 9477.0,
- "total_tests": 808276.0,
- "total_tests_per_thousand": 475.014,
- "new_tests_per_thousand": 5.57,
- "new_tests_smoothed": 9083.0,
- "new_tests_smoothed_per_thousand": 5.338,
- "tests_per_case": 24.973000000000003,
- "positive_rate": 0.04,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-07-29",
- "total_cases": 39921.0,
- "new_cases": 439.0,
- "new_cases_smoothed": 372.143,
- "total_deaths": 141.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 23461.095,
- "new_cases_per_million": 257.995,
- "new_cases_smoothed_per_million": 218.704,
- "total_deaths_per_million": 82.864,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.007,
- "new_tests": 9332.0,
- "total_tests": 817608.0,
- "total_tests_per_thousand": 480.498,
- "new_tests_per_thousand": 5.484,
- "new_tests_smoothed": 9271.0,
- "new_tests_smoothed_per_thousand": 5.448,
- "tests_per_case": 24.912,
- "positive_rate": 0.04,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-07-30",
- "total_cases": 40311.0,
- "new_cases": 390.0,
- "new_cases_smoothed": 382.0,
- "total_deaths": 144.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 23690.293,
- "new_cases_per_million": 229.198,
- "new_cases_smoothed_per_million": 224.497,
- "total_deaths_per_million": 84.627,
- "new_deaths_per_million": 1.763,
- "new_deaths_smoothed_per_million": 1.175,
- "new_tests": 9064.0,
- "total_tests": 826672.0,
- "total_tests_per_thousand": 485.825,
- "new_tests_per_thousand": 5.327,
- "new_tests_smoothed": 9420.0,
- "new_tests_smoothed_per_thousand": 5.536,
- "tests_per_case": 24.66,
- "positive_rate": 0.040999999999999995,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-07-31",
- "total_cases": 40755.0,
- "new_cases": 444.0,
- "new_cases_smoothed": 394.143,
- "total_deaths": 146.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 23951.227,
- "new_cases_per_million": 260.933,
- "new_cases_smoothed_per_million": 231.633,
- "total_deaths_per_million": 85.802,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 1.007,
- "new_tests": 4326.0,
- "total_tests": 830998.0,
- "total_tests_per_thousand": 488.368,
- "new_tests_per_thousand": 2.542,
- "new_tests_smoothed": 8656.0,
- "new_tests_smoothed_per_thousand": 5.087,
- "tests_per_case": 21.962,
- "positive_rate": 0.046,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-08-01",
- "total_cases": 40982.0,
- "new_cases": 227.0,
- "new_cases_smoothed": 360.571,
- "total_deaths": 147.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 24084.632,
- "new_cases_per_million": 133.405,
- "new_cases_smoothed_per_million": 211.904,
- "total_deaths_per_million": 86.39,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 0.924,
- "new_tests": 4569.0,
- "total_tests": 835567.0,
- "total_tests_per_thousand": 491.053,
- "new_tests_per_thousand": 2.685,
- "new_tests_smoothed": 7927.0,
- "new_tests_smoothed_per_thousand": 4.659,
- "tests_per_case": 21.985,
- "positive_rate": 0.045,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-08-02",
- "total_cases": 41190.0,
- "new_cases": 208.0,
- "new_cases_smoothed": 349.0,
- "total_deaths": 147.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 24206.871,
- "new_cases_per_million": 122.239,
- "new_cases_smoothed_per_million": 205.103,
- "total_deaths_per_million": 86.39,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.84,
- "new_tests": 7425.0,
- "total_tests": 842992.0,
- "total_tests_per_thousand": 495.416,
- "new_tests_per_thousand": 4.364,
- "new_tests_smoothed": 7650.0,
- "new_tests_smoothed_per_thousand": 4.496,
- "tests_per_case": 21.92,
- "positive_rate": 0.046,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-08-03",
- "total_cases": 41536.0,
- "new_cases": 346.0,
- "new_cases_smoothed": 343.571,
- "total_deaths": 147.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 24410.211,
- "new_cases_per_million": 203.34,
- "new_cases_smoothed_per_million": 201.913,
- "total_deaths_per_million": 86.39,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.588,
- "new_tests": 7656.0,
- "total_tests": 850648.0,
- "total_tests_per_thousand": 499.916,
- "new_tests_per_thousand": 4.499,
- "new_tests_smoothed": 7407.0,
- "new_tests_smoothed_per_thousand": 4.353,
- "tests_per_case": 21.559,
- "positive_rate": 0.046,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-08-04",
- "total_cases": 41835.0,
- "new_cases": 299.0,
- "new_cases_smoothed": 336.143,
- "total_deaths": 150.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 24585.93,
- "new_cases_per_million": 175.719,
- "new_cases_smoothed_per_million": 197.547,
- "total_deaths_per_million": 88.153,
- "new_deaths_per_million": 1.763,
- "new_deaths_smoothed_per_million": 0.756,
- "new_tests": 7601.0,
- "total_tests": 858249.0,
- "total_tests_per_thousand": 504.383,
- "new_tests_per_thousand": 4.467,
- "new_tests_smoothed": 7139.0,
- "new_tests_smoothed_per_thousand": 4.196,
- "tests_per_case": 21.238000000000003,
- "positive_rate": 0.047,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-08-05",
- "total_cases": 42132.0,
- "new_cases": 297.0,
- "new_cases_smoothed": 315.857,
- "total_deaths": 151.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 24760.473,
- "new_cases_per_million": 174.543,
- "new_cases_smoothed_per_million": 185.625,
- "total_deaths_per_million": 88.741,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 0.84,
- "new_tests_smoothed": 6469.0,
- "new_tests_smoothed_per_thousand": 3.802,
- "tests_per_case": 20.480999999999998,
- "positive_rate": 0.049,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-08-06",
- "total_cases": 42514.0,
- "new_cases": 382.0,
- "new_cases_smoothed": 314.714,
- "total_deaths": 154.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 24984.97,
- "new_cases_per_million": 224.497,
- "new_cases_smoothed_per_million": 184.954,
- "total_deaths_per_million": 90.504,
- "new_deaths_per_million": 1.763,
- "new_deaths_smoothed_per_million": 0.84,
- "total_tests": 867534.0,
- "total_tests_per_thousand": 509.839,
- "new_tests_smoothed": 5837.0,
- "new_tests_smoothed_per_thousand": 3.43,
- "tests_per_case": 18.547,
- "positive_rate": 0.054000000000000006,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-08-07",
- "total_cases": 42889.0,
- "new_cases": 375.0,
- "new_cases_smoothed": 304.857,
- "total_deaths": 156.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 25205.353,
- "new_cases_per_million": 220.383,
- "new_cases_smoothed_per_million": 179.161,
- "total_deaths_per_million": 91.679,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 0.84,
- "new_tests": 9166.0,
- "total_tests": 876700.0,
- "total_tests_per_thousand": 515.226,
- "new_tests_per_thousand": 5.387,
- "new_tests_smoothed": 6529.0,
- "new_tests_smoothed_per_thousand": 3.837,
- "tests_per_case": 21.416999999999998,
- "positive_rate": 0.047,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-08-08",
- "total_cases": 43307.0,
- "new_cases": 418.0,
- "new_cases_smoothed": 332.143,
- "total_deaths": 159.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 25451.007,
- "new_cases_per_million": 245.654,
- "new_cases_smoothed_per_million": 195.196,
- "total_deaths_per_million": 93.442,
- "new_deaths_per_million": 1.763,
- "new_deaths_smoothed_per_million": 1.007,
- "new_tests": 9395.0,
- "total_tests": 886095.0,
- "total_tests_per_thousand": 520.747,
- "new_tests_per_thousand": 5.521,
- "new_tests_smoothed": 7218.0,
- "new_tests_smoothed_per_thousand": 4.242,
- "tests_per_case": 21.732,
- "positive_rate": 0.046,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-08-09",
- "total_cases": 43629.0,
- "new_cases": 322.0,
- "new_cases_smoothed": 348.429,
- "total_deaths": 161.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 25640.242,
- "new_cases_per_million": 189.236,
- "new_cases_smoothed_per_million": 204.767,
- "total_deaths_per_million": 94.618,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 1.175,
- "new_tests": 6831.0,
- "total_tests": 892926.0,
- "total_tests_per_thousand": 524.762,
- "new_tests_per_thousand": 4.014,
- "new_tests_smoothed": 7133.0,
- "new_tests_smoothed_per_thousand": 4.192,
- "tests_per_case": 20.472,
- "positive_rate": 0.049,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-08-10",
- "total_cases": 44011.0,
- "new_cases": 382.0,
- "new_cases_smoothed": 353.571,
- "total_deaths": 162.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 25864.739,
- "new_cases_per_million": 224.497,
- "new_cases_smoothed_per_million": 207.79,
- "total_deaths_per_million": 95.205,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 1.259,
- "new_tests": 9133.0,
- "total_tests": 902059.0,
- "total_tests_per_thousand": 530.129,
- "new_tests_per_thousand": 5.367,
- "new_tests_smoothed": 7344.0,
- "new_tests_smoothed_per_thousand": 4.316,
- "tests_per_case": 20.771,
- "positive_rate": 0.048,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-08-11",
- "total_cases": 44397.0,
- "new_cases": 386.0,
- "new_cases_smoothed": 366.0,
- "total_deaths": 163.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 26091.586,
- "new_cases_per_million": 226.848,
- "new_cases_smoothed_per_million": 215.094,
- "total_deaths_per_million": 95.793,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 1.091,
- "new_tests": 10052.0,
- "total_tests": 912111.0,
- "total_tests_per_thousand": 536.037,
- "new_tests_per_thousand": 5.907,
- "new_tests_smoothed": 7695.0,
- "new_tests_smoothed_per_thousand": 4.522,
- "tests_per_case": 21.025,
- "positive_rate": 0.048,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-08-12",
- "total_cases": 44804.0,
- "new_cases": 407.0,
- "new_cases_smoothed": 381.714,
- "total_deaths": 165.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 26330.776,
- "new_cases_per_million": 239.189,
- "new_cases_smoothed_per_million": 224.329,
- "total_deaths_per_million": 96.969,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 1.175,
- "new_tests": 21651.0,
- "total_tests": 933762.0,
- "total_tests_per_thousand": 548.761,
- "new_tests_per_thousand": 12.724,
- "new_tests_smoothed": 10124.0,
- "new_tests_smoothed_per_thousand": 5.95,
- "tests_per_case": 26.522,
- "positive_rate": 0.038,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-08-13",
- "total_cases": 45264.0,
- "new_cases": 460.0,
- "new_cases_smoothed": 392.857,
- "total_deaths": 166.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 26601.112,
- "new_cases_per_million": 270.337,
- "new_cases_smoothed_per_million": 230.877,
- "total_deaths_per_million": 97.556,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 1.007,
- "new_tests_smoothed": 10249.0,
- "new_tests_smoothed_per_thousand": 6.023,
- "tests_per_case": 26.088,
- "positive_rate": 0.038,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-08-14",
- "total_cases": 45726.0,
- "new_cases": 462.0,
- "new_cases_smoothed": 405.286,
- "total_deaths": 167.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 26872.624,
- "new_cases_per_million": 271.512,
- "new_cases_smoothed_per_million": 238.182,
- "total_deaths_per_million": 98.144,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 0.924,
- "total_tests": 944798.0,
- "total_tests_per_thousand": 555.246,
- "new_tests_smoothed": 9728.0,
- "new_tests_smoothed_per_thousand": 5.717,
- "tests_per_case": 24.003,
- "positive_rate": 0.042,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-08-15",
- "total_cases": 46052.0,
- "new_cases": 326.0,
- "new_cases_smoothed": 392.143,
- "total_deaths": 168.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 27064.21,
- "new_cases_per_million": 191.586,
- "new_cases_smoothed_per_million": 230.458,
- "total_deaths_per_million": 98.732,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 0.756,
- "new_tests": 9394.0,
- "total_tests": 954192.0,
- "total_tests_per_thousand": 560.767,
- "new_tests_per_thousand": 5.521,
- "new_tests_smoothed": 9728.0,
- "new_tests_smoothed_per_thousand": 5.717,
- "tests_per_case": 24.807,
- "positive_rate": 0.04,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-08-16",
- "total_cases": 46430.0,
- "new_cases": 378.0,
- "new_cases_smoothed": 400.143,
- "total_deaths": 170.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 27286.356,
- "new_cases_per_million": 222.146,
- "new_cases_smoothed_per_million": 235.159,
- "total_deaths_per_million": 99.907,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 0.756,
- "new_tests": 8142.0,
- "total_tests": 962334.0,
- "total_tests_per_thousand": 565.552,
- "new_tests_per_thousand": 4.785,
- "new_tests_smoothed": 9915.0,
- "new_tests_smoothed_per_thousand": 5.827,
- "tests_per_case": 24.779,
- "positive_rate": 0.04,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-08-17",
- "total_cases": 46430.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 345.571,
- "total_deaths": 170.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 27286.356,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 203.088,
- "total_deaths_per_million": 99.907,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.672,
- "new_tests": 9669.0,
- "total_tests": 972003.0,
- "total_tests_per_thousand": 571.235,
- "new_tests_per_thousand": 5.682,
- "new_tests_smoothed": 9992.0,
- "new_tests_smoothed_per_thousand": 5.872,
- "tests_per_case": 28.914,
- "positive_rate": 0.035,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-08-18",
- "total_cases": 47185.0,
- "new_cases": 755.0,
- "new_cases_smoothed": 398.286,
- "total_deaths": 173.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 27730.061,
- "new_cases_per_million": 443.704,
- "new_cases_smoothed_per_million": 234.068,
- "total_deaths_per_million": 101.67,
- "new_deaths_per_million": 1.763,
- "new_deaths_smoothed_per_million": 0.84,
- "new_tests": 9205.0,
- "total_tests": 981208.0,
- "total_tests_per_thousand": 576.644,
- "new_tests_per_thousand": 5.41,
- "new_tests_smoothed": 9871.0,
- "new_tests_smoothed_per_thousand": 5.801,
- "tests_per_case": 24.784000000000002,
- "positive_rate": 0.04,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-08-19",
- "total_cases": 47185.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 340.143,
- "total_deaths": 175.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 27730.061,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 199.898,
- "total_deaths_per_million": 102.845,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 0.84,
- "new_tests": 19579.0,
- "total_tests": 1000787.0,
- "total_tests_per_thousand": 588.151,
- "new_tests_per_thousand": 11.506,
- "new_tests_smoothed": 9575.0,
- "new_tests_smoothed_per_thousand": 5.627,
- "tests_per_case": 28.15,
- "positive_rate": 0.036000000000000004,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-08-20",
- "total_cases": 47185.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 274.429,
- "total_deaths": 175.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 27730.061,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 161.278,
- "total_deaths_per_million": 102.845,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.756,
- "new_tests_smoothed": 9574.0,
- "new_tests_smoothed_per_thousand": 5.627,
- "tests_per_case": 34.887,
- "positive_rate": 0.028999999999999998,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-08-21",
- "total_cases": 47950.0,
- "new_cases": 765.0,
- "new_cases_smoothed": 317.714,
- "total_deaths": 179.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 28179.642,
- "new_cases_per_million": 449.581,
- "new_cases_smoothed_per_million": 186.717,
- "total_deaths_per_million": 105.196,
- "new_deaths_per_million": 2.351,
- "new_deaths_smoothed_per_million": 1.007,
- "total_tests": 1011805.0,
- "total_tests_per_thousand": 594.626,
- "new_tests_smoothed": 9572.0,
- "new_tests_smoothed_per_thousand": 5.625,
- "tests_per_case": 30.128,
- "positive_rate": 0.033,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-08-22",
- "total_cases": 48303.0,
- "new_cases": 353.0,
- "new_cases_smoothed": 321.571,
- "total_deaths": 179.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 28387.096,
- "new_cases_per_million": 207.454,
- "new_cases_smoothed_per_million": 188.984,
- "total_deaths_per_million": 105.196,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.924,
- "new_tests": 8998.0,
- "total_tests": 1020803.0,
- "total_tests_per_thousand": 599.914,
- "new_tests_per_thousand": 5.288,
- "new_tests_smoothed": 9516.0,
- "new_tests_smoothed_per_thousand": 5.592,
- "tests_per_case": 29.592,
- "positive_rate": 0.034,
- "tests_units": "units unclear",
- "stringency_index": 69.44
- },
- {
- "date": "2020-08-23",
- "total_cases": 49038.0,
- "new_cases": 735.0,
- "new_cases_smoothed": 372.571,
- "total_deaths": 183.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 28819.047,
- "new_cases_per_million": 431.951,
- "new_cases_smoothed_per_million": 218.956,
- "total_deaths_per_million": 107.547,
- "new_deaths_per_million": 2.351,
- "new_deaths_smoothed_per_million": 1.091,
- "new_tests": 9166.0,
- "total_tests": 1029969.0,
- "total_tests_per_thousand": 605.3,
- "new_tests_per_thousand": 5.387,
- "new_tests_smoothed": 9662.0,
- "new_tests_smoothed_per_thousand": 5.678,
- "tests_per_case": 25.933000000000003,
- "positive_rate": 0.039,
- "tests_units": "units unclear",
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-24",
- "total_cases": 49038.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 372.571,
- "total_deaths": 184.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 28819.047,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 218.956,
- "total_deaths_per_million": 108.135,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 1.175,
- "new_tests": 9602.0,
- "total_tests": 1039571.0,
- "total_tests_per_thousand": 610.943,
- "new_tests_per_thousand": 5.643,
- "new_tests_smoothed": 9653.0,
- "new_tests_smoothed_per_thousand": 5.673,
- "tests_per_case": 25.909000000000002,
- "positive_rate": 0.039,
- "tests_units": "units unclear",
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-25",
- "total_cases": 49330.0,
- "new_cases": 292.0,
- "new_cases_smoothed": 306.429,
- "total_deaths": 184.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 28990.652,
- "new_cases_per_million": 171.605,
- "new_cases_smoothed_per_million": 180.084,
- "total_deaths_per_million": 108.135,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.924,
- "new_tests": 9364.0,
- "total_tests": 1048935.0,
- "total_tests_per_thousand": 616.447,
- "new_tests_per_thousand": 5.503,
- "new_tests_smoothed": 9675.0,
- "new_tests_smoothed_per_thousand": 5.686,
- "tests_per_case": 31.573,
- "positive_rate": 0.032,
- "tests_units": "units unclear",
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-26",
- "total_cases": 50076.0,
- "new_cases": 746.0,
- "new_cases_smoothed": 413.0,
- "total_deaths": 186.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 29429.067,
- "new_cases_per_million": 438.415,
- "new_cases_smoothed_per_million": 242.715,
- "total_deaths_per_million": 109.31,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 0.924,
- "new_tests": 18972.0,
- "total_tests": 1067907.0,
- "total_tests_per_thousand": 627.596,
- "new_tests_per_thousand": 11.15,
- "new_tests_smoothed": 9589.0,
- "new_tests_smoothed_per_thousand": 5.635,
- "tests_per_case": 23.218000000000004,
- "positive_rate": 0.043,
- "tests_units": "units unclear",
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-27",
- "total_cases": 50393.0,
- "new_cases": 317.0,
- "new_cases_smoothed": 458.286,
- "total_deaths": 186.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 29615.364,
- "new_cases_per_million": 186.297,
- "new_cases_smoothed_per_million": 269.329,
- "total_deaths_per_million": 109.31,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.924,
- "new_tests_smoothed": 9577.0,
- "new_tests_smoothed_per_thousand": 5.628,
- "tests_per_case": 20.897,
- "positive_rate": 0.048,
- "tests_units": "units unclear",
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-28",
- "total_cases": 50756.0,
- "new_cases": 363.0,
- "new_cases_smoothed": 400.857,
- "total_deaths": 188.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 29828.695,
- "new_cases_per_million": 213.331,
- "new_cases_smoothed_per_million": 235.579,
- "total_deaths_per_million": 110.485,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 0.756,
- "total_tests": 1078767.0,
- "total_tests_per_thousand": 633.978,
- "new_tests_smoothed": 9566.0,
- "new_tests_smoothed_per_thousand": 5.622,
- "tests_per_case": 23.864,
- "positive_rate": 0.042,
- "tests_units": "units unclear",
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-29",
- "total_cases": 51113.0,
- "new_cases": 357.0,
- "new_cases_smoothed": 401.429,
- "total_deaths": 189.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 30038.499,
- "new_cases_per_million": 209.805,
- "new_cases_smoothed_per_million": 235.915,
- "total_deaths_per_million": 111.073,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 0.84,
- "new_tests": 9651.0,
- "total_tests": 1088418.0,
- "total_tests_per_thousand": 639.65,
- "new_tests_per_thousand": 5.672,
- "new_tests_smoothed": 9659.0,
- "new_tests_smoothed_per_thousand": 5.676,
- "tests_per_case": 24.061999999999998,
- "positive_rate": 0.042,
- "tests_units": "units unclear",
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-30",
- "total_cases": 51391.0,
- "new_cases": 278.0,
- "new_cases_smoothed": 336.143,
- "total_deaths": 189.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 30201.877,
- "new_cases_per_million": 163.377,
- "new_cases_smoothed_per_million": 197.547,
- "total_deaths_per_million": 111.073,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.504,
- "new_tests": 12311.0,
- "total_tests": 1100729.0,
- "total_tests_per_thousand": 646.885,
- "new_tests_per_thousand": 7.235,
- "new_tests_smoothed": 10109.0,
- "new_tests_smoothed_per_thousand": 5.941,
- "tests_per_case": 30.074,
- "positive_rate": 0.033,
- "tests_units": "units unclear",
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-31",
- "total_cases": 51574.0,
- "new_cases": 183.0,
- "new_cases_smoothed": 362.286,
- "total_deaths": 189.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 30309.424,
- "new_cases_per_million": 107.547,
- "new_cases_smoothed_per_million": 212.911,
- "total_deaths_per_million": 111.073,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.42,
- "new_tests_smoothed": 9262.0,
- "new_tests_smoothed_per_thousand": 5.443,
- "tests_per_case": 25.565,
- "positive_rate": 0.039,
- "tests_units": "units unclear",
- "stringency_index": 60.19
- },
- {
- "date": "2020-09-01",
- "total_cases": 51574.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 320.571,
- "total_deaths": 190.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 30309.424,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 188.396,
- "total_deaths_per_million": 111.661,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 0.504,
- "total_tests": 1108088.0,
- "total_tests_per_thousand": 651.21,
- "new_tests_smoothed": 8450.0,
- "new_tests_smoothed_per_thousand": 4.966,
- "tests_per_case": 26.359,
- "positive_rate": 0.038,
- "tests_units": "units unclear",
- "stringency_index": 60.19
- },
- {
- "date": "2020-09-02",
- "total_cases": 51972.0,
- "new_cases": 398.0,
- "new_cases_smoothed": 270.857,
- "total_deaths": 190.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 30543.323,
- "new_cases_per_million": 233.9,
- "new_cases_smoothed_per_million": 159.18,
- "total_deaths_per_million": 111.661,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.336,
- "new_tests": 10749.0,
- "total_tests": 1118837.0,
- "total_tests_per_thousand": 657.527,
- "new_tests_per_thousand": 6.317,
- "new_tests_smoothed": 7276.0,
- "new_tests_smoothed_per_thousand": 4.276,
- "tests_per_case": 26.863000000000003,
- "positive_rate": 0.037000000000000005,
- "tests_units": "units unclear",
- "stringency_index": 60.19
- },
- {
- "date": "2020-09-03",
- "total_cases": 52440.0,
- "new_cases": 468.0,
- "new_cases_smoothed": 292.429,
- "total_deaths": 190.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 30818.361,
- "new_cases_per_million": 275.038,
- "new_cases_smoothed_per_million": 171.857,
- "total_deaths_per_million": 111.661,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.336,
- "new_tests": 9992.0,
- "total_tests": 1128829.0,
- "total_tests_per_thousand": 663.399,
- "new_tests_per_thousand": 5.872,
- "new_tests_smoothed": 7927.0,
- "new_tests_smoothed_per_thousand": 4.659,
- "tests_per_case": 27.107,
- "positive_rate": 0.037000000000000005,
- "tests_units": "units unclear",
- "stringency_index": 60.19
- },
- {
- "date": "2020-09-04",
- "total_cases": 52807.0,
- "new_cases": 367.0,
- "new_cases_smoothed": 293.0,
- "total_deaths": 190.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 31034.043,
- "new_cases_per_million": 215.682,
- "new_cases_smoothed_per_million": 172.193,
- "total_deaths_per_million": 111.661,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.168,
- "new_tests": 11734.0,
- "total_tests": 1140563.0,
- "total_tests_per_thousand": 670.295,
- "new_tests_per_thousand": 6.896,
- "new_tests_smoothed": 8828.0,
- "new_tests_smoothed_per_thousand": 5.188,
- "tests_per_case": 30.13,
- "positive_rate": 0.033,
- "tests_units": "units unclear",
- "stringency_index": 60.19
- },
- {
- "date": "2020-09-05",
- "total_cases": 53433.0,
- "new_cases": 626.0,
- "new_cases_smoothed": 331.429,
- "total_deaths": 194.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 31401.936,
- "new_cases_per_million": 367.893,
- "new_cases_smoothed_per_million": 194.777,
- "total_deaths_per_million": 114.011,
- "new_deaths_per_million": 2.351,
- "new_deaths_smoothed_per_million": 0.42,
- "new_tests": 11711.0,
- "total_tests": 1152274.0,
- "total_tests_per_thousand": 677.178,
- "new_tests_per_thousand": 6.882,
- "new_tests_smoothed": 9122.0,
- "new_tests_smoothed_per_thousand": 5.361,
- "tests_per_case": 27.523000000000003,
- "positive_rate": 0.036000000000000004,
- "tests_units": "units unclear",
- "stringency_index": 60.19
- },
- {
- "date": "2020-09-06",
- "total_cases": 54095.0,
- "new_cases": 662.0,
- "new_cases_smoothed": 386.286,
- "total_deaths": 196.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 31790.985,
- "new_cases_per_million": 389.049,
- "new_cases_smoothed_per_million": 227.015,
- "total_deaths_per_million": 115.187,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 0.588,
- "new_tests": 20534.0,
- "total_tests": 1172808.0,
- "total_tests_per_thousand": 689.245,
- "new_tests_per_thousand": 12.068,
- "new_tests_smoothed": 10297.0,
- "new_tests_smoothed_per_thousand": 6.051,
- "tests_per_case": 26.656,
- "positive_rate": 0.038,
- "tests_units": "units unclear",
- "stringency_index": 60.19
- },
- {
- "date": "2020-09-07",
- "total_cases": 54771.0,
- "new_cases": 676.0,
- "new_cases_smoothed": 456.714,
- "total_deaths": 198.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 32188.262,
- "new_cases_per_million": 397.277,
- "new_cases_smoothed_per_million": 268.406,
- "total_deaths_per_million": 116.362,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 0.756,
- "new_tests_smoothed": 11351.0,
- "new_tests_smoothed_per_thousand": 6.671,
- "tests_per_case": 24.854,
- "positive_rate": 0.04,
- "tests_units": "units unclear",
- "stringency_index": 60.19
- },
- {
- "date": "2020-09-08",
- "total_cases": 56076.0,
- "new_cases": 1305.0,
- "new_cases_smoothed": 643.143,
- "total_deaths": 200.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 32955.195,
- "new_cases_per_million": 766.933,
- "new_cases_smoothed_per_million": 377.967,
- "total_deaths_per_million": 117.538,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 0.84,
- "total_tests": 1194923.0,
- "total_tests_per_thousand": 702.242,
- "new_tests_smoothed": 12405.0,
- "new_tests_smoothed_per_thousand": 7.29,
- "tests_per_case": 19.288,
- "positive_rate": 0.052000000000000005,
- "tests_units": "units unclear",
- "stringency_index": 60.19
- },
- {
- "date": "2020-09-09",
- "total_cases": 56076.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 586.286,
- "total_deaths": 202.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 32955.195,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 344.553,
- "total_deaths_per_million": 118.713,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 1.007,
- "new_tests": 12337.0,
- "total_tests": 1207260.0,
- "total_tests_per_thousand": 709.492,
- "new_tests_per_thousand": 7.25,
- "new_tests_smoothed": 12632.0,
- "new_tests_smoothed_per_thousand": 7.424,
- "tests_per_case": 21.546,
- "positive_rate": 0.046,
- "tests_units": "units unclear",
- "stringency_index": 60.19
- },
- {
- "date": "2020-09-10",
- "total_cases": 56778.0,
- "new_cases": 702.0,
- "new_cases_smoothed": 619.714,
- "total_deaths": 203.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 33367.752,
- "new_cases_per_million": 412.557,
- "new_cases_smoothed_per_million": 364.199,
- "total_deaths_per_million": 119.301,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 1.091,
- "new_tests_smoothed": 12845.0,
- "new_tests_smoothed_per_thousand": 7.549,
- "tests_per_case": 20.726999999999997,
- "positive_rate": 0.048,
- "tests_units": "units unclear",
- "stringency_index": 60.19
- },
- {
- "date": "2020-09-11",
- "total_cases": 57450.0,
- "new_cases": 672.0,
- "new_cases_smoothed": 663.286,
- "total_deaths": 204.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 33762.679,
- "new_cases_per_million": 394.926,
- "new_cases_smoothed_per_million": 389.805,
- "total_deaths_per_million": 119.888,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 1.175,
- "total_tests": 1230227.0,
- "total_tests_per_thousand": 722.99,
- "new_tests_smoothed": 12809.0,
- "new_tests_smoothed_per_thousand": 7.528,
- "tests_per_case": 19.311,
- "positive_rate": 0.052000000000000005,
- "tests_units": "units unclear",
- "stringency_index": 60.19
- },
- {
- "date": "2020-09-12",
- "total_cases": 58207.0,
- "new_cases": 757.0,
- "new_cases_smoothed": 682.0,
- "total_deaths": 208.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 34207.558,
- "new_cases_per_million": 444.88,
- "new_cases_smoothed_per_million": 400.803,
- "total_deaths_per_million": 122.239,
- "new_deaths_per_million": 2.351,
- "new_deaths_smoothed_per_million": 1.175,
- "new_tests": 9977.0,
- "total_tests": 1240204.0,
- "total_tests_per_thousand": 728.853,
- "new_tests_per_thousand": 5.863,
- "new_tests_smoothed": 12561.0,
- "new_tests_smoothed_per_thousand": 7.382,
- "tests_per_case": 18.418,
- "positive_rate": 0.054000000000000006,
- "tests_units": "units unclear",
- "stringency_index": 60.19
- },
- {
- "date": "2020-09-13",
- "total_cases": 58839.0,
- "new_cases": 632.0,
- "new_cases_smoothed": 677.714,
- "total_deaths": 210.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 34578.977,
- "new_cases_per_million": 371.419,
- "new_cases_smoothed_per_million": 398.285,
- "total_deaths_per_million": 123.414,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 1.175,
- "new_tests_smoothed": 10535.0,
- "new_tests_smoothed_per_thousand": 6.191,
- "tests_per_case": 15.545,
- "positive_rate": 0.064,
- "tests_units": "units unclear",
- "stringency_index": 60.19
- },
- {
- "date": "2020-09-14",
- "total_cases": 59586.0,
- "new_cases": 747.0,
- "new_cases_smoothed": 687.857,
- "total_deaths": 212.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 35017.98,
- "new_cases_per_million": 439.003,
- "new_cases_smoothed_per_million": 404.245,
- "total_deaths_per_million": 124.59,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 1.175,
- "total_tests": 1252898.0,
- "total_tests_per_thousand": 736.313,
- "new_tests_smoothed": 9862.0,
- "new_tests_smoothed_per_thousand": 5.796,
- "tests_per_case": 14.337,
- "positive_rate": 0.07,
- "tests_units": "units unclear"
- },
- {
- "date": "2020-09-15",
- "total_cases": 60307.0,
- "new_cases": 721.0,
- "new_cases_smoothed": 604.429,
- "total_deaths": 213.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 35441.703,
- "new_cases_per_million": 423.723,
- "new_cases_smoothed_per_million": 355.215,
- "total_deaths_per_million": 125.178,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 1.091,
- "new_tests": 23177.0,
- "total_tests": 1276075.0,
- "total_tests_per_thousand": 749.934,
- "new_tests_per_thousand": 13.621,
- "new_tests_smoothed": 11593.0,
- "new_tests_smoothed_per_thousand": 6.813,
- "tests_per_case": 19.18,
- "positive_rate": 0.052000000000000005,
- "tests_units": "units unclear"
- },
- {
- "date": "2020-09-16",
- "total_cases": 60965.0,
- "new_cases": 658.0,
- "new_cases_smoothed": 698.429,
- "total_deaths": 213.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 35828.402,
- "new_cases_per_million": 386.699,
- "new_cases_smoothed_per_million": 410.458,
- "total_deaths_per_million": 125.178,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.924,
- "new_tests": 12299.0,
- "total_tests": 1288374.0,
- "total_tests_per_thousand": 757.162,
- "new_tests_per_thousand": 7.228,
- "new_tests_smoothed": 11588.0,
- "new_tests_smoothed_per_thousand": 6.81,
- "tests_per_case": 16.592,
- "positive_rate": 0.06,
- "tests_units": "units unclear"
- },
- {
- "date": "2020-09-17",
- "total_cases": 61643.0,
- "new_cases": 678.0,
- "new_cases_smoothed": 695.0,
- "total_deaths": 215.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 36226.855,
- "new_cases_per_million": 398.452,
- "new_cases_smoothed_per_million": 408.443,
- "total_deaths_per_million": 126.353,
- "new_deaths_per_million": 1.175,
- "new_deaths_smoothed_per_million": 1.007,
- "new_tests_smoothed": 10861.0,
- "new_tests_smoothed_per_thousand": 6.383,
- "tests_per_case": 15.627,
- "positive_rate": 0.064,
- "tests_units": "units unclear"
- },
- {
- "date": "2020-09-18",
- "total_cases": 62484.0,
- "new_cases": 841.0,
- "new_cases_smoothed": 719.143,
- "total_deaths": 216.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 36721.1,
- "new_cases_per_million": 494.246,
- "new_cases_smoothed_per_million": 422.632,
- "total_deaths_per_million": 126.941,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 1.007,
- "total_tests": 1301170.0,
- "total_tests_per_thousand": 764.682,
- "new_tests_smoothed": 10135.0,
- "new_tests_smoothed_per_thousand": 5.956,
- "tests_per_case": 14.093,
- "positive_rate": 0.071,
- "tests_units": "units unclear"
- },
- {
- "date": "2020-09-19",
- "total_cases": 63189.0,
- "new_cases": 705.0,
- "new_cases_smoothed": 711.714,
- "total_deaths": 219.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 37135.42,
- "new_cases_per_million": 414.32,
- "new_cases_smoothed_per_million": 418.266,
- "total_deaths_per_million": 128.704,
- "new_deaths_per_million": 1.763,
- "new_deaths_smoothed_per_million": 0.924,
- "new_tests": 22832.0,
- "total_tests": 1324002.0,
- "total_tests_per_thousand": 778.1,
- "new_tests_per_thousand": 13.418,
- "new_tests_smoothed": 11971.0,
- "new_tests_smoothed_per_thousand": 7.035,
- "tests_per_case": 16.82,
- "positive_rate": 0.059000000000000004,
- "tests_units": "units unclear"
- },
- {
- "date": "2020-09-20",
- "total_cases": 63879.0,
- "new_cases": 690.0,
- "new_cases_smoothed": 720.0,
- "total_deaths": 220.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 37540.925,
- "new_cases_per_million": 405.505,
- "new_cases_smoothed_per_million": 423.135,
- "total_deaths_per_million": 129.291,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 0.84,
- "new_tests_smoothed": 11727.0,
- "new_tests_smoothed_per_thousand": 6.892,
- "tests_per_case": 16.288,
- "positive_rate": 0.061,
- "tests_units": "units unclear"
- },
- {
- "date": "2020-09-21",
- "total_cases": 64499.0,
- "new_cases": 620.0,
- "new_cases_smoothed": 701.857,
- "total_deaths": 221.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 37905.292,
- "new_cases_per_million": 364.367,
- "new_cases_smoothed_per_million": 412.473,
- "total_deaths_per_million": 129.879,
- "new_deaths_per_million": 0.588,
- "new_deaths_smoothed_per_million": 0.756,
- "total_tests": 1333275.0,
- "total_tests_per_thousand": 783.55,
- "new_tests_smoothed": 11482.0,
- "new_tests_smoothed_per_thousand": 6.748,
- "tests_per_case": 16.359,
- "positive_rate": 0.061,
- "tests_units": "units unclear"
- },
- {
- "date": "2020-09-22",
- "total_cases": 65039.0,
- "new_cases": 540.0,
- "new_cases_smoothed": 676.0,
- "total_deaths": 221.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 38222.643,
- "new_cases_per_million": 317.352,
- "new_cases_smoothed_per_million": 397.277,
- "total_deaths_per_million": 129.879,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.672,
- "new_tests": 11438.0,
- "total_tests": 1344713.0,
- "total_tests_per_thousand": 790.272,
- "new_tests_per_thousand": 6.722,
- "new_tests_smoothed": 9805.0,
- "new_tests_smoothed_per_thousand": 5.762,
- "tests_per_case": 14.504000000000001,
- "positive_rate": 0.069,
- "tests_units": "units unclear"
- },
- {
- "date": "2020-09-23",
- "total_cases": 65752.0,
- "new_cases": 713.0,
- "new_cases_smoothed": 683.857,
- "total_deaths": 226.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 38641.665,
- "new_cases_per_million": 419.022,
- "new_cases_smoothed_per_million": 401.895,
- "total_deaths_per_million": 132.817,
- "new_deaths_per_million": 2.938,
- "new_deaths_smoothed_per_million": 1.091,
- "new_tests": 10686.0,
- "total_tests": 1355399.0,
- "total_tests_per_thousand": 796.552,
- "new_tests_per_thousand": 6.28,
- "new_tests_smoothed": 9575.0,
- "new_tests_smoothed_per_thousand": 5.627,
- "tests_per_case": 14.001,
- "positive_rate": 0.071,
- "tests_units": "units unclear"
- },
- {
- "date": "2020-09-24",
- "total_cases": 66402.0,
- "new_cases": 650.0,
- "new_cases_smoothed": 679.857,
- "total_deaths": 231.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 39023.662,
- "new_cases_per_million": 381.997,
- "new_cases_smoothed_per_million": 399.544,
- "total_deaths_per_million": 135.756,
- "new_deaths_per_million": 2.938,
- "new_deaths_smoothed_per_million": 1.343,
- "new_tests": 22705.0,
- "total_tests": 1378104.0,
- "total_tests_per_thousand": 809.895,
- "new_tests_per_thousand": 13.343,
- "new_tests_smoothed": 11905.0,
- "new_tests_smoothed_per_thousand": 6.996,
- "tests_per_case": 17.511,
- "positive_rate": 0.057,
- "tests_units": "units unclear"
- },
- {
- "date": "2020-09-25",
- "total_cases": 67014.0,
- "new_cases": 612.0,
- "new_cases_smoothed": 647.143,
- "total_deaths": 231.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 39383.327,
- "new_cases_per_million": 359.665,
- "new_cases_smoothed_per_million": 380.318,
- "total_deaths_per_million": 135.756,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.259
- }
- ]
- },
- "BHS": {
- "continent": "North America",
- "location": "Bahamas",
- "population": 393248.0,
- "population_density": 39.497,
- "median_age": 34.3,
- "aged_65_older": 8.996,
- "aged_70_older": 5.2,
- "gdp_per_capita": 27717.847,
- "cardiovasc_death_rate": 235.954,
- "diabetes_prevalence": 13.17,
- "female_smokers": 3.1,
- "male_smokers": 20.4,
- "hospital_beds_per_thousand": 2.9,
- "life_expectancy": 73.92,
- "human_development_index": 0.807,
- "data": [
- {
- "date": "2020-03-16",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 2.543,
- "new_cases_per_million": 2.543,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-03-17",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 2.543,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-03-20",
- "total_cases": 3.0,
- "new_cases": 2.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 7.629,
- "new_cases_per_million": 5.086,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-03-21",
- "total_cases": 4.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 10.172,
- "new_cases_per_million": 2.543,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-03-22",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.172,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.453,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-23",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.172,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.09,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-24",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.172,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.09,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-25",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.172,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.09,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-26",
- "total_cases": 5.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.715,
- "new_cases_per_million": 2.543,
- "new_cases_smoothed_per_million": 1.453,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-27",
- "total_cases": 9.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 22.886,
- "new_cases_per_million": 10.172,
- "new_cases_smoothed_per_million": 2.18,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-28",
- "total_cases": 9.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 22.886,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.816,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-29",
- "total_cases": 11.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 27.972,
- "new_cases_per_million": 5.086,
- "new_cases_smoothed_per_million": 2.543,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-30",
- "total_cases": 14.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 35.601,
- "new_cases_per_million": 7.629,
- "new_cases_smoothed_per_million": 3.633,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-31",
- "total_cases": 14.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 35.601,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.633,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-01",
- "total_cases": 15.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 38.144,
- "new_cases_per_million": 2.543,
- "new_cases_smoothed_per_million": 3.996,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-02",
- "total_cases": 21.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 53.401,
- "new_cases_per_million": 15.258,
- "new_cases_smoothed_per_million": 5.812,
- "total_deaths_per_million": 2.543,
- "new_deaths_per_million": 2.543,
- "new_deaths_smoothed_per_million": 0.363
- },
- {
- "date": "2020-04-03",
- "total_cases": 24.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 61.03,
- "new_cases_per_million": 7.629,
- "new_cases_smoothed_per_million": 5.449,
- "total_deaths_per_million": 2.543,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.363
- },
- {
- "date": "2020-04-04",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 3.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 61.03,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.449,
- "total_deaths_per_million": 7.629,
- "new_deaths_per_million": 5.086,
- "new_deaths_smoothed_per_million": 1.09
- },
- {
- "date": "2020-04-05",
- "total_cases": 28.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 4.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 71.202,
- "new_cases_per_million": 10.172,
- "new_cases_smoothed_per_million": 6.176,
- "total_deaths_per_million": 10.172,
- "new_deaths_per_million": 2.543,
- "new_deaths_smoothed_per_million": 1.453
- },
- {
- "date": "2020-04-06",
- "total_cases": 29.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 5.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 73.745,
- "new_cases_per_million": 2.543,
- "new_cases_smoothed_per_million": 5.449,
- "total_deaths_per_million": 12.715,
- "new_deaths_per_million": 2.543,
- "new_deaths_smoothed_per_million": 1.816
- },
- {
- "date": "2020-04-07",
- "total_cases": 33.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 83.917,
- "new_cases_per_million": 10.172,
- "new_cases_smoothed_per_million": 6.902,
- "total_deaths_per_million": 12.715,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.816
- },
- {
- "date": "2020-04-08",
- "total_cases": 36.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 6.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 91.545,
- "new_cases_per_million": 7.629,
- "new_cases_smoothed_per_million": 7.629,
- "total_deaths_per_million": 15.258,
- "new_deaths_per_million": 2.543,
- "new_deaths_smoothed_per_million": 2.18
- },
- {
- "date": "2020-04-09",
- "total_cases": 40.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 7.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 101.717,
- "new_cases_per_million": 10.172,
- "new_cases_smoothed_per_million": 6.902,
- "total_deaths_per_million": 17.8,
- "new_deaths_per_million": 2.543,
- "new_deaths_smoothed_per_million": 2.18
- },
- {
- "date": "2020-04-10",
- "total_cases": 41.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 8.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 104.26,
- "new_cases_per_million": 2.543,
- "new_cases_smoothed_per_million": 6.176,
- "total_deaths_per_million": 20.343,
- "new_deaths_per_million": 2.543,
- "new_deaths_smoothed_per_million": 2.543
- },
- {
- "date": "2020-04-11",
- "total_cases": 42.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 106.803,
- "new_cases_per_million": 2.543,
- "new_cases_smoothed_per_million": 6.539,
- "total_deaths_per_million": 20.343,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.816
- },
- {
- "date": "2020-04-12",
- "total_cases": 46.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 116.975,
- "new_cases_per_million": 10.172,
- "new_cases_smoothed_per_million": 6.539,
- "total_deaths_per_million": 20.343,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.453
- },
- {
- "date": "2020-04-13",
- "total_cases": 47.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 119.517,
- "new_cases_per_million": 2.543,
- "new_cases_smoothed_per_million": 6.539,
- "total_deaths_per_million": 20.343,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.09
- },
- {
- "date": "2020-04-14",
- "total_cases": 49.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 124.603,
- "new_cases_per_million": 5.086,
- "new_cases_smoothed_per_million": 5.812,
- "total_deaths_per_million": 20.343,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.09
- },
- {
- "date": "2020-04-15",
- "total_cases": 49.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 124.603,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.723,
- "total_deaths_per_million": 20.343,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.727
- },
- {
- "date": "2020-04-16",
- "total_cases": 53.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 134.775,
- "new_cases_per_million": 10.172,
- "new_cases_smoothed_per_million": 4.723,
- "total_deaths_per_million": 20.343,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.363
- },
- {
- "date": "2020-04-17",
- "total_cases": 54.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 9.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 137.318,
- "new_cases_per_million": 2.543,
- "new_cases_smoothed_per_million": 4.723,
- "total_deaths_per_million": 22.886,
- "new_deaths_per_million": 2.543,
- "new_deaths_smoothed_per_million": 0.363
- },
- {
- "date": "2020-04-18",
- "total_cases": 55.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 139.861,
- "new_cases_per_million": 2.543,
- "new_cases_smoothed_per_million": 4.723,
- "total_deaths_per_million": 22.886,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.363
- },
- {
- "date": "2020-04-19",
- "total_cases": 58.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 147.49,
- "new_cases_per_million": 7.629,
- "new_cases_smoothed_per_million": 4.359,
- "total_deaths_per_million": 22.886,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.363
- },
- {
- "date": "2020-04-20",
- "total_cases": 60.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 152.575,
- "new_cases_per_million": 5.086,
- "new_cases_smoothed_per_million": 4.723,
- "total_deaths_per_million": 22.886,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.363
- },
- {
- "date": "2020-04-21",
- "total_cases": 64.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 162.747,
- "new_cases_per_million": 10.172,
- "new_cases_smoothed_per_million": 5.449,
- "total_deaths_per_million": 22.886,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.363
- },
- {
- "date": "2020-04-22",
- "total_cases": 65.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 165.29,
- "new_cases_per_million": 2.543,
- "new_cases_smoothed_per_million": 5.812,
- "total_deaths_per_million": 22.886,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.363
- },
- {
- "date": "2020-04-23",
- "total_cases": 70.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 178.005,
- "new_cases_per_million": 12.715,
- "new_cases_smoothed_per_million": 6.176,
- "total_deaths_per_million": 22.886,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.363
- },
- {
- "date": "2020-04-24",
- "total_cases": 72.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 11.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 183.091,
- "new_cases_per_million": 5.086,
- "new_cases_smoothed_per_million": 6.539,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 5.086,
- "new_deaths_smoothed_per_million": 0.727
- },
- {
- "date": "2020-04-25",
- "total_cases": 73.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 185.633,
- "new_cases_per_million": 2.543,
- "new_cases_smoothed_per_million": 6.539,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.727
- },
- {
- "date": "2020-04-26",
- "total_cases": 78.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 198.348,
- "new_cases_per_million": 12.715,
- "new_cases_smoothed_per_million": 7.265,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.727
- },
- {
- "date": "2020-04-27",
- "total_cases": 80.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 203.434,
- "new_cases_per_million": 5.086,
- "new_cases_smoothed_per_million": 7.265,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.727
- },
- {
- "date": "2020-04-28",
- "total_cases": 80.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 203.434,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.812,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.727
- },
- {
- "date": "2020-04-29",
- "total_cases": 80.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 203.434,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.449,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.727
- },
- {
- "date": "2020-04-30",
- "total_cases": 80.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 203.434,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.633,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.727
- },
- {
- "date": "2020-05-01",
- "total_cases": 81.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 205.977,
- "new_cases_per_million": 2.543,
- "new_cases_smoothed_per_million": 3.269,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-02",
- "total_cases": 82.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 208.52,
- "new_cases_per_million": 2.543,
- "new_cases_smoothed_per_million": 3.269,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-03",
- "total_cases": 83.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 211.063,
- "new_cases_per_million": 2.543,
- "new_cases_smoothed_per_million": 1.816,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-04",
- "total_cases": 83.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 211.063,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.09,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-05",
- "total_cases": 83.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 211.063,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.09,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-06",
- "total_cases": 89.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 226.32,
- "new_cases_per_million": 15.258,
- "new_cases_smoothed_per_million": 3.269,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-07",
- "total_cases": 92.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 233.949,
- "new_cases_per_million": 7.629,
- "new_cases_smoothed_per_million": 4.359,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-08",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 233.949,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.996,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-09",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 233.949,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.633,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-10",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 233.949,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.269,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-11",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 233.949,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.269,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-12",
- "total_cases": 93.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 236.492,
- "new_cases_per_million": 2.543,
- "new_cases_smoothed_per_million": 3.633,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-13",
- "total_cases": 93.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 236.492,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.453,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-14",
- "total_cases": 94.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 239.035,
- "new_cases_per_million": 2.543,
- "new_cases_smoothed_per_million": 0.727,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-15",
- "total_cases": 96.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 244.121,
- "new_cases_per_million": 5.086,
- "new_cases_smoothed_per_million": 1.453,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-16",
- "total_cases": 96.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 244.121,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.453,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-17",
- "total_cases": 96.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 244.121,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.453,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-18",
- "total_cases": 96.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 244.121,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.453,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-19",
- "total_cases": 96.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 244.121,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.09,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-20",
- "total_cases": 96.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 244.121,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.09,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-21",
- "total_cases": 97.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 246.664,
- "new_cases_per_million": 2.543,
- "new_cases_smoothed_per_million": 1.09,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-22",
- "total_cases": 97.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 246.664,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.363,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-23",
- "total_cases": 97.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 246.664,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.363,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-24",
- "total_cases": 100.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 254.292,
- "new_cases_per_million": 7.629,
- "new_cases_smoothed_per_million": 1.453,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-25",
- "total_cases": 100.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 254.292,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.453,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-26",
- "total_cases": 100.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 254.292,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.453,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-27",
- "total_cases": 100.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 254.292,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.453,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-28",
- "total_cases": 100.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 254.292,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.09,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-29",
- "total_cases": 101.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 256.835,
- "new_cases_per_million": 2.543,
- "new_cases_smoothed_per_million": 1.453,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-30",
- "total_cases": 102.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 259.378,
- "new_cases_per_million": 2.543,
- "new_cases_smoothed_per_million": 1.816,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-31",
- "total_cases": 102.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 259.378,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.727,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-01",
- "total_cases": 102.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 259.378,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.727,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-02",
- "total_cases": 102.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 259.378,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.727,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-03",
- "total_cases": 102.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 259.378,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.727,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-04",
- "total_cases": 102.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 259.378,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.727,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-05",
- "total_cases": 102.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 259.378,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.363,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-06",
- "total_cases": 102.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 259.378,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-07",
- "total_cases": 103.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 261.921,
- "new_cases_per_million": 2.543,
- "new_cases_smoothed_per_million": 0.363,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-08",
- "total_cases": 103.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 261.921,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.363,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-09",
- "total_cases": 103.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 261.921,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.363,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-10",
- "total_cases": 103.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 261.921,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.363,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-11",
- "total_cases": 103.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 261.921,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.363,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-12",
- "total_cases": 103.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 261.921,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.363,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-13",
- "total_cases": 103.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 261.921,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.363,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-14",
- "total_cases": 103.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 261.921,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-15",
- "total_cases": 103.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 261.921,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-16",
- "total_cases": 104.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 264.464,
- "new_cases_per_million": 2.543,
- "new_cases_smoothed_per_million": 0.363,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-17",
- "total_cases": 104.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 264.464,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.363,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-18",
- "total_cases": 104.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 264.464,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.363,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-19",
- "total_cases": 104.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 264.464,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.363,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-20",
- "total_cases": 104.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 264.464,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.363,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-21",
- "total_cases": 104.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 264.464,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.363,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-22",
- "total_cases": 104.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 264.464,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.363,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-23",
- "total_cases": 104.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 264.464,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-24",
- "total_cases": 104.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 264.464,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-25",
- "total_cases": 104.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 264.464,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-26",
- "total_cases": 104.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 264.464,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-27",
- "total_cases": 104.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 264.464,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-28",
- "total_cases": 104.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 264.464,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-29",
- "total_cases": 104.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 264.464,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-30",
- "total_cases": 104.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 264.464,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-01",
- "total_cases": 104.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 264.464,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-02",
- "total_cases": 104.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 264.464,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-03",
- "total_cases": 104.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 264.464,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-04",
- "total_cases": 104.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 264.464,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-05",
- "total_cases": 104.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 264.464,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-06",
- "total_cases": 104.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 264.464,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-07",
- "total_cases": 104.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 264.464,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-08",
- "total_cases": 104.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 264.464,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-09",
- "total_cases": 106.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 269.55,
- "new_cases_per_million": 5.086,
- "new_cases_smoothed_per_million": 0.727,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-10",
- "total_cases": 107.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 272.093,
- "new_cases_per_million": 2.543,
- "new_cases_smoothed_per_million": 1.09,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-11",
- "total_cases": 108.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 274.636,
- "new_cases_per_million": 2.543,
- "new_cases_smoothed_per_million": 1.453,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-12",
- "total_cases": 111.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 282.265,
- "new_cases_per_million": 7.629,
- "new_cases_smoothed_per_million": 2.543,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-13",
- "total_cases": 111.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 282.265,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.543,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-14",
- "total_cases": 113.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 287.35,
- "new_cases_per_million": 5.086,
- "new_cases_smoothed_per_million": 3.269,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-15",
- "total_cases": 116.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 294.979,
- "new_cases_per_million": 7.629,
- "new_cases_smoothed_per_million": 4.359,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-16",
- "total_cases": 119.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 302.608,
- "new_cases_per_million": 7.629,
- "new_cases_smoothed_per_million": 4.723,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-17",
- "total_cases": 124.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 315.323,
- "new_cases_per_million": 12.715,
- "new_cases_smoothed_per_million": 6.176,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-18",
- "total_cases": 129.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 328.037,
- "new_cases_per_million": 12.715,
- "new_cases_smoothed_per_million": 7.629,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-19",
- "total_cases": 138.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 3.857,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 350.924,
- "new_cases_per_million": 22.886,
- "new_cases_smoothed_per_million": 9.808,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-20",
- "total_cases": 153.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 6.0,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 389.067,
- "new_cases_per_million": 38.144,
- "new_cases_smoothed_per_million": 15.258,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-21",
- "total_cases": 174.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 8.714,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 442.469,
- "new_cases_per_million": 53.401,
- "new_cases_smoothed_per_million": 22.16,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-22",
- "total_cases": 194.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 11.143,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 493.327,
- "new_cases_per_million": 50.858,
- "new_cases_smoothed_per_million": 28.335,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-23",
- "total_cases": 219.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 14.286,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 556.9,
- "new_cases_per_million": 63.573,
- "new_cases_smoothed_per_million": 36.327,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-24",
- "total_cases": 274.0,
- "new_cases": 55.0,
- "new_cases_smoothed": 21.429,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 696.761,
- "new_cases_per_million": 139.861,
- "new_cases_smoothed_per_million": 54.491,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-25",
- "total_cases": 316.0,
- "new_cases": 42.0,
- "new_cases_smoothed": 26.714,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 803.564,
- "new_cases_per_million": 106.803,
- "new_cases_smoothed_per_million": 67.932,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-26",
- "total_cases": 326.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 26.857,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 828.993,
- "new_cases_per_million": 25.429,
- "new_cases_smoothed_per_million": 68.296,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-27",
- "total_cases": 342.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 27.0,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 869.68,
- "new_cases_per_million": 40.687,
- "new_cases_smoothed_per_million": 68.659,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-28",
- "total_cases": 382.0,
- "new_cases": 40.0,
- "new_cases_smoothed": 29.714,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 971.397,
- "new_cases_per_million": 101.717,
- "new_cases_smoothed_per_million": 75.561,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-29",
- "total_cases": 447.0,
- "new_cases": 65.0,
- "new_cases_smoothed": 36.143,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1136.687,
- "new_cases_per_million": 165.29,
- "new_cases_smoothed_per_million": 91.909,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-30",
- "total_cases": 484.0,
- "new_cases": 37.0,
- "new_cases_smoothed": 37.857,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1230.775,
- "new_cases_per_million": 94.088,
- "new_cases_smoothed_per_million": 96.268,
- "total_deaths_per_million": 27.972,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-31",
- "total_cases": 508.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 33.429,
- "total_deaths": 14.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 1291.806,
- "new_cases_per_million": 61.03,
- "new_cases_smoothed_per_million": 85.006,
- "total_deaths_per_million": 35.601,
- "new_deaths_per_million": 7.629,
- "new_deaths_smoothed_per_million": 1.09
- },
- {
- "date": "2020-08-01",
- "total_cases": 574.0,
- "new_cases": 66.0,
- "new_cases_smoothed": 36.857,
- "total_deaths": 14.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 1459.639,
- "new_cases_per_million": 167.833,
- "new_cases_smoothed_per_million": 93.725,
- "total_deaths_per_million": 35.601,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.09
- },
- {
- "date": "2020-08-02",
- "total_cases": 599.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 39.0,
- "total_deaths": 14.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 1523.212,
- "new_cases_per_million": 63.573,
- "new_cases_smoothed_per_million": 99.174,
- "total_deaths_per_million": 35.601,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.09
- },
- {
- "date": "2020-08-03",
- "total_cases": 648.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 43.714,
- "total_deaths": 14.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 1647.815,
- "new_cases_per_million": 124.603,
- "new_cases_smoothed_per_million": 111.162,
- "total_deaths_per_million": 35.601,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.09
- },
- {
- "date": "2020-08-04",
- "total_cases": 679.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 42.429,
- "total_deaths": 14.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 1726.646,
- "new_cases_per_million": 78.831,
- "new_cases_smoothed_per_million": 107.893,
- "total_deaths_per_million": 35.601,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.09
- },
- {
- "date": "2020-08-05",
- "total_cases": 715.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 38.286,
- "total_deaths": 14.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 1818.191,
- "new_cases_per_million": 91.545,
- "new_cases_smoothed_per_million": 97.358,
- "total_deaths_per_million": 35.601,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.09
- },
- {
- "date": "2020-08-06",
- "total_cases": 751.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 38.143,
- "total_deaths": 14.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 1909.736,
- "new_cases_per_million": 91.545,
- "new_cases_smoothed_per_million": 96.994,
- "total_deaths_per_million": 35.601,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.09
- },
- {
- "date": "2020-08-07",
- "total_cases": 761.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 36.143,
- "total_deaths": 14.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1935.166,
- "new_cases_per_million": 25.429,
- "new_cases_smoothed_per_million": 91.909,
- "total_deaths_per_million": 35.601,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-08",
- "total_cases": 830.0,
- "new_cases": 69.0,
- "new_cases_smoothed": 36.571,
- "total_deaths": 14.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2110.627,
- "new_cases_per_million": 175.462,
- "new_cases_smoothed_per_million": 92.998,
- "total_deaths_per_million": 35.601,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-09",
- "total_cases": 878.0,
- "new_cases": 48.0,
- "new_cases_smoothed": 39.857,
- "total_deaths": 14.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2232.688,
- "new_cases_per_million": 122.06,
- "new_cases_smoothed_per_million": 101.354,
- "total_deaths_per_million": 35.601,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-10",
- "total_cases": 898.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 35.714,
- "total_deaths": 15.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2283.546,
- "new_cases_per_million": 50.858,
- "new_cases_smoothed_per_million": 90.819,
- "total_deaths_per_million": 38.144,
- "new_deaths_per_million": 2.543,
- "new_deaths_smoothed_per_million": 0.363
- },
- {
- "date": "2020-08-11",
- "total_cases": 945.0,
- "new_cases": 47.0,
- "new_cases_smoothed": 38.0,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2403.064,
- "new_cases_per_million": 119.517,
- "new_cases_smoothed_per_million": 96.631,
- "total_deaths_per_million": 38.144,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.363
- },
- {
- "date": "2020-08-12",
- "total_cases": 989.0,
- "new_cases": 44.0,
- "new_cases_smoothed": 39.143,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2514.952,
- "new_cases_per_million": 111.889,
- "new_cases_smoothed_per_million": 99.537,
- "total_deaths_per_million": 38.144,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.363
- },
- {
- "date": "2020-08-13",
- "total_cases": 1036.0,
- "new_cases": 47.0,
- "new_cases_smoothed": 40.714,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2634.47,
- "new_cases_per_million": 119.517,
- "new_cases_smoothed_per_million": 103.533,
- "total_deaths_per_million": 38.144,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.363
- },
- {
- "date": "2020-08-14",
- "total_cases": 1089.0,
- "new_cases": 53.0,
- "new_cases_smoothed": 46.857,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2769.245,
- "new_cases_per_million": 134.775,
- "new_cases_smoothed_per_million": 119.154,
- "total_deaths_per_million": 38.144,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.363
- },
- {
- "date": "2020-08-15",
- "total_cases": 1119.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 41.286,
- "total_deaths": 17.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2845.533,
- "new_cases_per_million": 76.288,
- "new_cases_smoothed_per_million": 104.986,
- "total_deaths_per_million": 43.23,
- "new_deaths_per_million": 5.086,
- "new_deaths_smoothed_per_million": 1.09
- },
- {
- "date": "2020-08-16",
- "total_cases": 1252.0,
- "new_cases": 133.0,
- "new_cases_smoothed": 53.429,
- "total_deaths": 17.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 3183.742,
- "new_cases_per_million": 338.209,
- "new_cases_smoothed_per_million": 135.865,
- "total_deaths_per_million": 43.23,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.09
- },
- {
- "date": "2020-08-17",
- "total_cases": 1315.0,
- "new_cases": 63.0,
- "new_cases_smoothed": 59.571,
- "total_deaths": 18.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 3343.946,
- "new_cases_per_million": 160.204,
- "new_cases_smoothed_per_million": 151.486,
- "total_deaths_per_million": 45.773,
- "new_deaths_per_million": 2.543,
- "new_deaths_smoothed_per_million": 1.09
- },
- {
- "date": "2020-08-18",
- "total_cases": 1329.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 54.857,
- "total_deaths": 19.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 3379.547,
- "new_cases_per_million": 35.601,
- "new_cases_smoothed_per_million": 139.498,
- "total_deaths_per_million": 48.316,
- "new_deaths_per_million": 2.543,
- "new_deaths_smoothed_per_million": 1.453
- },
- {
- "date": "2020-08-19",
- "total_cases": 1424.0,
- "new_cases": 95.0,
- "new_cases_smoothed": 62.143,
- "total_deaths": 20.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 3621.125,
- "new_cases_per_million": 241.578,
- "new_cases_smoothed_per_million": 158.025,
- "total_deaths_per_million": 50.858,
- "new_deaths_per_million": 2.543,
- "new_deaths_smoothed_per_million": 1.816
- },
- {
- "date": "2020-08-20",
- "total_cases": 1531.0,
- "new_cases": 107.0,
- "new_cases_smoothed": 70.714,
- "total_deaths": 22.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 3893.218,
- "new_cases_per_million": 272.093,
- "new_cases_smoothed_per_million": 179.821,
- "total_deaths_per_million": 55.944,
- "new_deaths_per_million": 5.086,
- "new_deaths_smoothed_per_million": 2.543
- },
- {
- "date": "2020-08-21",
- "total_cases": 1610.0,
- "new_cases": 79.0,
- "new_cases_smoothed": 74.429,
- "total_deaths": 23.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 4094.109,
- "new_cases_per_million": 200.891,
- "new_cases_smoothed_per_million": 189.266,
- "total_deaths_per_million": 58.487,
- "new_deaths_per_million": 2.543,
- "new_deaths_smoothed_per_million": 2.906
- },
- {
- "date": "2020-08-22",
- "total_cases": 1703.0,
- "new_cases": 93.0,
- "new_cases_smoothed": 83.429,
- "total_deaths": 27.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 4330.601,
- "new_cases_per_million": 236.492,
- "new_cases_smoothed_per_million": 212.153,
- "total_deaths_per_million": 68.659,
- "new_deaths_per_million": 10.172,
- "new_deaths_smoothed_per_million": 3.633
- },
- {
- "date": "2020-08-23",
- "total_cases": 1765.0,
- "new_cases": 62.0,
- "new_cases_smoothed": 73.286,
- "total_deaths": 29.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 4488.262,
- "new_cases_per_million": 157.661,
- "new_cases_smoothed_per_million": 186.36,
- "total_deaths_per_million": 73.745,
- "new_deaths_per_million": 5.086,
- "new_deaths_smoothed_per_million": 4.359
- },
- {
- "date": "2020-08-24",
- "total_cases": 1765.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 64.286,
- "total_deaths": 29.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 4488.262,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 163.474,
- "total_deaths_per_million": 73.745,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 3.996
- },
- {
- "date": "2020-08-25",
- "total_cases": 1798.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 67.0,
- "total_deaths": 40.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 4572.178,
- "new_cases_per_million": 83.917,
- "new_cases_smoothed_per_million": 170.376,
- "total_deaths_per_million": 101.717,
- "new_deaths_per_million": 27.972,
- "new_deaths_smoothed_per_million": 7.629
- },
- {
- "date": "2020-08-26",
- "total_cases": 1813.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 55.571,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 4610.322,
- "new_cases_per_million": 38.144,
- "new_cases_smoothed_per_million": 141.314,
- "total_deaths_per_million": 101.717,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 7.265
- },
- {
- "date": "2020-08-27",
- "total_cases": 1813.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 40.286,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 4610.322,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 102.444,
- "total_deaths_per_million": 101.717,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 6.539
- },
- {
- "date": "2020-08-28",
- "total_cases": 1923.0,
- "new_cases": 110.0,
- "new_cases_smoothed": 44.714,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 4890.044,
- "new_cases_per_million": 279.722,
- "new_cases_smoothed_per_million": 113.705,
- "total_deaths_per_million": 101.717,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 6.176
- },
- {
- "date": "2020-08-29",
- "total_cases": 2057.0,
- "new_cases": 134.0,
- "new_cases_smoothed": 50.571,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 5230.796,
- "new_cases_per_million": 340.752,
- "new_cases_smoothed_per_million": 128.599,
- "total_deaths_per_million": 101.717,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 4.723
- },
- {
- "date": "2020-08-30",
- "total_cases": 2135.0,
- "new_cases": 78.0,
- "new_cases_smoothed": 52.857,
- "total_deaths": 43.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 5429.144,
- "new_cases_per_million": 198.348,
- "new_cases_smoothed_per_million": 134.412,
- "total_deaths_per_million": 109.346,
- "new_deaths_per_million": 7.629,
- "new_deaths_smoothed_per_million": 5.086
- },
- {
- "date": "2020-08-31",
- "total_cases": 2167.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 57.429,
- "total_deaths": 43.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 5510.518,
- "new_cases_per_million": 81.374,
- "new_cases_smoothed_per_million": 146.037,
- "total_deaths_per_million": 109.346,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 5.086
- },
- {
- "date": "2020-09-01",
- "total_cases": 2217.0,
- "new_cases": 50.0,
- "new_cases_smoothed": 59.857,
- "total_deaths": 44.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 5637.664,
- "new_cases_per_million": 127.146,
- "new_cases_smoothed_per_million": 152.212,
- "total_deaths_per_million": 111.889,
- "new_deaths_per_million": 2.543,
- "new_deaths_smoothed_per_million": 1.453
- },
- {
- "date": "2020-09-02",
- "total_cases": 2276.0,
- "new_cases": 59.0,
- "new_cases_smoothed": 66.143,
- "total_deaths": 46.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 5787.696,
- "new_cases_per_million": 150.033,
- "new_cases_smoothed_per_million": 168.196,
- "total_deaths_per_million": 116.975,
- "new_deaths_per_million": 5.086,
- "new_deaths_smoothed_per_million": 2.18
- },
- {
- "date": "2020-09-03",
- "total_cases": 2337.0,
- "new_cases": 61.0,
- "new_cases_smoothed": 74.857,
- "total_deaths": 47.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 5942.815,
- "new_cases_per_million": 155.118,
- "new_cases_smoothed_per_million": 190.356,
- "total_deaths_per_million": 119.517,
- "new_deaths_per_million": 2.543,
- "new_deaths_smoothed_per_million": 2.543
- },
- {
- "date": "2020-09-04",
- "total_cases": 2386.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 66.143,
- "total_deaths": 50.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 6067.418,
- "new_cases_per_million": 124.603,
- "new_cases_smoothed_per_million": 168.196,
- "total_deaths_per_million": 127.146,
- "new_deaths_per_million": 7.629,
- "new_deaths_smoothed_per_million": 3.633
- },
- {
- "date": "2020-09-05",
- "total_cases": 2386.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 47.0,
- "total_deaths": 50.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 6067.418,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 119.517,
- "total_deaths_per_million": 127.146,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 3.633
- },
- {
- "date": "2020-09-06",
- "total_cases": 2476.0,
- "new_cases": 90.0,
- "new_cases_smoothed": 48.714,
- "total_deaths": 55.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 6296.281,
- "new_cases_per_million": 228.863,
- "new_cases_smoothed_per_million": 123.877,
- "total_deaths_per_million": 139.861,
- "new_deaths_per_million": 12.715,
- "new_deaths_smoothed_per_million": 4.359
- },
- {
- "date": "2020-09-07",
- "total_cases": 2546.0,
- "new_cases": 70.0,
- "new_cases_smoothed": 54.143,
- "total_deaths": 58.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 6474.286,
- "new_cases_per_million": 178.005,
- "new_cases_smoothed_per_million": 137.681,
- "total_deaths_per_million": 147.49,
- "new_deaths_per_million": 7.629,
- "new_deaths_smoothed_per_million": 5.449
- },
- {
- "date": "2020-09-08",
- "total_cases": 2585.0,
- "new_cases": 39.0,
- "new_cases_smoothed": 52.571,
- "total_deaths": 59.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 6573.46,
- "new_cases_per_million": 99.174,
- "new_cases_smoothed_per_million": 133.685,
- "total_deaths_per_million": 150.033,
- "new_deaths_per_million": 2.543,
- "new_deaths_smoothed_per_million": 5.449
- },
- {
- "date": "2020-09-09",
- "total_cases": 2657.0,
- "new_cases": 72.0,
- "new_cases_smoothed": 54.429,
- "total_deaths": 63.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 6756.551,
- "new_cases_per_million": 183.091,
- "new_cases_smoothed_per_million": 138.408,
- "total_deaths_per_million": 160.204,
- "new_deaths_per_million": 10.172,
- "new_deaths_smoothed_per_million": 6.176
- },
- {
- "date": "2020-09-10",
- "total_cases": 2721.0,
- "new_cases": 64.0,
- "new_cases_smoothed": 54.857,
- "total_deaths": 63.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 6919.298,
- "new_cases_per_million": 162.747,
- "new_cases_smoothed_per_million": 139.498,
- "total_deaths_per_million": 160.204,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 5.812
- },
- {
- "date": "2020-09-11",
- "total_cases": 2721.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 47.857,
- "total_deaths": 63.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 6919.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 121.697,
- "total_deaths_per_million": 160.204,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 4.723
- },
- {
- "date": "2020-09-12",
- "total_cases": 2814.0,
- "new_cases": 93.0,
- "new_cases_smoothed": 61.143,
- "total_deaths": 65.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 7155.79,
- "new_cases_per_million": 236.492,
- "new_cases_smoothed_per_million": 155.482,
- "total_deaths_per_million": 165.29,
- "new_deaths_per_million": 5.086,
- "new_deaths_smoothed_per_million": 5.449
- },
- {
- "date": "2020-09-13",
- "total_cases": 2928.0,
- "new_cases": 114.0,
- "new_cases_smoothed": 64.571,
- "total_deaths": 67.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 7445.683,
- "new_cases_per_million": 289.893,
- "new_cases_smoothed_per_million": 164.2,
- "total_deaths_per_million": 170.376,
- "new_deaths_per_million": 5.086,
- "new_deaths_smoothed_per_million": 4.359
- },
- {
- "date": "2020-09-14",
- "total_cases": 2928.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 54.571,
- "total_deaths": 67.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 7445.683,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 138.771,
- "total_deaths_per_million": 170.376,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 3.269
- },
- {
- "date": "2020-09-15",
- "total_cases": 3008.0,
- "new_cases": 80.0,
- "new_cases_smoothed": 60.429,
- "total_deaths": 68.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 7649.117,
- "new_cases_per_million": 203.434,
- "new_cases_smoothed_per_million": 153.665,
- "total_deaths_per_million": 172.919,
- "new_deaths_per_million": 2.543,
- "new_deaths_smoothed_per_million": 3.269
- },
- {
- "date": "2020-09-16",
- "total_cases": 3032.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 53.571,
- "total_deaths": 69.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 7710.147,
- "new_cases_per_million": 61.03,
- "new_cases_smoothed_per_million": 136.228,
- "total_deaths_per_million": 175.462,
- "new_deaths_per_million": 2.543,
- "new_deaths_smoothed_per_million": 2.18
- },
- {
- "date": "2020-09-17",
- "total_cases": 3087.0,
- "new_cases": 55.0,
- "new_cases_smoothed": 52.286,
- "total_deaths": 69.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 7850.008,
- "new_cases_per_million": 139.861,
- "new_cases_smoothed_per_million": 132.959,
- "total_deaths_per_million": 175.462,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.18
- },
- {
- "date": "2020-09-18",
- "total_cases": 3177.0,
- "new_cases": 90.0,
- "new_cases_smoothed": 65.143,
- "total_deaths": 69.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 8078.871,
- "new_cases_per_million": 228.863,
- "new_cases_smoothed_per_million": 165.653,
- "total_deaths_per_million": 175.462,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.18
- },
- {
- "date": "2020-09-19",
- "total_cases": 3214.0,
- "new_cases": 37.0,
- "new_cases_smoothed": 57.143,
- "total_deaths": 73.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 8172.96,
- "new_cases_per_million": 94.088,
- "new_cases_smoothed_per_million": 145.31,
- "total_deaths_per_million": 185.633,
- "new_deaths_per_million": 10.172,
- "new_deaths_smoothed_per_million": 2.906
- },
- {
- "date": "2020-09-20",
- "total_cases": 3315.0,
- "new_cases": 101.0,
- "new_cases_smoothed": 55.286,
- "total_deaths": 74.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 8429.795,
- "new_cases_per_million": 256.835,
- "new_cases_smoothed_per_million": 140.587,
- "total_deaths_per_million": 188.176,
- "new_deaths_per_million": 2.543,
- "new_deaths_smoothed_per_million": 2.543
- },
- {
- "date": "2020-09-21",
- "total_cases": 3370.0,
- "new_cases": 55.0,
- "new_cases_smoothed": 63.143,
- "total_deaths": 74.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 8569.656,
- "new_cases_per_million": 139.861,
- "new_cases_smoothed_per_million": 160.568,
- "total_deaths_per_million": 188.176,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.543
- },
- {
- "date": "2020-09-22",
- "total_cases": 3418.0,
- "new_cases": 48.0,
- "new_cases_smoothed": 58.571,
- "total_deaths": 75.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 8691.716,
- "new_cases_per_million": 122.06,
- "new_cases_smoothed_per_million": 148.943,
- "total_deaths_per_million": 190.719,
- "new_deaths_per_million": 2.543,
- "new_deaths_smoothed_per_million": 2.543
- },
- {
- "date": "2020-09-23",
- "total_cases": 3467.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 62.143,
- "total_deaths": 77.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 8816.319,
- "new_cases_per_million": 124.603,
- "new_cases_smoothed_per_million": 158.025,
- "total_deaths_per_million": 195.805,
- "new_deaths_per_million": 5.086,
- "new_deaths_smoothed_per_million": 2.906
- },
- {
- "date": "2020-09-24",
- "total_cases": 3618.0,
- "new_cases": 151.0,
- "new_cases_smoothed": 75.857,
- "total_deaths": 80.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 9200.301,
- "new_cases_per_million": 383.982,
- "new_cases_smoothed_per_million": 192.899,
- "total_deaths_per_million": 203.434,
- "new_deaths_per_million": 7.629,
- "new_deaths_smoothed_per_million": 3.996
- },
- {
- "date": "2020-09-25",
- "total_cases": 3699.0,
- "new_cases": 81.0,
- "new_cases_smoothed": 74.571,
- "total_deaths": 86.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 9406.278,
- "new_cases_per_million": 205.977,
- "new_cases_smoothed_per_million": 189.63,
- "total_deaths_per_million": 218.692,
- "new_deaths_per_million": 15.258,
- "new_deaths_smoothed_per_million": 6.176
- }
- ]
- },
- "BIH": {
- "continent": "Europe",
- "location": "Bosnia and Herzegovina",
- "population": 3280815.0,
- "population_density": 68.496,
- "median_age": 42.5,
- "aged_65_older": 16.569,
- "aged_70_older": 10.711,
- "gdp_per_capita": 11713.895,
- "extreme_poverty": 0.2,
- "cardiovasc_death_rate": 329.635,
- "diabetes_prevalence": 10.08,
- "female_smokers": 30.2,
- "male_smokers": 47.7,
- "handwashing_facilities": 97.164,
- "hospital_beds_per_thousand": 3.5,
- "life_expectancy": 77.4,
- "human_development_index": 0.768,
- "data": [
- {
- "date": "2020-03-06",
- "total_cases": 2.0,
- "new_cases": 2.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.61,
- "new_cases_per_million": 0.61,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-12",
- "total_cases": 3.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.914,
- "new_cases_per_million": 0.305,
- "new_cases_smoothed_per_million": 0.131,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 40.28
- },
- {
- "date": "2020-03-13",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.914,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.044,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 40.28
- },
- {
- "date": "2020-03-14",
- "new_cases_smoothed": 0.143,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.044,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 40.28
- },
- {
- "date": "2020-03-15",
- "new_cases_smoothed": 0.143,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.044,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 40.28
- },
- {
- "date": "2020-03-16",
- "total_cases": 18.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5.486,
- "new_cases_per_million": 4.572,
- "new_cases_smoothed_per_million": 0.697,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.83
- },
- {
- "date": "2020-03-17",
- "total_cases": 21.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.401,
- "new_cases_per_million": 0.914,
- "new_cases_smoothed_per_million": 0.827,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-03-18",
- "total_cases": 30.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 4.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.144,
- "new_cases_per_million": 2.743,
- "new_cases_smoothed_per_million": 1.219,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.78
- },
- {
- "date": "2020-03-19",
- "total_cases": 35.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 4.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.668,
- "new_cases_per_million": 1.524,
- "new_cases_smoothed_per_million": 1.393,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.78
- },
- {
- "date": "2020-03-20",
- "total_cases": 44.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 5.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 13.411,
- "new_cases_per_million": 2.743,
- "new_cases_smoothed_per_million": 1.785,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 89.81
- },
- {
- "date": "2020-03-21",
- "total_cases": 62.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 8.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 18.898,
- "new_cases_per_million": 5.486,
- "new_cases_smoothed_per_million": 2.569,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 89.81
- },
- {
- "date": "2020-03-22",
- "total_cases": 92.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 12.714,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 28.042,
- "new_cases_per_million": 9.144,
- "new_cases_smoothed_per_million": 3.875,
- "total_deaths_per_million": 0.305,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.044,
- "stringency_index": 89.81
- },
- {
- "date": "2020-03-23",
- "total_cases": 125.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 15.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 38.1,
- "new_cases_per_million": 10.058,
- "new_cases_smoothed_per_million": 4.659,
- "total_deaths_per_million": 0.305,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.044,
- "stringency_index": 89.81
- },
- {
- "date": "2020-03-24",
- "total_cases": 131.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 15.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 39.929,
- "new_cases_per_million": 1.829,
- "new_cases_smoothed_per_million": 4.79,
- "total_deaths_per_million": 0.305,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.044,
- "stringency_index": 89.81
- },
- {
- "date": "2020-03-25",
- "total_cases": 164.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 19.143,
- "total_deaths": 2.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 49.988,
- "new_cases_per_million": 10.058,
- "new_cases_smoothed_per_million": 5.835,
- "total_deaths_per_million": 0.61,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.087,
- "stringency_index": 89.81
- },
- {
- "date": "2020-03-26",
- "total_cases": 173.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 19.714,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 52.731,
- "new_cases_per_million": 2.743,
- "new_cases_smoothed_per_million": 6.009,
- "total_deaths_per_million": 0.914,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.131,
- "stringency_index": 89.81
- },
- {
- "date": "2020-03-27",
- "total_cases": 213.0,
- "new_cases": 40.0,
- "new_cases_smoothed": 24.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 64.923,
- "new_cases_per_million": 12.192,
- "new_cases_smoothed_per_million": 7.359,
- "total_deaths_per_million": 0.914,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.131,
- "stringency_index": 89.81
- },
- {
- "date": "2020-03-28",
- "total_cases": 233.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 24.429,
- "total_deaths": 4.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 71.019,
- "new_cases_per_million": 6.096,
- "new_cases_smoothed_per_million": 7.446,
- "total_deaths_per_million": 1.219,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.174,
- "stringency_index": 89.81
- },
- {
- "date": "2020-03-29",
- "total_cases": 257.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 23.571,
- "total_deaths": 5.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 78.334,
- "new_cases_per_million": 7.315,
- "new_cases_smoothed_per_million": 7.185,
- "total_deaths_per_million": 1.524,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.174,
- "stringency_index": 89.81
- },
- {
- "date": "2020-03-30",
- "total_cases": 323.0,
- "new_cases": 66.0,
- "new_cases_smoothed": 28.286,
- "total_deaths": 6.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 98.451,
- "new_cases_per_million": 20.117,
- "new_cases_smoothed_per_million": 8.622,
- "total_deaths_per_million": 1.829,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.218,
- "stringency_index": 89.81
- },
- {
- "date": "2020-03-31",
- "total_cases": 353.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 31.714,
- "total_deaths": 8.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 107.595,
- "new_cases_per_million": 9.144,
- "new_cases_smoothed_per_million": 9.667,
- "total_deaths_per_million": 2.438,
- "new_deaths_per_million": 0.61,
- "new_deaths_smoothed_per_million": 0.305,
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-01",
- "total_cases": 413.0,
- "new_cases": 60.0,
- "new_cases_smoothed": 35.571,
- "total_deaths": 12.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 125.883,
- "new_cases_per_million": 18.288,
- "new_cases_smoothed_per_million": 10.842,
- "total_deaths_per_million": 3.658,
- "new_deaths_per_million": 1.219,
- "new_deaths_smoothed_per_million": 0.435,
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-02",
- "total_cases": 464.0,
- "new_cases": 51.0,
- "new_cases_smoothed": 41.571,
- "total_deaths": 13.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 141.428,
- "new_cases_per_million": 15.545,
- "new_cases_smoothed_per_million": 12.671,
- "total_deaths_per_million": 3.962,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.435,
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-03",
- "total_cases": 532.0,
- "new_cases": 68.0,
- "new_cases_smoothed": 45.571,
- "total_deaths": 17.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 162.155,
- "new_cases_per_million": 20.727,
- "new_cases_smoothed_per_million": 13.89,
- "total_deaths_per_million": 5.182,
- "new_deaths_per_million": 1.219,
- "new_deaths_smoothed_per_million": 0.61,
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-04",
- "total_cases": 586.0,
- "new_cases": 54.0,
- "new_cases_smoothed": 50.429,
- "total_deaths": 18.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 178.614,
- "new_cases_per_million": 16.459,
- "new_cases_smoothed_per_million": 15.371,
- "total_deaths_per_million": 5.486,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.61,
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-05",
- "total_cases": 632.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 53.571,
- "total_deaths": 21.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 192.635,
- "new_cases_per_million": 14.021,
- "new_cases_smoothed_per_million": 16.329,
- "total_deaths_per_million": 6.401,
- "new_deaths_per_million": 0.914,
- "new_deaths_smoothed_per_million": 0.697,
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-06",
- "total_cases": 663.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 48.571,
- "total_deaths": 24.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 202.084,
- "new_cases_per_million": 9.449,
- "new_cases_smoothed_per_million": 14.805,
- "total_deaths_per_million": 7.315,
- "new_deaths_per_million": 0.914,
- "new_deaths_smoothed_per_million": 0.784,
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-07",
- "total_cases": 695.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 48.857,
- "total_deaths": 28.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 211.838,
- "new_cases_per_million": 9.754,
- "new_cases_smoothed_per_million": 14.892,
- "total_deaths_per_million": 8.534,
- "new_deaths_per_million": 1.219,
- "new_deaths_smoothed_per_million": 0.871,
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-08",
- "total_cases": 781.0,
- "new_cases": 86.0,
- "new_cases_smoothed": 52.571,
- "total_deaths": 32.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 238.051,
- "new_cases_per_million": 26.213,
- "new_cases_smoothed_per_million": 16.024,
- "total_deaths_per_million": 9.754,
- "new_deaths_per_million": 1.219,
- "new_deaths_smoothed_per_million": 0.871,
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-09",
- "total_cases": 816.0,
- "new_cases": 35.0,
- "new_cases_smoothed": 50.286,
- "total_deaths": 35.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 248.719,
- "new_cases_per_million": 10.668,
- "new_cases_smoothed_per_million": 15.327,
- "total_deaths_per_million": 10.668,
- "new_deaths_per_million": 0.914,
- "new_deaths_smoothed_per_million": 0.958,
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-10",
- "total_cases": 875.0,
- "new_cases": 59.0,
- "new_cases_smoothed": 49.0,
- "total_deaths": 36.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 266.702,
- "new_cases_per_million": 17.983,
- "new_cases_smoothed_per_million": 14.935,
- "total_deaths_per_million": 10.973,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.827,
- "stringency_index": 92.59
- },
- {
- "date": "2020-04-11",
- "total_cases": 901.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 45.0,
- "total_deaths": 37.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 274.627,
- "new_cases_per_million": 7.925,
- "new_cases_smoothed_per_million": 13.716,
- "total_deaths_per_million": 11.278,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.827,
- "stringency_index": 92.59
- },
- {
- "date": "2020-04-12",
- "total_cases": 948.0,
- "new_cases": 47.0,
- "new_cases_smoothed": 45.143,
- "total_deaths": 37.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 288.953,
- "new_cases_per_million": 14.326,
- "new_cases_smoothed_per_million": 13.76,
- "total_deaths_per_million": 11.278,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.697,
- "stringency_index": 92.59
- },
- {
- "date": "2020-04-13",
- "total_cases": 1007.0,
- "new_cases": 59.0,
- "new_cases_smoothed": 49.143,
- "total_deaths": 38.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 306.936,
- "new_cases_per_million": 17.983,
- "new_cases_smoothed_per_million": 14.979,
- "total_deaths_per_million": 11.582,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.61,
- "stringency_index": 92.59
- },
- {
- "date": "2020-04-14",
- "total_cases": 1028.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 47.571,
- "total_deaths": 38.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 313.337,
- "new_cases_per_million": 6.401,
- "new_cases_smoothed_per_million": 14.5,
- "total_deaths_per_million": 11.582,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.435,
- "stringency_index": 92.59
- },
- {
- "date": "2020-04-15",
- "total_cases": 1073.0,
- "new_cases": 45.0,
- "new_cases_smoothed": 41.714,
- "total_deaths": 39.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 327.053,
- "new_cases_per_million": 13.716,
- "new_cases_smoothed_per_million": 12.715,
- "total_deaths_per_million": 11.887,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.305,
- "stringency_index": 92.59
- },
- {
- "date": "2020-04-16",
- "total_cases": 1100.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 40.571,
- "total_deaths": 40.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 335.283,
- "new_cases_per_million": 8.23,
- "new_cases_smoothed_per_million": 12.366,
- "total_deaths_per_million": 12.192,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.218,
- "stringency_index": 92.59
- },
- {
- "date": "2020-04-17",
- "total_cases": 1152.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 39.571,
- "total_deaths": 41.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 351.132,
- "new_cases_per_million": 15.85,
- "new_cases_smoothed_per_million": 12.061,
- "total_deaths_per_million": 12.497,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.218,
- "stringency_index": 92.59
- },
- {
- "date": "2020-04-18",
- "total_cases": 1210.0,
- "new_cases": 58.0,
- "new_cases_smoothed": 44.143,
- "total_deaths": 44.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 368.811,
- "new_cases_per_million": 17.679,
- "new_cases_smoothed_per_million": 13.455,
- "total_deaths_per_million": 13.411,
- "new_deaths_per_million": 0.914,
- "new_deaths_smoothed_per_million": 0.305,
- "stringency_index": 92.59
- },
- {
- "date": "2020-04-19",
- "total_cases": 1254.0,
- "new_cases": 44.0,
- "new_cases_smoothed": 43.714,
- "total_deaths": 45.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 382.222,
- "new_cases_per_million": 13.411,
- "new_cases_smoothed_per_million": 13.324,
- "total_deaths_per_million": 13.716,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.348,
- "stringency_index": 92.59
- },
- {
- "date": "2020-04-20",
- "total_cases": 1269.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 37.429,
- "total_deaths": 46.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 386.794,
- "new_cases_per_million": 4.572,
- "new_cases_smoothed_per_million": 11.408,
- "total_deaths_per_million": 14.021,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.348,
- "stringency_index": 92.59
- },
- {
- "date": "2020-04-21",
- "total_cases": 1300.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 38.857,
- "total_deaths": 48.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 396.243,
- "new_cases_per_million": 9.449,
- "new_cases_smoothed_per_million": 11.844,
- "total_deaths_per_million": 14.631,
- "new_deaths_per_million": 0.61,
- "new_deaths_smoothed_per_million": 0.435,
- "stringency_index": 92.59
- },
- {
- "date": "2020-04-22",
- "total_cases": 1340.0,
- "new_cases": 40.0,
- "new_cases_smoothed": 38.143,
- "total_deaths": 50.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 408.435,
- "new_cases_per_million": 12.192,
- "new_cases_smoothed_per_million": 11.626,
- "total_deaths_per_million": 15.24,
- "new_deaths_per_million": 0.61,
- "new_deaths_smoothed_per_million": 0.479,
- "stringency_index": 92.59
- },
- {
- "date": "2020-04-23",
- "total_cases": 1367.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 38.143,
- "total_deaths": 52.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 416.665,
- "new_cases_per_million": 8.23,
- "new_cases_smoothed_per_million": 11.626,
- "total_deaths_per_million": 15.85,
- "new_deaths_per_million": 0.61,
- "new_deaths_smoothed_per_million": 0.523,
- "stringency_index": 92.59
- },
- {
- "date": "2020-04-24",
- "total_cases": 1413.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 37.286,
- "total_deaths": 53.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 430.686,
- "new_cases_per_million": 14.021,
- "new_cases_smoothed_per_million": 11.365,
- "total_deaths_per_million": 16.155,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.523,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-25",
- "total_cases": 1420.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 30.0,
- "total_deaths": 54.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 432.819,
- "new_cases_per_million": 2.134,
- "new_cases_smoothed_per_million": 9.144,
- "total_deaths_per_million": 16.459,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.435,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-26",
- "total_cases": 1485.0,
- "new_cases": 65.0,
- "new_cases_smoothed": 33.0,
- "total_deaths": 56.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 452.631,
- "new_cases_per_million": 19.812,
- "new_cases_smoothed_per_million": 10.058,
- "total_deaths_per_million": 17.069,
- "new_deaths_per_million": 0.61,
- "new_deaths_smoothed_per_million": 0.479,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-27",
- "total_cases": 1516.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 35.286,
- "total_deaths": 58.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 462.08,
- "new_cases_per_million": 9.449,
- "new_cases_smoothed_per_million": 10.755,
- "total_deaths_per_million": 17.679,
- "new_deaths_per_million": 0.61,
- "new_deaths_smoothed_per_million": 0.523,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-28",
- "total_cases": 1564.0,
- "new_cases": 48.0,
- "new_cases_smoothed": 37.714,
- "total_deaths": 60.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 476.711,
- "new_cases_per_million": 14.631,
- "new_cases_smoothed_per_million": 11.495,
- "total_deaths_per_million": 18.288,
- "new_deaths_per_million": 0.61,
- "new_deaths_smoothed_per_million": 0.523,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-29",
- "total_cases": 1588.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 35.429,
- "total_deaths": 62.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 484.026,
- "new_cases_per_million": 7.315,
- "new_cases_smoothed_per_million": 10.799,
- "total_deaths_per_million": 18.898,
- "new_deaths_per_million": 0.61,
- "new_deaths_smoothed_per_million": 0.523,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-30",
- "total_cases": 1689.0,
- "new_cases": 101.0,
- "new_cases_smoothed": 46.0,
- "total_deaths": 64.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 514.811,
- "new_cases_per_million": 30.785,
- "new_cases_smoothed_per_million": 14.021,
- "total_deaths_per_million": 19.507,
- "new_deaths_per_million": 0.61,
- "new_deaths_smoothed_per_million": 0.523,
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-01",
- "total_cases": 1757.0,
- "new_cases": 68.0,
- "new_cases_smoothed": 49.143,
- "total_deaths": 68.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 535.538,
- "new_cases_per_million": 20.727,
- "new_cases_smoothed_per_million": 14.979,
- "total_deaths_per_million": 20.727,
- "new_deaths_per_million": 1.219,
- "new_deaths_smoothed_per_million": 0.653,
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-02",
- "total_cases": 1782.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 51.714,
- "total_deaths": 69.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 543.158,
- "new_cases_per_million": 7.62,
- "new_cases_smoothed_per_million": 15.763,
- "total_deaths_per_million": 21.031,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.653,
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-03",
- "total_cases": 1840.0,
- "new_cases": 58.0,
- "new_cases_smoothed": 50.714,
- "total_deaths": 71.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 560.836,
- "new_cases_per_million": 17.679,
- "new_cases_smoothed_per_million": 15.458,
- "total_deaths_per_million": 21.641,
- "new_deaths_per_million": 0.61,
- "new_deaths_smoothed_per_million": 0.653,
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-04",
- "total_cases": 1857.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 48.714,
- "total_deaths": 76.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 566.018,
- "new_cases_per_million": 5.182,
- "new_cases_smoothed_per_million": 14.848,
- "total_deaths_per_million": 23.165,
- "new_deaths_per_million": 1.524,
- "new_deaths_smoothed_per_million": 0.784,
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-05",
- "total_cases": 1926.0,
- "new_cases": 69.0,
- "new_cases_smoothed": 51.714,
- "total_deaths": 77.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 587.049,
- "new_cases_per_million": 21.031,
- "new_cases_smoothed_per_million": 15.763,
- "total_deaths_per_million": 23.47,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.74,
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-06",
- "total_cases": 1946.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 51.143,
- "total_deaths": 78.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 593.145,
- "new_cases_per_million": 6.096,
- "new_cases_smoothed_per_million": 15.588,
- "total_deaths_per_million": 23.775,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.697,
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-07",
- "total_cases": 1986.0,
- "new_cases": 40.0,
- "new_cases_smoothed": 42.429,
- "total_deaths": 84.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 605.337,
- "new_cases_per_million": 12.192,
- "new_cases_smoothed_per_million": 12.932,
- "total_deaths_per_million": 25.603,
- "new_deaths_per_million": 1.829,
- "new_deaths_smoothed_per_million": 0.871,
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-08",
- "total_cases": 2027.0,
- "new_cases": 41.0,
- "new_cases_smoothed": 38.571,
- "total_deaths": 90.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 617.834,
- "new_cases_per_million": 12.497,
- "new_cases_smoothed_per_million": 11.757,
- "total_deaths_per_million": 27.432,
- "new_deaths_per_million": 1.829,
- "new_deaths_smoothed_per_million": 0.958,
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-09",
- "total_cases": 2070.0,
- "new_cases": 43.0,
- "new_cases_smoothed": 41.143,
- "total_deaths": 98.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 630.941,
- "new_cases_per_million": 13.106,
- "new_cases_smoothed_per_million": 12.54,
- "total_deaths_per_million": 29.871,
- "new_deaths_per_million": 2.438,
- "new_deaths_smoothed_per_million": 1.263,
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-10",
- "total_cases": 2092.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 36.0,
- "total_deaths": 101.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 637.646,
- "new_cases_per_million": 6.706,
- "new_cases_smoothed_per_million": 10.973,
- "total_deaths_per_million": 30.785,
- "new_deaths_per_million": 0.914,
- "new_deaths_smoothed_per_million": 1.306,
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-11",
- "total_cases": 2117.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 37.143,
- "total_deaths": 107.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 645.266,
- "new_cases_per_million": 7.62,
- "new_cases_smoothed_per_million": 11.321,
- "total_deaths_per_million": 32.614,
- "new_deaths_per_million": 1.829,
- "new_deaths_smoothed_per_million": 1.35,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-12",
- "total_cases": 2142.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 30.857,
- "total_deaths": 112.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 652.887,
- "new_cases_per_million": 7.62,
- "new_cases_smoothed_per_million": 9.405,
- "total_deaths_per_million": 34.138,
- "new_deaths_per_million": 1.524,
- "new_deaths_smoothed_per_million": 1.524,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-13",
- "total_cases": 2158.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 30.286,
- "total_deaths": 116.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 5.429,
- "total_cases_per_million": 657.763,
- "new_cases_per_million": 4.877,
- "new_cases_smoothed_per_million": 9.231,
- "total_deaths_per_million": 35.357,
- "new_deaths_per_million": 1.219,
- "new_deaths_smoothed_per_million": 1.655,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-14",
- "total_cases": 2181.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 27.857,
- "total_deaths": 120.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 664.774,
- "new_cases_per_million": 7.01,
- "new_cases_smoothed_per_million": 8.491,
- "total_deaths_per_million": 36.576,
- "new_deaths_per_million": 1.219,
- "new_deaths_smoothed_per_million": 1.568,
- "stringency_index": 79.63
- },
- {
- "date": "2020-05-15",
- "total_cases": 2216.0,
- "new_cases": 35.0,
- "new_cases_smoothed": 27.0,
- "total_deaths": 123.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 675.442,
- "new_cases_per_million": 10.668,
- "new_cases_smoothed_per_million": 8.23,
- "total_deaths_per_million": 37.491,
- "new_deaths_per_million": 0.914,
- "new_deaths_smoothed_per_million": 1.437,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-16",
- "total_cases": 2237.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 23.857,
- "total_deaths": 127.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 681.843,
- "new_cases_per_million": 6.401,
- "new_cases_smoothed_per_million": 7.272,
- "total_deaths_per_million": 38.71,
- "new_deaths_per_million": 1.219,
- "new_deaths_smoothed_per_million": 1.263,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-17",
- "total_cases": 2267.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 25.0,
- "total_deaths": 129.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 690.987,
- "new_cases_per_million": 9.144,
- "new_cases_smoothed_per_million": 7.62,
- "total_deaths_per_million": 39.319,
- "new_deaths_per_million": 0.61,
- "new_deaths_smoothed_per_million": 1.219,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-18",
- "total_cases": 2289.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 24.571,
- "total_deaths": 132.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 697.692,
- "new_cases_per_million": 6.706,
- "new_cases_smoothed_per_million": 7.489,
- "total_deaths_per_million": 40.234,
- "new_deaths_per_million": 0.914,
- "new_deaths_smoothed_per_million": 1.089,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-19",
- "total_cases": 2303.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 23.0,
- "total_deaths": 132.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 701.96,
- "new_cases_per_million": 4.267,
- "new_cases_smoothed_per_million": 7.01,
- "total_deaths_per_million": 40.234,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.871,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-20",
- "total_cases": 2319.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 23.0,
- "total_deaths": 133.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 706.837,
- "new_cases_per_million": 4.877,
- "new_cases_smoothed_per_million": 7.01,
- "total_deaths_per_million": 40.539,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.74,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-21",
- "total_cases": 2334.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 21.857,
- "total_deaths": 135.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 711.409,
- "new_cases_per_million": 4.572,
- "new_cases_smoothed_per_million": 6.662,
- "total_deaths_per_million": 41.148,
- "new_deaths_per_million": 0.61,
- "new_deaths_smoothed_per_million": 0.653,
- "stringency_index": 71.3
- },
- {
- "date": "2020-05-22",
- "total_cases": 2352.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 19.429,
- "total_deaths": 139.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 716.895,
- "new_cases_per_million": 5.486,
- "new_cases_smoothed_per_million": 5.922,
- "total_deaths_per_million": 42.368,
- "new_deaths_per_million": 1.219,
- "new_deaths_smoothed_per_million": 0.697,
- "stringency_index": 71.3
- },
- {
- "date": "2020-05-23",
- "total_cases": 2372.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 19.286,
- "total_deaths": 141.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 722.991,
- "new_cases_per_million": 6.096,
- "new_cases_smoothed_per_million": 5.878,
- "total_deaths_per_million": 42.977,
- "new_deaths_per_million": 0.61,
- "new_deaths_smoothed_per_million": 0.61,
- "stringency_index": 71.3
- },
- {
- "date": "2020-05-24",
- "total_cases": 2391.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 17.714,
- "total_deaths": 141.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 728.782,
- "new_cases_per_million": 5.791,
- "new_cases_smoothed_per_million": 5.399,
- "total_deaths_per_million": 42.977,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.523,
- "stringency_index": 71.3
- },
- {
- "date": "2020-05-25",
- "total_cases": 2400.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 15.857,
- "total_deaths": 143.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 731.526,
- "new_cases_per_million": 2.743,
- "new_cases_smoothed_per_million": 4.833,
- "total_deaths_per_million": 43.587,
- "new_deaths_per_million": 0.61,
- "new_deaths_smoothed_per_million": 0.479,
- "stringency_index": 71.3
- },
- {
- "date": "2020-05-26",
- "total_cases": 2405.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 14.571,
- "total_deaths": 145.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 733.05,
- "new_cases_per_million": 1.524,
- "new_cases_smoothed_per_million": 4.441,
- "total_deaths_per_million": 44.196,
- "new_deaths_per_million": 0.61,
- "new_deaths_smoothed_per_million": 0.566,
- "stringency_index": 71.3
- },
- {
- "date": "2020-05-27",
- "total_cases": 2415.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 13.714,
- "total_deaths": 149.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 736.098,
- "new_cases_per_million": 3.048,
- "new_cases_smoothed_per_million": 4.18,
- "total_deaths_per_million": 45.416,
- "new_deaths_per_million": 1.219,
- "new_deaths_smoothed_per_million": 0.697,
- "stringency_index": 71.3
- },
- {
- "date": "2020-05-28",
- "total_cases": 2434.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 14.286,
- "total_deaths": 150.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 741.889,
- "new_cases_per_million": 5.791,
- "new_cases_smoothed_per_million": 4.354,
- "total_deaths_per_million": 45.72,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.653,
- "stringency_index": 71.3
- },
- {
- "date": "2020-05-29",
- "total_cases": 2462.0,
- "new_cases": 28.0,
- "new_cases_smoothed": 15.714,
- "total_deaths": 152.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 750.423,
- "new_cases_per_million": 8.534,
- "new_cases_smoothed_per_million": 4.79,
- "total_deaths_per_million": 46.33,
- "new_deaths_per_million": 0.61,
- "new_deaths_smoothed_per_million": 0.566,
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-30",
- "total_cases": 2484.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 16.0,
- "total_deaths": 152.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 757.129,
- "new_cases_per_million": 6.706,
- "new_cases_smoothed_per_million": 4.877,
- "total_deaths_per_million": 46.33,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.479,
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-31",
- "total_cases": 2493.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 14.571,
- "total_deaths": 152.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 759.872,
- "new_cases_per_million": 2.743,
- "new_cases_smoothed_per_million": 4.441,
- "total_deaths_per_million": 46.33,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.479,
- "stringency_index": 65.74
- },
- {
- "date": "2020-06-01",
- "total_cases": 2509.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 15.571,
- "total_deaths": 152.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 764.749,
- "new_cases_per_million": 4.877,
- "new_cases_smoothed_per_million": 4.746,
- "total_deaths_per_million": 46.33,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.392,
- "stringency_index": 54.63
- },
- {
- "date": "2020-06-02",
- "total_cases": 2523.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 16.857,
- "total_deaths": 153.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 769.016,
- "new_cases_per_million": 4.267,
- "new_cases_smoothed_per_million": 5.138,
- "total_deaths_per_million": 46.635,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.348,
- "stringency_index": 54.63
- },
- {
- "date": "2020-06-03",
- "total_cases": 2534.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 17.0,
- "total_deaths": 156.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 772.369,
- "new_cases_per_million": 3.353,
- "new_cases_smoothed_per_million": 5.182,
- "total_deaths_per_million": 47.549,
- "new_deaths_per_million": 0.914,
- "new_deaths_smoothed_per_million": 0.305,
- "stringency_index": 54.63
- },
- {
- "date": "2020-06-04",
- "total_cases": 2550.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 16.571,
- "total_deaths": 156.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 777.246,
- "new_cases_per_million": 4.877,
- "new_cases_smoothed_per_million": 5.051,
- "total_deaths_per_million": 47.549,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.261,
- "stringency_index": 54.63
- },
- {
- "date": "2020-06-05",
- "total_cases": 2593.0,
- "new_cases": 43.0,
- "new_cases_smoothed": 18.714,
- "total_deaths": 158.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 790.352,
- "new_cases_per_million": 13.106,
- "new_cases_smoothed_per_million": 5.704,
- "total_deaths_per_million": 48.159,
- "new_deaths_per_million": 0.61,
- "new_deaths_smoothed_per_million": 0.261,
- "stringency_index": 54.63
- },
- {
- "date": "2020-06-06",
- "total_cases": 2605.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 17.286,
- "total_deaths": 158.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 794.01,
- "new_cases_per_million": 3.658,
- "new_cases_smoothed_per_million": 5.269,
- "total_deaths_per_million": 48.159,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.261,
- "stringency_index": 54.63
- },
- {
- "date": "2020-06-07",
- "total_cases": 2636.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 20.429,
- "total_deaths": 158.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 803.459,
- "new_cases_per_million": 9.449,
- "new_cases_smoothed_per_million": 6.227,
- "total_deaths_per_million": 48.159,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.261,
- "stringency_index": 54.63
- },
- {
- "date": "2020-06-08",
- "total_cases": 2673.0,
- "new_cases": 37.0,
- "new_cases_smoothed": 23.429,
- "total_deaths": 159.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 814.737,
- "new_cases_per_million": 11.278,
- "new_cases_smoothed_per_million": 7.141,
- "total_deaths_per_million": 48.464,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.305,
- "stringency_index": 54.63
- },
- {
- "date": "2020-06-09",
- "total_cases": 2703.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 25.714,
- "total_deaths": 159.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 823.881,
- "new_cases_per_million": 9.144,
- "new_cases_smoothed_per_million": 7.838,
- "total_deaths_per_million": 48.464,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.261,
- "stringency_index": 54.63
- },
- {
- "date": "2020-06-10",
- "total_cases": 2727.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 27.571,
- "total_deaths": 159.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 831.196,
- "new_cases_per_million": 7.315,
- "new_cases_smoothed_per_million": 8.404,
- "total_deaths_per_million": 48.464,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.131,
- "stringency_index": 54.63
- },
- {
- "date": "2020-06-11",
- "total_cases": 2776.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 32.286,
- "total_deaths": 160.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 846.131,
- "new_cases_per_million": 14.935,
- "new_cases_smoothed_per_million": 9.841,
- "total_deaths_per_million": 48.768,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.174,
- "stringency_index": 54.63
- },
- {
- "date": "2020-06-12",
- "total_cases": 2831.0,
- "new_cases": 55.0,
- "new_cases_smoothed": 34.0,
- "total_deaths": 160.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 862.895,
- "new_cases_per_million": 16.764,
- "new_cases_smoothed_per_million": 10.363,
- "total_deaths_per_million": 48.768,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.087,
- "stringency_index": 54.63
- },
- {
- "date": "2020-06-13",
- "total_cases": 2892.0,
- "new_cases": 61.0,
- "new_cases_smoothed": 41.0,
- "total_deaths": 162.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 881.488,
- "new_cases_per_million": 18.593,
- "new_cases_smoothed_per_million": 12.497,
- "total_deaths_per_million": 49.378,
- "new_deaths_per_million": 0.61,
- "new_deaths_smoothed_per_million": 0.174,
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-14",
- "total_cases": 2940.0,
- "new_cases": 48.0,
- "new_cases_smoothed": 43.429,
- "total_deaths": 163.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 896.119,
- "new_cases_per_million": 14.631,
- "new_cases_smoothed_per_million": 13.237,
- "total_deaths_per_million": 49.683,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.218,
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-15",
- "total_cases": 3001.0,
- "new_cases": 61.0,
- "new_cases_smoothed": 46.857,
- "total_deaths": 163.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 914.712,
- "new_cases_per_million": 18.593,
- "new_cases_smoothed_per_million": 14.282,
- "total_deaths_per_million": 49.683,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.174,
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-16",
- "total_cases": 3039.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 48.0,
- "total_deaths": 164.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 926.294,
- "new_cases_per_million": 11.582,
- "new_cases_smoothed_per_million": 14.631,
- "total_deaths_per_million": 49.988,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.218,
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-17",
- "total_cases": 3084.0,
- "new_cases": 45.0,
- "new_cases_smoothed": 51.0,
- "total_deaths": 167.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 940.01,
- "new_cases_per_million": 13.716,
- "new_cases_smoothed_per_million": 15.545,
- "total_deaths_per_million": 50.902,
- "new_deaths_per_million": 0.914,
- "new_deaths_smoothed_per_million": 0.348,
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-18",
- "total_cases": 3144.0,
- "new_cases": 60.0,
- "new_cases_smoothed": 52.571,
- "total_deaths": 167.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 958.298,
- "new_cases_per_million": 18.288,
- "new_cases_smoothed_per_million": 16.024,
- "total_deaths_per_million": 50.902,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.305,
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-19",
- "total_cases": 3202.0,
- "new_cases": 58.0,
- "new_cases_smoothed": 53.0,
- "total_deaths": 167.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 975.977,
- "new_cases_per_million": 17.679,
- "new_cases_smoothed_per_million": 16.155,
- "total_deaths_per_million": 50.902,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.305,
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-20",
- "total_cases": 3288.0,
- "new_cases": 86.0,
- "new_cases_smoothed": 56.571,
- "total_deaths": 168.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 1002.19,
- "new_cases_per_million": 26.213,
- "new_cases_smoothed_per_million": 17.243,
- "total_deaths_per_million": 51.207,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.261,
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-21",
- "total_cases": 3354.0,
- "new_cases": 66.0,
- "new_cases_smoothed": 59.143,
- "total_deaths": 169.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 1022.307,
- "new_cases_per_million": 20.117,
- "new_cases_smoothed_per_million": 18.027,
- "total_deaths_per_million": 51.512,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.261,
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-22",
- "total_cases": 3431.0,
- "new_cases": 77.0,
- "new_cases_smoothed": 61.429,
- "total_deaths": 169.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 1045.777,
- "new_cases_per_million": 23.47,
- "new_cases_smoothed_per_million": 18.724,
- "total_deaths_per_million": 51.512,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.261,
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-23",
- "total_cases": 3524.0,
- "new_cases": 93.0,
- "new_cases_smoothed": 69.286,
- "total_deaths": 170.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 1074.123,
- "new_cases_per_million": 28.347,
- "new_cases_smoothed_per_million": 21.118,
- "total_deaths_per_million": 51.816,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.261,
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-24",
- "total_cases": 3587.0,
- "new_cases": 63.0,
- "new_cases_smoothed": 71.857,
- "total_deaths": 171.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 1093.326,
- "new_cases_per_million": 19.203,
- "new_cases_smoothed_per_million": 21.902,
- "total_deaths_per_million": 52.121,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.174,
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-25",
- "total_cases": 3675.0,
- "new_cases": 88.0,
- "new_cases_smoothed": 75.857,
- "total_deaths": 172.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 1120.148,
- "new_cases_per_million": 26.823,
- "new_cases_smoothed_per_million": 23.121,
- "total_deaths_per_million": 52.426,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.218,
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-26",
- "total_cases": 3794.0,
- "new_cases": 119.0,
- "new_cases_smoothed": 84.571,
- "total_deaths": 174.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 1156.42,
- "new_cases_per_million": 36.271,
- "new_cases_smoothed_per_million": 25.778,
- "total_deaths_per_million": 53.036,
- "new_deaths_per_million": 0.61,
- "new_deaths_smoothed_per_million": 0.305,
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-27",
- "total_cases": 3934.0,
- "new_cases": 140.0,
- "new_cases_smoothed": 92.286,
- "total_deaths": 177.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 1199.092,
- "new_cases_per_million": 42.672,
- "new_cases_smoothed_per_million": 28.129,
- "total_deaths_per_million": 53.95,
- "new_deaths_per_million": 0.914,
- "new_deaths_smoothed_per_million": 0.392,
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-28",
- "total_cases": 4107.0,
- "new_cases": 173.0,
- "new_cases_smoothed": 107.571,
- "total_deaths": 179.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 1251.823,
- "new_cases_per_million": 52.731,
- "new_cases_smoothed_per_million": 32.788,
- "total_deaths_per_million": 54.56,
- "new_deaths_per_million": 0.61,
- "new_deaths_smoothed_per_million": 0.435,
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-29",
- "total_cases": 4215.0,
- "new_cases": 108.0,
- "new_cases_smoothed": 112.0,
- "total_deaths": 182.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 1284.742,
- "new_cases_per_million": 32.919,
- "new_cases_smoothed_per_million": 34.138,
- "total_deaths_per_million": 55.474,
- "new_deaths_per_million": 0.914,
- "new_deaths_smoothed_per_million": 0.566,
- "stringency_index": 51.85
- },
- {
- "date": "2020-06-30",
- "total_cases": 4343.0,
- "new_cases": 128.0,
- "new_cases_smoothed": 117.0,
- "total_deaths": 183.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 1323.756,
- "new_cases_per_million": 39.015,
- "new_cases_smoothed_per_million": 35.662,
- "total_deaths_per_million": 55.779,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.566,
- "stringency_index": 51.85
- },
- {
- "date": "2020-07-01",
- "total_cases": 4453.0,
- "new_cases": 110.0,
- "new_cases_smoothed": 123.714,
- "total_deaths": 185.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 1357.285,
- "new_cases_per_million": 33.528,
- "new_cases_smoothed_per_million": 37.708,
- "total_deaths_per_million": 56.388,
- "new_deaths_per_million": 0.61,
- "new_deaths_smoothed_per_million": 0.61,
- "stringency_index": 51.85
- },
- {
- "date": "2020-07-02",
- "total_cases": 4606.0,
- "new_cases": 153.0,
- "new_cases_smoothed": 133.0,
- "total_deaths": 187.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 1403.919,
- "new_cases_per_million": 46.635,
- "new_cases_smoothed_per_million": 40.539,
- "total_deaths_per_million": 56.998,
- "new_deaths_per_million": 0.61,
- "new_deaths_smoothed_per_million": 0.653,
- "stringency_index": 51.85
- },
- {
- "date": "2020-07-03",
- "total_cases": 4788.0,
- "new_cases": 182.0,
- "new_cases_smoothed": 142.0,
- "total_deaths": 188.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 1459.393,
- "new_cases_per_million": 55.474,
- "new_cases_smoothed_per_million": 43.282,
- "total_deaths_per_million": 57.303,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.61,
- "stringency_index": 51.85
- },
- {
- "date": "2020-07-04",
- "total_cases": 4960.0,
- "new_cases": 172.0,
- "new_cases_smoothed": 146.571,
- "total_deaths": 190.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 1511.819,
- "new_cases_per_million": 52.426,
- "new_cases_smoothed_per_million": 44.675,
- "total_deaths_per_million": 57.912,
- "new_deaths_per_million": 0.61,
- "new_deaths_smoothed_per_million": 0.566,
- "stringency_index": 51.85
- },
- {
- "date": "2020-07-05",
- "total_cases": 5249.0,
- "new_cases": 289.0,
- "new_cases_smoothed": 163.143,
- "total_deaths": 190.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 1599.907,
- "new_cases_per_million": 88.088,
- "new_cases_smoothed_per_million": 49.726,
- "total_deaths_per_million": 57.912,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.479,
- "stringency_index": 56.48
- },
- {
- "date": "2020-07-06",
- "total_cases": 5393.0,
- "new_cases": 144.0,
- "new_cases_smoothed": 168.286,
- "total_deaths": 193.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 1643.799,
- "new_cases_per_million": 43.892,
- "new_cases_smoothed_per_million": 51.294,
- "total_deaths_per_million": 58.827,
- "new_deaths_per_million": 0.914,
- "new_deaths_smoothed_per_million": 0.479,
- "stringency_index": 56.48
- },
- {
- "date": "2020-07-07",
- "total_cases": 5457.0,
- "new_cases": 64.0,
- "new_cases_smoothed": 159.143,
- "total_deaths": 196.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 1663.306,
- "new_cases_per_million": 19.507,
- "new_cases_smoothed_per_million": 48.507,
- "total_deaths_per_million": 59.741,
- "new_deaths_per_million": 0.914,
- "new_deaths_smoothed_per_million": 0.566,
- "stringency_index": 56.48
- },
- {
- "date": "2020-07-08",
- "total_cases": 5618.0,
- "new_cases": 161.0,
- "new_cases_smoothed": 166.429,
- "total_deaths": 206.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 1712.379,
- "new_cases_per_million": 49.073,
- "new_cases_smoothed_per_million": 50.728,
- "total_deaths_per_million": 62.789,
- "new_deaths_per_million": 3.048,
- "new_deaths_smoothed_per_million": 0.914,
- "stringency_index": 56.48
- },
- {
- "date": "2020-07-09",
- "total_cases": 5868.0,
- "new_cases": 250.0,
- "new_cases_smoothed": 180.286,
- "total_deaths": 207.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 1788.58,
- "new_cases_per_million": 76.201,
- "new_cases_smoothed_per_million": 54.952,
- "total_deaths_per_million": 63.094,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.871,
- "stringency_index": 56.48
- },
- {
- "date": "2020-07-10",
- "total_cases": 6087.0,
- "new_cases": 219.0,
- "new_cases_smoothed": 185.571,
- "total_deaths": 213.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 1855.332,
- "new_cases_per_million": 66.752,
- "new_cases_smoothed_per_million": 56.563,
- "total_deaths_per_million": 64.923,
- "new_deaths_per_million": 1.829,
- "new_deaths_smoothed_per_million": 1.089,
- "stringency_index": 56.48
- },
- {
- "date": "2020-07-11",
- "total_cases": 6402.0,
- "new_cases": 315.0,
- "new_cases_smoothed": 206.0,
- "total_deaths": 215.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 1951.344,
- "new_cases_per_million": 96.013,
- "new_cases_smoothed_per_million": 62.789,
- "total_deaths_per_million": 65.532,
- "new_deaths_per_million": 0.61,
- "new_deaths_smoothed_per_million": 1.089,
- "stringency_index": 56.48
- },
- {
- "date": "2020-07-12",
- "total_cases": 6720.0,
- "new_cases": 318.0,
- "new_cases_smoothed": 210.143,
- "total_deaths": 218.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 2048.272,
- "new_cases_per_million": 96.927,
- "new_cases_smoothed_per_million": 64.052,
- "total_deaths_per_million": 66.447,
- "new_deaths_per_million": 0.914,
- "new_deaths_smoothed_per_million": 1.219,
- "stringency_index": 56.48
- },
- {
- "date": "2020-07-13",
- "total_cases": 6884.0,
- "new_cases": 164.0,
- "new_cases_smoothed": 213.0,
- "total_deaths": 220.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 2098.259,
- "new_cases_per_million": 49.988,
- "new_cases_smoothed_per_million": 64.923,
- "total_deaths_per_million": 67.057,
- "new_deaths_per_million": 0.61,
- "new_deaths_smoothed_per_million": 1.176,
- "stringency_index": 56.48
- },
- {
- "date": "2020-07-14",
- "total_cases": 6979.0,
- "new_cases": 95.0,
- "new_cases_smoothed": 217.429,
- "total_deaths": 224.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 2127.215,
- "new_cases_per_million": 28.956,
- "new_cases_smoothed_per_million": 66.273,
- "total_deaths_per_million": 68.276,
- "new_deaths_per_million": 1.219,
- "new_deaths_smoothed_per_million": 1.219,
- "stringency_index": 56.48
- },
- {
- "date": "2020-07-15",
- "total_cases": 7176.0,
- "new_cases": 197.0,
- "new_cases_smoothed": 222.571,
- "total_deaths": 225.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 2187.261,
- "new_cases_per_million": 60.046,
- "new_cases_smoothed_per_million": 67.84,
- "total_deaths_per_million": 68.581,
- "new_deaths_per_million": 0.305,
- "new_deaths_smoothed_per_million": 0.827,
- "stringency_index": 56.48
- },
- {
- "date": "2020-07-16",
- "total_cases": 7407.0,
- "new_cases": 231.0,
- "new_cases_smoothed": 219.857,
- "total_deaths": 233.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 2257.671,
- "new_cases_per_million": 70.409,
- "new_cases_smoothed_per_million": 67.013,
- "total_deaths_per_million": 71.019,
- "new_deaths_per_million": 2.438,
- "new_deaths_smoothed_per_million": 1.132,
- "stringency_index": 56.48
- },
- {
- "date": "2020-07-17",
- "total_cases": 7681.0,
- "new_cases": 274.0,
- "new_cases_smoothed": 227.714,
- "total_deaths": 239.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 2341.187,
- "new_cases_per_million": 83.516,
- "new_cases_smoothed_per_million": 69.408,
- "total_deaths_per_million": 72.848,
- "new_deaths_per_million": 1.829,
- "new_deaths_smoothed_per_million": 1.132,
- "stringency_index": 56.48
- },
- {
- "date": "2020-07-18",
- "total_cases": 7908.0,
- "new_cases": 227.0,
- "new_cases_smoothed": 215.143,
- "total_deaths": 243.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 2410.377,
- "new_cases_per_million": 69.19,
- "new_cases_smoothed_per_million": 65.576,
- "total_deaths_per_million": 74.067,
- "new_deaths_per_million": 1.219,
- "new_deaths_smoothed_per_million": 1.219,
- "stringency_index": 56.48
- },
- {
- "date": "2020-07-19",
- "total_cases": 8164.0,
- "new_cases": 256.0,
- "new_cases_smoothed": 206.286,
- "total_deaths": 245.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 2488.406,
- "new_cases_per_million": 78.029,
- "new_cases_smoothed_per_million": 62.876,
- "total_deaths_per_million": 74.677,
- "new_deaths_per_million": 0.61,
- "new_deaths_smoothed_per_million": 1.176,
- "stringency_index": 56.48
- },
- {
- "date": "2020-07-20",
- "total_cases": 8452.0,
- "new_cases": 288.0,
- "new_cases_smoothed": 224.0,
- "total_deaths": 250.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 2576.189,
- "new_cases_per_million": 87.783,
- "new_cases_smoothed_per_million": 68.276,
- "total_deaths_per_million": 76.201,
- "new_deaths_per_million": 1.524,
- "new_deaths_smoothed_per_million": 1.306,
- "stringency_index": 56.48
- },
- {
- "date": "2020-07-21",
- "total_cases": 8591.0,
- "new_cases": 139.0,
- "new_cases_smoothed": 230.286,
- "total_deaths": 256.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 2618.557,
- "new_cases_per_million": 42.368,
- "new_cases_smoothed_per_million": 70.192,
- "total_deaths_per_million": 78.029,
- "new_deaths_per_million": 1.829,
- "new_deaths_smoothed_per_million": 1.393,
- "stringency_index": 56.48
- },
- {
- "date": "2020-07-22",
- "total_cases": 8786.0,
- "new_cases": 195.0,
- "new_cases_smoothed": 230.0,
- "total_deaths": 261.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 2677.993,
- "new_cases_per_million": 59.436,
- "new_cases_smoothed_per_million": 70.105,
- "total_deaths_per_million": 79.553,
- "new_deaths_per_million": 1.524,
- "new_deaths_smoothed_per_million": 1.568,
- "stringency_index": 56.48
- },
- {
- "date": "2020-07-23",
- "total_cases": 9116.0,
- "new_cases": 330.0,
- "new_cases_smoothed": 244.143,
- "total_deaths": 267.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 2778.578,
- "new_cases_per_million": 100.585,
- "new_cases_smoothed_per_million": 74.415,
- "total_deaths_per_million": 81.382,
- "new_deaths_per_million": 1.829,
- "new_deaths_smoothed_per_million": 1.48,
- "stringency_index": 56.48
- },
- {
- "date": "2020-07-24",
- "total_cases": 9460.0,
- "new_cases": 344.0,
- "new_cases_smoothed": 254.143,
- "total_deaths": 272.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 2883.43,
- "new_cases_per_million": 104.852,
- "new_cases_smoothed_per_million": 77.463,
- "total_deaths_per_million": 82.906,
- "new_deaths_per_million": 1.524,
- "new_deaths_smoothed_per_million": 1.437,
- "stringency_index": 59.26
- },
- {
- "date": "2020-07-25",
- "total_cases": 9462.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 222.0,
- "total_deaths": 274.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 2884.039,
- "new_cases_per_million": 0.61,
- "new_cases_smoothed_per_million": 67.666,
- "total_deaths_per_million": 83.516,
- "new_deaths_per_million": 0.61,
- "new_deaths_smoothed_per_million": 1.35,
- "stringency_index": 59.26
- },
- {
- "date": "2020-07-26",
- "total_cases": 9764.0,
- "new_cases": 302.0,
- "new_cases_smoothed": 228.571,
- "total_deaths": 278.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 2976.09,
- "new_cases_per_million": 92.05,
- "new_cases_smoothed_per_million": 69.669,
- "total_deaths_per_million": 84.735,
- "new_deaths_per_million": 1.219,
- "new_deaths_smoothed_per_million": 1.437,
- "stringency_index": 59.26
- },
- {
- "date": "2020-07-27",
- "total_cases": 10069.0,
- "new_cases": 305.0,
- "new_cases_smoothed": 231.0,
- "total_deaths": 283.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 3069.054,
- "new_cases_per_million": 92.965,
- "new_cases_smoothed_per_million": 70.409,
- "total_deaths_per_million": 86.259,
- "new_deaths_per_million": 1.524,
- "new_deaths_smoothed_per_million": 1.437,
- "stringency_index": 59.26
- },
- {
- "date": "2020-07-28",
- "total_cases": 10498.0,
- "new_cases": 429.0,
- "new_cases_smoothed": 272.429,
- "total_deaths": 294.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 5.429,
- "total_cases_per_million": 3199.815,
- "new_cases_per_million": 130.76,
- "new_cases_smoothed_per_million": 83.037,
- "total_deaths_per_million": 89.612,
- "new_deaths_per_million": 3.353,
- "new_deaths_smoothed_per_million": 1.655,
- "stringency_index": 59.26
- },
- {
- "date": "2020-07-29",
- "total_cases": 10766.0,
- "new_cases": 268.0,
- "new_cases_smoothed": 282.857,
- "total_deaths": 297.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 3281.502,
- "new_cases_per_million": 81.687,
- "new_cases_smoothed_per_million": 86.216,
- "total_deaths_per_million": 90.526,
- "new_deaths_per_million": 0.914,
- "new_deaths_smoothed_per_million": 1.568,
- "stringency_index": 59.26
- },
- {
- "date": "2020-07-30",
- "total_cases": 10766.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 235.714,
- "total_deaths": 297.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 3281.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 71.846,
- "total_deaths_per_million": 90.526,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.306,
- "stringency_index": 59.26
- },
- {
- "date": "2020-07-31",
- "total_cases": 11444.0,
- "new_cases": 678.0,
- "new_cases_smoothed": 283.429,
- "total_deaths": 328.0,
- "new_deaths": 31.0,
- "new_deaths_smoothed": 8.0,
- "total_cases_per_million": 3488.158,
- "new_cases_per_million": 206.656,
- "new_cases_smoothed_per_million": 86.39,
- "total_deaths_per_million": 99.975,
- "new_deaths_per_million": 9.449,
- "new_deaths_smoothed_per_million": 2.438,
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-01",
- "total_cases": 11444.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 283.143,
- "total_deaths": 328.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 7.714,
- "total_cases_per_million": 3488.158,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 86.303,
- "total_deaths_per_million": 99.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.351,
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-02",
- "total_cases": 11875.0,
- "new_cases": 431.0,
- "new_cases_smoothed": 301.571,
- "total_deaths": 335.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 3619.527,
- "new_cases_per_million": 131.37,
- "new_cases_smoothed_per_million": 91.92,
- "total_deaths_per_million": 102.109,
- "new_deaths_per_million": 2.134,
- "new_deaths_smoothed_per_million": 2.482,
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-03",
- "total_cases": 12108.0,
- "new_cases": 233.0,
- "new_cases_smoothed": 291.286,
- "total_deaths": 343.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 3690.546,
- "new_cases_per_million": 71.019,
- "new_cases_smoothed_per_million": 88.785,
- "total_deaths_per_million": 104.547,
- "new_deaths_per_million": 2.438,
- "new_deaths_smoothed_per_million": 2.613,
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-04",
- "total_cases": 12296.0,
- "new_cases": 188.0,
- "new_cases_smoothed": 256.857,
- "total_deaths": 347.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 7.571,
- "total_cases_per_million": 3747.849,
- "new_cases_per_million": 57.303,
- "new_cases_smoothed_per_million": 78.291,
- "total_deaths_per_million": 105.766,
- "new_deaths_per_million": 1.219,
- "new_deaths_smoothed_per_million": 2.308,
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-05",
- "total_cases": 12858.0,
- "new_cases": 562.0,
- "new_cases_smoothed": 298.857,
- "total_deaths": 368.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 10.143,
- "total_cases_per_million": 3919.148,
- "new_cases_per_million": 171.299,
- "new_cases_smoothed_per_million": 91.092,
- "total_deaths_per_million": 112.167,
- "new_deaths_per_million": 6.401,
- "new_deaths_smoothed_per_million": 3.092,
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-06",
- "total_cases": 13146.0,
- "new_cases": 288.0,
- "new_cases_smoothed": 340.0,
- "total_deaths": 374.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 11.0,
- "total_cases_per_million": 4006.931,
- "new_cases_per_million": 87.783,
- "new_cases_smoothed_per_million": 103.633,
- "total_deaths_per_million": 113.996,
- "new_deaths_per_million": 1.829,
- "new_deaths_smoothed_per_million": 3.353,
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-07",
- "total_cases": 13397.0,
- "new_cases": 251.0,
- "new_cases_smoothed": 279.0,
- "total_deaths": 379.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 7.286,
- "total_cases_per_million": 4083.437,
- "new_cases_per_million": 76.505,
- "new_cases_smoothed_per_million": 85.04,
- "total_deaths_per_million": 115.52,
- "new_deaths_per_million": 1.524,
- "new_deaths_smoothed_per_million": 2.221,
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-08",
- "total_cases": 13687.0,
- "new_cases": 290.0,
- "new_cases_smoothed": 320.429,
- "total_deaths": 394.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 9.429,
- "total_cases_per_million": 4171.829,
- "new_cases_per_million": 88.393,
- "new_cases_smoothed_per_million": 97.667,
- "total_deaths_per_million": 120.092,
- "new_deaths_per_million": 4.572,
- "new_deaths_smoothed_per_million": 2.874,
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-09",
- "total_cases": 14089.0,
- "new_cases": 402.0,
- "new_cases_smoothed": 316.286,
- "total_deaths": 396.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 8.714,
- "total_cases_per_million": 4294.36,
- "new_cases_per_million": 122.531,
- "new_cases_smoothed_per_million": 96.405,
- "total_deaths_per_million": 120.702,
- "new_deaths_per_million": 0.61,
- "new_deaths_smoothed_per_million": 2.656,
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-10",
- "total_cases": 14325.0,
- "new_cases": 236.0,
- "new_cases_smoothed": 316.714,
- "total_deaths": 402.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 8.429,
- "total_cases_per_million": 4366.293,
- "new_cases_per_million": 71.933,
- "new_cases_smoothed_per_million": 96.535,
- "total_deaths_per_million": 122.531,
- "new_deaths_per_million": 1.829,
- "new_deaths_smoothed_per_million": 2.569,
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-11",
- "total_cases": 14498.0,
- "new_cases": 173.0,
- "new_cases_smoothed": 314.571,
- "total_deaths": 425.0,
- "new_deaths": 23.0,
- "new_deaths_smoothed": 11.143,
- "total_cases_per_million": 4419.024,
- "new_cases_per_million": 52.731,
- "new_cases_smoothed_per_million": 95.882,
- "total_deaths_per_million": 129.541,
- "new_deaths_per_million": 7.01,
- "new_deaths_smoothed_per_million": 3.396,
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-12",
- "total_cases": 14708.0,
- "new_cases": 210.0,
- "new_cases_smoothed": 264.286,
- "total_deaths": 447.0,
- "new_deaths": 22.0,
- "new_deaths_smoothed": 11.286,
- "total_cases_per_million": 4483.032,
- "new_cases_per_million": 64.008,
- "new_cases_smoothed_per_million": 80.555,
- "total_deaths_per_million": 136.247,
- "new_deaths_per_million": 6.706,
- "new_deaths_smoothed_per_million": 3.44,
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-13",
- "total_cases": 14961.0,
- "new_cases": 253.0,
- "new_cases_smoothed": 259.286,
- "total_deaths": 453.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 11.286,
- "total_cases_per_million": 4560.147,
- "new_cases_per_million": 77.115,
- "new_cases_smoothed_per_million": 79.031,
- "total_deaths_per_million": 138.075,
- "new_deaths_per_million": 1.829,
- "new_deaths_smoothed_per_million": 3.44,
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-14",
- "total_cases": 15184.0,
- "new_cases": 223.0,
- "new_cases_smoothed": 255.286,
- "total_deaths": 458.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 11.286,
- "total_cases_per_million": 4628.118,
- "new_cases_per_million": 67.971,
- "new_cases_smoothed_per_million": 77.812,
- "total_deaths_per_million": 139.599,
- "new_deaths_per_million": 1.524,
- "new_deaths_smoothed_per_million": 3.44,
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-15",
- "total_cases": 15534.0,
- "new_cases": 350.0,
- "new_cases_smoothed": 263.857,
- "total_deaths": 464.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 10.0,
- "total_cases_per_million": 4734.799,
- "new_cases_per_million": 106.681,
- "new_cases_smoothed_per_million": 80.424,
- "total_deaths_per_million": 141.428,
- "new_deaths_per_million": 1.829,
- "new_deaths_smoothed_per_million": 3.048,
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-16",
- "total_cases": 15535.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 206.571,
- "total_deaths": 469.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 10.429,
- "total_cases_per_million": 4735.104,
- "new_cases_per_million": 0.305,
- "new_cases_smoothed_per_million": 62.963,
- "total_deaths_per_million": 142.952,
- "new_deaths_per_million": 1.524,
- "new_deaths_smoothed_per_million": 3.179,
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-17",
- "total_cases": 15535.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 172.857,
- "total_deaths": 469.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 9.571,
- "total_cases_per_million": 4735.104,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 52.687,
- "total_deaths_per_million": 142.952,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.917,
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-18",
- "total_cases": 16035.0,
- "new_cases": 500.0,
- "new_cases_smoothed": 219.571,
- "total_deaths": 475.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 7.143,
- "total_cases_per_million": 4887.505,
- "new_cases_per_million": 152.401,
- "new_cases_smoothed_per_million": 66.926,
- "total_deaths_per_million": 144.781,
- "new_deaths_per_million": 1.829,
- "new_deaths_smoothed_per_million": 2.177,
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-19",
- "total_cases": 16351.0,
- "new_cases": 316.0,
- "new_cases_smoothed": 234.714,
- "total_deaths": 495.0,
- "new_deaths": 20.0,
- "new_deaths_smoothed": 6.857,
- "total_cases_per_million": 4983.823,
- "new_cases_per_million": 96.318,
- "new_cases_smoothed_per_million": 71.541,
- "total_deaths_per_million": 150.877,
- "new_deaths_per_million": 6.096,
- "new_deaths_smoothed_per_million": 2.09,
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-20",
- "total_cases": 16691.0,
- "new_cases": 340.0,
- "new_cases_smoothed": 247.143,
- "total_deaths": 507.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 7.714,
- "total_cases_per_million": 5087.455,
- "new_cases_per_million": 103.633,
- "new_cases_smoothed_per_million": 75.33,
- "total_deaths_per_million": 154.535,
- "new_deaths_per_million": 3.658,
- "new_deaths_smoothed_per_million": 2.351,
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-21",
- "total_cases": 17029.0,
- "new_cases": 338.0,
- "new_cases_smoothed": 263.571,
- "total_deaths": 515.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 5190.479,
- "new_cases_per_million": 103.023,
- "new_cases_smoothed_per_million": 80.337,
- "total_deaths_per_million": 156.973,
- "new_deaths_per_million": 2.438,
- "new_deaths_smoothed_per_million": 2.482,
- "stringency_index": 53.7
- },
- {
- "date": "2020-08-22",
- "total_cases": 17392.0,
- "new_cases": 363.0,
- "new_cases_smoothed": 265.429,
- "total_deaths": 520.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 8.0,
- "total_cases_per_million": 5301.122,
- "new_cases_per_million": 110.643,
- "new_cases_smoothed_per_million": 80.903,
- "total_deaths_per_million": 158.497,
- "new_deaths_per_million": 1.524,
- "new_deaths_smoothed_per_million": 2.438,
- "stringency_index": 53.7
- },
- {
- "date": "2020-08-23",
- "total_cases": 17392.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 265.286,
- "total_deaths": 520.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 7.286,
- "total_cases_per_million": 5301.122,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 80.86,
- "total_deaths_per_million": 158.497,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.221,
- "stringency_index": 53.7
- },
- {
- "date": "2020-08-24",
- "total_cases": 17900.0,
- "new_cases": 508.0,
- "new_cases_smoothed": 337.857,
- "total_deaths": 529.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 5455.961,
- "new_cases_per_million": 154.84,
- "new_cases_smoothed_per_million": 102.98,
- "total_deaths_per_million": 161.24,
- "new_deaths_per_million": 2.743,
- "new_deaths_smoothed_per_million": 2.613,
- "stringency_index": 53.7
- },
- {
- "date": "2020-08-25",
- "total_cases": 18027.0,
- "new_cases": 127.0,
- "new_cases_smoothed": 284.571,
- "total_deaths": 540.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 9.286,
- "total_cases_per_million": 5494.671,
- "new_cases_per_million": 38.71,
- "new_cases_smoothed_per_million": 86.738,
- "total_deaths_per_million": 164.593,
- "new_deaths_per_million": 3.353,
- "new_deaths_smoothed_per_million": 2.83,
- "stringency_index": 53.7
- },
- {
- "date": "2020-08-26",
- "total_cases": 18324.0,
- "new_cases": 297.0,
- "new_cases_smoothed": 281.857,
- "total_deaths": 554.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 8.429,
- "total_cases_per_million": 5585.198,
- "new_cases_per_million": 90.526,
- "new_cases_smoothed_per_million": 85.911,
- "total_deaths_per_million": 168.86,
- "new_deaths_per_million": 4.267,
- "new_deaths_smoothed_per_million": 2.569,
- "stringency_index": 53.7
- },
- {
- "date": "2020-08-27",
- "total_cases": 18609.0,
- "new_cases": 285.0,
- "new_cases_smoothed": 274.0,
- "total_deaths": 571.0,
- "new_deaths": 17.0,
- "new_deaths_smoothed": 9.143,
- "total_cases_per_million": 5672.066,
- "new_cases_per_million": 86.869,
- "new_cases_smoothed_per_million": 83.516,
- "total_deaths_per_million": 174.042,
- "new_deaths_per_million": 5.182,
- "new_deaths_smoothed_per_million": 2.787,
- "stringency_index": 53.7
- },
- {
- "date": "2020-08-28",
- "total_cases": 18920.0,
- "new_cases": 311.0,
- "new_cases_smoothed": 270.143,
- "total_deaths": 582.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 9.571,
- "total_cases_per_million": 5766.86,
- "new_cases_per_million": 94.794,
- "new_cases_smoothed_per_million": 82.34,
- "total_deaths_per_million": 177.395,
- "new_deaths_per_million": 3.353,
- "new_deaths_smoothed_per_million": 2.917,
- "stringency_index": 53.7
- },
- {
- "date": "2020-08-29",
- "total_cases": 19214.0,
- "new_cases": 294.0,
- "new_cases_smoothed": 260.286,
- "total_deaths": 585.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 9.286,
- "total_cases_per_million": 5856.472,
- "new_cases_per_million": 89.612,
- "new_cases_smoothed_per_million": 79.336,
- "total_deaths_per_million": 178.309,
- "new_deaths_per_million": 0.914,
- "new_deaths_smoothed_per_million": 2.83,
- "stringency_index": 53.7
- },
- {
- "date": "2020-08-30",
- "total_cases": 19214.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 260.286,
- "total_deaths": 588.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 9.714,
- "total_cases_per_million": 5856.472,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 79.336,
- "total_deaths_per_million": 179.224,
- "new_deaths_per_million": 0.914,
- "new_deaths_smoothed_per_million": 2.961,
- "stringency_index": 53.7
- },
- {
- "date": "2020-08-31",
- "total_cases": 19789.0,
- "new_cases": 575.0,
- "new_cases_smoothed": 269.857,
- "total_deaths": 592.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 9.0,
- "total_cases_per_million": 6031.733,
- "new_cases_per_million": 175.261,
- "new_cases_smoothed_per_million": 82.253,
- "total_deaths_per_million": 180.443,
- "new_deaths_per_million": 1.219,
- "new_deaths_smoothed_per_million": 2.743,
- "stringency_index": 46.3
- },
- {
- "date": "2020-09-01",
- "total_cases": 19964.0,
- "new_cases": 175.0,
- "new_cases_smoothed": 276.714,
- "total_deaths": 609.0,
- "new_deaths": 17.0,
- "new_deaths_smoothed": 9.857,
- "total_cases_per_million": 6085.073,
- "new_cases_per_million": 53.34,
- "new_cases_smoothed_per_million": 84.343,
- "total_deaths_per_million": 185.625,
- "new_deaths_per_million": 5.182,
- "new_deaths_smoothed_per_million": 3.004,
- "stringency_index": 46.3
- },
- {
- "date": "2020-09-02",
- "total_cases": 20234.0,
- "new_cases": 270.0,
- "new_cases_smoothed": 272.857,
- "total_deaths": 620.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 9.429,
- "total_cases_per_million": 6167.37,
- "new_cases_per_million": 82.297,
- "new_cases_smoothed_per_million": 83.167,
- "total_deaths_per_million": 188.977,
- "new_deaths_per_million": 3.353,
- "new_deaths_smoothed_per_million": 2.874,
- "stringency_index": 46.3
- },
- {
- "date": "2020-09-03",
- "total_cases": 20517.0,
- "new_cases": 283.0,
- "new_cases_smoothed": 272.571,
- "total_deaths": 627.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 8.0,
- "total_cases_per_million": 6253.629,
- "new_cases_per_million": 86.259,
- "new_cases_smoothed_per_million": 83.08,
- "total_deaths_per_million": 191.111,
- "new_deaths_per_million": 2.134,
- "new_deaths_smoothed_per_million": 2.438,
- "stringency_index": 46.3
- },
- {
- "date": "2020-09-04",
- "total_cases": 20804.0,
- "new_cases": 287.0,
- "new_cases_smoothed": 269.143,
- "total_deaths": 636.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 7.714,
- "total_cases_per_million": 6341.107,
- "new_cases_per_million": 87.478,
- "new_cases_smoothed_per_million": 82.035,
- "total_deaths_per_million": 193.854,
- "new_deaths_per_million": 2.743,
- "new_deaths_smoothed_per_million": 2.351,
- "stringency_index": 46.3
- },
- {
- "date": "2020-09-05",
- "total_cases": 21142.0,
- "new_cases": 338.0,
- "new_cases_smoothed": 275.429,
- "total_deaths": 639.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 7.714,
- "total_cases_per_million": 6444.13,
- "new_cases_per_million": 103.023,
- "new_cases_smoothed_per_million": 83.951,
- "total_deaths_per_million": 194.769,
- "new_deaths_per_million": 0.914,
- "new_deaths_smoothed_per_million": 2.351,
- "stringency_index": 46.3
- },
- {
- "date": "2020-09-06",
- "total_cases": 21142.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 275.429,
- "total_deaths": 639.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 7.286,
- "total_cases_per_million": 6444.13,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 83.951,
- "total_deaths_per_million": 194.769,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.221,
- "stringency_index": 46.3
- },
- {
- "date": "2020-09-07",
- "total_cases": 21142.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 193.286,
- "total_deaths": 639.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 6.714,
- "total_cases_per_million": 6444.13,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 58.914,
- "total_deaths_per_million": 194.769,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.047,
- "stringency_index": 40.74
- },
- {
- "date": "2020-09-08",
- "total_cases": 21660.0,
- "new_cases": 518.0,
- "new_cases_smoothed": 242.286,
- "total_deaths": 664.0,
- "new_deaths": 25.0,
- "new_deaths_smoothed": 7.857,
- "total_cases_per_million": 6602.018,
- "new_cases_per_million": 157.888,
- "new_cases_smoothed_per_million": 73.849,
- "total_deaths_per_million": 202.389,
- "new_deaths_per_million": 7.62,
- "new_deaths_smoothed_per_million": 2.395,
- "stringency_index": 40.74
- },
- {
- "date": "2020-09-09",
- "total_cases": 21961.0,
- "new_cases": 301.0,
- "new_cases_smoothed": 246.714,
- "total_deaths": 669.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 7.0,
- "total_cases_per_million": 6693.764,
- "new_cases_per_million": 91.745,
- "new_cases_smoothed_per_million": 75.199,
- "total_deaths_per_million": 203.913,
- "new_deaths_per_million": 1.524,
- "new_deaths_smoothed_per_million": 2.134,
- "stringency_index": 40.74
- },
- {
- "date": "2020-09-10",
- "total_cases": 22258.0,
- "new_cases": 297.0,
- "new_cases_smoothed": 248.714,
- "total_deaths": 675.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 6.857,
- "total_cases_per_million": 6784.29,
- "new_cases_per_million": 90.526,
- "new_cases_smoothed_per_million": 75.809,
- "total_deaths_per_million": 205.742,
- "new_deaths_per_million": 1.829,
- "new_deaths_smoothed_per_million": 2.09,
- "stringency_index": 40.74
- },
- {
- "date": "2020-09-11",
- "total_cases": 22544.0,
- "new_cases": 286.0,
- "new_cases_smoothed": 248.571,
- "total_deaths": 680.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 6.286,
- "total_cases_per_million": 6871.463,
- "new_cases_per_million": 87.173,
- "new_cases_smoothed_per_million": 75.765,
- "total_deaths_per_million": 207.266,
- "new_deaths_per_million": 1.524,
- "new_deaths_smoothed_per_million": 1.916,
- "stringency_index": 40.74
- },
- {
- "date": "2020-09-12",
- "total_cases": 22834.0,
- "new_cases": 290.0,
- "new_cases_smoothed": 241.714,
- "total_deaths": 686.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 6.714,
- "total_cases_per_million": 6959.856,
- "new_cases_per_million": 88.393,
- "new_cases_smoothed_per_million": 73.675,
- "total_deaths_per_million": 209.094,
- "new_deaths_per_million": 1.829,
- "new_deaths_smoothed_per_million": 2.047,
- "stringency_index": 40.74
- },
- {
- "date": "2020-09-13",
- "total_cases": 23134.0,
- "new_cases": 300.0,
- "new_cases_smoothed": 284.571,
- "total_deaths": 686.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 6.714,
- "total_cases_per_million": 7051.297,
- "new_cases_per_million": 91.441,
- "new_cases_smoothed_per_million": 86.738,
- "total_deaths_per_million": 209.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.047,
- "stringency_index": 40.74
- },
- {
- "date": "2020-09-14",
- "total_cases": 23462.0,
- "new_cases": 328.0,
- "new_cases_smoothed": 331.429,
- "total_deaths": 689.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 7.143,
- "total_cases_per_million": 7151.272,
- "new_cases_per_million": 99.975,
- "new_cases_smoothed_per_million": 101.02,
- "total_deaths_per_million": 210.009,
- "new_deaths_per_million": 0.914,
- "new_deaths_smoothed_per_million": 2.177,
- "stringency_index": 40.74
- },
- {
- "date": "2020-09-15",
- "total_cases": 23630.0,
- "new_cases": 168.0,
- "new_cases_smoothed": 281.429,
- "total_deaths": 698.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 7202.479,
- "new_cases_per_million": 51.207,
- "new_cases_smoothed_per_million": 85.78,
- "total_deaths_per_million": 212.752,
- "new_deaths_per_million": 2.743,
- "new_deaths_smoothed_per_million": 1.48,
- "stringency_index": 40.74
- },
- {
- "date": "2020-09-16",
- "total_cases": 23924.0,
- "new_cases": 294.0,
- "new_cases_smoothed": 280.429,
- "total_deaths": 718.0,
- "new_deaths": 20.0,
- "new_deaths_smoothed": 7.0,
- "total_cases_per_million": 7292.091,
- "new_cases_per_million": 89.612,
- "new_cases_smoothed_per_million": 85.475,
- "total_deaths_per_million": 218.848,
- "new_deaths_per_million": 6.096,
- "new_deaths_smoothed_per_million": 2.134,
- "stringency_index": 40.74
- },
- {
- "date": "2020-09-17",
- "total_cases": 24206.0,
- "new_cases": 282.0,
- "new_cases_smoothed": 278.286,
- "total_deaths": 729.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 7.714,
- "total_cases_per_million": 7378.045,
- "new_cases_per_million": 85.954,
- "new_cases_smoothed_per_million": 84.822,
- "total_deaths_per_million": 222.201,
- "new_deaths_per_million": 3.353,
- "new_deaths_smoothed_per_million": 2.351,
- "stringency_index": 40.74
- },
- {
- "date": "2020-09-18",
- "total_cases": 24600.0,
- "new_cases": 394.0,
- "new_cases_smoothed": 293.714,
- "total_deaths": 741.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 8.714,
- "total_cases_per_million": 7498.137,
- "new_cases_per_million": 120.092,
- "new_cases_smoothed_per_million": 89.525,
- "total_deaths_per_million": 225.859,
- "new_deaths_per_million": 3.658,
- "new_deaths_smoothed_per_million": 2.656,
- "stringency_index": 40.74
- },
- {
- "date": "2020-09-19",
- "total_cases": 24892.0,
- "new_cases": 292.0,
- "new_cases_smoothed": 294.0,
- "total_deaths": 746.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 7587.139,
- "new_cases_per_million": 89.002,
- "new_cases_smoothed_per_million": 89.612,
- "total_deaths_per_million": 227.383,
- "new_deaths_per_million": 1.524,
- "new_deaths_smoothed_per_million": 2.613,
- "stringency_index": 40.74
- },
- {
- "date": "2020-09-20",
- "total_cases": 25212.0,
- "new_cases": 320.0,
- "new_cases_smoothed": 296.857,
- "total_deaths": 752.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 9.429,
- "total_cases_per_million": 7684.676,
- "new_cases_per_million": 97.537,
- "new_cases_smoothed_per_million": 90.483,
- "total_deaths_per_million": 229.211,
- "new_deaths_per_million": 1.829,
- "new_deaths_smoothed_per_million": 2.874,
- "stringency_index": 40.74
- },
- {
- "date": "2020-09-21",
- "total_cases": 25424.0,
- "new_cases": 212.0,
- "new_cases_smoothed": 280.286,
- "total_deaths": 757.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 9.714,
- "total_cases_per_million": 7749.294,
- "new_cases_per_million": 64.618,
- "new_cases_smoothed_per_million": 85.432,
- "total_deaths_per_million": 230.735,
- "new_deaths_per_million": 1.524,
- "new_deaths_smoothed_per_million": 2.961,
- "stringency_index": 40.74
- },
- {
- "date": "2020-09-22",
- "total_cases": 25516.0,
- "new_cases": 92.0,
- "new_cases_smoothed": 269.429,
- "total_deaths": 763.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 9.286,
- "total_cases_per_million": 7777.336,
- "new_cases_per_million": 28.042,
- "new_cases_smoothed_per_million": 82.122,
- "total_deaths_per_million": 232.564,
- "new_deaths_per_million": 1.829,
- "new_deaths_smoothed_per_million": 2.83
- },
- {
- "date": "2020-09-23",
- "total_cases": 25737.0,
- "new_cases": 221.0,
- "new_cases_smoothed": 259.0,
- "total_deaths": 778.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 7844.697,
- "new_cases_per_million": 67.361,
- "new_cases_smoothed_per_million": 78.944,
- "total_deaths_per_million": 237.136,
- "new_deaths_per_million": 4.572,
- "new_deaths_smoothed_per_million": 2.613
- },
- {
- "date": "2020-09-24",
- "total_cases": 26081.0,
- "new_cases": 344.0,
- "new_cases_smoothed": 267.857,
- "total_deaths": 790.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 8.714,
- "total_cases_per_million": 7949.549,
- "new_cases_per_million": 104.852,
- "new_cases_smoothed_per_million": 81.643,
- "total_deaths_per_million": 240.794,
- "new_deaths_per_million": 3.658,
- "new_deaths_smoothed_per_million": 2.656
- },
- {
- "date": "2020-09-25",
- "total_cases": 26316.0,
- "new_cases": 235.0,
- "new_cases_smoothed": 245.143,
- "total_deaths": 802.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 8.714,
- "total_cases_per_million": 8021.178,
- "new_cases_per_million": 71.629,
- "new_cases_smoothed_per_million": 74.72,
- "total_deaths_per_million": 244.451,
- "new_deaths_per_million": 3.658,
- "new_deaths_smoothed_per_million": 2.656
- }
- ]
- },
- "BLR": {
- "continent": "Europe",
- "location": "Belarus",
- "population": 9449321.0,
- "population_density": 46.858,
- "median_age": 40.3,
- "aged_65_older": 14.799,
- "aged_70_older": 9.788,
- "gdp_per_capita": 17167.967,
- "cardiovasc_death_rate": 443.129,
- "diabetes_prevalence": 5.18,
- "female_smokers": 10.5,
- "male_smokers": 46.1,
- "hospital_beds_per_thousand": 11.0,
- "life_expectancy": 74.79,
- "human_development_index": 0.808,
- "data": [
- {
- "date": "2019-12-31",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-01-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-02",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-03",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-04",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-05",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-06",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-07",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-08",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-09",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-10",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-11",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-12",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-13",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-14",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-15",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-16",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-17",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-18",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-19",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-20",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-21",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-22",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-23",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-24",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-25",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-26",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-27",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-28",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-29",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-30",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-31",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-02",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-03",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-04",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-05",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-06",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-07",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-08",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-09",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-10",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-11",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-12",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-13",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-14",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-15",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-16",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-17",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-18",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-19",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-20",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-21",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-22",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-23",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-24",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-25",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-26",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-27",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-28",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.106,
- "new_cases_per_million": 0.106,
- "new_cases_smoothed_per_million": 0.015,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-29",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.106,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.015,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-01",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.106,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.015,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-02",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.106,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.015,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-03",
- "new_cases_smoothed": 0.143,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.015,
- "new_deaths_smoothed_per_million": 0.0,
- "total_tests": 5000.0,
- "total_tests_per_thousand": 0.529,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-04",
- "total_cases": 4.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.423,
- "new_cases_per_million": 0.317,
- "new_cases_smoothed_per_million": 0.06,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-05",
- "total_cases": 6.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.635,
- "new_cases_per_million": 0.212,
- "new_cases_smoothed_per_million": 0.091,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-06",
- "new_cases_smoothed": 0.714,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.076,
- "new_deaths_smoothed_per_million": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-07",
- "new_cases_smoothed": 0.714,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.076,
- "new_deaths_smoothed_per_million": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-08",
- "new_cases_smoothed": 0.714,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.076,
- "new_deaths_smoothed_per_million": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-09",
- "new_cases_smoothed": 0.714,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.076,
- "new_deaths_smoothed_per_million": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-10",
- "new_cases_smoothed": 0.714,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.076,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 611.0,
- "new_tests_smoothed_per_thousand": 0.065,
- "tests_per_case": 855.4,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-11",
- "total_cases": 9.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.952,
- "new_cases_per_million": 0.317,
- "new_cases_smoothed_per_million": 0.076,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 611.0,
- "new_tests_smoothed_per_thousand": 0.065,
- "tests_per_case": 855.4,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-12",
- "total_cases": 12.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.27,
- "new_cases_per_million": 0.317,
- "new_cases_smoothed_per_million": 0.091,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "total_tests": 10500.0,
- "total_tests_per_thousand": 1.111,
- "new_tests_smoothed": 611.0,
- "new_tests_smoothed_per_thousand": 0.065,
- "tests_per_case": 712.8330000000001,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-13",
- "total_cases": 21.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.222,
- "new_cases_per_million": 0.952,
- "new_cases_smoothed_per_million": 0.227,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 720.0,
- "new_tests_smoothed_per_thousand": 0.076,
- "tests_per_case": 336.0,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-14",
- "new_cases_smoothed": 2.143,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.227,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 829.0,
- "new_tests_smoothed_per_thousand": 0.088,
- "tests_per_case": 386.86699999999996,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-03-15",
- "new_cases_smoothed": 2.143,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.227,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 938.0,
- "new_tests_smoothed_per_thousand": 0.099,
- "tests_per_case": 437.733,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-03-16",
- "total_cases": 27.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.857,
- "new_cases_per_million": 0.635,
- "new_cases_smoothed_per_million": 0.317,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "total_tests": 16000.0,
- "total_tests_per_thousand": 1.693,
- "new_tests_smoothed": 1048.0,
- "new_tests_smoothed_per_thousand": 0.111,
- "tests_per_case": 349.333,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-03-17",
- "total_cases": 36.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 4.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.81,
- "new_cases_per_million": 0.952,
- "new_cases_smoothed_per_million": 0.454,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 1067.0,
- "new_tests_smoothed_per_thousand": 0.113,
- "tests_per_case": 248.967,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-03-18",
- "total_cases": 36.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.81,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.408,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 1087.0,
- "new_tests_smoothed_per_thousand": 0.115,
- "tests_per_case": 281.815,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-03-19",
- "total_cases": 46.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 4.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 4.868,
- "new_cases_per_million": 1.058,
- "new_cases_smoothed_per_million": 0.514,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 1107.0,
- "new_tests_smoothed_per_thousand": 0.117,
- "tests_per_case": 227.912,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-03-20",
- "total_cases": 57.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.032,
- "new_cases_per_million": 1.164,
- "new_cases_smoothed_per_million": 0.544,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "total_tests": 19000.0,
- "total_tests_per_thousand": 2.011,
- "new_tests_smoothed": 1018.0,
- "new_tests_smoothed_per_thousand": 0.108,
- "tests_per_case": 197.94400000000002,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-03-21",
- "total_cases": 57.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.032,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.544,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 979.0,
- "new_tests_smoothed_per_thousand": 0.104,
- "tests_per_case": 190.361,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-03-22",
- "total_cases": 76.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 7.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 8.043,
- "new_cases_per_million": 2.011,
- "new_cases_smoothed_per_million": 0.832,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 939.0,
- "new_tests_smoothed_per_thousand": 0.099,
- "tests_per_case": 119.509,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-03-23",
- "total_cases": 76.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 8.043,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.741,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 900.0,
- "new_tests_smoothed_per_thousand": 0.095,
- "tests_per_case": 128.571,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-03-24",
- "total_cases": 81.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 6.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 8.572,
- "new_cases_per_million": 0.529,
- "new_cases_smoothed_per_million": 0.68,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 950.0,
- "new_tests_smoothed_per_thousand": 0.101,
- "tests_per_case": 147.778,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-03-25",
- "total_cases": 81.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 8.572,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.68,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 1000.0,
- "new_tests_smoothed_per_thousand": 0.106,
- "tests_per_case": 155.556,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-03-26",
- "total_cases": 86.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 5.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.101,
- "new_cases_per_million": 0.529,
- "new_cases_smoothed_per_million": 0.605,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 1050.0,
- "new_tests_smoothed_per_thousand": 0.111,
- "tests_per_case": 183.75,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-03-27",
- "total_cases": 86.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.101,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.438,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 1100.0,
- "new_tests_smoothed_per_thousand": 0.116,
- "tests_per_case": 265.517,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-03-28",
- "total_cases": 94.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 5.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.948,
- "new_cases_per_million": 0.847,
- "new_cases_smoothed_per_million": 0.559,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 1100.0,
- "new_tests_smoothed_per_thousand": 0.116,
- "tests_per_case": 208.108,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-03-29",
- "total_cases": 94.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.948,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.272,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 1100.0,
- "new_tests_smoothed_per_thousand": 0.116,
- "tests_per_case": 427.778,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-03-30",
- "total_cases": 94.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.948,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.272,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "total_tests": 30000.0,
- "total_tests_per_thousand": 3.175,
- "new_tests_smoothed": 1100.0,
- "new_tests_smoothed_per_thousand": 0.116,
- "tests_per_case": 427.778,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-03-31",
- "total_cases": 105.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 3.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11.112,
- "new_cases_per_million": 1.164,
- "new_cases_smoothed_per_million": 0.363,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1000.0,
- "total_tests": 31000.0,
- "total_tests_per_thousand": 3.281,
- "new_tests_per_thousand": 0.106,
- "new_tests_smoothed": 1086.0,
- "new_tests_smoothed_per_thousand": 0.115,
- "tests_per_case": 316.75,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-04-01",
- "total_cases": 152.0,
- "new_cases": 47.0,
- "new_cases_smoothed": 10.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 16.086,
- "new_cases_per_million": 4.974,
- "new_cases_smoothed_per_million": 1.073,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1000.0,
- "total_tests": 32000.0,
- "total_tests_per_thousand": 3.386,
- "new_tests_per_thousand": 0.106,
- "new_tests_smoothed": 1071.0,
- "new_tests_smoothed_per_thousand": 0.113,
- "tests_per_case": 105.59200000000001,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-04-02",
- "total_cases": 152.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 9.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 16.086,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.998,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 1143.0,
- "new_tests_smoothed_per_thousand": 0.121,
- "tests_per_case": 121.227,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-04-03",
- "total_cases": 254.0,
- "new_cases": 102.0,
- "new_cases_smoothed": 24.0,
- "total_deaths": 4.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 26.88,
- "new_cases_per_million": 10.794,
- "new_cases_smoothed_per_million": 2.54,
- "total_deaths_per_million": 0.423,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.06,
- "new_tests_smoothed": 1214.0,
- "new_tests_smoothed_per_thousand": 0.128,
- "tests_per_case": 50.583,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-04-04",
- "total_cases": 351.0,
- "new_cases": 97.0,
- "new_cases_smoothed": 36.714,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 37.146,
- "new_cases_per_million": 10.265,
- "new_cases_smoothed_per_million": 3.885,
- "total_deaths_per_million": 0.423,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.06,
- "new_tests_smoothed": 1286.0,
- "new_tests_smoothed_per_thousand": 0.136,
- "tests_per_case": 35.027,
- "positive_rate": 0.028999999999999998,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-04-05",
- "total_cases": 394.0,
- "new_cases": 43.0,
- "new_cases_smoothed": 42.857,
- "total_deaths": 5.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 41.696,
- "new_cases_per_million": 4.551,
- "new_cases_smoothed_per_million": 4.535,
- "total_deaths_per_million": 0.529,
- "new_deaths_per_million": 0.106,
- "new_deaths_smoothed_per_million": 0.076,
- "new_tests_smoothed": 1357.0,
- "new_tests_smoothed_per_thousand": 0.144,
- "tests_per_case": 31.663,
- "positive_rate": 0.032,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-04-06",
- "total_cases": 564.0,
- "new_cases": 170.0,
- "new_cases_smoothed": 67.143,
- "total_deaths": 8.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 59.687,
- "new_cases_per_million": 17.991,
- "new_cases_smoothed_per_million": 7.106,
- "total_deaths_per_million": 0.847,
- "new_deaths_per_million": 0.317,
- "new_deaths_smoothed_per_million": 0.121,
- "total_tests": 40000.0,
- "total_tests_per_thousand": 4.233,
- "new_tests_smoothed": 1429.0,
- "new_tests_smoothed_per_thousand": 0.151,
- "tests_per_case": 21.283,
- "positive_rate": 0.047,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-04-07",
- "total_cases": 700.0,
- "new_cases": 136.0,
- "new_cases_smoothed": 85.0,
- "total_deaths": 13.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 74.079,
- "new_cases_per_million": 14.393,
- "new_cases_smoothed_per_million": 8.995,
- "total_deaths_per_million": 1.376,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.197,
- "new_tests_smoothed": 1714.0,
- "new_tests_smoothed_per_thousand": 0.181,
- "tests_per_case": 20.165,
- "positive_rate": 0.05,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-04-08",
- "total_cases": 861.0,
- "new_cases": 161.0,
- "new_cases_smoothed": 101.286,
- "total_deaths": 13.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 91.118,
- "new_cases_per_million": 17.038,
- "new_cases_smoothed_per_million": 10.719,
- "total_deaths_per_million": 1.376,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.197,
- "total_tests": 46000.0,
- "total_tests_per_thousand": 4.868,
- "new_tests_smoothed": 2000.0,
- "new_tests_smoothed_per_thousand": 0.212,
- "tests_per_case": 19.746,
- "positive_rate": 0.051,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-04-09",
- "total_cases": 1066.0,
- "new_cases": 205.0,
- "new_cases_smoothed": 130.571,
- "total_deaths": 13.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 112.812,
- "new_cases_per_million": 21.695,
- "new_cases_smoothed_per_million": 13.818,
- "total_deaths_per_million": 1.376,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.197,
- "new_tests": 3000.0,
- "total_tests": 49000.0,
- "total_tests_per_thousand": 5.186,
- "new_tests_per_thousand": 0.317,
- "new_tests_smoothed": 2200.0,
- "new_tests_smoothed_per_thousand": 0.233,
- "tests_per_case": 16.849,
- "positive_rate": 0.059000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-04-10",
- "total_cases": 1486.0,
- "new_cases": 420.0,
- "new_cases_smoothed": 176.0,
- "total_deaths": 16.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 157.26,
- "new_cases_per_million": 44.448,
- "new_cases_smoothed_per_million": 18.626,
- "total_deaths_per_million": 1.693,
- "new_deaths_per_million": 0.317,
- "new_deaths_smoothed_per_million": 0.181,
- "new_tests_smoothed": 2686.0,
- "new_tests_smoothed_per_thousand": 0.284,
- "tests_per_case": 15.261,
- "positive_rate": 0.066,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-04-11",
- "total_cases": 1981.0,
- "new_cases": 495.0,
- "new_cases_smoothed": 232.857,
- "total_deaths": 19.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 209.645,
- "new_cases_per_million": 52.385,
- "new_cases_smoothed_per_million": 24.643,
- "total_deaths_per_million": 2.011,
- "new_deaths_per_million": 0.317,
- "new_deaths_smoothed_per_million": 0.227,
- "new_tests_smoothed": 3171.0,
- "new_tests_smoothed_per_thousand": 0.336,
- "tests_per_case": 13.618,
- "positive_rate": 0.073,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-04-12",
- "total_cases": 2226.0,
- "new_cases": 245.0,
- "new_cases_smoothed": 261.714,
- "total_deaths": 23.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 235.572,
- "new_cases_per_million": 25.928,
- "new_cases_smoothed_per_million": 27.697,
- "total_deaths_per_million": 2.434,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.272,
- "total_tests": 64000.0,
- "total_tests_per_thousand": 6.773,
- "new_tests_smoothed": 3657.0,
- "new_tests_smoothed_per_thousand": 0.387,
- "tests_per_case": 13.972999999999999,
- "positive_rate": 0.07200000000000001,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-04-13",
- "total_cases": 2578.0,
- "new_cases": 352.0,
- "new_cases_smoothed": 287.714,
- "total_deaths": 26.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 272.824,
- "new_cases_per_million": 37.251,
- "new_cases_smoothed_per_million": 30.448,
- "total_deaths_per_million": 2.752,
- "new_deaths_per_million": 0.317,
- "new_deaths_smoothed_per_million": 0.272,
- "new_tests": 4000.0,
- "total_tests": 68000.0,
- "total_tests_per_thousand": 7.196,
- "new_tests_per_thousand": 0.423,
- "new_tests_smoothed": 4000.0,
- "new_tests_smoothed_per_thousand": 0.423,
- "tests_per_case": 13.902999999999999,
- "positive_rate": 0.07200000000000001,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-04-14",
- "total_cases": 2919.0,
- "new_cases": 341.0,
- "new_cases_smoothed": 317.0,
- "total_deaths": 29.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 308.911,
- "new_cases_per_million": 36.087,
- "new_cases_smoothed_per_million": 33.547,
- "total_deaths_per_million": 3.069,
- "new_deaths_per_million": 0.317,
- "new_deaths_smoothed_per_million": 0.242,
- "new_tests": 3875.0,
- "total_tests": 71875.0,
- "total_tests_per_thousand": 7.606,
- "new_tests_per_thousand": 0.41,
- "new_tests_smoothed": 4125.0,
- "new_tests_smoothed_per_thousand": 0.437,
- "tests_per_case": 13.013,
- "positive_rate": 0.077,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-04-15",
- "total_cases": 3281.0,
- "new_cases": 362.0,
- "new_cases_smoothed": 345.714,
- "total_deaths": 33.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 347.221,
- "new_cases_per_million": 38.31,
- "new_cases_smoothed_per_million": 36.586,
- "total_deaths_per_million": 3.492,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.302,
- "new_tests": 4323.0,
- "total_tests": 76198.0,
- "total_tests_per_thousand": 8.064,
- "new_tests_per_thousand": 0.457,
- "new_tests_smoothed": 4314.0,
- "new_tests_smoothed_per_thousand": 0.457,
- "tests_per_case": 12.479000000000001,
- "positive_rate": 0.08,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-04-16",
- "total_cases": 3728.0,
- "new_cases": 447.0,
- "new_cases_smoothed": 380.286,
- "total_deaths": 36.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 394.526,
- "new_cases_per_million": 47.305,
- "new_cases_smoothed_per_million": 40.245,
- "total_deaths_per_million": 3.81,
- "new_deaths_per_million": 0.317,
- "new_deaths_smoothed_per_million": 0.348,
- "new_tests_smoothed": 4644.0,
- "new_tests_smoothed_per_thousand": 0.491,
- "tests_per_case": 12.212,
- "positive_rate": 0.08199999999999999,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-04-17",
- "total_cases": 4204.0,
- "new_cases": 476.0,
- "new_cases_smoothed": 388.286,
- "total_deaths": 40.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 444.9,
- "new_cases_per_million": 50.374,
- "new_cases_smoothed_per_million": 41.091,
- "total_deaths_per_million": 4.233,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.363,
- "total_tests": 86813.0,
- "total_tests_per_thousand": 9.187,
- "new_tests_smoothed": 4688.0,
- "new_tests_smoothed_per_thousand": 0.496,
- "tests_per_case": 12.074000000000002,
- "positive_rate": 0.083,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-04-18",
- "total_cases": 4779.0,
- "new_cases": 575.0,
- "new_cases_smoothed": 399.714,
- "total_deaths": 43.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 505.751,
- "new_cases_per_million": 60.851,
- "new_cases_smoothed_per_million": 42.301,
- "total_deaths_per_million": 4.551,
- "new_deaths_per_million": 0.317,
- "new_deaths_smoothed_per_million": 0.363,
- "new_tests": 5896.0,
- "total_tests": 92709.0,
- "total_tests_per_thousand": 9.811,
- "new_tests_per_thousand": 0.624,
- "new_tests_smoothed": 4816.0,
- "new_tests_smoothed_per_thousand": 0.51,
- "tests_per_case": 12.049000000000001,
- "positive_rate": 0.083,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-04-19",
- "total_cases": 5297.0,
- "new_cases": 518.0,
- "new_cases_smoothed": 438.714,
- "total_deaths": 45.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 560.569,
- "new_cases_per_million": 54.819,
- "new_cases_smoothed_per_million": 46.428,
- "total_deaths_per_million": 4.762,
- "new_deaths_per_million": 0.212,
- "new_deaths_smoothed_per_million": 0.333,
- "new_tests": 5522.0,
- "total_tests": 98231.0,
- "total_tests_per_thousand": 10.396,
- "new_tests_per_thousand": 0.584,
- "new_tests_smoothed": 4890.0,
- "new_tests_smoothed_per_thousand": 0.517,
- "tests_per_case": 11.145999999999999,
- "positive_rate": 0.09,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-04-20",
- "total_cases": 5807.0,
- "new_cases": 510.0,
- "new_cases_smoothed": 461.286,
- "total_deaths": 47.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 614.542,
- "new_cases_per_million": 53.972,
- "new_cases_smoothed_per_million": 48.817,
- "total_deaths_per_million": 4.974,
- "new_deaths_per_million": 0.212,
- "new_deaths_smoothed_per_million": 0.317,
- "new_tests": 4335.0,
- "total_tests": 102566.0,
- "total_tests_per_thousand": 10.854,
- "new_tests_per_thousand": 0.459,
- "new_tests_smoothed": 4938.0,
- "new_tests_smoothed_per_thousand": 0.523,
- "tests_per_case": 10.705,
- "positive_rate": 0.09300000000000001,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-21",
- "total_cases": 6264.0,
- "new_cases": 457.0,
- "new_cases_smoothed": 477.857,
- "total_deaths": 51.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 662.905,
- "new_cases_per_million": 48.363,
- "new_cases_smoothed_per_million": 50.571,
- "total_deaths_per_million": 5.397,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.333,
- "new_tests": 5979.0,
- "total_tests": 108545.0,
- "total_tests_per_thousand": 11.487,
- "new_tests_per_thousand": 0.633,
- "new_tests_smoothed": 5239.0,
- "new_tests_smoothed_per_thousand": 0.554,
- "tests_per_case": 10.964,
- "positive_rate": 0.091,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-22",
- "total_cases": 6723.0,
- "new_cases": 459.0,
- "new_cases_smoothed": 491.714,
- "total_deaths": 55.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 711.48,
- "new_cases_per_million": 48.575,
- "new_cases_smoothed_per_million": 52.037,
- "total_deaths_per_million": 5.821,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.333,
- "new_tests": 6410.0,
- "total_tests": 114955.0,
- "total_tests_per_thousand": 12.165,
- "new_tests_per_thousand": 0.678,
- "new_tests_smoothed": 5537.0,
- "new_tests_smoothed_per_thousand": 0.586,
- "tests_per_case": 11.261,
- "positive_rate": 0.08900000000000001,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-23",
- "total_cases": 7281.0,
- "new_cases": 558.0,
- "new_cases_smoothed": 507.571,
- "total_deaths": 58.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 770.532,
- "new_cases_per_million": 59.052,
- "new_cases_smoothed_per_million": 53.715,
- "total_deaths_per_million": 6.138,
- "new_deaths_per_million": 0.317,
- "new_deaths_smoothed_per_million": 0.333,
- "new_tests": 7588.0,
- "total_tests": 122543.0,
- "total_tests_per_thousand": 12.968,
- "new_tests_per_thousand": 0.803,
- "new_tests_smoothed": 5862.0,
- "new_tests_smoothed_per_thousand": 0.62,
- "tests_per_case": 11.549000000000001,
- "positive_rate": 0.087,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-24",
- "total_cases": 8022.0,
- "new_cases": 741.0,
- "new_cases_smoothed": 545.429,
- "total_deaths": 60.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 848.95,
- "new_cases_per_million": 78.418,
- "new_cases_smoothed_per_million": 57.721,
- "total_deaths_per_million": 6.35,
- "new_deaths_per_million": 0.212,
- "new_deaths_smoothed_per_million": 0.302,
- "new_tests": 8281.0,
- "total_tests": 130824.0,
- "total_tests_per_thousand": 13.845,
- "new_tests_per_thousand": 0.876,
- "new_tests_smoothed": 6287.0,
- "new_tests_smoothed_per_thousand": 0.665,
- "tests_per_case": 11.527000000000001,
- "positive_rate": 0.087,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-25",
- "total_cases": 8773.0,
- "new_cases": 751.0,
- "new_cases_smoothed": 570.571,
- "total_deaths": 63.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 928.426,
- "new_cases_per_million": 79.477,
- "new_cases_smoothed_per_million": 60.382,
- "total_deaths_per_million": 6.667,
- "new_deaths_per_million": 0.317,
- "new_deaths_smoothed_per_million": 0.302,
- "new_tests": 8471.0,
- "total_tests": 139295.0,
- "total_tests_per_thousand": 14.741,
- "new_tests_per_thousand": 0.896,
- "new_tests_smoothed": 6655.0,
- "new_tests_smoothed_per_thousand": 0.704,
- "tests_per_case": 11.664000000000001,
- "positive_rate": 0.086,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-26",
- "total_cases": 9590.0,
- "new_cases": 817.0,
- "new_cases_smoothed": 613.286,
- "total_deaths": 67.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 1014.888,
- "new_cases_per_million": 86.461,
- "new_cases_smoothed_per_million": 64.903,
- "total_deaths_per_million": 7.09,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.333,
- "new_tests": 8230.0,
- "total_tests": 147525.0,
- "total_tests_per_thousand": 15.612,
- "new_tests_per_thousand": 0.871,
- "new_tests_smoothed": 7042.0,
- "new_tests_smoothed_per_thousand": 0.745,
- "tests_per_case": 11.482000000000001,
- "positive_rate": 0.087,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-27",
- "total_cases": 10463.0,
- "new_cases": 873.0,
- "new_cases_smoothed": 665.143,
- "total_deaths": 72.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 1107.275,
- "new_cases_per_million": 92.388,
- "new_cases_smoothed_per_million": 70.391,
- "total_deaths_per_million": 7.62,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.378,
- "new_tests": 6275.0,
- "total_tests": 153800.0,
- "total_tests_per_thousand": 16.276,
- "new_tests_per_thousand": 0.664,
- "new_tests_smoothed": 7319.0,
- "new_tests_smoothed_per_thousand": 0.775,
- "tests_per_case": 11.004000000000001,
- "positive_rate": 0.091,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-28",
- "total_cases": 11289.0,
- "new_cases": 826.0,
- "new_cases_smoothed": 717.857,
- "total_deaths": 75.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 1194.689,
- "new_cases_per_million": 87.414,
- "new_cases_smoothed_per_million": 75.969,
- "total_deaths_per_million": 7.937,
- "new_deaths_per_million": 0.317,
- "new_deaths_smoothed_per_million": 0.363,
- "new_tests": 7228.0,
- "total_tests": 161028.0,
- "total_tests_per_thousand": 17.041,
- "new_tests_per_thousand": 0.765,
- "new_tests_smoothed": 7498.0,
- "new_tests_smoothed_per_thousand": 0.793,
- "tests_per_case": 10.445,
- "positive_rate": 0.096,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-29",
- "total_cases": 12208.0,
- "new_cases": 919.0,
- "new_cases_smoothed": 783.571,
- "total_deaths": 79.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 1291.945,
- "new_cases_per_million": 97.256,
- "new_cases_smoothed_per_million": 82.924,
- "total_deaths_per_million": 8.36,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.363,
- "new_tests": 7958.0,
- "total_tests": 168986.0,
- "total_tests_per_thousand": 17.883,
- "new_tests_per_thousand": 0.842,
- "new_tests_smoothed": 7719.0,
- "new_tests_smoothed_per_thousand": 0.817,
- "tests_per_case": 9.851,
- "positive_rate": 0.102,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-04-30",
- "total_cases": 13181.0,
- "new_cases": 973.0,
- "new_cases_smoothed": 842.857,
- "total_deaths": 84.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 1394.915,
- "new_cases_per_million": 102.97,
- "new_cases_smoothed_per_million": 89.198,
- "total_deaths_per_million": 8.89,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.393,
- "new_tests": 7639.0,
- "total_tests": 176625.0,
- "total_tests_per_thousand": 18.692,
- "new_tests_per_thousand": 0.808,
- "new_tests_smoothed": 7726.0,
- "new_tests_smoothed_per_thousand": 0.818,
- "tests_per_case": 9.166,
- "positive_rate": 0.109,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-01",
- "total_cases": 14027.0,
- "new_cases": 846.0,
- "new_cases_smoothed": 857.857,
- "total_deaths": 89.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 1484.445,
- "new_cases_per_million": 89.53,
- "new_cases_smoothed_per_million": 90.785,
- "total_deaths_per_million": 9.419,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.438,
- "new_tests": 9637.0,
- "total_tests": 186262.0,
- "total_tests_per_thousand": 19.712,
- "new_tests_per_thousand": 1.02,
- "new_tests_smoothed": 7920.0,
- "new_tests_smoothed_per_thousand": 0.838,
- "tests_per_case": 9.232000000000001,
- "positive_rate": 0.10800000000000001,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-02",
- "total_cases": 14917.0,
- "new_cases": 890.0,
- "new_cases_smoothed": 877.714,
- "total_deaths": 93.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 1578.632,
- "new_cases_per_million": 94.187,
- "new_cases_smoothed_per_million": 92.886,
- "total_deaths_per_million": 9.842,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.454,
- "new_tests": 9168.0,
- "total_tests": 195430.0,
- "total_tests_per_thousand": 20.682,
- "new_tests_per_thousand": 0.97,
- "new_tests_smoothed": 8019.0,
- "new_tests_smoothed_per_thousand": 0.849,
- "tests_per_case": 9.136000000000001,
- "positive_rate": 0.109,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-03",
- "total_cases": 15828.0,
- "new_cases": 911.0,
- "new_cases_smoothed": 891.143,
- "total_deaths": 97.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 1675.041,
- "new_cases_per_million": 96.409,
- "new_cases_smoothed_per_million": 94.308,
- "total_deaths_per_million": 10.265,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.454,
- "new_tests": 8809.0,
- "total_tests": 204239.0,
- "total_tests_per_thousand": 21.614,
- "new_tests_per_thousand": 0.932,
- "new_tests_smoothed": 8102.0,
- "new_tests_smoothed_per_thousand": 0.857,
- "tests_per_case": 9.092,
- "positive_rate": 0.11,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-04",
- "total_cases": 16705.0,
- "new_cases": 877.0,
- "new_cases_smoothed": 891.714,
- "total_deaths": 99.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 1767.852,
- "new_cases_per_million": 92.811,
- "new_cases_smoothed_per_million": 94.368,
- "total_deaths_per_million": 10.477,
- "new_deaths_per_million": 0.212,
- "new_deaths_smoothed_per_million": 0.408,
- "new_tests": 7130.0,
- "total_tests": 211369.0,
- "total_tests_per_thousand": 22.369,
- "new_tests_per_thousand": 0.755,
- "new_tests_smoothed": 8224.0,
- "new_tests_smoothed_per_thousand": 0.87,
- "tests_per_case": 9.222999999999999,
- "positive_rate": 0.10800000000000001,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-05",
- "total_cases": 17489.0,
- "new_cases": 784.0,
- "new_cases_smoothed": 885.714,
- "total_deaths": 103.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 1850.821,
- "new_cases_per_million": 82.969,
- "new_cases_smoothed_per_million": 93.733,
- "total_deaths_per_million": 10.9,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.423,
- "new_tests_smoothed": 8053.0,
- "new_tests_smoothed_per_thousand": 0.852,
- "tests_per_case": 9.092,
- "positive_rate": 0.11,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-06",
- "total_cases": 18350.0,
- "new_cases": 861.0,
- "new_cases_smoothed": 877.429,
- "total_deaths": 107.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 1941.938,
- "new_cases_per_million": 91.118,
- "new_cases_smoothed_per_million": 92.856,
- "total_deaths_per_million": 11.324,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.423,
- "new_tests_smoothed": 7778.0,
- "new_tests_smoothed_per_thousand": 0.823,
- "tests_per_case": 8.865,
- "positive_rate": 0.113,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-07",
- "total_cases": 19255.0,
- "new_cases": 905.0,
- "new_cases_smoothed": 867.714,
- "total_deaths": 112.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 2037.713,
- "new_cases_per_million": 95.774,
- "new_cases_smoothed_per_million": 91.828,
- "total_deaths_per_million": 11.853,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.423,
- "total_tests": 229466.0,
- "total_tests_per_thousand": 24.284,
- "new_tests_smoothed": 7549.0,
- "new_tests_smoothed_per_thousand": 0.799,
- "tests_per_case": 8.7,
- "positive_rate": 0.115,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-08",
- "total_cases": 20168.0,
- "new_cases": 913.0,
- "new_cases_smoothed": 877.286,
- "total_deaths": 116.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 2134.333,
- "new_cases_per_million": 96.621,
- "new_cases_smoothed_per_million": 92.841,
- "total_deaths_per_million": 12.276,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.408,
- "new_tests": 10680.0,
- "total_tests": 240146.0,
- "total_tests_per_thousand": 25.414,
- "new_tests_per_thousand": 1.13,
- "new_tests_smoothed": 7698.0,
- "new_tests_smoothed_per_thousand": 0.815,
- "tests_per_case": 8.775,
- "positive_rate": 0.114,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-09",
- "total_cases": 21101.0,
- "new_cases": 933.0,
- "new_cases_smoothed": 883.429,
- "total_deaths": 121.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 2233.071,
- "new_cases_per_million": 98.737,
- "new_cases_smoothed_per_million": 93.491,
- "total_deaths_per_million": 12.805,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.423,
- "new_tests": 11625.0,
- "total_tests": 251771.0,
- "total_tests_per_thousand": 26.644,
- "new_tests_per_thousand": 1.23,
- "new_tests_smoothed": 8049.0,
- "new_tests_smoothed_per_thousand": 0.852,
- "tests_per_case": 9.111,
- "positive_rate": 0.11,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-10",
- "total_cases": 22052.0,
- "new_cases": 951.0,
- "new_cases_smoothed": 889.143,
- "total_deaths": 126.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 2333.713,
- "new_cases_per_million": 100.642,
- "new_cases_smoothed_per_million": 94.096,
- "total_deaths_per_million": 13.334,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.438,
- "new_tests": 11772.0,
- "total_tests": 263543.0,
- "total_tests_per_thousand": 27.89,
- "new_tests_per_thousand": 1.246,
- "new_tests_smoothed": 8472.0,
- "new_tests_smoothed_per_thousand": 0.897,
- "tests_per_case": 9.527999999999999,
- "positive_rate": 0.105,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-11",
- "total_cases": 22973.0,
- "new_cases": 921.0,
- "new_cases_smoothed": 895.429,
- "total_deaths": 131.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 2431.18,
- "new_cases_per_million": 97.467,
- "new_cases_smoothed_per_million": 94.761,
- "total_deaths_per_million": 13.863,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.484,
- "new_tests": 10517.0,
- "total_tests": 274060.0,
- "total_tests_per_thousand": 29.003,
- "new_tests_per_thousand": 1.113,
- "new_tests_smoothed": 8956.0,
- "new_tests_smoothed_per_thousand": 0.948,
- "tests_per_case": 10.002,
- "positive_rate": 0.1,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-12",
- "total_cases": 23906.0,
- "new_cases": 933.0,
- "new_cases_smoothed": 916.714,
- "total_deaths": 135.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 2529.917,
- "new_cases_per_million": 98.737,
- "new_cases_smoothed_per_million": 97.014,
- "total_deaths_per_million": 14.287,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.484,
- "new_tests": 10385.0,
- "total_tests": 284445.0,
- "total_tests_per_thousand": 30.102,
- "new_tests_per_thousand": 1.099,
- "new_tests_smoothed": 9578.0,
- "new_tests_smoothed_per_thousand": 1.014,
- "tests_per_case": 10.448,
- "positive_rate": 0.096,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-13",
- "total_cases": 24873.0,
- "new_cases": 967.0,
- "new_cases_smoothed": 931.857,
- "total_deaths": 142.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 2632.253,
- "new_cases_per_million": 102.335,
- "new_cases_smoothed_per_million": 98.616,
- "total_deaths_per_million": 15.028,
- "new_deaths_per_million": 0.741,
- "new_deaths_smoothed_per_million": 0.529,
- "new_tests": 11935.0,
- "total_tests": 296380.0,
- "total_tests_per_thousand": 31.365,
- "new_tests_per_thousand": 1.263,
- "new_tests_smoothed": 10421.0,
- "new_tests_smoothed_per_thousand": 1.103,
- "tests_per_case": 11.183,
- "positive_rate": 0.08900000000000001,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-14",
- "total_cases": 25825.0,
- "new_cases": 952.0,
- "new_cases_smoothed": 938.571,
- "total_deaths": 146.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 2733.001,
- "new_cases_per_million": 100.748,
- "new_cases_smoothed_per_million": 99.327,
- "total_deaths_per_million": 15.451,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.514,
- "new_tests": 11776.0,
- "total_tests": 308156.0,
- "total_tests_per_thousand": 32.611,
- "new_tests_per_thousand": 1.246,
- "new_tests_smoothed": 11241.0,
- "new_tests_smoothed_per_thousand": 1.19,
- "tests_per_case": 11.977,
- "positive_rate": 0.083,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-15",
- "total_cases": 26772.0,
- "new_cases": 947.0,
- "new_cases_smoothed": 943.429,
- "total_deaths": 151.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 2833.219,
- "new_cases_per_million": 100.219,
- "new_cases_smoothed_per_million": 99.841,
- "total_deaths_per_million": 15.98,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.529,
- "new_tests_smoothed": 11733.0,
- "new_tests_smoothed_per_thousand": 1.242,
- "tests_per_case": 12.437000000000001,
- "positive_rate": 0.08,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-16",
- "total_cases": 27730.0,
- "new_cases": 958.0,
- "new_cases_smoothed": 947.0,
- "total_deaths": 156.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 2934.602,
- "new_cases_per_million": 101.383,
- "new_cases_smoothed_per_million": 100.219,
- "total_deaths_per_million": 16.509,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.529,
- "new_tests_smoothed": 12089.0,
- "new_tests_smoothed_per_thousand": 1.279,
- "tests_per_case": 12.765999999999998,
- "positive_rate": 0.078,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-17",
- "total_cases": 28681.0,
- "new_cases": 951.0,
- "new_cases_smoothed": 947.0,
- "total_deaths": 160.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 3035.245,
- "new_cases_per_million": 100.642,
- "new_cases_smoothed_per_million": 100.219,
- "total_deaths_per_million": 16.932,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.514,
- "total_tests": 350515.0,
- "total_tests_per_thousand": 37.094,
- "new_tests_smoothed": 12425.0,
- "new_tests_smoothed_per_thousand": 1.315,
- "tests_per_case": 13.12,
- "positive_rate": 0.076,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-18",
- "total_cases": 29650.0,
- "new_cases": 969.0,
- "new_cases_smoothed": 953.857,
- "total_deaths": 165.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 3137.792,
- "new_cases_per_million": 102.547,
- "new_cases_smoothed_per_million": 100.945,
- "total_deaths_per_million": 17.462,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.514,
- "new_tests_smoothed": 12692.0,
- "new_tests_smoothed_per_thousand": 1.343,
- "tests_per_case": 13.306,
- "positive_rate": 0.075,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-19",
- "total_cases": 30572.0,
- "new_cases": 922.0,
- "new_cases_smoothed": 952.286,
- "total_deaths": 171.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 3235.365,
- "new_cases_per_million": 97.573,
- "new_cases_smoothed_per_million": 100.778,
- "total_deaths_per_million": 18.097,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.544,
- "new_tests_smoothed": 12977.0,
- "new_tests_smoothed_per_thousand": 1.373,
- "tests_per_case": 13.627,
- "positive_rate": 0.073,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-20",
- "total_cases": 31508.0,
- "new_cases": 936.0,
- "new_cases_smoothed": 947.857,
- "total_deaths": 175.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 3334.419,
- "new_cases_per_million": 99.055,
- "new_cases_smoothed_per_million": 100.31,
- "total_deaths_per_million": 18.52,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.499,
- "total_tests": 387673.0,
- "total_tests_per_thousand": 41.027,
- "new_tests_smoothed": 13042.0,
- "new_tests_smoothed_per_thousand": 1.38,
- "tests_per_case": 13.759,
- "positive_rate": 0.073,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-21",
- "total_cases": 32426.0,
- "new_cases": 918.0,
- "new_cases_smoothed": 943.0,
- "total_deaths": 179.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 3431.569,
- "new_cases_per_million": 97.15,
- "new_cases_smoothed_per_million": 99.796,
- "total_deaths_per_million": 18.943,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.499,
- "new_tests_smoothed": 13598.0,
- "new_tests_smoothed_per_thousand": 1.439,
- "tests_per_case": 14.42,
- "positive_rate": 0.069,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-22",
- "total_cases": 33371.0,
- "new_cases": 945.0,
- "new_cases_smoothed": 942.714,
- "total_deaths": 185.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 3531.577,
- "new_cases_per_million": 100.007,
- "new_cases_smoothed_per_million": 99.765,
- "total_deaths_per_million": 19.578,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.514,
- "total_tests": 419004.0,
- "total_tests_per_thousand": 44.342,
- "new_tests_smoothed": 13818.0,
- "new_tests_smoothed_per_thousand": 1.462,
- "tests_per_case": 14.658,
- "positive_rate": 0.068,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-23",
- "total_cases": 34303.0,
- "new_cases": 932.0,
- "new_cases_smoothed": 939.0,
- "total_deaths": 190.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 3630.208,
- "new_cases_per_million": 98.631,
- "new_cases_smoothed_per_million": 99.372,
- "total_deaths_per_million": 20.107,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.514,
- "new_tests": 15614.0,
- "total_tests": 434618.0,
- "total_tests_per_thousand": 45.995,
- "new_tests_per_thousand": 1.652,
- "new_tests_smoothed": 14032.0,
- "new_tests_smoothed_per_thousand": 1.485,
- "tests_per_case": 14.944,
- "positive_rate": 0.067,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-24",
- "total_cases": 35244.0,
- "new_cases": 941.0,
- "new_cases_smoothed": 937.571,
- "total_deaths": 194.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 3729.792,
- "new_cases_per_million": 99.584,
- "new_cases_smoothed_per_million": 99.221,
- "total_deaths_per_million": 20.531,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.514,
- "new_tests_smoothed": 14042.0,
- "new_tests_smoothed_per_thousand": 1.486,
- "tests_per_case": 14.977,
- "positive_rate": 0.067,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-25",
- "total_cases": 36198.0,
- "new_cases": 954.0,
- "new_cases_smoothed": 935.429,
- "total_deaths": 199.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 3830.751,
- "new_cases_per_million": 100.96,
- "new_cases_smoothed_per_million": 98.994,
- "total_deaths_per_million": 21.06,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.514,
- "total_tests": 463004.0,
- "total_tests_per_thousand": 48.999,
- "new_tests_smoothed": 14300.0,
- "new_tests_smoothed_per_thousand": 1.513,
- "tests_per_case": 15.287,
- "positive_rate": 0.065,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-26",
- "total_cases": 37144.0,
- "new_cases": 946.0,
- "new_cases_smoothed": 938.857,
- "total_deaths": 204.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 3930.864,
- "new_cases_per_million": 100.113,
- "new_cases_smoothed_per_million": 99.357,
- "total_deaths_per_million": 21.589,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.499,
- "new_tests": 9902.0,
- "total_tests": 472906.0,
- "total_tests_per_thousand": 50.047,
- "new_tests_per_thousand": 1.048,
- "new_tests_smoothed": 13946.0,
- "new_tests_smoothed_per_thousand": 1.476,
- "tests_per_case": 14.854000000000001,
- "positive_rate": 0.067,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-27",
- "total_cases": 38059.0,
- "new_cases": 915.0,
- "new_cases_smoothed": 935.857,
- "total_deaths": 208.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 4027.697,
- "new_cases_per_million": 96.832,
- "new_cases_smoothed_per_million": 99.04,
- "total_deaths_per_million": 22.012,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.499,
- "new_tests_smoothed": 14092.0,
- "new_tests_smoothed_per_thousand": 1.491,
- "tests_per_case": 15.058,
- "positive_rate": 0.066,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-28",
- "total_cases": 38956.0,
- "new_cases": 897.0,
- "new_cases_smoothed": 932.857,
- "total_deaths": 214.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 4122.624,
- "new_cases_per_million": 94.927,
- "new_cases_smoothed_per_million": 98.722,
- "total_deaths_per_million": 22.647,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.529,
- "new_tests_smoothed": 13771.0,
- "new_tests_smoothed_per_thousand": 1.457,
- "tests_per_case": 14.762,
- "positive_rate": 0.068,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-29",
- "total_cases": 39858.0,
- "new_cases": 902.0,
- "new_cases_smoothed": 926.714,
- "total_deaths": 219.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 4218.081,
- "new_cases_per_million": 95.457,
- "new_cases_smoothed_per_million": 98.072,
- "total_deaths_per_million": 23.176,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.514,
- "new_tests_smoothed": 13449.0,
- "new_tests_smoothed_per_thousand": 1.423,
- "tests_per_case": 14.513,
- "positive_rate": 0.069,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-30",
- "total_cases": 40764.0,
- "new_cases": 906.0,
- "new_cases_smoothed": 923.0,
- "total_deaths": 224.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 4313.961,
- "new_cases_per_million": 95.88,
- "new_cases_smoothed_per_million": 97.679,
- "total_deaths_per_million": 23.705,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.514,
- "total_tests": 526559.0,
- "total_tests_per_thousand": 55.725,
- "new_tests_smoothed": 13134.0,
- "new_tests_smoothed_per_thousand": 1.39,
- "tests_per_case": 14.23,
- "positive_rate": 0.07,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-05-31",
- "total_cases": 41658.0,
- "new_cases": 894.0,
- "new_cases_smoothed": 916.286,
- "total_deaths": 229.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 4408.571,
- "new_cases_per_million": 94.61,
- "new_cases_smoothed_per_million": 96.968,
- "total_deaths_per_million": 24.235,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.529,
- "new_tests": 14534.0,
- "total_tests": 541093.0,
- "total_tests_per_thousand": 57.263,
- "new_tests_per_thousand": 1.538,
- "new_tests_smoothed": 13183.0,
- "new_tests_smoothed_per_thousand": 1.395,
- "tests_per_case": 14.387,
- "positive_rate": 0.07,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-01",
- "total_cases": 42556.0,
- "new_cases": 898.0,
- "new_cases_smoothed": 908.286,
- "total_deaths": 235.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 4503.604,
- "new_cases_per_million": 95.033,
- "new_cases_smoothed_per_million": 96.122,
- "total_deaths_per_million": 24.87,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.544,
- "new_tests": 12284.0,
- "total_tests": 553377.0,
- "total_tests_per_thousand": 58.563,
- "new_tests_per_thousand": 1.3,
- "new_tests_smoothed": 12910.0,
- "new_tests_smoothed_per_thousand": 1.366,
- "tests_per_case": 14.214,
- "positive_rate": 0.07,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-02",
- "total_cases": 43403.0,
- "new_cases": 847.0,
- "new_cases_smoothed": 894.143,
- "total_deaths": 240.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 4593.24,
- "new_cases_per_million": 89.636,
- "new_cases_smoothed_per_million": 94.625,
- "total_deaths_per_million": 25.399,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.544,
- "new_tests": 9568.0,
- "total_tests": 562945.0,
- "total_tests_per_thousand": 59.575,
- "new_tests_per_thousand": 1.013,
- "new_tests_smoothed": 12863.0,
- "new_tests_smoothed_per_thousand": 1.361,
- "tests_per_case": 14.386,
- "positive_rate": 0.07,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-03",
- "total_cases": 44255.0,
- "new_cases": 852.0,
- "new_cases_smoothed": 885.143,
- "total_deaths": 243.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 4683.405,
- "new_cases_per_million": 90.165,
- "new_cases_smoothed_per_million": 93.673,
- "total_deaths_per_million": 25.716,
- "new_deaths_per_million": 0.317,
- "new_deaths_smoothed_per_million": 0.529,
- "new_tests_smoothed": 12643.0,
- "new_tests_smoothed_per_thousand": 1.338,
- "tests_per_case": 14.284,
- "positive_rate": 0.07,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-04",
- "total_cases": 45116.0,
- "new_cases": 861.0,
- "new_cases_smoothed": 880.0,
- "total_deaths": 248.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 4774.523,
- "new_cases_per_million": 91.118,
- "new_cases_smoothed_per_million": 93.128,
- "total_deaths_per_million": 26.245,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.514,
- "new_tests_smoothed": 12423.0,
- "new_tests_smoothed_per_thousand": 1.315,
- "tests_per_case": 14.117,
- "positive_rate": 0.071,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-05",
- "total_cases": 45981.0,
- "new_cases": 865.0,
- "new_cases_smoothed": 874.714,
- "total_deaths": 253.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 4866.064,
- "new_cases_per_million": 91.541,
- "new_cases_smoothed_per_million": 92.569,
- "total_deaths_per_million": 26.774,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.514,
- "new_tests_smoothed": 12203.0,
- "new_tests_smoothed_per_thousand": 1.291,
- "tests_per_case": 13.950999999999999,
- "positive_rate": 0.07200000000000001,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-06",
- "total_cases": 46868.0,
- "new_cases": 887.0,
- "new_cases_smoothed": 872.0,
- "total_deaths": 259.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 4959.933,
- "new_cases_per_million": 93.869,
- "new_cases_smoothed_per_million": 92.282,
- "total_deaths_per_million": 27.409,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.529,
- "new_tests_smoothed": 11983.0,
- "new_tests_smoothed_per_thousand": 1.268,
- "tests_per_case": 13.742,
- "positive_rate": 0.073,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-07",
- "total_cases": 47751.0,
- "new_cases": 883.0,
- "new_cases_smoothed": 870.429,
- "total_deaths": 263.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 5053.379,
- "new_cases_per_million": 93.446,
- "new_cases_smoothed_per_million": 92.115,
- "total_deaths_per_million": 27.833,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.514,
- "total_tests": 622313.0,
- "total_tests_per_thousand": 65.858,
- "new_tests_smoothed": 11603.0,
- "new_tests_smoothed_per_thousand": 1.228,
- "tests_per_case": 13.33,
- "positive_rate": 0.075,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-08",
- "total_cases": 48630.0,
- "new_cases": 879.0,
- "new_cases_smoothed": 867.714,
- "total_deaths": 269.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 5146.402,
- "new_cases_per_million": 93.023,
- "new_cases_smoothed_per_million": 91.828,
- "total_deaths_per_million": 28.468,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.514,
- "new_tests": 10680.0,
- "total_tests": 632993.0,
- "total_tests_per_thousand": 66.988,
- "new_tests_per_thousand": 1.13,
- "new_tests_smoothed": 11374.0,
- "new_tests_smoothed_per_thousand": 1.204,
- "tests_per_case": 13.107999999999999,
- "positive_rate": 0.076,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-09",
- "total_cases": 49453.0,
- "new_cases": 823.0,
- "new_cases_smoothed": 864.286,
- "total_deaths": 276.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 5233.498,
- "new_cases_per_million": 87.096,
- "new_cases_smoothed_per_million": 91.465,
- "total_deaths_per_million": 29.208,
- "new_deaths_per_million": 0.741,
- "new_deaths_smoothed_per_million": 0.544,
- "new_tests_smoothed": 12331.0,
- "new_tests_smoothed_per_thousand": 1.305,
- "tests_per_case": 14.267000000000001,
- "positive_rate": 0.07,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-10",
- "total_cases": 50265.0,
- "new_cases": 812.0,
- "new_cases_smoothed": 858.571,
- "total_deaths": 282.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 5319.43,
- "new_cases_per_million": 85.932,
- "new_cases_smoothed_per_million": 90.861,
- "total_deaths_per_million": 29.843,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.59,
- "new_tests_smoothed": 12958.0,
- "new_tests_smoothed_per_thousand": 1.371,
- "tests_per_case": 15.093,
- "positive_rate": 0.066,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-11",
- "total_cases": 51066.0,
- "new_cases": 801.0,
- "new_cases_smoothed": 850.0,
- "total_deaths": 288.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.714,
- "total_cases_per_million": 5404.198,
- "new_cases_per_million": 84.768,
- "new_cases_smoothed_per_million": 89.954,
- "total_deaths_per_million": 30.478,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.605,
- "new_tests_smoothed": 13586.0,
- "new_tests_smoothed_per_thousand": 1.438,
- "tests_per_case": 15.984000000000002,
- "positive_rate": 0.063,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-12",
- "total_cases": 51816.0,
- "new_cases": 750.0,
- "new_cases_smoothed": 833.571,
- "total_deaths": 293.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.714,
- "total_cases_per_million": 5483.569,
- "new_cases_per_million": 79.371,
- "new_cases_smoothed_per_million": 88.215,
- "total_deaths_per_million": 31.008,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.605,
- "new_tests_smoothed": 14213.0,
- "new_tests_smoothed_per_thousand": 1.504,
- "tests_per_case": 17.051,
- "positive_rate": 0.059000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-13",
- "total_cases": 52520.0,
- "new_cases": 704.0,
- "new_cases_smoothed": 807.429,
- "total_deaths": 298.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 5558.071,
- "new_cases_per_million": 74.503,
- "new_cases_smoothed_per_million": 85.448,
- "total_deaths_per_million": 31.537,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.59,
- "total_tests": 714324.0,
- "total_tests_per_thousand": 75.595,
- "new_tests_smoothed": 14841.0,
- "new_tests_smoothed_per_thousand": 1.571,
- "tests_per_case": 18.381,
- "positive_rate": 0.054000000000000006,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-14",
- "total_cases": 53241.0,
- "new_cases": 721.0,
- "new_cases_smoothed": 784.286,
- "total_deaths": 303.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.714,
- "total_cases_per_million": 5634.373,
- "new_cases_per_million": 76.302,
- "new_cases_smoothed_per_million": 82.999,
- "total_deaths_per_million": 32.066,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.605,
- "new_tests_smoothed": 15687.0,
- "new_tests_smoothed_per_thousand": 1.66,
- "tests_per_case": 20.002,
- "positive_rate": 0.05,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-15",
- "total_cases": 53973.0,
- "new_cases": 732.0,
- "new_cases_smoothed": 763.286,
- "total_deaths": 308.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 5711.839,
- "new_cases_per_million": 77.466,
- "new_cases_smoothed_per_million": 80.777,
- "total_deaths_per_million": 32.595,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.59,
- "total_tests": 749917.0,
- "total_tests_per_thousand": 79.362,
- "new_tests_smoothed": 16703.0,
- "new_tests_smoothed_per_thousand": 1.768,
- "tests_per_case": 21.883000000000003,
- "positive_rate": 0.046,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-16",
- "total_cases": 54680.0,
- "new_cases": 707.0,
- "new_cases_smoothed": 746.714,
- "total_deaths": 312.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 5786.659,
- "new_cases_per_million": 74.82,
- "new_cases_smoothed_per_million": 79.023,
- "total_deaths_per_million": 33.018,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.544,
- "new_tests": 10632.0,
- "total_tests": 760549.0,
- "total_tests_per_thousand": 80.487,
- "new_tests_per_thousand": 1.125,
- "new_tests_smoothed": 15899.0,
- "new_tests_smoothed_per_thousand": 1.683,
- "tests_per_case": 21.291999999999998,
- "positive_rate": 0.047,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-17",
- "total_cases": 55369.0,
- "new_cases": 689.0,
- "new_cases_smoothed": 729.143,
- "total_deaths": 318.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 5859.574,
- "new_cases_per_million": 72.915,
- "new_cases_smoothed_per_million": 77.164,
- "total_deaths_per_million": 33.653,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.544,
- "new_tests_smoothed": 16424.0,
- "new_tests_smoothed_per_thousand": 1.738,
- "tests_per_case": 22.525,
- "positive_rate": 0.044000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-18",
- "total_cases": 56032.0,
- "new_cases": 663.0,
- "new_cases_smoothed": 709.429,
- "total_deaths": 324.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 5929.738,
- "new_cases_per_million": 70.164,
- "new_cases_smoothed_per_million": 75.077,
- "total_deaths_per_million": 34.288,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.544,
- "total_tests": 800435.0,
- "total_tests_per_thousand": 84.708,
- "new_tests_smoothed": 16949.0,
- "new_tests_smoothed_per_thousand": 1.794,
- "tests_per_case": 23.891,
- "positive_rate": 0.042,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-19",
- "total_cases": 56657.0,
- "new_cases": 625.0,
- "new_cases_smoothed": 691.571,
- "total_deaths": 331.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 5.429,
- "total_cases_per_million": 5995.881,
- "new_cases_per_million": 66.142,
- "new_cases_smoothed_per_million": 73.187,
- "total_deaths_per_million": 35.029,
- "new_deaths_per_million": 0.741,
- "new_deaths_smoothed_per_million": 0.574,
- "new_tests": 21452.0,
- "total_tests": 821887.0,
- "total_tests_per_thousand": 86.978,
- "new_tests_per_thousand": 2.27,
- "new_tests_smoothed": 17690.0,
- "new_tests_smoothed_per_thousand": 1.872,
- "tests_per_case": 25.579,
- "positive_rate": 0.039,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-20",
- "total_cases": 57333.0,
- "new_cases": 676.0,
- "new_cases_smoothed": 687.571,
- "total_deaths": 333.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 6067.42,
- "new_cases_per_million": 71.54,
- "new_cases_smoothed_per_million": 72.764,
- "total_deaths_per_million": 35.241,
- "new_deaths_per_million": 0.212,
- "new_deaths_smoothed_per_million": 0.529,
- "new_tests": 20286.0,
- "total_tests": 842173.0,
- "total_tests_per_thousand": 89.125,
- "new_tests_per_thousand": 2.147,
- "new_tests_smoothed": 18264.0,
- "new_tests_smoothed_per_thousand": 1.933,
- "tests_per_case": 26.563000000000002,
- "positive_rate": 0.038,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-21",
- "total_cases": 57936.0,
- "new_cases": 603.0,
- "new_cases_smoothed": 670.714,
- "total_deaths": 343.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 5.714,
- "total_cases_per_million": 6131.234,
- "new_cases_per_million": 63.814,
- "new_cases_smoothed_per_million": 70.98,
- "total_deaths_per_million": 36.299,
- "new_deaths_per_million": 1.058,
- "new_deaths_smoothed_per_million": 0.605,
- "new_tests_smoothed": 18184.0,
- "new_tests_smoothed_per_thousand": 1.924,
- "tests_per_case": 27.111,
- "positive_rate": 0.037000000000000005,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-22",
- "total_cases": 58505.0,
- "new_cases": 569.0,
- "new_cases_smoothed": 647.429,
- "total_deaths": 346.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 5.429,
- "total_cases_per_million": 6191.45,
- "new_cases_per_million": 60.216,
- "new_cases_smoothed_per_million": 68.516,
- "total_deaths_per_million": 36.616,
- "new_deaths_per_million": 0.317,
- "new_deaths_smoothed_per_million": 0.574,
- "total_tests": 876639.0,
- "total_tests_per_thousand": 92.773,
- "new_tests_smoothed": 18103.0,
- "new_tests_smoothed_per_thousand": 1.916,
- "tests_per_case": 27.961,
- "positive_rate": 0.036000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-23",
- "total_cases": 59023.0,
- "new_cases": 518.0,
- "new_cases_smoothed": 620.429,
- "total_deaths": 351.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 6246.269,
- "new_cases_per_million": 54.819,
- "new_cases_smoothed_per_million": 65.659,
- "total_deaths_per_million": 37.146,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.59,
- "new_tests_smoothed": 18389.0,
- "new_tests_smoothed_per_thousand": 1.946,
- "tests_per_case": 29.639,
- "positive_rate": 0.034,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-24",
- "total_cases": 59487.0,
- "new_cases": 464.0,
- "new_cases_smoothed": 588.286,
- "total_deaths": 357.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 6295.373,
- "new_cases_per_million": 49.104,
- "new_cases_smoothed_per_million": 62.257,
- "total_deaths_per_million": 37.78,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.59,
- "total_tests": 901904.0,
- "total_tests_per_thousand": 95.446,
- "new_tests_smoothed": 17345.0,
- "new_tests_smoothed_per_thousand": 1.836,
- "tests_per_case": 29.484,
- "positive_rate": 0.034,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-25",
- "total_cases": 59945.0,
- "new_cases": 458.0,
- "new_cases_smoothed": 559.0,
- "total_deaths": 362.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.429,
- "total_cases_per_million": 6343.842,
- "new_cases_per_million": 48.469,
- "new_cases_smoothed_per_million": 59.158,
- "total_deaths_per_million": 38.31,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.574,
- "new_tests": 17235.0,
- "total_tests": 919139.0,
- "total_tests_per_thousand": 97.27,
- "new_tests_per_thousand": 1.824,
- "new_tests_smoothed": 16958.0,
- "new_tests_smoothed_per_thousand": 1.795,
- "tests_per_case": 30.336,
- "positive_rate": 0.033,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-26",
- "total_cases": 60382.0,
- "new_cases": 437.0,
- "new_cases_smoothed": 532.143,
- "total_deaths": 367.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 6390.089,
- "new_cases_per_million": 46.247,
- "new_cases_smoothed_per_million": 56.315,
- "total_deaths_per_million": 38.839,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.544,
- "new_tests": 20385.0,
- "total_tests": 939524.0,
- "total_tests_per_thousand": 99.428,
- "new_tests_per_thousand": 2.157,
- "new_tests_smoothed": 16805.0,
- "new_tests_smoothed_per_thousand": 1.778,
- "tests_per_case": 31.58,
- "positive_rate": 0.032,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-27",
- "total_cases": 60713.0,
- "new_cases": 331.0,
- "new_cases_smoothed": 482.857,
- "total_deaths": 373.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.714,
- "total_cases_per_million": 6425.118,
- "new_cases_per_million": 35.029,
- "new_cases_smoothed_per_million": 51.1,
- "total_deaths_per_million": 39.474,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.605,
- "new_tests_smoothed": 16406.0,
- "new_tests_smoothed_per_thousand": 1.736,
- "tests_per_case": 33.977,
- "positive_rate": 0.028999999999999998,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-28",
- "total_cases": 61095.0,
- "new_cases": 382.0,
- "new_cases_smoothed": 451.286,
- "total_deaths": 377.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 6465.544,
- "new_cases_per_million": 40.426,
- "new_cases_smoothed_per_million": 47.759,
- "total_deaths_per_million": 39.897,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.514,
- "new_tests_smoothed": 16444.0,
- "new_tests_smoothed_per_thousand": 1.74,
- "tests_per_case": 36.438,
- "positive_rate": 0.027000000000000003,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-29",
- "total_cases": 61475.0,
- "new_cases": 380.0,
- "new_cases_smoothed": 424.286,
- "total_deaths": 383.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.286,
- "total_cases_per_million": 6505.758,
- "new_cases_per_million": 40.215,
- "new_cases_smoothed_per_million": 44.901,
- "total_deaths_per_million": 40.532,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.559,
- "total_tests": 992007.0,
- "total_tests_per_thousand": 104.982,
- "new_tests_smoothed": 16481.0,
- "new_tests_smoothed_per_thousand": 1.744,
- "tests_per_case": 38.844,
- "positive_rate": 0.026000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-06-30",
- "total_cases": 61790.0,
- "new_cases": 315.0,
- "new_cases_smoothed": 395.286,
- "total_deaths": 387.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 6539.094,
- "new_cases_per_million": 33.336,
- "new_cases_smoothed_per_million": 41.832,
- "total_deaths_per_million": 40.955,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.544,
- "new_tests_smoothed": 16529.0,
- "new_tests_smoothed_per_thousand": 1.749,
- "tests_per_case": 41.815,
- "positive_rate": 0.024,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-01",
- "total_cases": 62118.0,
- "new_cases": 328.0,
- "new_cases_smoothed": 375.857,
- "total_deaths": 392.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 6573.806,
- "new_cases_per_million": 34.711,
- "new_cases_smoothed_per_million": 39.776,
- "total_deaths_per_million": 41.484,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.529,
- "new_tests_smoothed": 16577.0,
- "new_tests_smoothed_per_thousand": 1.754,
- "tests_per_case": 44.105,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-02",
- "total_cases": 62424.0,
- "new_cases": 306.0,
- "new_cases_smoothed": 354.143,
- "total_deaths": 398.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 6606.189,
- "new_cases_per_million": 32.383,
- "new_cases_smoothed_per_million": 37.478,
- "total_deaths_per_million": 42.119,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.544,
- "new_tests_smoothed": 15967.0,
- "new_tests_smoothed_per_thousand": 1.69,
- "tests_per_case": 45.086000000000006,
- "positive_rate": 0.022000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-07-03",
- "total_cases": 62698.0,
- "new_cases": 274.0,
- "new_cases_smoothed": 330.857,
- "total_deaths": 405.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 5.429,
- "total_cases_per_million": 6635.186,
- "new_cases_per_million": 28.997,
- "new_cases_smoothed_per_million": 35.014,
- "total_deaths_per_million": 42.86,
- "new_deaths_per_million": 0.741,
- "new_deaths_smoothed_per_million": 0.574,
- "total_tests": 1043876.0,
- "total_tests_per_thousand": 110.471,
- "new_tests_smoothed": 14907.0,
- "new_tests_smoothed_per_thousand": 1.578,
- "tests_per_case": 45.056000000000004,
- "positive_rate": 0.022000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-07-04",
- "total_cases": 62997.0,
- "new_cases": 299.0,
- "new_cases_smoothed": 326.286,
- "total_deaths": 412.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 6666.828,
- "new_cases_per_million": 31.642,
- "new_cases_smoothed_per_million": 34.53,
- "total_deaths_per_million": 43.601,
- "new_deaths_per_million": 0.741,
- "new_deaths_smoothed_per_million": 0.59,
- "new_tests_smoothed": 13854.0,
- "new_tests_smoothed_per_thousand": 1.466,
- "tests_per_case": 42.46,
- "positive_rate": 0.024,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-07-05",
- "total_cases": 63270.0,
- "new_cases": 273.0,
- "new_cases_smoothed": 310.714,
- "total_deaths": 418.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.857,
- "total_cases_per_million": 6695.719,
- "new_cases_per_million": 28.891,
- "new_cases_smoothed_per_million": 32.882,
- "total_deaths_per_million": 44.236,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.62,
- "new_tests_smoothed": 12801.0,
- "new_tests_smoothed_per_thousand": 1.355,
- "tests_per_case": 41.199,
- "positive_rate": 0.024,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-07-06",
- "total_cases": 63554.0,
- "new_cases": 284.0,
- "new_cases_smoothed": 297.0,
- "total_deaths": 423.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.714,
- "total_cases_per_million": 6725.774,
- "new_cases_per_million": 30.055,
- "new_cases_smoothed_per_million": 31.431,
- "total_deaths_per_million": 44.765,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.605,
- "total_tests": 1074240.0,
- "total_tests_per_thousand": 113.684,
- "new_tests_smoothed": 11748.0,
- "new_tests_smoothed_per_thousand": 1.243,
- "tests_per_case": 39.556,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-07-07",
- "total_cases": 63804.0,
- "new_cases": 250.0,
- "new_cases_smoothed": 287.714,
- "total_deaths": 429.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 6.0,
- "total_cases_per_million": 6752.231,
- "new_cases_per_million": 26.457,
- "new_cases_smoothed_per_million": 30.448,
- "total_deaths_per_million": 45.4,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.635,
- "new_tests_smoothed": 11334.0,
- "new_tests_smoothed_per_thousand": 1.199,
- "tests_per_case": 39.393,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-07-08",
- "total_cases": 64003.0,
- "new_cases": 199.0,
- "new_cases_smoothed": 269.286,
- "total_deaths": 436.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 6.286,
- "total_cases_per_million": 6773.291,
- "new_cases_per_million": 21.06,
- "new_cases_smoothed_per_million": 28.498,
- "total_deaths_per_million": 46.141,
- "new_deaths_per_million": 0.741,
- "new_deaths_smoothed_per_million": 0.665,
- "new_tests_smoothed": 10919.0,
- "new_tests_smoothed_per_thousand": 1.156,
- "tests_per_case": 40.548,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-07-09",
- "total_cases": 64224.0,
- "new_cases": 221.0,
- "new_cases_smoothed": 257.143,
- "total_deaths": 443.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 6.429,
- "total_cases_per_million": 6796.679,
- "new_cases_per_million": 23.388,
- "new_cases_smoothed_per_million": 27.213,
- "total_deaths_per_million": 46.882,
- "new_deaths_per_million": 0.741,
- "new_deaths_smoothed_per_million": 0.68,
- "new_tests_smoothed": 10505.0,
- "new_tests_smoothed_per_thousand": 1.112,
- "tests_per_case": 40.853,
- "positive_rate": 0.024,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-07-10",
- "total_cases": 64411.0,
- "new_cases": 187.0,
- "new_cases_smoothed": 244.714,
- "total_deaths": 449.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 6.286,
- "total_cases_per_million": 6816.469,
- "new_cases_per_million": 19.79,
- "new_cases_smoothed_per_million": 25.898,
- "total_deaths_per_million": 47.517,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.665,
- "new_tests_smoothed": 10091.0,
- "new_tests_smoothed_per_thousand": 1.068,
- "tests_per_case": 41.236000000000004,
- "positive_rate": 0.024,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-07-11",
- "total_cases": 64604.0,
- "new_cases": 193.0,
- "new_cases_smoothed": 229.571,
- "total_deaths": 454.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 6.0,
- "total_cases_per_million": 6836.893,
- "new_cases_per_million": 20.425,
- "new_cases_smoothed_per_million": 24.295,
- "total_deaths_per_million": 48.046,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.635,
- "new_tests_smoothed": 10084.0,
- "new_tests_smoothed_per_thousand": 1.067,
- "tests_per_case": 43.925,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-07-12",
- "total_cases": 64767.0,
- "new_cases": 163.0,
- "new_cases_smoothed": 213.857,
- "total_deaths": 459.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.857,
- "total_cases_per_million": 6854.143,
- "new_cases_per_million": 17.25,
- "new_cases_smoothed_per_million": 22.632,
- "total_deaths_per_million": 48.575,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.62,
- "total_tests": 1134653.0,
- "total_tests_per_thousand": 120.078,
- "new_tests_smoothed": 10076.0,
- "new_tests_smoothed_per_thousand": 1.066,
- "tests_per_case": 47.11600000000001,
- "positive_rate": 0.021,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-07-13",
- "total_cases": 64932.0,
- "new_cases": 165.0,
- "new_cases_smoothed": 196.857,
- "total_deaths": 464.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.857,
- "total_cases_per_million": 6871.605,
- "new_cases_per_million": 17.462,
- "new_cases_smoothed_per_million": 20.833,
- "total_deaths_per_million": 49.104,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.62,
- "new_tests_smoothed": 9109.0,
- "new_tests_smoothed_per_thousand": 0.964,
- "tests_per_case": 46.272,
- "positive_rate": 0.022000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-07-14",
- "total_cases": 65114.0,
- "new_cases": 182.0,
- "new_cases_smoothed": 187.143,
- "total_deaths": 468.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 6890.865,
- "new_cases_per_million": 19.261,
- "new_cases_smoothed_per_million": 19.805,
- "total_deaths_per_million": 49.527,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.59,
- "new_tests_smoothed": 8148.0,
- "new_tests_smoothed_per_thousand": 0.862,
- "tests_per_case": 43.538999999999994,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-07-15",
- "total_cases": 65269.0,
- "new_cases": 155.0,
- "new_cases_smoothed": 180.857,
- "total_deaths": 474.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.429,
- "total_cases_per_million": 6907.269,
- "new_cases_per_million": 16.403,
- "new_cases_smoothed_per_million": 19.14,
- "total_deaths_per_million": 50.162,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.574,
- "total_tests": 1144696.0,
- "total_tests_per_thousand": 121.141,
- "new_tests_smoothed": 7188.0,
- "new_tests_smoothed_per_thousand": 0.761,
- "tests_per_case": 39.744,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-07-16",
- "total_cases": 65443.0,
- "new_cases": 174.0,
- "new_cases_smoothed": 174.143,
- "total_deaths": 480.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.286,
- "total_cases_per_million": 6925.683,
- "new_cases_per_million": 18.414,
- "new_cases_smoothed_per_million": 18.429,
- "total_deaths_per_million": 50.797,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.559,
- "new_tests_smoothed": 7763.0,
- "new_tests_smoothed_per_thousand": 0.822,
- "tests_per_case": 44.578,
- "positive_rate": 0.022000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-07-17",
- "total_cases": 65623.0,
- "new_cases": 180.0,
- "new_cases_smoothed": 173.143,
- "total_deaths": 485.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 6944.732,
- "new_cases_per_million": 19.049,
- "new_cases_smoothed_per_million": 18.323,
- "total_deaths_per_million": 51.326,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.544,
- "total_tests": 1172880.0,
- "total_tests_per_thousand": 124.123,
- "new_tests_smoothed": 8338.0,
- "new_tests_smoothed_per_thousand": 0.882,
- "tests_per_case": 48.157,
- "positive_rate": 0.021,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-07-18",
- "total_cases": 65782.0,
- "new_cases": 159.0,
- "new_cases_smoothed": 168.286,
- "total_deaths": 491.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.286,
- "total_cases_per_million": 6961.558,
- "new_cases_per_million": 16.827,
- "new_cases_smoothed_per_million": 17.809,
- "total_deaths_per_million": 51.961,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.559,
- "new_tests_smoothed": 7943.0,
- "new_tests_smoothed_per_thousand": 0.841,
- "tests_per_case": 47.199,
- "positive_rate": 0.021,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-07-19",
- "total_cases": 65953.0,
- "new_cases": 171.0,
- "new_cases_smoothed": 169.429,
- "total_deaths": 495.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 6979.655,
- "new_cases_per_million": 18.097,
- "new_cases_smoothed_per_million": 17.93,
- "total_deaths_per_million": 52.385,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.544,
- "new_tests_smoothed": 7548.0,
- "new_tests_smoothed_per_thousand": 0.799,
- "tests_per_case": 44.55,
- "positive_rate": 0.022000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-07-20",
- "total_cases": 66095.0,
- "new_cases": 142.0,
- "new_cases_smoothed": 166.143,
- "total_deaths": 499.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 6994.682,
- "new_cases_per_million": 15.028,
- "new_cases_smoothed_per_million": 17.583,
- "total_deaths_per_million": 52.808,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.529,
- "new_tests_smoothed": 8113.0,
- "new_tests_smoothed_per_thousand": 0.859,
- "tests_per_case": 48.831,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-07-21",
- "total_cases": 66213.0,
- "new_cases": 118.0,
- "new_cases_smoothed": 157.0,
- "total_deaths": 503.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 7007.17,
- "new_cases_per_million": 12.488,
- "new_cases_smoothed_per_million": 16.615,
- "total_deaths_per_million": 53.231,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.529,
- "new_tests_smoothed": 8678.0,
- "new_tests_smoothed_per_thousand": 0.918,
- "tests_per_case": 55.273999999999994,
- "positive_rate": 0.018000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-07-22",
- "total_cases": 66348.0,
- "new_cases": 135.0,
- "new_cases_smoothed": 154.143,
- "total_deaths": 507.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 7021.457,
- "new_cases_per_million": 14.287,
- "new_cases_smoothed_per_million": 16.313,
- "total_deaths_per_million": 53.655,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.499,
- "total_tests": 1209400.0,
- "total_tests_per_thousand": 127.988,
- "new_tests_smoothed": 9243.0,
- "new_tests_smoothed_per_thousand": 0.978,
- "tests_per_case": 59.964,
- "positive_rate": 0.017,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-07-23",
- "total_cases": 66521.0,
- "new_cases": 173.0,
- "new_cases_smoothed": 154.0,
- "total_deaths": 513.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 7039.765,
- "new_cases_per_million": 18.308,
- "new_cases_smoothed_per_million": 16.297,
- "total_deaths_per_million": 54.29,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.499,
- "new_tests": 10305.0,
- "total_tests": 1219705.0,
- "total_tests_per_thousand": 129.079,
- "new_tests_per_thousand": 1.091,
- "new_tests_smoothed": 8702.0,
- "new_tests_smoothed_per_thousand": 0.921,
- "tests_per_case": 56.506,
- "positive_rate": 0.018000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-07-24",
- "total_cases": 66688.0,
- "new_cases": 167.0,
- "new_cases_smoothed": 152.143,
- "total_deaths": 519.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 7057.438,
- "new_cases_per_million": 17.673,
- "new_cases_smoothed_per_million": 16.101,
- "total_deaths_per_million": 54.925,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.514,
- "new_tests": 10979.0,
- "total_tests": 1230684.0,
- "total_tests_per_thousand": 130.24,
- "new_tests_per_thousand": 1.162,
- "new_tests_smoothed": 8258.0,
- "new_tests_smoothed_per_thousand": 0.874,
- "tests_per_case": 54.278,
- "positive_rate": 0.018000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-07-25",
- "total_cases": 66846.0,
- "new_cases": 158.0,
- "new_cases_smoothed": 152.0,
- "total_deaths": 519.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 7074.159,
- "new_cases_per_million": 16.721,
- "new_cases_smoothed_per_million": 16.086,
- "total_deaths_per_million": 54.925,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.423,
- "new_tests": 10940.0,
- "total_tests": 1241624.0,
- "total_tests_per_thousand": 131.398,
- "new_tests_per_thousand": 1.158,
- "new_tests_smoothed": 8777.0,
- "new_tests_smoothed_per_thousand": 0.929,
- "tests_per_case": 57.743,
- "positive_rate": 0.017,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-07-26",
- "total_cases": 67002.0,
- "new_cases": 156.0,
- "new_cases_smoothed": 149.857,
- "total_deaths": 530.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 7090.668,
- "new_cases_per_million": 16.509,
- "new_cases_smoothed_per_million": 15.859,
- "total_deaths_per_million": 56.089,
- "new_deaths_per_million": 1.164,
- "new_deaths_smoothed_per_million": 0.529,
- "new_tests": 9735.0,
- "total_tests": 1251359.0,
- "total_tests_per_thousand": 132.428,
- "new_tests_per_thousand": 1.03,
- "new_tests_smoothed": 9124.0,
- "new_tests_smoothed_per_thousand": 0.966,
- "tests_per_case": 60.885,
- "positive_rate": 0.016,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-07-27",
- "total_cases": 67132.0,
- "new_cases": 130.0,
- "new_cases_smoothed": 148.143,
- "total_deaths": 534.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 7104.426,
- "new_cases_per_million": 13.758,
- "new_cases_smoothed_per_million": 15.678,
- "total_deaths_per_million": 56.512,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.529,
- "new_tests": 6040.0,
- "total_tests": 1257399.0,
- "total_tests_per_thousand": 133.068,
- "new_tests_per_thousand": 0.639,
- "new_tests_smoothed": 8944.0,
- "new_tests_smoothed_per_thousand": 0.947,
- "tests_per_case": 60.373999999999995,
- "positive_rate": 0.017,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-07-28",
- "total_cases": 67251.0,
- "new_cases": 119.0,
- "new_cases_smoothed": 148.286,
- "total_deaths": 538.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 7117.019,
- "new_cases_per_million": 12.593,
- "new_cases_smoothed_per_million": 15.693,
- "total_deaths_per_million": 56.935,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.529,
- "new_tests_smoothed": 9414.0,
- "new_tests_smoothed_per_thousand": 0.996,
- "tests_per_case": 63.486000000000004,
- "positive_rate": 0.016,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-07-29",
- "total_cases": 67366.0,
- "new_cases": 115.0,
- "new_cases_smoothed": 145.429,
- "total_deaths": 543.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 7129.189,
- "new_cases_per_million": 12.17,
- "new_cases_smoothed_per_million": 15.39,
- "total_deaths_per_million": 57.464,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.544,
- "total_tests": 1278583.0,
- "total_tests_per_thousand": 135.31,
- "new_tests_smoothed": 9883.0,
- "new_tests_smoothed_per_thousand": 1.046,
- "tests_per_case": 67.958,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-07-30",
- "total_cases": 67518.0,
- "new_cases": 152.0,
- "new_cases_smoothed": 142.429,
- "total_deaths": 548.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 7145.275,
- "new_cases_per_million": 16.086,
- "new_cases_smoothed_per_million": 15.073,
- "total_deaths_per_million": 57.994,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.529,
- "new_tests": 10003.0,
- "total_tests": 1288586.0,
- "total_tests_per_thousand": 136.368,
- "new_tests_per_thousand": 1.059,
- "new_tests_smoothed": 9840.0,
- "new_tests_smoothed_per_thousand": 1.041,
- "tests_per_case": 69.087,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-07-31",
- "total_cases": 67665.0,
- "new_cases": 147.0,
- "new_cases_smoothed": 139.571,
- "total_deaths": 553.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 7160.832,
- "new_cases_per_million": 15.557,
- "new_cases_smoothed_per_million": 14.771,
- "total_deaths_per_million": 58.523,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.514,
- "new_tests": 10842.0,
- "total_tests": 1299428.0,
- "total_tests_per_thousand": 137.515,
- "new_tests_per_thousand": 1.147,
- "new_tests_smoothed": 9821.0,
- "new_tests_smoothed_per_thousand": 1.039,
- "tests_per_case": 70.365,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-01",
- "total_cases": 67808.0,
- "new_cases": 143.0,
- "new_cases_smoothed": 137.429,
- "total_deaths": 559.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.714,
- "total_cases_per_million": 7175.965,
- "new_cases_per_million": 15.133,
- "new_cases_smoothed_per_million": 14.544,
- "total_deaths_per_million": 59.158,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.605,
- "new_tests_smoothed": 9725.0,
- "new_tests_smoothed_per_thousand": 1.029,
- "tests_per_case": 70.764,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-02",
- "total_cases": 67946.0,
- "new_cases": 138.0,
- "new_cases_smoothed": 134.857,
- "total_deaths": 563.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 7190.57,
- "new_cases_per_million": 14.604,
- "new_cases_smoothed_per_million": 14.272,
- "total_deaths_per_million": 59.581,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.499,
- "total_tests": 1319976.0,
- "total_tests_per_thousand": 139.69,
- "new_tests_smoothed": 9802.0,
- "new_tests_smoothed_per_thousand": 1.037,
- "tests_per_case": 72.684,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-03",
- "total_cases": 68067.0,
- "new_cases": 121.0,
- "new_cases_smoothed": 133.571,
- "total_deaths": 567.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 7203.375,
- "new_cases_per_million": 12.805,
- "new_cases_smoothed_per_million": 14.136,
- "total_deaths_per_million": 60.004,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.499,
- "new_tests_smoothed": 9354.0,
- "new_tests_smoothed_per_thousand": 0.99,
- "tests_per_case": 70.03,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-04",
- "total_cases": 68166.0,
- "new_cases": 99.0,
- "new_cases_smoothed": 130.714,
- "total_deaths": 571.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 7213.852,
- "new_cases_per_million": 10.477,
- "new_cases_smoothed_per_million": 13.833,
- "total_deaths_per_million": 60.428,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.499,
- "total_tests": 1325776.0,
- "total_tests_per_thousand": 140.304,
- "new_tests_smoothed": 8255.0,
- "new_tests_smoothed_per_thousand": 0.874,
- "tests_per_case": 63.153,
- "positive_rate": 0.016,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-05",
- "total_cases": 68250.0,
- "new_cases": 84.0,
- "new_cases_smoothed": 126.286,
- "total_deaths": 574.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 7222.741,
- "new_cases_per_million": 8.89,
- "new_cases_smoothed_per_million": 13.365,
- "total_deaths_per_million": 60.745,
- "new_deaths_per_million": 0.317,
- "new_deaths_smoothed_per_million": 0.469,
- "new_tests_smoothed": 8065.0,
- "new_tests_smoothed_per_thousand": 0.854,
- "tests_per_case": 63.863,
- "positive_rate": 0.016,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-06",
- "total_cases": 68376.0,
- "new_cases": 126.0,
- "new_cases_smoothed": 122.571,
- "total_deaths": 577.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 7236.075,
- "new_cases_per_million": 13.334,
- "new_cases_smoothed_per_million": 12.971,
- "total_deaths_per_million": 61.063,
- "new_deaths_per_million": 0.317,
- "new_deaths_smoothed_per_million": 0.438,
- "total_tests": 1344303.0,
- "total_tests_per_thousand": 142.265,
- "new_tests_smoothed": 7960.0,
- "new_tests_smoothed_per_thousand": 0.842,
- "tests_per_case": 64.942,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-07",
- "total_cases": 68503.0,
- "new_cases": 127.0,
- "new_cases_smoothed": 119.714,
- "total_deaths": 580.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 7249.516,
- "new_cases_per_million": 13.44,
- "new_cases_smoothed_per_million": 12.669,
- "total_deaths_per_million": 61.38,
- "new_deaths_per_million": 0.317,
- "new_deaths_smoothed_per_million": 0.408,
- "new_tests_smoothed": 7747.0,
- "new_tests_smoothed_per_thousand": 0.82,
- "tests_per_case": 64.712,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-08",
- "total_cases": 68614.0,
- "new_cases": 111.0,
- "new_cases_smoothed": 115.143,
- "total_deaths": 583.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 7261.262,
- "new_cases_per_million": 11.747,
- "new_cases_smoothed_per_million": 12.185,
- "total_deaths_per_million": 61.698,
- "new_deaths_per_million": 0.317,
- "new_deaths_smoothed_per_million": 0.363,
- "total_tests": 1363011.0,
- "total_tests_per_thousand": 144.244,
- "new_tests_smoothed": 7616.0,
- "new_tests_smoothed_per_thousand": 0.806,
- "tests_per_case": 66.14399999999999,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-09",
- "total_cases": 68738.0,
- "new_cases": 124.0,
- "new_cases_smoothed": 113.143,
- "total_deaths": 585.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 7274.385,
- "new_cases_per_million": 13.123,
- "new_cases_smoothed_per_million": 11.974,
- "total_deaths_per_million": 61.909,
- "new_deaths_per_million": 0.212,
- "new_deaths_smoothed_per_million": 0.333,
- "new_tests_smoothed": 6840.0,
- "new_tests_smoothed_per_thousand": 0.724,
- "tests_per_case": 60.455,
- "positive_rate": 0.017,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-10",
- "total_cases": 68850.0,
- "new_cases": 112.0,
- "new_cases_smoothed": 111.857,
- "total_deaths": 587.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 7286.238,
- "new_cases_per_million": 11.853,
- "new_cases_smoothed_per_million": 11.838,
- "total_deaths_per_million": 62.121,
- "new_deaths_per_million": 0.212,
- "new_deaths_smoothed_per_million": 0.302,
- "new_tests_smoothed": 7117.0,
- "new_tests_smoothed_per_thousand": 0.753,
- "tests_per_case": 63.626000000000005,
- "positive_rate": 0.016,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-11",
- "total_cases": 68947.0,
- "new_cases": 97.0,
- "new_cases_smoothed": 111.571,
- "total_deaths": 589.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 7296.503,
- "new_cases_per_million": 10.265,
- "new_cases_smoothed_per_million": 11.807,
- "total_deaths_per_million": 62.333,
- "new_deaths_per_million": 0.212,
- "new_deaths_smoothed_per_million": 0.272,
- "total_tests": 1377540.0,
- "total_tests_per_thousand": 145.782,
- "new_tests_smoothed": 7395.0,
- "new_tests_smoothed_per_thousand": 0.783,
- "tests_per_case": 66.28,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-12",
- "total_cases": 69005.0,
- "new_cases": 58.0,
- "new_cases_smoothed": 107.857,
- "total_deaths": 592.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 7302.641,
- "new_cases_per_million": 6.138,
- "new_cases_smoothed_per_million": 11.414,
- "total_deaths_per_million": 62.65,
- "new_deaths_per_million": 0.317,
- "new_deaths_smoothed_per_million": 0.272,
- "new_tests": 6486.0,
- "total_tests": 1384026.0,
- "total_tests_per_thousand": 146.468,
- "new_tests_per_thousand": 0.686,
- "new_tests_smoothed": 6998.0,
- "new_tests_smoothed_per_thousand": 0.741,
- "tests_per_case": 64.882,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-13",
- "total_cases": 69102.0,
- "new_cases": 97.0,
- "new_cases_smoothed": 103.714,
- "total_deaths": 595.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 7312.906,
- "new_cases_per_million": 10.265,
- "new_cases_smoothed_per_million": 10.976,
- "total_deaths_per_million": 62.967,
- "new_deaths_per_million": 0.317,
- "new_deaths_smoothed_per_million": 0.272,
- "new_tests_smoothed": 6839.0,
- "new_tests_smoothed_per_thousand": 0.724,
- "tests_per_case": 65.941,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-08-14",
- "total_cases": 69203.0,
- "new_cases": 101.0,
- "new_cases_smoothed": 100.0,
- "total_deaths": 599.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 7323.595,
- "new_cases_per_million": 10.689,
- "new_cases_smoothed_per_million": 10.583,
- "total_deaths_per_million": 63.391,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.287,
- "new_tests_smoothed": 6668.0,
- "new_tests_smoothed_per_thousand": 0.706,
- "tests_per_case": 66.68,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-08-15",
- "total_cases": 69308.0,
- "new_cases": 105.0,
- "new_cases_smoothed": 99.143,
- "total_deaths": 603.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 7334.707,
- "new_cases_per_million": 11.112,
- "new_cases_smoothed_per_million": 10.492,
- "total_deaths_per_million": 63.814,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.302,
- "new_tests_smoothed": 6496.0,
- "new_tests_smoothed_per_thousand": 0.687,
- "tests_per_case": 65.52199999999999,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-08-16",
- "total_cases": 69424.0,
- "new_cases": 116.0,
- "new_cases_smoothed": 98.0,
- "total_deaths": 607.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 7346.983,
- "new_cases_per_million": 12.276,
- "new_cases_smoothed_per_million": 10.371,
- "total_deaths_per_million": 64.237,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.333,
- "new_tests_smoothed": 6969.0,
- "new_tests_smoothed_per_thousand": 0.738,
- "tests_per_case": 71.112,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-08-17",
- "total_cases": 69516.0,
- "new_cases": 92.0,
- "new_cases_smoothed": 95.143,
- "total_deaths": 610.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 7356.719,
- "new_cases_per_million": 9.736,
- "new_cases_smoothed_per_million": 10.069,
- "total_deaths_per_million": 64.555,
- "new_deaths_per_million": 0.317,
- "new_deaths_smoothed_per_million": 0.348,
- "new_tests_smoothed": 7442.0,
- "new_tests_smoothed_per_thousand": 0.788,
- "tests_per_case": 78.219,
- "positive_rate": 0.013000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-08-18",
- "total_cases": 69589.0,
- "new_cases": 73.0,
- "new_cases_smoothed": 91.714,
- "total_deaths": 613.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 7364.444,
- "new_cases_per_million": 7.725,
- "new_cases_smoothed_per_million": 9.706,
- "total_deaths_per_million": 64.872,
- "new_deaths_per_million": 0.317,
- "new_deaths_smoothed_per_million": 0.363,
- "new_tests_smoothed": 7915.0,
- "new_tests_smoothed_per_thousand": 0.838,
- "tests_per_case": 86.301,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-08-19",
- "total_cases": 69673.0,
- "new_cases": 84.0,
- "new_cases_smoothed": 95.429,
- "total_deaths": 617.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 7373.334,
- "new_cases_per_million": 8.89,
- "new_cases_smoothed_per_million": 10.099,
- "total_deaths_per_million": 65.296,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.378,
- "new_tests_smoothed": 8153.0,
- "new_tests_smoothed_per_thousand": 0.863,
- "tests_per_case": 85.436,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-08-20",
- "total_cases": 69801.0,
- "new_cases": 128.0,
- "new_cases_smoothed": 99.857,
- "total_deaths": 622.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 7386.88,
- "new_cases_per_million": 13.546,
- "new_cases_smoothed_per_million": 10.568,
- "total_deaths_per_million": 65.825,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.408,
- "new_tests_smoothed": 8153.0,
- "new_tests_smoothed_per_thousand": 0.863,
- "tests_per_case": 81.64699999999999,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-08-21",
- "total_cases": 69950.0,
- "new_cases": 149.0,
- "new_cases_smoothed": 106.714,
- "total_deaths": 627.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 7402.648,
- "new_cases_per_million": 15.768,
- "new_cases_smoothed_per_million": 11.293,
- "total_deaths_per_million": 66.354,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.423,
- "new_tests_smoothed": 8153.0,
- "new_tests_smoothed_per_thousand": 0.863,
- "tests_per_case": 76.4,
- "positive_rate": 0.013000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-08-22",
- "total_cases": 70111.0,
- "new_cases": 161.0,
- "new_cases_smoothed": 114.714,
- "total_deaths": 632.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 7419.687,
- "new_cases_per_million": 17.038,
- "new_cases_smoothed_per_million": 12.14,
- "total_deaths_per_million": 66.883,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.438,
- "total_tests": 1465555.0,
- "total_tests_per_thousand": 155.096,
- "new_tests_smoothed": 8153.0,
- "new_tests_smoothed_per_thousand": 0.863,
- "tests_per_case": 71.072,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-08-23",
- "total_cases": 70285.0,
- "new_cases": 174.0,
- "new_cases_smoothed": 123.0,
- "total_deaths": 637.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 7438.101,
- "new_cases_per_million": 18.414,
- "new_cases_smoothed_per_million": 13.017,
- "total_deaths_per_million": 67.412,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.454,
- "new_tests": 8520.0,
- "total_tests": 1474075.0,
- "total_tests_per_thousand": 155.998,
- "new_tests_per_thousand": 0.902,
- "new_tests_smoothed": 8205.0,
- "new_tests_smoothed_per_thousand": 0.868,
- "tests_per_case": 66.707,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-08-24",
- "total_cases": 70468.0,
- "new_cases": 183.0,
- "new_cases_smoothed": 136.0,
- "total_deaths": 642.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 7457.467,
- "new_cases_per_million": 19.366,
- "new_cases_smoothed_per_million": 14.393,
- "total_deaths_per_million": 67.941,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.484,
- "new_tests_smoothed": 7467.0,
- "new_tests_smoothed_per_thousand": 0.79,
- "tests_per_case": 54.903999999999996,
- "positive_rate": 0.018000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-08-25",
- "total_cases": 70645.0,
- "new_cases": 177.0,
- "new_cases_smoothed": 150.857,
- "total_deaths": 646.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 7476.199,
- "new_cases_per_million": 18.732,
- "new_cases_smoothed_per_million": 15.965,
- "total_deaths_per_million": 68.365,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.499,
- "total_tests": 1480047.0,
- "total_tests_per_thousand": 156.63,
- "new_tests_smoothed": 6729.0,
- "new_tests_smoothed_per_thousand": 0.712,
- "tests_per_case": 44.605,
- "positive_rate": 0.022000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-08-26",
- "total_cases": 70727.0,
- "new_cases": 82.0,
- "new_cases_smoothed": 150.571,
- "total_deaths": 652.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 7484.876,
- "new_cases_per_million": 8.678,
- "new_cases_smoothed_per_million": 15.935,
- "total_deaths_per_million": 69.0,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.529,
- "new_tests_smoothed": 6805.0,
- "new_tests_smoothed_per_thousand": 0.72,
- "tests_per_case": 45.193999999999996,
- "positive_rate": 0.022000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-08-27",
- "total_cases": 70974.0,
- "new_cases": 247.0,
- "new_cases_smoothed": 167.571,
- "total_deaths": 657.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 7511.016,
- "new_cases_per_million": 26.139,
- "new_cases_smoothed_per_million": 17.734,
- "total_deaths_per_million": 69.529,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.529,
- "total_tests": 1497421.0,
- "total_tests_per_thousand": 158.469,
- "new_tests_smoothed": 6882.0,
- "new_tests_smoothed_per_thousand": 0.728,
- "tests_per_case": 41.068999999999996,
- "positive_rate": 0.024,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-08-28",
- "total_cases": 71165.0,
- "new_cases": 191.0,
- "new_cases_smoothed": 173.571,
- "total_deaths": 662.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 7531.229,
- "new_cases_per_million": 20.213,
- "new_cases_smoothed_per_million": 18.369,
- "total_deaths_per_million": 70.058,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.529,
- "new_tests_smoothed": 6785.0,
- "new_tests_smoothed_per_thousand": 0.718,
- "tests_per_case": 39.091,
- "positive_rate": 0.026000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-08-29",
- "total_cases": 71346.0,
- "new_cases": 181.0,
- "new_cases_smoothed": 176.429,
- "total_deaths": 667.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 7550.384,
- "new_cases_per_million": 19.155,
- "new_cases_smoothed_per_million": 18.671,
- "total_deaths_per_million": 70.587,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.529,
- "new_tests_smoothed": 6688.0,
- "new_tests_smoothed_per_thousand": 0.708,
- "tests_per_case": 37.908,
- "positive_rate": 0.026000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-08-30",
- "total_cases": 71523.0,
- "new_cases": 177.0,
- "new_cases_smoothed": 176.857,
- "total_deaths": 671.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 7569.115,
- "new_cases_per_million": 18.732,
- "new_cases_smoothed_per_million": 18.716,
- "total_deaths_per_million": 71.01,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.514,
- "new_tests_smoothed": 6538.0,
- "new_tests_smoothed_per_thousand": 0.692,
- "tests_per_case": 36.968,
- "positive_rate": 0.027000000000000003,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-08-31",
- "total_cases": 71687.0,
- "new_cases": 164.0,
- "new_cases_smoothed": 174.143,
- "total_deaths": 676.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 7586.471,
- "new_cases_per_million": 17.356,
- "new_cases_smoothed_per_million": 18.429,
- "total_deaths_per_million": 71.54,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.514,
- "new_tests_smoothed": 7180.0,
- "new_tests_smoothed_per_thousand": 0.76,
- "tests_per_case": 41.231,
- "positive_rate": 0.024,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-09-01",
- "total_cases": 71843.0,
- "new_cases": 156.0,
- "new_cases_smoothed": 171.143,
- "total_deaths": 681.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 7602.98,
- "new_cases_per_million": 16.509,
- "new_cases_smoothed_per_million": 18.112,
- "total_deaths_per_million": 72.069,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.529,
- "total_tests": 1534792.0,
- "total_tests_per_thousand": 162.424,
- "new_tests_smoothed": 7821.0,
- "new_tests_smoothed_per_thousand": 0.828,
- "tests_per_case": 45.699,
- "positive_rate": 0.022000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-09-02",
- "total_cases": 71962.0,
- "new_cases": 119.0,
- "new_cases_smoothed": 176.429,
- "total_deaths": 686.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 7615.574,
- "new_cases_per_million": 12.593,
- "new_cases_smoothed_per_million": 18.671,
- "total_deaths_per_million": 72.598,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.514,
- "new_tests_smoothed": 7961.0,
- "new_tests_smoothed_per_thousand": 0.842,
- "tests_per_case": 45.123000000000005,
- "positive_rate": 0.022000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-09-03",
- "total_cases": 72141.0,
- "new_cases": 179.0,
- "new_cases_smoothed": 166.714,
- "total_deaths": 691.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 7634.517,
- "new_cases_per_million": 18.943,
- "new_cases_smoothed_per_million": 17.643,
- "total_deaths_per_million": 73.127,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.514,
- "total_tests": 1554129.0,
- "total_tests_per_thousand": 164.47,
- "new_tests_smoothed": 8101.0,
- "new_tests_smoothed_per_thousand": 0.857,
- "tests_per_case": 48.592,
- "positive_rate": 0.021,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-09-04",
- "total_cases": 72302.0,
- "new_cases": 161.0,
- "new_cases_smoothed": 162.429,
- "total_deaths": 696.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 7651.555,
- "new_cases_per_million": 17.038,
- "new_cases_smoothed_per_million": 17.189,
- "total_deaths_per_million": 73.656,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.514,
- "new_tests_smoothed": 8359.0,
- "new_tests_smoothed_per_thousand": 0.885,
- "tests_per_case": 51.463,
- "positive_rate": 0.019,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-09-05",
- "total_cases": 72485.0,
- "new_cases": 183.0,
- "new_cases_smoothed": 162.714,
- "total_deaths": 701.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 7670.922,
- "new_cases_per_million": 19.366,
- "new_cases_smoothed_per_million": 17.22,
- "total_deaths_per_million": 74.185,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.514,
- "new_tests_smoothed": 8617.0,
- "new_tests_smoothed_per_thousand": 0.912,
- "tests_per_case": 52.958,
- "positive_rate": 0.019,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-09-06",
- "total_cases": 72663.0,
- "new_cases": 178.0,
- "new_cases_smoothed": 162.857,
- "total_deaths": 705.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 7689.759,
- "new_cases_per_million": 18.837,
- "new_cases_smoothed_per_million": 17.235,
- "total_deaths_per_million": 74.609,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.514,
- "new_tests_smoothed": 8875.0,
- "new_tests_smoothed_per_thousand": 0.939,
- "tests_per_case": 54.496,
- "positive_rate": 0.018000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-09-07",
- "total_cases": 72859.0,
- "new_cases": 196.0,
- "new_cases_smoothed": 167.429,
- "total_deaths": 711.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 7710.501,
- "new_cases_per_million": 20.742,
- "new_cases_smoothed_per_million": 17.719,
- "total_deaths_per_million": 75.244,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.529,
- "total_tests": 1591247.0,
- "total_tests_per_thousand": 168.398,
- "new_tests_smoothed": 9133.0,
- "new_tests_smoothed_per_thousand": 0.967,
- "tests_per_case": 54.549,
- "positive_rate": 0.018000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-09-08",
- "total_cases": 73031.0,
- "new_cases": 172.0,
- "new_cases_smoothed": 169.714,
- "total_deaths": 716.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 7728.703,
- "new_cases_per_million": 18.202,
- "new_cases_smoothed_per_million": 17.96,
- "total_deaths_per_million": 75.773,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.529,
- "new_tests_smoothed": 9086.0,
- "new_tests_smoothed_per_thousand": 0.962,
- "tests_per_case": 53.537,
- "positive_rate": 0.019,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-09-09",
- "total_cases": 73208.0,
- "new_cases": 177.0,
- "new_cases_smoothed": 178.0,
- "total_deaths": 721.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 7747.435,
- "new_cases_per_million": 18.732,
- "new_cases_smoothed_per_million": 18.837,
- "total_deaths_per_million": 76.302,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.529,
- "total_tests": 1605547.0,
- "total_tests_per_thousand": 169.911,
- "new_tests_smoothed": 8727.0,
- "new_tests_smoothed_per_thousand": 0.924,
- "tests_per_case": 49.028,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-09-10",
- "total_cases": 73402.0,
- "new_cases": 194.0,
- "new_cases_smoothed": 180.143,
- "total_deaths": 726.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 7767.966,
- "new_cases_per_million": 20.531,
- "new_cases_smoothed_per_million": 19.064,
- "total_deaths_per_million": 76.831,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.529,
- "new_tests_smoothed": 9098.0,
- "new_tests_smoothed_per_thousand": 0.963,
- "tests_per_case": 50.504,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-09-11",
- "total_cases": 73591.0,
- "new_cases": 189.0,
- "new_cases_smoothed": 184.143,
- "total_deaths": 732.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 7787.967,
- "new_cases_per_million": 20.001,
- "new_cases_smoothed_per_million": 19.487,
- "total_deaths_per_million": 77.466,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.544,
- "new_tests_smoothed": 9525.0,
- "new_tests_smoothed_per_thousand": 1.008,
- "tests_per_case": 51.726000000000006,
- "positive_rate": 0.019,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-09-12",
- "total_cases": 73784.0,
- "new_cases": 193.0,
- "new_cases_smoothed": 185.571,
- "total_deaths": 738.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.286,
- "total_cases_per_million": 7808.392,
- "new_cases_per_million": 20.425,
- "new_cases_smoothed_per_million": 19.639,
- "total_deaths_per_million": 78.101,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.559,
- "new_tests_smoothed": 9952.0,
- "new_tests_smoothed_per_thousand": 1.053,
- "tests_per_case": 53.629,
- "positive_rate": 0.019,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-09-13",
- "total_cases": 73975.0,
- "new_cases": 191.0,
- "new_cases_smoothed": 187.429,
- "total_deaths": 744.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 7828.605,
- "new_cases_per_million": 20.213,
- "new_cases_smoothed_per_million": 19.835,
- "total_deaths_per_million": 78.736,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.59,
- "total_tests": 1654618.0,
- "total_tests_per_thousand": 175.104,
- "new_tests_smoothed": 10379.0,
- "new_tests_smoothed_per_thousand": 1.098,
- "tests_per_case": 55.376000000000005,
- "positive_rate": 0.018000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-09-14",
- "total_cases": 74173.0,
- "new_cases": 198.0,
- "new_cases_smoothed": 187.714,
- "total_deaths": 750.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 7849.559,
- "new_cases_per_million": 20.954,
- "new_cases_smoothed_per_million": 19.865,
- "total_deaths_per_million": 79.371,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.59,
- "new_tests": 7315.0,
- "total_tests": 1661933.0,
- "total_tests_per_thousand": 175.879,
- "new_tests_per_thousand": 0.774,
- "new_tests_smoothed": 10098.0,
- "new_tests_smoothed_per_thousand": 1.069,
- "tests_per_case": 53.795,
- "positive_rate": 0.019,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-09-15",
- "total_cases": 74360.0,
- "new_cases": 187.0,
- "new_cases_smoothed": 189.857,
- "total_deaths": 756.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.714,
- "total_cases_per_million": 7869.348,
- "new_cases_per_million": 19.79,
- "new_cases_smoothed_per_million": 20.092,
- "total_deaths_per_million": 80.006,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.605,
- "new_tests_smoothed": 9814.0,
- "new_tests_smoothed_per_thousand": 1.039,
- "tests_per_case": 51.691,
- "positive_rate": 0.019,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-09-16",
- "total_cases": 74552.0,
- "new_cases": 192.0,
- "new_cases_smoothed": 192.0,
- "total_deaths": 761.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.714,
- "total_cases_per_million": 7889.667,
- "new_cases_per_million": 20.319,
- "new_cases_smoothed_per_million": 20.319,
- "total_deaths_per_million": 80.535,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.605,
- "total_tests": 1672256.0,
- "total_tests_per_thousand": 176.971,
- "new_tests_smoothed": 9530.0,
- "new_tests_smoothed_per_thousand": 1.009,
- "tests_per_case": 49.635,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-09-17",
- "total_cases": 74763.0,
- "new_cases": 211.0,
- "new_cases_smoothed": 194.429,
- "total_deaths": 767.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.857,
- "total_cases_per_million": 7911.997,
- "new_cases_per_million": 22.33,
- "new_cases_smoothed_per_million": 20.576,
- "total_deaths_per_million": 81.17,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.62,
- "new_tests_smoothed": 9815.0,
- "new_tests_smoothed_per_thousand": 1.039,
- "tests_per_case": 50.481,
- "positive_rate": 0.02,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-18",
- "total_cases": 74987.0,
- "new_cases": 224.0,
- "new_cases_smoothed": 199.429,
- "total_deaths": 771.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 7935.702,
- "new_cases_per_million": 23.705,
- "new_cases_smoothed_per_million": 21.105,
- "total_deaths_per_million": 81.593,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.59,
- "total_tests": 1700790.0,
- "total_tests_per_thousand": 179.991,
- "new_tests_smoothed": 10101.0,
- "new_tests_smoothed_per_thousand": 1.069,
- "tests_per_case": 50.65,
- "positive_rate": 0.02,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-19",
- "total_cases": 75230.0,
- "new_cases": 243.0,
- "new_cases_smoothed": 206.571,
- "total_deaths": 773.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 7961.419,
- "new_cases_per_million": 25.716,
- "new_cases_smoothed_per_million": 21.861,
- "total_deaths_per_million": 81.805,
- "new_deaths_per_million": 0.212,
- "new_deaths_smoothed_per_million": 0.529,
- "new_tests_smoothed": 9916.0,
- "new_tests_smoothed_per_thousand": 1.049,
- "tests_per_case": 48.003,
- "positive_rate": 0.021,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-20",
- "total_cases": 75461.0,
- "new_cases": 231.0,
- "new_cases_smoothed": 212.286,
- "total_deaths": 776.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 7985.865,
- "new_cases_per_million": 24.446,
- "new_cases_smoothed_per_million": 22.466,
- "total_deaths_per_million": 82.122,
- "new_deaths_per_million": 0.317,
- "new_deaths_smoothed_per_million": 0.484,
- "new_tests_smoothed": 9731.0,
- "new_tests_smoothed_per_thousand": 1.03,
- "tests_per_case": 45.839,
- "positive_rate": 0.022000000000000002,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-21",
- "total_cases": 75674.0,
- "new_cases": 213.0,
- "new_cases_smoothed": 214.429,
- "total_deaths": 780.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 8008.406,
- "new_cases_per_million": 22.541,
- "new_cases_smoothed_per_million": 22.692,
- "total_deaths_per_million": 82.546,
- "new_deaths_per_million": 0.423,
- "new_deaths_smoothed_per_million": 0.454,
- "new_tests_smoothed": 10254.0,
- "new_tests_smoothed_per_thousand": 1.085,
- "tests_per_case": 47.82,
- "positive_rate": 0.021,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-22",
- "total_cases": 75898.0,
- "new_cases": 224.0,
- "new_cases_smoothed": 219.714,
- "total_deaths": 785.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 8032.112,
- "new_cases_per_million": 23.705,
- "new_cases_smoothed_per_million": 23.252,
- "total_deaths_per_million": 83.075,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.438,
- "total_tests": 1744682.0,
- "total_tests_per_thousand": 184.636,
- "new_tests_smoothed": 11084.0,
- "new_tests_smoothed_per_thousand": 1.173,
- "tests_per_case": 50.446999999999996,
- "positive_rate": 0.02,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-23",
- "total_cases": 76104.0,
- "new_cases": 206.0,
- "new_cases_smoothed": 221.714,
- "total_deaths": 791.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 8053.912,
- "new_cases_per_million": 21.801,
- "new_cases_smoothed_per_million": 23.464,
- "total_deaths_per_million": 83.71,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.454
- },
- {
- "date": "2020-09-24",
- "total_cases": 76357.0,
- "new_cases": 253.0,
- "new_cases_smoothed": 227.714,
- "total_deaths": 796.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 8080.686,
- "new_cases_per_million": 26.774,
- "new_cases_smoothed_per_million": 24.098,
- "total_deaths_per_million": 84.239,
- "new_deaths_per_million": 0.529,
- "new_deaths_smoothed_per_million": 0.438
- },
- {
- "date": "2020-09-25",
- "total_cases": 76651.0,
- "new_cases": 294.0,
- "new_cases_smoothed": 237.714,
- "total_deaths": 802.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 8111.8,
- "new_cases_per_million": 31.113,
- "new_cases_smoothed_per_million": 25.157,
- "total_deaths_per_million": 84.874,
- "new_deaths_per_million": 0.635,
- "new_deaths_smoothed_per_million": 0.469
- }
- ]
- },
- "BLZ": {
- "continent": "North America",
- "location": "Belize",
- "population": 397621.0,
- "population_density": 16.426,
- "median_age": 25.0,
- "aged_65_older": 3.853,
- "aged_70_older": 2.279,
- "gdp_per_capita": 7824.362,
- "cardiovasc_death_rate": 176.957,
- "diabetes_prevalence": 17.11,
- "handwashing_facilities": 90.083,
- "hospital_beds_per_thousand": 1.3,
- "life_expectancy": 74.62,
- "human_development_index": 0.708,
- "data": [
- {
- "date": "2020-03-24",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 2.515,
- "new_cases_per_million": 2.515,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-03-25",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 2.515,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-03-26",
- "total_cases": 2.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 5.03,
- "new_cases_per_million": 2.515,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-03-27",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 5.03,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-03-28",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 5.03,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-03-29",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 5.03,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-03-30",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5.03,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.719,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-03-31",
- "total_cases": 3.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 7.545,
- "new_cases_per_million": 2.515,
- "new_cases_smoothed_per_million": 0.719,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-04-01",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 7.545,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.719,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-02",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 7.545,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.359,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-03",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 7.545,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.359,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-04",
- "total_cases": 4.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.06,
- "new_cases_per_million": 2.515,
- "new_cases_smoothed_per_million": 0.719,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-05",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.06,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.719,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-06",
- "total_cases": 5.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 12.575,
- "new_cases_per_million": 2.515,
- "new_cases_smoothed_per_million": 1.078,
- "total_deaths_per_million": 2.515,
- "new_deaths_per_million": 2.515,
- "new_deaths_smoothed_per_million": 0.359,
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-07",
- "total_cases": 7.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 17.605,
- "new_cases_per_million": 5.03,
- "new_cases_smoothed_per_million": 1.437,
- "total_deaths_per_million": 2.515,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.359,
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-08",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 17.605,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.437,
- "total_deaths_per_million": 2.515,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.359,
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-09",
- "total_cases": 8.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 20.12,
- "new_cases_per_million": 2.515,
- "new_cases_smoothed_per_million": 1.796,
- "total_deaths_per_million": 2.515,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.359,
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-10",
- "total_cases": 9.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 22.635,
- "new_cases_per_million": 2.515,
- "new_cases_smoothed_per_million": 2.156,
- "total_deaths_per_million": 2.515,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.359,
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-11",
- "total_cases": 10.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 2.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 25.15,
- "new_cases_per_million": 2.515,
- "new_cases_smoothed_per_million": 2.156,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 2.515,
- "new_deaths_smoothed_per_million": 0.719,
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-12",
- "total_cases": 13.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 32.694,
- "new_cases_per_million": 7.545,
- "new_cases_smoothed_per_million": 3.234,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.719,
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-13",
- "total_cases": 14.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 35.209,
- "new_cases_per_million": 2.515,
- "new_cases_smoothed_per_million": 3.234,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.359,
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-14",
- "total_cases": 18.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 10.06,
- "new_cases_smoothed_per_million": 3.952,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.359,
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-15",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.952,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.359,
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-16",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.593,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.359,
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-17",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.234,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.359,
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-18",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.874,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-19",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.796,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-20",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.437,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-21",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-22",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-23",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-24",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-25",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-26",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-27",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-28",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-29",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-30",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-01",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-02",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-03",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-04",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-05",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-06",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-07",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-08",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-09",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-10",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-11",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-12",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-13",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-14",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-15",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-16",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-17",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-18",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-19",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-20",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-21",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-22",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-23",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-24",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-25",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-26",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-27",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-28",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-29",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-30",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-31",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 85.19
- },
- {
- "date": "2020-06-01",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-02",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-03",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-04",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-05",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-06",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-07",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-08",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.269,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-09",
- "total_cases": 19.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 47.784,
- "new_cases_per_million": 2.515,
- "new_cases_smoothed_per_million": 0.359,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-10",
- "total_cases": 20.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 50.299,
- "new_cases_per_million": 2.515,
- "new_cases_smoothed_per_million": 0.719,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-11",
- "total_cases": 20.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 50.299,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.719,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-12",
- "total_cases": 20.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 50.299,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.719,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-13",
- "total_cases": 20.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 50.299,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.719,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-14",
- "total_cases": 20.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 50.299,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.719,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-15",
- "total_cases": 21.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 52.814,
- "new_cases_per_million": 2.515,
- "new_cases_smoothed_per_million": 1.078,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 71.3
- },
- {
- "date": "2020-06-16",
- "total_cases": 21.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 52.814,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.719,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 71.3
- },
- {
- "date": "2020-06-17",
- "total_cases": 21.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 52.814,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.359,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 71.3
- },
- {
- "date": "2020-06-18",
- "total_cases": 22.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 55.329,
- "new_cases_per_million": 2.515,
- "new_cases_smoothed_per_million": 0.719,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 71.3
- },
- {
- "date": "2020-06-19",
- "total_cases": 22.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 55.329,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.719,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 71.3
- },
- {
- "date": "2020-06-20",
- "total_cases": 22.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 55.329,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.719,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 71.3
- },
- {
- "date": "2020-06-21",
- "total_cases": 22.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 55.329,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.719,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 71.3
- },
- {
- "date": "2020-06-22",
- "total_cases": 22.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 55.329,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.359,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 71.3
- },
- {
- "date": "2020-06-23",
- "total_cases": 23.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 57.844,
- "new_cases_per_million": 2.515,
- "new_cases_smoothed_per_million": 0.719,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 71.3
- },
- {
- "date": "2020-06-24",
- "total_cases": 23.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 57.844,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.719,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 71.3
- },
- {
- "date": "2020-06-25",
- "total_cases": 23.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 57.844,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.359,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 71.3
- },
- {
- "date": "2020-06-26",
- "total_cases": 23.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 57.844,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.359,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 71.3
- },
- {
- "date": "2020-06-27",
- "total_cases": 24.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 60.359,
- "new_cases_per_million": 2.515,
- "new_cases_smoothed_per_million": 0.719,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 71.3
- },
- {
- "date": "2020-06-28",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 60.359,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.719,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 71.3
- },
- {
- "date": "2020-06-29",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 60.359,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.719,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 71.3
- },
- {
- "date": "2020-06-30",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 60.359,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.359,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 71.3
- },
- {
- "date": "2020-07-01",
- "total_cases": 28.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 70.419,
- "new_cases_per_million": 10.06,
- "new_cases_smoothed_per_million": 1.796,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-07-02",
- "total_cases": 28.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 70.419,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.796,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-07-03",
- "total_cases": 28.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 70.419,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.796,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-07-04",
- "total_cases": 30.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 75.449,
- "new_cases_per_million": 5.03,
- "new_cases_smoothed_per_million": 2.156,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-07-05",
- "total_cases": 30.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 75.449,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.156,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-07-06",
- "total_cases": 30.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 75.449,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.156,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-07-07",
- "total_cases": 30.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 75.449,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.156,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-07-08",
- "total_cases": 30.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 75.449,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.719,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-07-09",
- "total_cases": 30.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 75.449,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.719,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-07-10",
- "total_cases": 33.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 82.994,
- "new_cases_per_million": 7.545,
- "new_cases_smoothed_per_million": 1.796,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-07-11",
- "total_cases": 37.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 93.053,
- "new_cases_per_million": 10.06,
- "new_cases_smoothed_per_million": 2.515,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-07-12",
- "total_cases": 37.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 93.053,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.515,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-07-13",
- "total_cases": 37.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 93.053,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.515,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-07-14",
- "total_cases": 37.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 93.053,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.515,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-07-15",
- "total_cases": 39.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 98.083,
- "new_cases_per_million": 5.03,
- "new_cases_smoothed_per_million": 3.234,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-07-16",
- "total_cases": 39.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 98.083,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.234,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-07-17",
- "total_cases": 40.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 100.598,
- "new_cases_per_million": 2.515,
- "new_cases_smoothed_per_million": 2.515,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-07-18",
- "total_cases": 40.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 100.598,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.078,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-07-19",
- "total_cases": 40.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 100.598,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.078,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-07-20",
- "total_cases": 40.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 100.598,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.078,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-07-21",
- "total_cases": 42.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 105.628,
- "new_cases_per_million": 5.03,
- "new_cases_smoothed_per_million": 1.796,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-07-22",
- "total_cases": 43.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 108.143,
- "new_cases_per_million": 2.515,
- "new_cases_smoothed_per_million": 1.437,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-07-23",
- "total_cases": 43.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 108.143,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.437,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-07-24",
- "total_cases": 47.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 118.203,
- "new_cases_per_million": 10.06,
- "new_cases_smoothed_per_million": 2.515,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-07-25",
- "total_cases": 48.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 120.718,
- "new_cases_per_million": 2.515,
- "new_cases_smoothed_per_million": 2.874,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-07-26",
- "total_cases": 48.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 120.718,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.874,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-07-27",
- "total_cases": 48.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 120.718,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.874,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-07-28",
- "total_cases": 48.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 120.718,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.156,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-07-29",
- "total_cases": 48.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 120.718,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.796,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-07-30",
- "total_cases": 48.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 120.718,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.796,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-07-31",
- "total_cases": 48.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 120.718,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.359,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-08-01",
- "total_cases": 48.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 120.718,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-08-02",
- "total_cases": 56.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 140.838,
- "new_cases_per_million": 20.12,
- "new_cases_smoothed_per_million": 2.874,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-08-03",
- "total_cases": 57.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 143.353,
- "new_cases_per_million": 2.515,
- "new_cases_smoothed_per_million": 3.234,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-08-04",
- "total_cases": 57.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 143.353,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.234,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-08-05",
- "total_cases": 72.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 3.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 181.077,
- "new_cases_per_million": 37.724,
- "new_cases_smoothed_per_million": 8.623,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-08-06",
- "total_cases": 86.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 216.286,
- "new_cases_per_million": 35.209,
- "new_cases_smoothed_per_million": 13.653,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-08-07",
- "total_cases": 114.0,
- "new_cases": 28.0,
- "new_cases_smoothed": 9.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 286.705,
- "new_cases_per_million": 70.419,
- "new_cases_smoothed_per_million": 23.712,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-08-08",
- "total_cases": 146.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 14.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 367.184,
- "new_cases_per_million": 80.479,
- "new_cases_smoothed_per_million": 35.209,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-08-09",
- "total_cases": 153.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 13.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 384.789,
- "new_cases_per_million": 17.605,
- "new_cases_smoothed_per_million": 34.85,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-08-10",
- "total_cases": 154.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 13.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 387.303,
- "new_cases_per_million": 2.515,
- "new_cases_smoothed_per_million": 34.85,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-08-11",
- "total_cases": 177.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 17.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 445.148,
- "new_cases_per_million": 57.844,
- "new_cases_smoothed_per_million": 43.114,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-08-12",
- "total_cases": 210.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 19.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 528.141,
- "new_cases_per_million": 82.994,
- "new_cases_smoothed_per_million": 49.581,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-08-13",
- "total_cases": 296.0,
- "new_cases": 86.0,
- "new_cases_smoothed": 30.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 744.427,
- "new_cases_per_million": 216.286,
- "new_cases_smoothed_per_million": 75.449,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-08-14",
- "total_cases": 356.0,
- "new_cases": 60.0,
- "new_cases_smoothed": 34.571,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 895.325,
- "new_cases_per_million": 150.897,
- "new_cases_smoothed_per_million": 86.946,
- "total_deaths_per_million": 5.03,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 70.83
- },
- {
- "date": "2020-08-15",
- "total_cases": 388.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 34.571,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 975.804,
- "new_cases_per_million": 80.479,
- "new_cases_smoothed_per_million": 86.946,
- "total_deaths_per_million": 7.545,
- "new_deaths_per_million": 2.515,
- "new_deaths_smoothed_per_million": 0.359,
- "stringency_index": 70.83
- },
- {
- "date": "2020-08-16",
- "total_cases": 452.0,
- "new_cases": 64.0,
- "new_cases_smoothed": 42.714,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1136.761,
- "new_cases_per_million": 160.957,
- "new_cases_smoothed_per_million": 107.425,
- "total_deaths_per_million": 7.545,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.359,
- "stringency_index": 70.83
- },
- {
- "date": "2020-08-17",
- "total_cases": 452.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 42.571,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1136.761,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 107.065,
- "total_deaths_per_million": 7.545,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.359,
- "stringency_index": 70.83
- },
- {
- "date": "2020-08-18",
- "total_cases": 475.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 42.571,
- "total_deaths": 4.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1194.605,
- "new_cases_per_million": 57.844,
- "new_cases_smoothed_per_million": 107.065,
- "total_deaths_per_million": 10.06,
- "new_deaths_per_million": 2.515,
- "new_deaths_smoothed_per_million": 0.719,
- "stringency_index": 70.83
- },
- {
- "date": "2020-08-19",
- "total_cases": 553.0,
- "new_cases": 78.0,
- "new_cases_smoothed": 49.0,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1390.772,
- "new_cases_per_million": 196.167,
- "new_cases_smoothed_per_million": 123.233,
- "total_deaths_per_million": 10.06,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.719,
- "stringency_index": 70.83
- },
- {
- "date": "2020-08-20",
- "total_cases": 553.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 36.714,
- "total_deaths": 5.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 1390.772,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 92.335,
- "total_deaths_per_million": 12.575,
- "new_deaths_per_million": 2.515,
- "new_deaths_smoothed_per_million": 1.078,
- "stringency_index": 70.83
- },
- {
- "date": "2020-08-21",
- "total_cases": 605.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 35.571,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 1521.549,
- "new_cases_per_million": 130.778,
- "new_cases_smoothed_per_million": 89.461,
- "total_deaths_per_million": 12.575,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.078,
- "stringency_index": 70.83
- },
- {
- "date": "2020-08-22",
- "total_cases": 648.0,
- "new_cases": 43.0,
- "new_cases_smoothed": 37.143,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1629.693,
- "new_cases_per_million": 108.143,
- "new_cases_smoothed_per_million": 93.413,
- "total_deaths_per_million": 12.575,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.719,
- "stringency_index": 70.83
- },
- {
- "date": "2020-08-23",
- "total_cases": 668.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 30.857,
- "total_deaths": 6.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 1679.992,
- "new_cases_per_million": 50.299,
- "new_cases_smoothed_per_million": 77.604,
- "total_deaths_per_million": 15.09,
- "new_deaths_per_million": 2.515,
- "new_deaths_smoothed_per_million": 1.078,
- "stringency_index": 70.83
- },
- {
- "date": "2020-08-24",
- "total_cases": 686.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 33.429,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 1725.261,
- "new_cases_per_million": 45.269,
- "new_cases_smoothed_per_million": 84.071,
- "total_deaths_per_million": 15.09,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.078,
- "stringency_index": 70.83
- },
- {
- "date": "2020-08-25",
- "total_cases": 713.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 34.0,
- "total_deaths": 10.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 1793.165,
- "new_cases_per_million": 67.904,
- "new_cases_smoothed_per_million": 85.509,
- "total_deaths_per_million": 25.15,
- "new_deaths_per_million": 10.06,
- "new_deaths_smoothed_per_million": 2.156,
- "stringency_index": 70.83
- },
- {
- "date": "2020-08-26",
- "total_cases": 730.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 25.286,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 1835.919,
- "new_cases_per_million": 42.754,
- "new_cases_smoothed_per_million": 63.593,
- "total_deaths_per_million": 25.15,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.156,
- "stringency_index": 70.83
- },
- {
- "date": "2020-08-27",
- "total_cases": 760.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 29.571,
- "total_deaths": 11.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 1911.368,
- "new_cases_per_million": 75.449,
- "new_cases_smoothed_per_million": 74.371,
- "total_deaths_per_million": 27.665,
- "new_deaths_per_million": 2.515,
- "new_deaths_smoothed_per_million": 2.156,
- "stringency_index": 70.83
- },
- {
- "date": "2020-08-28",
- "total_cases": 818.0,
- "new_cases": 58.0,
- "new_cases_smoothed": 30.429,
- "total_deaths": 12.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 2057.235,
- "new_cases_per_million": 145.868,
- "new_cases_smoothed_per_million": 76.527,
- "total_deaths_per_million": 30.179,
- "new_deaths_per_million": 2.515,
- "new_deaths_smoothed_per_million": 2.515,
- "stringency_index": 70.83
- },
- {
- "date": "2020-08-29",
- "total_cases": 870.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 31.714,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 2188.013,
- "new_cases_per_million": 130.778,
- "new_cases_smoothed_per_million": 79.76,
- "total_deaths_per_million": 30.179,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.515,
- "stringency_index": 70.83
- },
- {
- "date": "2020-08-30",
- "total_cases": 964.0,
- "new_cases": 94.0,
- "new_cases_smoothed": 42.286,
- "total_deaths": 13.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 2424.419,
- "new_cases_per_million": 236.406,
- "new_cases_smoothed_per_million": 106.347,
- "total_deaths_per_million": 32.694,
- "new_deaths_per_million": 2.515,
- "new_deaths_smoothed_per_million": 2.515,
- "stringency_index": 70.83
- },
- {
- "date": "2020-08-31",
- "total_cases": 994.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 44.0,
- "total_deaths": 13.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 2499.868,
- "new_cases_per_million": 75.449,
- "new_cases_smoothed_per_million": 110.658,
- "total_deaths_per_million": 32.694,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.515,
- "stringency_index": 70.83
- },
- {
- "date": "2020-09-01",
- "total_cases": 1007.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 42.0,
- "total_deaths": 13.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2532.562,
- "new_cases_per_million": 32.694,
- "new_cases_smoothed_per_million": 105.628,
- "total_deaths_per_million": 32.694,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.078,
- "stringency_index": 70.83
- },
- {
- "date": "2020-09-02",
- "total_cases": 1050.0,
- "new_cases": 43.0,
- "new_cases_smoothed": 45.714,
- "total_deaths": 13.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2640.706,
- "new_cases_per_million": 108.143,
- "new_cases_smoothed_per_million": 114.969,
- "total_deaths_per_million": 32.694,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.078,
- "stringency_index": 72.22
- },
- {
- "date": "2020-09-03",
- "total_cases": 1101.0,
- "new_cases": 51.0,
- "new_cases_smoothed": 48.714,
- "total_deaths": 13.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2768.968,
- "new_cases_per_million": 128.263,
- "new_cases_smoothed_per_million": 122.514,
- "total_deaths_per_million": 32.694,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.719,
- "stringency_index": 72.22
- },
- {
- "date": "2020-09-04",
- "total_cases": 1118.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 42.857,
- "total_deaths": 13.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2811.723,
- "new_cases_per_million": 42.754,
- "new_cases_smoothed_per_million": 107.784,
- "total_deaths_per_million": 32.694,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.359,
- "stringency_index": 72.22
- },
- {
- "date": "2020-09-05",
- "total_cases": 1152.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 40.286,
- "total_deaths": 15.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2897.231,
- "new_cases_per_million": 85.509,
- "new_cases_smoothed_per_million": 101.317,
- "total_deaths_per_million": 37.724,
- "new_deaths_per_million": 5.03,
- "new_deaths_smoothed_per_million": 1.078,
- "stringency_index": 72.22
- },
- {
- "date": "2020-09-06",
- "total_cases": 1194.0,
- "new_cases": 42.0,
- "new_cases_smoothed": 32.857,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3002.86,
- "new_cases_per_million": 105.628,
- "new_cases_smoothed_per_million": 82.634,
- "total_deaths_per_million": 37.724,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.719,
- "stringency_index": 72.22
- },
- {
- "date": "2020-09-07",
- "total_cases": 1261.0,
- "new_cases": 67.0,
- "new_cases_smoothed": 38.143,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3171.362,
- "new_cases_per_million": 168.502,
- "new_cases_smoothed_per_million": 95.928,
- "total_deaths_per_million": 37.724,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.719,
- "stringency_index": 72.22
- },
- {
- "date": "2020-09-08",
- "total_cases": 1307.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 42.857,
- "total_deaths": 16.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 3287.05,
- "new_cases_per_million": 115.688,
- "new_cases_smoothed_per_million": 107.784,
- "total_deaths_per_million": 40.239,
- "new_deaths_per_million": 2.515,
- "new_deaths_smoothed_per_million": 1.078,
- "stringency_index": 72.22
- },
- {
- "date": "2020-09-09",
- "total_cases": 1361.0,
- "new_cases": 54.0,
- "new_cases_smoothed": 44.429,
- "total_deaths": 16.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 3422.857,
- "new_cases_per_million": 135.808,
- "new_cases_smoothed_per_million": 111.736,
- "total_deaths_per_million": 40.239,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.078,
- "stringency_index": 72.22
- },
- {
- "date": "2020-09-10",
- "total_cases": 1365.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 37.714,
- "total_deaths": 18.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 3432.917,
- "new_cases_per_million": 10.06,
- "new_cases_smoothed_per_million": 94.85,
- "total_deaths_per_million": 45.269,
- "new_deaths_per_million": 5.03,
- "new_deaths_smoothed_per_million": 1.796,
- "stringency_index": 72.22
- },
- {
- "date": "2020-09-11",
- "total_cases": 1399.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 40.143,
- "total_deaths": 19.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 3518.426,
- "new_cases_per_million": 85.509,
- "new_cases_smoothed_per_million": 100.958,
- "total_deaths_per_million": 47.784,
- "new_deaths_per_million": 2.515,
- "new_deaths_smoothed_per_million": 2.156,
- "stringency_index": 72.22
- },
- {
- "date": "2020-09-12",
- "total_cases": 1435.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 40.429,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 3608.964,
- "new_cases_per_million": 90.538,
- "new_cases_smoothed_per_million": 101.676,
- "total_deaths_per_million": 47.784,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.437,
- "stringency_index": 72.22
- },
- {
- "date": "2020-09-13",
- "total_cases": 1458.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 37.714,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 3666.808,
- "new_cases_per_million": 57.844,
- "new_cases_smoothed_per_million": 94.85,
- "total_deaths_per_million": 47.784,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.437,
- "stringency_index": 72.22
- },
- {
- "date": "2020-09-14",
- "total_cases": 1480.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 31.286,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 3722.137,
- "new_cases_per_million": 55.329,
- "new_cases_smoothed_per_million": 78.682,
- "total_deaths_per_million": 47.784,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.437,
- "stringency_index": 72.22
- },
- {
- "date": "2020-09-15",
- "total_cases": 1501.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 27.714,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 3774.952,
- "new_cases_per_million": 52.814,
- "new_cases_smoothed_per_million": 69.7,
- "total_deaths_per_million": 47.784,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.078
- },
- {
- "date": "2020-09-16",
- "total_cases": 1528.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 23.857,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 3842.855,
- "new_cases_per_million": 67.904,
- "new_cases_smoothed_per_million": 60.0,
- "total_deaths_per_million": 47.784,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.078
- },
- {
- "date": "2020-09-17",
- "total_cases": 1536.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 24.429,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 3862.975,
- "new_cases_per_million": 20.12,
- "new_cases_smoothed_per_million": 61.437,
- "total_deaths_per_million": 47.784,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.359
- },
- {
- "date": "2020-09-18",
- "total_cases": 1567.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 24.0,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3940.939,
- "new_cases_per_million": 77.964,
- "new_cases_smoothed_per_million": 60.359,
- "total_deaths_per_million": 47.784,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-19",
- "total_cases": 1590.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 22.143,
- "total_deaths": 20.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 3998.783,
- "new_cases_per_million": 57.844,
- "new_cases_smoothed_per_million": 55.688,
- "total_deaths_per_million": 50.299,
- "new_deaths_per_million": 2.515,
- "new_deaths_smoothed_per_million": 0.359
- },
- {
- "date": "2020-09-20",
- "total_cases": 1606.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 21.143,
- "total_deaths": 20.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 4039.022,
- "new_cases_per_million": 40.239,
- "new_cases_smoothed_per_million": 53.173,
- "total_deaths_per_million": 50.299,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.359
- },
- {
- "date": "2020-09-21",
- "total_cases": 1627.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 21.0,
- "total_deaths": 21.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 4091.836,
- "new_cases_per_million": 52.814,
- "new_cases_smoothed_per_million": 52.814,
- "total_deaths_per_million": 52.814,
- "new_deaths_per_million": 2.515,
- "new_deaths_smoothed_per_million": 0.719
- },
- {
- "date": "2020-09-22",
- "total_cases": 1635.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 19.143,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 4111.956,
- "new_cases_per_million": 20.12,
- "new_cases_smoothed_per_million": 48.143,
- "total_deaths_per_million": 52.814,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.719
- },
- {
- "date": "2020-09-23",
- "total_cases": 1669.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 20.143,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 4197.464,
- "new_cases_per_million": 85.509,
- "new_cases_smoothed_per_million": 50.658,
- "total_deaths_per_million": 52.814,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.719
- },
- {
- "date": "2020-09-24",
- "total_cases": 1706.0,
- "new_cases": 37.0,
- "new_cases_smoothed": 24.286,
- "total_deaths": 22.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 4290.518,
- "new_cases_per_million": 93.053,
- "new_cases_smoothed_per_million": 61.078,
- "total_deaths_per_million": 55.329,
- "new_deaths_per_million": 2.515,
- "new_deaths_smoothed_per_million": 1.078
- },
- {
- "date": "2020-09-25",
- "total_cases": 1758.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 27.286,
- "total_deaths": 22.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 4421.296,
- "new_cases_per_million": 130.778,
- "new_cases_smoothed_per_million": 68.622,
- "total_deaths_per_million": 55.329,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.078
- }
- ]
- },
- "BMU": {
- "continent": "North America",
- "location": "Bermuda",
- "population": 62273.0,
- "population_density": 1308.82,
- "gdp_per_capita": 50669.315,
- "cardiovasc_death_rate": 139.547,
- "diabetes_prevalence": 13.0,
- "life_expectancy": 82.59,
- "data": [
- {
- "date": "2020-03-20",
- "total_cases": 2.0,
- "new_cases": 2.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 32.117,
- "new_cases_per_million": 32.117,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-03-21",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 32.117,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-03-22",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 32.117,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-03-23",
- "total_cases": 6.0,
- "new_cases": 4.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 96.35,
- "new_cases_per_million": 64.233,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-03-24",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 96.35,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-03-25",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 96.35,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-03-26",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 96.35,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 13.764,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 51.85
- },
- {
- "date": "2020-03-27",
- "total_cases": 15.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 240.875,
- "new_cases_per_million": 144.525,
- "new_cases_smoothed_per_million": 29.823,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 51.85
- },
- {
- "date": "2020-03-28",
- "total_cases": 17.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 272.992,
- "new_cases_per_million": 32.117,
- "new_cases_smoothed_per_million": 34.411,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 51.85
- },
- {
- "date": "2020-03-29",
- "total_cases": 22.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 353.283,
- "new_cases_per_million": 80.292,
- "new_cases_smoothed_per_million": 45.881,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 51.85
- },
- {
- "date": "2020-03-30",
- "total_cases": 22.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 353.283,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 36.705,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 51.85
- },
- {
- "date": "2020-03-31",
- "total_cases": 27.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 433.575,
- "new_cases_per_million": 80.292,
- "new_cases_smoothed_per_million": 48.175,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 51.85
- },
- {
- "date": "2020-04-01",
- "total_cases": 32.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 513.866,
- "new_cases_per_million": 80.292,
- "new_cases_smoothed_per_million": 59.645,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 51.85
- },
- {
- "date": "2020-04-02",
- "total_cases": 32.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 513.866,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 59.645,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 51.85
- },
- {
- "date": "2020-04-03",
- "total_cases": 35.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 562.041,
- "new_cases_per_million": 48.175,
- "new_cases_smoothed_per_million": 45.881,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 51.85
- },
- {
- "date": "2020-04-04",
- "total_cases": 35.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 562.041,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 41.293,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-05",
- "total_cases": 37.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 594.158,
- "new_cases_per_million": 32.117,
- "new_cases_smoothed_per_million": 34.411,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-06",
- "total_cases": 37.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 594.158,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 34.411,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-07",
- "total_cases": 39.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 2.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 626.275,
- "new_cases_per_million": 32.117,
- "new_cases_smoothed_per_million": 27.529,
- "total_deaths_per_million": 32.117,
- "new_deaths_per_million": 32.117,
- "new_deaths_smoothed_per_million": 4.588,
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-08",
- "total_cases": 39.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 626.275,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 16.058,
- "total_deaths_per_million": 32.117,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 4.588,
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-09",
- "total_cases": 39.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 626.275,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 16.058,
- "total_deaths_per_million": 48.175,
- "new_deaths_per_million": 16.058,
- "new_deaths_smoothed_per_million": 6.882,
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-10",
- "total_cases": 48.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 4.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 770.8,
- "new_cases_per_million": 144.525,
- "new_cases_smoothed_per_million": 29.823,
- "total_deaths_per_million": 64.233,
- "new_deaths_per_million": 16.058,
- "new_deaths_smoothed_per_million": 9.176,
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-11",
- "total_cases": 48.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 770.8,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 29.823,
- "total_deaths_per_million": 64.233,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 9.176,
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-12",
- "total_cases": 50.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 802.916,
- "new_cases_per_million": 32.117,
- "new_cases_smoothed_per_million": 29.823,
- "total_deaths_per_million": 64.233,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 9.176,
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-13",
- "total_cases": 57.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 915.324,
- "new_cases_per_million": 112.408,
- "new_cases_smoothed_per_million": 45.881,
- "total_deaths_per_million": 64.233,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 9.176,
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-14",
- "total_cases": 57.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 915.324,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 41.293,
- "total_deaths_per_million": 64.233,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 4.588,
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-15",
- "total_cases": 57.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 5.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 915.324,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 41.293,
- "total_deaths_per_million": 80.292,
- "new_deaths_per_million": 16.058,
- "new_deaths_smoothed_per_million": 6.882,
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-16",
- "total_cases": 81.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 6.0,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1300.724,
- "new_cases_per_million": 385.4,
- "new_cases_smoothed_per_million": 96.35,
- "total_deaths_per_million": 80.292,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 4.588,
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-17",
- "total_cases": 83.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 5.0,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1332.841,
- "new_cases_per_million": 32.117,
- "new_cases_smoothed_per_million": 80.292,
- "total_deaths_per_million": 80.292,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.294,
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-18",
- "total_cases": 83.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.0,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1332.841,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 80.292,
- "total_deaths_per_million": 80.292,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.294,
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-19",
- "total_cases": 86.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1381.016,
- "new_cases_per_million": 48.175,
- "new_cases_smoothed_per_million": 82.586,
- "total_deaths_per_million": 80.292,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.294,
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-20",
- "total_cases": 86.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1381.016,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 66.527,
- "total_deaths_per_million": 80.292,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.294,
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-21",
- "total_cases": 86.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1381.016,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 66.527,
- "total_deaths_per_million": 80.292,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.294,
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-22",
- "total_cases": 98.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 5.857,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1573.716,
- "new_cases_per_million": 192.7,
- "new_cases_smoothed_per_million": 94.056,
- "total_deaths_per_million": 80.292,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-23",
- "total_cases": 99.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1589.774,
- "new_cases_per_million": 16.058,
- "new_cases_smoothed_per_million": 41.293,
- "total_deaths_per_million": 80.292,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-24",
- "total_cases": 99.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1589.774,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 36.705,
- "total_deaths_per_million": 80.292,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-25",
- "total_cases": 99.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1589.774,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 36.705,
- "total_deaths_per_million": 80.292,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-26",
- "total_cases": 99.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1589.774,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 29.823,
- "total_deaths_per_million": 80.292,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-27",
- "total_cases": 109.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1750.357,
- "new_cases_per_million": 160.583,
- "new_cases_smoothed_per_million": 52.763,
- "total_deaths_per_million": 80.292,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-28",
- "total_cases": 110.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 3.429,
- "total_deaths": 6.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1766.416,
- "new_cases_per_million": 16.058,
- "new_cases_smoothed_per_million": 55.057,
- "total_deaths_per_million": 96.35,
- "new_deaths_per_million": 16.058,
- "new_deaths_smoothed_per_million": 2.294,
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-29",
- "total_cases": 110.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1766.416,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 27.529,
- "total_deaths_per_million": 96.35,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.294,
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-30",
- "total_cases": 111.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1782.474,
- "new_cases_per_million": 16.058,
- "new_cases_smoothed_per_million": 27.529,
- "total_deaths_per_million": 96.35,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.294,
- "stringency_index": 96.3
- },
- {
- "date": "2020-05-01",
- "total_cases": 114.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1830.649,
- "new_cases_per_million": 48.175,
- "new_cases_smoothed_per_million": 34.411,
- "total_deaths_per_million": 96.35,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.294,
- "stringency_index": 96.3
- },
- {
- "date": "2020-05-02",
- "total_cases": 114.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1830.649,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 34.411,
- "total_deaths_per_million": 96.35,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.294,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-03",
- "total_cases": 114.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 7.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1830.649,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 34.411,
- "total_deaths_per_million": 112.408,
- "new_deaths_per_million": 16.058,
- "new_deaths_smoothed_per_million": 4.588,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-04",
- "total_cases": 115.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1846.707,
- "new_cases_per_million": 16.058,
- "new_cases_smoothed_per_million": 13.764,
- "total_deaths_per_million": 112.408,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 4.588,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-05",
- "total_cases": 115.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1846.707,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 11.47,
- "total_deaths_per_million": 112.408,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.294,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-06",
- "total_cases": 115.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1846.707,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 11.47,
- "total_deaths_per_million": 112.408,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.294,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-07",
- "total_cases": 118.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1894.882,
- "new_cases_per_million": 48.175,
- "new_cases_smoothed_per_million": 16.058,
- "total_deaths_per_million": 112.408,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.294,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-08",
- "total_cases": 118.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1894.882,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.176,
- "total_deaths_per_million": 112.408,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.294,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-09",
- "total_cases": 118.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1894.882,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.176,
- "total_deaths_per_million": 112.408,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.294,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-10",
- "total_cases": 118.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1894.882,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.176,
- "total_deaths_per_million": 112.408,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-11",
- "total_cases": 118.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1894.882,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 112.408,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-12",
- "total_cases": 119.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 8.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1910.941,
- "new_cases_per_million": 16.058,
- "new_cases_smoothed_per_million": 9.176,
- "total_deaths_per_million": 128.467,
- "new_deaths_per_million": 16.058,
- "new_deaths_smoothed_per_million": 2.294,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-13",
- "total_cases": 121.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1943.057,
- "new_cases_per_million": 32.117,
- "new_cases_smoothed_per_million": 13.764,
- "total_deaths_per_million": 128.467,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.294,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-14",
- "total_cases": 121.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1943.057,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 128.467,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.294,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-15",
- "total_cases": 122.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 9.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1959.116,
- "new_cases_per_million": 16.058,
- "new_cases_smoothed_per_million": 9.176,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 16.058,
- "new_deaths_smoothed_per_million": 4.588,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-16",
- "total_cases": 123.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1975.174,
- "new_cases_per_million": 16.058,
- "new_cases_smoothed_per_million": 11.47,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 4.588,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-17",
- "total_cases": 123.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1975.174,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 11.47,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 4.588,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-18",
- "total_cases": 123.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1975.174,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 11.47,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 4.588,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-19",
- "total_cases": 125.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2007.29,
- "new_cases_per_million": 32.117,
- "new_cases_smoothed_per_million": 13.764,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.294,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-20",
- "total_cases": 125.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2007.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.176,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.294,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-21",
- "total_cases": 125.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2007.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.176,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.294,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-22",
- "total_cases": 125.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2007.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-23",
- "total_cases": 128.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2055.465,
- "new_cases_per_million": 48.175,
- "new_cases_smoothed_per_million": 11.47,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-24",
- "total_cases": 133.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2135.757,
- "new_cases_per_million": 80.292,
- "new_cases_smoothed_per_million": 22.94,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-25",
- "total_cases": 133.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2135.757,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 22.94,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-26",
- "total_cases": 133.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2135.757,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 18.352,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-27",
- "total_cases": 139.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2232.107,
- "new_cases_per_million": 96.35,
- "new_cases_smoothed_per_million": 32.117,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-28",
- "total_cases": 139.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2232.107,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 32.117,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-29",
- "total_cases": 140.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2248.165,
- "new_cases_per_million": 16.058,
- "new_cases_smoothed_per_million": 34.411,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-30",
- "total_cases": 140.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2248.165,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 27.529,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-31",
- "total_cases": 140.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2248.165,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 16.058,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-01",
- "total_cases": 140.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2248.165,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 16.058,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-02",
- "total_cases": 141.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2264.224,
- "new_cases_per_million": 16.058,
- "new_cases_smoothed_per_million": 18.352,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-03",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2264.224,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.588,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-04",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2264.224,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.588,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-05",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2264.224,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.294,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-06",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2264.224,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.294,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-07",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2264.224,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.294,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-08",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2264.224,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.294,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-09",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2264.224,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-10",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2264.224,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-11",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2264.224,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 62.04
- },
- {
- "date": "2020-06-12",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2264.224,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 62.04
- },
- {
- "date": "2020-06-13",
- "total_cases": 142.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2280.282,
- "new_cases_per_million": 16.058,
- "new_cases_smoothed_per_million": 2.294,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 62.04
- },
- {
- "date": "2020-06-14",
- "total_cases": 144.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2312.399,
- "new_cases_per_million": 32.117,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 62.04
- },
- {
- "date": "2020-06-15",
- "total_cases": 144.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2312.399,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 62.04
- },
- {
- "date": "2020-06-16",
- "total_cases": 144.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2312.399,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 62.04
- },
- {
- "date": "2020-06-17",
- "total_cases": 144.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2312.399,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 62.04
- },
- {
- "date": "2020-06-18",
- "total_cases": 144.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2312.399,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 62.04
- },
- {
- "date": "2020-06-19",
- "total_cases": 144.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2312.399,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 62.04
- },
- {
- "date": "2020-06-20",
- "total_cases": 146.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2344.515,
- "new_cases_per_million": 32.117,
- "new_cases_smoothed_per_million": 9.176,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 62.04
- },
- {
- "date": "2020-06-21",
- "total_cases": 146.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2344.515,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.588,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 62.04
- },
- {
- "date": "2020-06-22",
- "total_cases": 146.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2344.515,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.588,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 62.04
- },
- {
- "date": "2020-06-23",
- "total_cases": 146.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2344.515,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.588,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 62.04
- },
- {
- "date": "2020-06-24",
- "total_cases": 146.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2344.515,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.588,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 62.04
- },
- {
- "date": "2020-06-25",
- "total_cases": 146.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2344.515,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.588,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 62.04
- },
- {
- "date": "2020-06-26",
- "total_cases": 146.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2344.515,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.588,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 62.04
- },
- {
- "date": "2020-06-27",
- "total_cases": 146.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2344.515,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 62.04
- },
- {
- "date": "2020-06-28",
- "total_cases": 146.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2344.515,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 62.04
- },
- {
- "date": "2020-06-29",
- "total_cases": 146.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2344.515,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 62.04
- },
- {
- "date": "2020-06-30",
- "total_cases": 146.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2344.515,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 62.04
- },
- {
- "date": "2020-07-01",
- "total_cases": 146.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2344.515,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-02",
- "total_cases": 146.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2344.515,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-03",
- "total_cases": 146.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2344.515,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-04",
- "total_cases": 146.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2344.515,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-05",
- "total_cases": 146.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2344.515,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-06",
- "total_cases": 146.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2344.515,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-07",
- "total_cases": 146.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2344.515,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-08",
- "total_cases": 148.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2376.632,
- "new_cases_per_million": 32.117,
- "new_cases_smoothed_per_million": 4.588,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-09",
- "total_cases": 149.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2392.69,
- "new_cases_per_million": 16.058,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-10",
- "total_cases": 149.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2392.69,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-11",
- "total_cases": 150.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2408.749,
- "new_cases_per_million": 16.058,
- "new_cases_smoothed_per_million": 9.176,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-12",
- "total_cases": 150.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2408.749,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.176,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-13",
- "total_cases": 150.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2408.749,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.176,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-14",
- "total_cases": 150.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2408.749,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.176,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-15",
- "total_cases": 150.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2408.749,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.588,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-16",
- "total_cases": 150.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2408.749,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.294,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-17",
- "total_cases": 152.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2440.865,
- "new_cases_per_million": 32.117,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-18",
- "total_cases": 152.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2440.865,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.588,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-19",
- "total_cases": 153.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2456.924,
- "new_cases_per_million": 16.058,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-20",
- "total_cases": 153.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2456.924,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-21",
- "total_cases": 153.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2456.924,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-22",
- "total_cases": 153.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2456.924,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-23",
- "total_cases": 153.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2456.924,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-24",
- "total_cases": 153.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2456.924,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.294,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-25",
- "total_cases": 153.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2456.924,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.294,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-26",
- "total_cases": 153.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2456.924,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-27",
- "total_cases": 154.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2472.982,
- "new_cases_per_million": 16.058,
- "new_cases_smoothed_per_million": 2.294,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-28",
- "total_cases": 154.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2472.982,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.294,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-29",
- "total_cases": 156.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2505.099,
- "new_cases_per_million": 32.117,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-30",
- "total_cases": 156.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2505.099,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-07-31",
- "total_cases": 156.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2505.099,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-01",
- "total_cases": 156.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2505.099,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-02",
- "total_cases": 156.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2505.099,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-03",
- "total_cases": 156.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2505.099,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.588,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-04",
- "total_cases": 157.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2521.157,
- "new_cases_per_million": 16.058,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-05",
- "total_cases": 157.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2521.157,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.294,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-06",
- "total_cases": 157.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2521.157,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.294,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-07",
- "total_cases": 157.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2521.157,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.294,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-08",
- "total_cases": 157.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2521.157,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.294,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-09",
- "total_cases": 157.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2521.157,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.294,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-10",
- "total_cases": 158.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2537.215,
- "new_cases_per_million": 16.058,
- "new_cases_smoothed_per_million": 4.588,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-11",
- "total_cases": 159.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2553.273,
- "new_cases_per_million": 16.058,
- "new_cases_smoothed_per_million": 4.588,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-12",
- "total_cases": 159.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2553.273,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.588,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-13",
- "total_cases": 159.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2553.273,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.588,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-14",
- "total_cases": 159.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2553.273,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.588,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-15",
- "total_cases": 159.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2553.273,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.588,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-16",
- "total_cases": 162.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2601.448,
- "new_cases_per_million": 48.175,
- "new_cases_smoothed_per_million": 11.47,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-17",
- "total_cases": 162.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2601.448,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.176,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-18",
- "total_cases": 166.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2665.682,
- "new_cases_per_million": 64.233,
- "new_cases_smoothed_per_million": 16.058,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-19",
- "total_cases": 166.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2665.682,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 16.058,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-20",
- "total_cases": 166.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2665.682,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 16.058,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-21",
- "total_cases": 166.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2665.682,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 16.058,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-22",
- "total_cases": 167.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2681.74,
- "new_cases_per_million": 16.058,
- "new_cases_smoothed_per_million": 18.352,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-23",
- "total_cases": 167.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2681.74,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 11.47,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-08-24",
- "total_cases": 167.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2681.74,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 11.47,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-08-25",
- "total_cases": 168.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2697.798,
- "new_cases_per_million": 16.058,
- "new_cases_smoothed_per_million": 4.588,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-08-26",
- "total_cases": 168.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2697.798,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.588,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-08-27",
- "total_cases": 168.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2697.798,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.588,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-08-28",
- "total_cases": 168.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2697.798,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.588,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-08-29",
- "total_cases": 168.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2697.798,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.294,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-08-30",
- "total_cases": 169.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2713.857,
- "new_cases_per_million": 16.058,
- "new_cases_smoothed_per_million": 4.588,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-08-31",
- "total_cases": 169.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2713.857,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.588,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-09-01",
- "total_cases": 172.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2762.032,
- "new_cases_per_million": 48.175,
- "new_cases_smoothed_per_million": 9.176,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-09-02",
- "total_cases": 172.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2762.032,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.176,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-09-03",
- "total_cases": 172.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2762.032,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.176,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-09-04",
- "total_cases": 174.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2794.148,
- "new_cases_per_million": 32.117,
- "new_cases_smoothed_per_million": 13.764,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-09-05",
- "total_cases": 174.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2794.148,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 13.764,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 31.48
- },
- {
- "date": "2020-09-06",
- "total_cases": 175.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2810.207,
- "new_cases_per_million": 16.058,
- "new_cases_smoothed_per_million": 13.764,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 31.48
- },
- {
- "date": "2020-09-07",
- "total_cases": 175.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2810.207,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 13.764,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 31.48
- },
- {
- "date": "2020-09-08",
- "total_cases": 175.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2810.207,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 31.48
- },
- {
- "date": "2020-09-09",
- "total_cases": 175.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2810.207,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 31.48
- },
- {
- "date": "2020-09-10",
- "total_cases": 177.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2842.323,
- "new_cases_per_million": 32.117,
- "new_cases_smoothed_per_million": 11.47,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 31.48
- },
- {
- "date": "2020-09-11",
- "total_cases": 177.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2842.323,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 31.48
- },
- {
- "date": "2020-09-12",
- "total_cases": 177.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2842.323,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 31.48
- },
- {
- "date": "2020-09-13",
- "total_cases": 177.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2842.323,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.588,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 31.48
- },
- {
- "date": "2020-09-14",
- "total_cases": 177.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2842.323,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.588,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 31.48
- },
- {
- "date": "2020-09-15",
- "total_cases": 177.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2842.323,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.588,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 31.48
- },
- {
- "date": "2020-09-16",
- "total_cases": 177.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2842.323,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.588,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 31.48
- },
- {
- "date": "2020-09-17",
- "total_cases": 178.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2858.382,
- "new_cases_per_million": 16.058,
- "new_cases_smoothed_per_million": 2.294,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-18",
- "total_cases": 178.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2858.382,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.294,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-19",
- "total_cases": 178.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2858.382,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.294,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-20",
- "total_cases": 180.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2890.498,
- "new_cases_per_million": 32.117,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-21",
- "total_cases": 180.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2890.498,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-22",
- "total_cases": 180.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2890.498,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-23",
- "total_cases": 180.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2890.498,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-24",
- "total_cases": 181.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2906.557,
- "new_cases_per_million": 16.058,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-25",
- "total_cases": 181.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2906.557,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.882,
- "total_deaths_per_million": 144.525,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- }
- ]
- },
- "BOL": {
- "continent": "South America",
- "location": "Bolivia",
- "population": 11673029.0,
- "population_density": 10.202,
- "median_age": 25.4,
- "aged_65_older": 6.704,
- "aged_70_older": 4.393,
- "gdp_per_capita": 6885.829,
- "extreme_poverty": 7.1,
- "cardiovasc_death_rate": 204.299,
- "diabetes_prevalence": 6.89,
- "handwashing_facilities": 25.383,
- "hospital_beds_per_thousand": 1.1,
- "life_expectancy": 71.51,
- "human_development_index": 0.693,
- "data": [
- {
- "date": "2020-03-12",
- "total_cases": 2.0,
- "new_cases": 2.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.171,
- "new_cases_per_million": 0.171,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-13",
- "total_cases": 3.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.257,
- "new_cases_per_million": 0.086,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-03-14",
- "total_cases": 10.0,
- "new_cases": 7.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.857,
- "new_cases_per_million": 0.6,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "total_tests": 26.0,
- "total_tests_per_thousand": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 44.44
- },
- {
- "date": "2020-03-15",
- "total_cases": 10.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.857,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_tests": 7.0,
- "total_tests": 33.0,
- "total_tests_per_thousand": 0.003,
- "new_tests_per_thousand": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 44.44
- },
- {
- "date": "2020-03-16",
- "new_tests": 12.0,
- "total_tests": 45.0,
- "total_tests_per_thousand": 0.004,
- "new_tests_per_thousand": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 52.78
- },
- {
- "date": "2020-03-17",
- "total_cases": 11.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.942,
- "new_cases_per_million": 0.086,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_tests": 5.0,
- "total_tests": 50.0,
- "total_tests_per_thousand": 0.004,
- "new_tests_per_thousand": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 68.52
- },
- {
- "date": "2020-03-18",
- "total_cases": 12.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.028,
- "new_cases_per_million": 0.086,
- "new_cases_smoothed_per_million": 0.147,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1.0,
- "total_tests": 51.0,
- "total_tests_per_thousand": 0.004,
- "new_tests_per_thousand": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 75.0
- },
- {
- "date": "2020-03-19",
- "total_cases": 12.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.028,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.122,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 33.0,
- "total_tests": 84.0,
- "total_tests_per_thousand": 0.007,
- "new_tests_per_thousand": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 75.0
- },
- {
- "date": "2020-03-20",
- "total_cases": 15.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.285,
- "new_cases_per_million": 0.257,
- "new_cases_smoothed_per_million": 0.147,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 27.0,
- "total_tests": 111.0,
- "total_tests_per_thousand": 0.01,
- "new_tests_per_thousand": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 75.0
- },
- {
- "date": "2020-03-21",
- "total_cases": 19.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.628,
- "new_cases_per_million": 0.343,
- "new_cases_smoothed_per_million": 0.11,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 28.0,
- "total_tests": 139.0,
- "total_tests_per_thousand": 0.012,
- "new_tests_per_thousand": 0.002,
- "new_tests_smoothed": 16.0,
- "new_tests_smoothed_per_thousand": 0.001,
- "tests_per_case": 12.444,
- "positive_rate": 0.08,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-03-22",
- "total_cases": 20.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.713,
- "new_cases_per_million": 0.086,
- "new_cases_smoothed_per_million": 0.122,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 89.0,
- "total_tests": 228.0,
- "total_tests_per_thousand": 0.02,
- "new_tests_per_thousand": 0.008,
- "new_tests_smoothed": 28.0,
- "new_tests_smoothed_per_thousand": 0.002,
- "tests_per_case": 19.6,
- "positive_rate": 0.051,
- "tests_units": "tests performed",
- "stringency_index": 93.52
- },
- {
- "date": "2020-03-23",
- "total_cases": 27.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.313,
- "new_cases_per_million": 0.6,
- "new_cases_smoothed_per_million": 0.208,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 45.0,
- "total_tests": 273.0,
- "total_tests_per_thousand": 0.023,
- "new_tests_per_thousand": 0.004,
- "new_tests_smoothed": 33.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "tests_per_case": 13.588,
- "positive_rate": 0.07400000000000001,
- "tests_units": "tests performed",
- "stringency_index": 93.52
- },
- {
- "date": "2020-03-24",
- "total_cases": 28.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.399,
- "new_cases_per_million": 0.086,
- "new_cases_smoothed_per_million": 0.208,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 4.0,
- "total_tests": 277.0,
- "total_tests_per_thousand": 0.024,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 32.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "tests_per_case": 13.175999999999998,
- "positive_rate": 0.076,
- "tests_units": "tests performed",
- "stringency_index": 93.52
- },
- {
- "date": "2020-03-25",
- "total_cases": 32.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.741,
- "new_cases_per_million": 0.343,
- "new_cases_smoothed_per_million": 0.245,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 57.0,
- "total_tests": 334.0,
- "total_tests_per_thousand": 0.029,
- "new_tests_per_thousand": 0.005,
- "new_tests_smoothed": 40.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "tests_per_case": 14.0,
- "positive_rate": 0.071,
- "tests_units": "tests performed",
- "stringency_index": 93.52
- },
- {
- "date": "2020-03-26",
- "total_cases": 39.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 3.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.341,
- "new_cases_per_million": 0.6,
- "new_cases_smoothed_per_million": 0.33,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 108.0,
- "total_tests": 442.0,
- "total_tests_per_thousand": 0.038,
- "new_tests_per_thousand": 0.009,
- "new_tests_smoothed": 51.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_per_case": 13.222000000000001,
- "positive_rate": 0.076,
- "tests_units": "tests performed",
- "stringency_index": 93.52
- },
- {
- "date": "2020-03-27",
- "total_cases": 61.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 6.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5.226,
- "new_cases_per_million": 1.885,
- "new_cases_smoothed_per_million": 0.563,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 74.0,
- "total_tests": 516.0,
- "total_tests_per_thousand": 0.044,
- "new_tests_per_thousand": 0.006,
- "new_tests_smoothed": 58.0,
- "new_tests_smoothed_per_thousand": 0.005,
- "tests_per_case": 8.826,
- "positive_rate": 0.113,
- "tests_units": "tests performed",
- "stringency_index": 93.52
- },
- {
- "date": "2020-03-28",
- "total_cases": 74.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 7.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.339,
- "new_cases_per_million": 1.114,
- "new_cases_smoothed_per_million": 0.673,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 43.0,
- "total_tests": 559.0,
- "total_tests_per_thousand": 0.048,
- "new_tests_per_thousand": 0.004,
- "new_tests_smoothed": 60.0,
- "new_tests_smoothed_per_thousand": 0.005,
- "tests_per_case": 7.636,
- "positive_rate": 0.131,
- "tests_units": "tests performed",
- "stringency_index": 93.52
- },
- {
- "date": "2020-03-29",
- "total_cases": 81.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 8.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.939,
- "new_cases_per_million": 0.6,
- "new_cases_smoothed_per_million": 0.747,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 15.0,
- "total_tests": 574.0,
- "total_tests_per_thousand": 0.049,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 49.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_per_case": 5.622999999999999,
- "positive_rate": 0.17800000000000002,
- "tests_units": "tests performed",
- "stringency_index": 93.52
- },
- {
- "date": "2020-03-30",
- "total_cases": 96.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 9.857,
- "total_deaths": 3.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 8.224,
- "new_cases_per_million": 1.285,
- "new_cases_smoothed_per_million": 0.844,
- "total_deaths_per_million": 0.257,
- "new_deaths_per_million": 0.257,
- "new_deaths_smoothed_per_million": 0.037,
- "new_tests": 123.0,
- "total_tests": 697.0,
- "total_tests_per_thousand": 0.06,
- "new_tests_per_thousand": 0.011,
- "new_tests_smoothed": 61.0,
- "new_tests_smoothed_per_thousand": 0.005,
- "tests_per_case": 6.188,
- "positive_rate": 0.162,
- "tests_units": "tests performed",
- "stringency_index": 93.52
- },
- {
- "date": "2020-03-31",
- "total_cases": 107.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 11.286,
- "total_deaths": 6.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 9.166,
- "new_cases_per_million": 0.942,
- "new_cases_smoothed_per_million": 0.967,
- "total_deaths_per_million": 0.514,
- "new_deaths_per_million": 0.257,
- "new_deaths_smoothed_per_million": 0.073,
- "new_tests": 82.0,
- "total_tests": 779.0,
- "total_tests_per_thousand": 0.067,
- "new_tests_per_thousand": 0.007,
- "new_tests_smoothed": 72.0,
- "new_tests_smoothed_per_thousand": 0.006,
- "tests_per_case": 6.38,
- "positive_rate": 0.157,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-01",
- "total_cases": 115.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 11.857,
- "total_deaths": 7.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 9.852,
- "new_cases_per_million": 0.685,
- "new_cases_smoothed_per_million": 1.016,
- "total_deaths_per_million": 0.6,
- "new_deaths_per_million": 0.086,
- "new_deaths_smoothed_per_million": 0.086,
- "new_tests": 57.0,
- "total_tests": 836.0,
- "total_tests_per_thousand": 0.072,
- "new_tests_per_thousand": 0.005,
- "new_tests_smoothed": 72.0,
- "new_tests_smoothed_per_thousand": 0.006,
- "tests_per_case": 6.072,
- "positive_rate": 0.165,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-02",
- "total_cases": 123.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 12.0,
- "total_deaths": 8.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 10.537,
- "new_cases_per_million": 0.685,
- "new_cases_smoothed_per_million": 1.028,
- "total_deaths_per_million": 0.685,
- "new_deaths_per_million": 0.086,
- "new_deaths_smoothed_per_million": 0.098,
- "new_tests": 149.0,
- "total_tests": 985.0,
- "total_tests_per_thousand": 0.084,
- "new_tests_per_thousand": 0.013,
- "new_tests_smoothed": 78.0,
- "new_tests_smoothed_per_thousand": 0.007,
- "tests_per_case": 6.5,
- "positive_rate": 0.154,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-03",
- "total_cases": 132.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 10.143,
- "total_deaths": 9.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 11.308,
- "new_cases_per_million": 0.771,
- "new_cases_smoothed_per_million": 0.869,
- "total_deaths_per_million": 0.771,
- "new_deaths_per_million": 0.086,
- "new_deaths_smoothed_per_million": 0.11,
- "new_tests": 133.0,
- "total_tests": 1118.0,
- "total_tests_per_thousand": 0.096,
- "new_tests_per_thousand": 0.011,
- "new_tests_smoothed": 86.0,
- "new_tests_smoothed_per_thousand": 0.007,
- "tests_per_case": 8.479,
- "positive_rate": 0.11800000000000001,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-04",
- "total_cases": 139.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 9.286,
- "total_deaths": 10.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 11.908,
- "new_cases_per_million": 0.6,
- "new_cases_smoothed_per_million": 0.795,
- "total_deaths_per_million": 0.857,
- "new_deaths_per_million": 0.086,
- "new_deaths_smoothed_per_million": 0.122,
- "new_tests": 18.0,
- "total_tests": 1136.0,
- "total_tests_per_thousand": 0.097,
- "new_tests_per_thousand": 0.002,
- "new_tests_smoothed": 82.0,
- "new_tests_smoothed_per_thousand": 0.007,
- "tests_per_case": 8.831,
- "positive_rate": 0.113,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-05",
- "total_cases": 157.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 10.857,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 13.45,
- "new_cases_per_million": 1.542,
- "new_cases_smoothed_per_million": 0.93,
- "total_deaths_per_million": 0.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.122,
- "new_tests": 305.0,
- "total_tests": 1441.0,
- "total_tests_per_thousand": 0.123,
- "new_tests_per_thousand": 0.026,
- "new_tests_smoothed": 124.0,
- "new_tests_smoothed_per_thousand": 0.011,
- "tests_per_case": 11.421,
- "positive_rate": 0.08800000000000001,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-06",
- "total_cases": 183.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 12.429,
- "total_deaths": 11.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 15.677,
- "new_cases_per_million": 2.227,
- "new_cases_smoothed_per_million": 1.065,
- "total_deaths_per_million": 0.942,
- "new_deaths_per_million": 0.086,
- "new_deaths_smoothed_per_million": 0.098,
- "new_tests": 108.0,
- "total_tests": 1549.0,
- "total_tests_per_thousand": 0.133,
- "new_tests_per_thousand": 0.009,
- "new_tests_smoothed": 122.0,
- "new_tests_smoothed_per_thousand": 0.01,
- "tests_per_case": 9.816,
- "positive_rate": 0.102,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-07",
- "total_cases": 194.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 12.429,
- "total_deaths": 14.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 16.62,
- "new_cases_per_million": 0.942,
- "new_cases_smoothed_per_million": 1.065,
- "total_deaths_per_million": 1.199,
- "new_deaths_per_million": 0.257,
- "new_deaths_smoothed_per_million": 0.098,
- "new_tests": 132.0,
- "total_tests": 1681.0,
- "total_tests_per_thousand": 0.144,
- "new_tests_per_thousand": 0.011,
- "new_tests_smoothed": 129.0,
- "new_tests_smoothed_per_thousand": 0.011,
- "tests_per_case": 10.379000000000001,
- "positive_rate": 0.096,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-08",
- "total_cases": 210.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 13.571,
- "total_deaths": 15.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 17.99,
- "new_cases_per_million": 1.371,
- "new_cases_smoothed_per_million": 1.163,
- "total_deaths_per_million": 1.285,
- "new_deaths_per_million": 0.086,
- "new_deaths_smoothed_per_million": 0.098,
- "new_tests": 194.0,
- "total_tests": 1875.0,
- "total_tests_per_thousand": 0.161,
- "new_tests_per_thousand": 0.017,
- "new_tests_smoothed": 148.0,
- "new_tests_smoothed_per_thousand": 0.013,
- "tests_per_case": 10.905,
- "positive_rate": 0.092,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-09",
- "total_cases": 264.0,
- "new_cases": 54.0,
- "new_cases_smoothed": 20.143,
- "total_deaths": 18.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 22.616,
- "new_cases_per_million": 4.626,
- "new_cases_smoothed_per_million": 1.726,
- "total_deaths_per_million": 1.542,
- "new_deaths_per_million": 0.257,
- "new_deaths_smoothed_per_million": 0.122,
- "new_tests": 122.0,
- "total_tests": 1997.0,
- "total_tests_per_thousand": 0.171,
- "new_tests_per_thousand": 0.01,
- "new_tests_smoothed": 145.0,
- "new_tests_smoothed_per_thousand": 0.012,
- "tests_per_case": 7.199,
- "positive_rate": 0.139,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-10",
- "total_cases": 268.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 19.429,
- "total_deaths": 19.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 22.959,
- "new_cases_per_million": 0.343,
- "new_cases_smoothed_per_million": 1.664,
- "total_deaths_per_million": 1.628,
- "new_deaths_per_million": 0.086,
- "new_deaths_smoothed_per_million": 0.122,
- "new_tests": 188.0,
- "total_tests": 2185.0,
- "total_tests_per_thousand": 0.187,
- "new_tests_per_thousand": 0.016,
- "new_tests_smoothed": 152.0,
- "new_tests_smoothed_per_thousand": 0.013,
- "tests_per_case": 7.824,
- "positive_rate": 0.128,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-11",
- "total_cases": 276.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 19.571,
- "total_deaths": 20.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 23.644,
- "new_cases_per_million": 0.685,
- "new_cases_smoothed_per_million": 1.677,
- "total_deaths_per_million": 1.713,
- "new_deaths_per_million": 0.086,
- "new_deaths_smoothed_per_million": 0.122,
- "new_tests": 171.0,
- "total_tests": 2356.0,
- "total_tests_per_thousand": 0.202,
- "new_tests_per_thousand": 0.015,
- "new_tests_smoothed": 174.0,
- "new_tests_smoothed_per_thousand": 0.015,
- "tests_per_case": 8.891,
- "positive_rate": 0.11199999999999999,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-12",
- "total_cases": 300.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 20.429,
- "total_deaths": 24.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 25.7,
- "new_cases_per_million": 2.056,
- "new_cases_smoothed_per_million": 1.75,
- "total_deaths_per_million": 2.056,
- "new_deaths_per_million": 0.343,
- "new_deaths_smoothed_per_million": 0.171,
- "new_tests": 172.0,
- "total_tests": 2528.0,
- "total_tests_per_thousand": 0.217,
- "new_tests_per_thousand": 0.015,
- "new_tests_smoothed": 155.0,
- "new_tests_smoothed_per_thousand": 0.013,
- "tests_per_case": 7.587000000000001,
- "positive_rate": 0.132,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-13",
- "total_cases": 330.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 21.0,
- "total_deaths": 27.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 28.27,
- "new_cases_per_million": 2.57,
- "new_cases_smoothed_per_million": 1.799,
- "total_deaths_per_million": 2.313,
- "new_deaths_per_million": 0.257,
- "new_deaths_smoothed_per_million": 0.196,
- "new_tests": 165.0,
- "total_tests": 2693.0,
- "total_tests_per_thousand": 0.231,
- "new_tests_per_thousand": 0.014,
- "new_tests_smoothed": 163.0,
- "new_tests_smoothed_per_thousand": 0.014,
- "tests_per_case": 7.7620000000000005,
- "positive_rate": 0.129,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-14",
- "total_cases": 354.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 22.857,
- "total_deaths": 28.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 30.326,
- "new_cases_per_million": 2.056,
- "new_cases_smoothed_per_million": 1.958,
- "total_deaths_per_million": 2.399,
- "new_deaths_per_million": 0.086,
- "new_deaths_smoothed_per_million": 0.171,
- "new_tests": 226.0,
- "total_tests": 2919.0,
- "total_tests_per_thousand": 0.25,
- "new_tests_per_thousand": 0.019,
- "new_tests_smoothed": 177.0,
- "new_tests_smoothed_per_thousand": 0.015,
- "tests_per_case": 7.744,
- "positive_rate": 0.129,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-15",
- "total_cases": 397.0,
- "new_cases": 43.0,
- "new_cases_smoothed": 26.714,
- "total_deaths": 28.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 34.01,
- "new_cases_per_million": 3.684,
- "new_cases_smoothed_per_million": 2.289,
- "total_deaths_per_million": 2.399,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.159,
- "new_tests": 311.0,
- "total_tests": 3230.0,
- "total_tests_per_thousand": 0.277,
- "new_tests_per_thousand": 0.027,
- "new_tests_smoothed": 194.0,
- "new_tests_smoothed_per_thousand": 0.017,
- "tests_per_case": 7.2620000000000005,
- "positive_rate": 0.138,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-16",
- "total_cases": 441.0,
- "new_cases": 44.0,
- "new_cases_smoothed": 25.286,
- "total_deaths": 29.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 37.779,
- "new_cases_per_million": 3.769,
- "new_cases_smoothed_per_million": 2.166,
- "total_deaths_per_million": 2.484,
- "new_deaths_per_million": 0.086,
- "new_deaths_smoothed_per_million": 0.135,
- "new_tests": 189.0,
- "total_tests": 3419.0,
- "total_tests_per_thousand": 0.293,
- "new_tests_per_thousand": 0.016,
- "new_tests_smoothed": 203.0,
- "new_tests_smoothed_per_thousand": 0.017,
- "tests_per_case": 8.027999999999999,
- "positive_rate": 0.125,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-17",
- "total_cases": 465.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 28.143,
- "total_deaths": 31.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 39.835,
- "new_cases_per_million": 2.056,
- "new_cases_smoothed_per_million": 2.411,
- "total_deaths_per_million": 2.656,
- "new_deaths_per_million": 0.171,
- "new_deaths_smoothed_per_million": 0.147,
- "new_tests": 154.0,
- "total_tests": 3573.0,
- "total_tests_per_thousand": 0.306,
- "new_tests_per_thousand": 0.013,
- "new_tests_smoothed": 198.0,
- "new_tests_smoothed_per_thousand": 0.017,
- "tests_per_case": 7.0360000000000005,
- "positive_rate": 0.142,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-18",
- "total_cases": 493.0,
- "new_cases": 28.0,
- "new_cases_smoothed": 31.0,
- "total_deaths": 31.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 42.234,
- "new_cases_per_million": 2.399,
- "new_cases_smoothed_per_million": 2.656,
- "total_deaths_per_million": 2.656,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.135,
- "new_tests": 350.0,
- "total_tests": 3923.0,
- "total_tests_per_thousand": 0.336,
- "new_tests_per_thousand": 0.03,
- "new_tests_smoothed": 224.0,
- "new_tests_smoothed_per_thousand": 0.019,
- "tests_per_case": 7.226,
- "positive_rate": 0.138,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-19",
- "total_cases": 520.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 31.429,
- "total_deaths": 32.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 44.547,
- "new_cases_per_million": 2.313,
- "new_cases_smoothed_per_million": 2.692,
- "total_deaths_per_million": 2.741,
- "new_deaths_per_million": 0.086,
- "new_deaths_smoothed_per_million": 0.098,
- "new_tests": 212.0,
- "total_tests": 4135.0,
- "total_tests_per_thousand": 0.354,
- "new_tests_per_thousand": 0.018,
- "new_tests_smoothed": 230.0,
- "new_tests_smoothed_per_thousand": 0.02,
- "tests_per_case": 7.318,
- "positive_rate": 0.13699999999999998,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-20",
- "total_cases": 564.0,
- "new_cases": 44.0,
- "new_cases_smoothed": 33.429,
- "total_deaths": 33.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 48.317,
- "new_cases_per_million": 3.769,
- "new_cases_smoothed_per_million": 2.864,
- "total_deaths_per_million": 2.827,
- "new_deaths_per_million": 0.086,
- "new_deaths_smoothed_per_million": 0.073,
- "new_tests": 163.0,
- "total_tests": 4298.0,
- "total_tests_per_thousand": 0.368,
- "new_tests_per_thousand": 0.014,
- "new_tests_smoothed": 229.0,
- "new_tests_smoothed_per_thousand": 0.02,
- "tests_per_case": 6.85,
- "positive_rate": 0.146,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-21",
- "total_cases": 598.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 34.857,
- "total_deaths": 34.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 51.229,
- "new_cases_per_million": 2.913,
- "new_cases_smoothed_per_million": 2.986,
- "total_deaths_per_million": 2.913,
- "new_deaths_per_million": 0.086,
- "new_deaths_smoothed_per_million": 0.073,
- "new_tests": 122.0,
- "total_tests": 4420.0,
- "total_tests_per_thousand": 0.379,
- "new_tests_per_thousand": 0.01,
- "new_tests_smoothed": 214.0,
- "new_tests_smoothed_per_thousand": 0.018,
- "tests_per_case": 6.138999999999999,
- "positive_rate": 0.163,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-22",
- "total_cases": 609.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 30.286,
- "total_deaths": 37.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 52.172,
- "new_cases_per_million": 0.942,
- "new_cases_smoothed_per_million": 2.595,
- "total_deaths_per_million": 3.17,
- "new_deaths_per_million": 0.257,
- "new_deaths_smoothed_per_million": 0.11,
- "new_tests": 435.0,
- "total_tests": 4855.0,
- "total_tests_per_thousand": 0.416,
- "new_tests_per_thousand": 0.037,
- "new_tests_smoothed": 232.0,
- "new_tests_smoothed_per_thousand": 0.02,
- "tests_per_case": 7.66,
- "positive_rate": 0.131,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-23",
- "total_cases": 672.0,
- "new_cases": 63.0,
- "new_cases_smoothed": 33.0,
- "total_deaths": 40.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 57.569,
- "new_cases_per_million": 5.397,
- "new_cases_smoothed_per_million": 2.827,
- "total_deaths_per_million": 3.427,
- "new_deaths_per_million": 0.257,
- "new_deaths_smoothed_per_million": 0.135,
- "new_tests": 140.0,
- "total_tests": 4995.0,
- "total_tests_per_thousand": 0.428,
- "new_tests_per_thousand": 0.012,
- "new_tests_smoothed": 225.0,
- "new_tests_smoothed_per_thousand": 0.019,
- "tests_per_case": 6.818,
- "positive_rate": 0.147,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-24",
- "total_cases": 703.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 34.0,
- "total_deaths": 43.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 60.224,
- "new_cases_per_million": 2.656,
- "new_cases_smoothed_per_million": 2.913,
- "total_deaths_per_million": 3.684,
- "new_deaths_per_million": 0.257,
- "new_deaths_smoothed_per_million": 0.147,
- "new_tests": 302.0,
- "total_tests": 5297.0,
- "total_tests_per_thousand": 0.454,
- "new_tests_per_thousand": 0.026,
- "new_tests_smoothed": 246.0,
- "new_tests_smoothed_per_thousand": 0.021,
- "tests_per_case": 7.235,
- "positive_rate": 0.138,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-25",
- "total_cases": 807.0,
- "new_cases": 104.0,
- "new_cases_smoothed": 44.857,
- "total_deaths": 44.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 69.134,
- "new_cases_per_million": 8.909,
- "new_cases_smoothed_per_million": 3.843,
- "total_deaths_per_million": 3.769,
- "new_deaths_per_million": 0.086,
- "new_deaths_smoothed_per_million": 0.159,
- "new_tests": 275.0,
- "total_tests": 5572.0,
- "total_tests_per_thousand": 0.477,
- "new_tests_per_thousand": 0.024,
- "new_tests_smoothed": 236.0,
- "new_tests_smoothed_per_thousand": 0.02,
- "tests_per_case": 5.261,
- "positive_rate": 0.19,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-26",
- "total_cases": 866.0,
- "new_cases": 59.0,
- "new_cases_smoothed": 49.429,
- "total_deaths": 46.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 74.188,
- "new_cases_per_million": 5.054,
- "new_cases_smoothed_per_million": 4.234,
- "total_deaths_per_million": 3.941,
- "new_deaths_per_million": 0.171,
- "new_deaths_smoothed_per_million": 0.171,
- "new_tests": 219.0,
- "total_tests": 5791.0,
- "total_tests_per_thousand": 0.496,
- "new_tests_per_thousand": 0.019,
- "new_tests_smoothed": 237.0,
- "new_tests_smoothed_per_thousand": 0.02,
- "tests_per_case": 4.795,
- "positive_rate": 0.209,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-27",
- "total_cases": 950.0,
- "new_cases": 84.0,
- "new_cases_smoothed": 55.143,
- "total_deaths": 50.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 81.384,
- "new_cases_per_million": 7.196,
- "new_cases_smoothed_per_million": 4.724,
- "total_deaths_per_million": 4.283,
- "new_deaths_per_million": 0.343,
- "new_deaths_smoothed_per_million": 0.208,
- "new_tests": 197.0,
- "total_tests": 5988.0,
- "total_tests_per_thousand": 0.513,
- "new_tests_per_thousand": 0.017,
- "new_tests_smoothed": 241.0,
- "new_tests_smoothed_per_thousand": 0.021,
- "tests_per_case": 4.37,
- "positive_rate": 0.22899999999999998,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-28",
- "total_cases": 1014.0,
- "new_cases": 64.0,
- "new_cases_smoothed": 59.429,
- "total_deaths": 53.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 86.867,
- "new_cases_per_million": 5.483,
- "new_cases_smoothed_per_million": 5.091,
- "total_deaths_per_million": 4.54,
- "new_deaths_per_million": 0.257,
- "new_deaths_smoothed_per_million": 0.233,
- "new_tests": 133.0,
- "total_tests": 6121.0,
- "total_tests_per_thousand": 0.524,
- "new_tests_per_thousand": 0.011,
- "new_tests_smoothed": 243.0,
- "new_tests_smoothed_per_thousand": 0.021,
- "tests_per_case": 4.0889999999999995,
- "positive_rate": 0.245,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-29",
- "total_cases": 1053.0,
- "new_cases": 39.0,
- "new_cases_smoothed": 63.429,
- "total_deaths": 55.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 90.208,
- "new_cases_per_million": 3.341,
- "new_cases_smoothed_per_million": 5.434,
- "total_deaths_per_million": 4.712,
- "new_deaths_per_million": 0.171,
- "new_deaths_smoothed_per_million": 0.22,
- "new_tests": 288.0,
- "total_tests": 6409.0,
- "total_tests_per_thousand": 0.549,
- "new_tests_per_thousand": 0.025,
- "new_tests_smoothed": 222.0,
- "new_tests_smoothed_per_thousand": 0.019,
- "tests_per_case": 3.5,
- "positive_rate": 0.28600000000000003,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-04-30",
- "total_cases": 1110.0,
- "new_cases": 57.0,
- "new_cases_smoothed": 62.571,
- "total_deaths": 59.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 95.091,
- "new_cases_per_million": 4.883,
- "new_cases_smoothed_per_million": 5.36,
- "total_deaths_per_million": 5.054,
- "new_deaths_per_million": 0.343,
- "new_deaths_smoothed_per_million": 0.233,
- "new_tests": 142.0,
- "total_tests": 6551.0,
- "total_tests_per_thousand": 0.561,
- "new_tests_per_thousand": 0.012,
- "new_tests_smoothed": 222.0,
- "new_tests_smoothed_per_thousand": 0.019,
- "tests_per_case": 3.548,
- "positive_rate": 0.282,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-05-01",
- "total_cases": 1167.0,
- "new_cases": 57.0,
- "new_cases_smoothed": 66.286,
- "total_deaths": 62.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 99.974,
- "new_cases_per_million": 4.883,
- "new_cases_smoothed_per_million": 5.679,
- "total_deaths_per_million": 5.311,
- "new_deaths_per_million": 0.257,
- "new_deaths_smoothed_per_million": 0.233,
- "new_tests": 424.0,
- "total_tests": 6975.0,
- "total_tests_per_thousand": 0.598,
- "new_tests_per_thousand": 0.036,
- "new_tests_smoothed": 240.0,
- "new_tests_smoothed_per_thousand": 0.021,
- "tests_per_case": 3.6210000000000004,
- "positive_rate": 0.276,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-05-02",
- "total_cases": 1229.0,
- "new_cases": 62.0,
- "new_cases_smoothed": 60.286,
- "total_deaths": 66.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 105.285,
- "new_cases_per_million": 5.311,
- "new_cases_smoothed_per_million": 5.165,
- "total_deaths_per_million": 5.654,
- "new_deaths_per_million": 0.343,
- "new_deaths_smoothed_per_million": 0.269,
- "new_tests": 676.0,
- "total_tests": 7651.0,
- "total_tests_per_thousand": 0.655,
- "new_tests_per_thousand": 0.058,
- "new_tests_smoothed": 297.0,
- "new_tests_smoothed_per_thousand": 0.025,
- "tests_per_case": 4.927,
- "positive_rate": 0.203,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-05-03",
- "total_cases": 1470.0,
- "new_cases": 241.0,
- "new_cases_smoothed": 86.286,
- "total_deaths": 71.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 125.931,
- "new_cases_per_million": 20.646,
- "new_cases_smoothed_per_million": 7.392,
- "total_deaths_per_million": 6.082,
- "new_deaths_per_million": 0.428,
- "new_deaths_smoothed_per_million": 0.306,
- "new_tests": 429.0,
- "total_tests": 8080.0,
- "total_tests_per_thousand": 0.692,
- "new_tests_per_thousand": 0.037,
- "new_tests_smoothed": 327.0,
- "new_tests_smoothed_per_thousand": 0.028,
- "tests_per_case": 3.79,
- "positive_rate": 0.264,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-05-04",
- "total_cases": 1594.0,
- "new_cases": 124.0,
- "new_cases_smoothed": 92.0,
- "total_deaths": 76.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 136.554,
- "new_cases_per_million": 10.623,
- "new_cases_smoothed_per_million": 7.881,
- "total_deaths_per_million": 6.511,
- "new_deaths_per_million": 0.428,
- "new_deaths_smoothed_per_million": 0.318,
- "new_tests": 531.0,
- "total_tests": 8611.0,
- "total_tests_per_thousand": 0.738,
- "new_tests_per_thousand": 0.045,
- "new_tests_smoothed": 375.0,
- "new_tests_smoothed_per_thousand": 0.032,
- "tests_per_case": 4.0760000000000005,
- "positive_rate": 0.245,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-05-05",
- "total_cases": 1681.0,
- "new_cases": 87.0,
- "new_cases_smoothed": 95.286,
- "total_deaths": 82.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 144.007,
- "new_cases_per_million": 7.453,
- "new_cases_smoothed_per_million": 8.163,
- "total_deaths_per_million": 7.025,
- "new_deaths_per_million": 0.514,
- "new_deaths_smoothed_per_million": 0.355,
- "new_tests": 384.0,
- "total_tests": 8995.0,
- "total_tests_per_thousand": 0.771,
- "new_tests_per_thousand": 0.033,
- "new_tests_smoothed": 411.0,
- "new_tests_smoothed_per_thousand": 0.035,
- "tests_per_case": 4.313,
- "positive_rate": 0.23199999999999998,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-05-06",
- "total_cases": 1802.0,
- "new_cases": 121.0,
- "new_cases_smoothed": 107.0,
- "total_deaths": 86.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 154.373,
- "new_cases_per_million": 10.366,
- "new_cases_smoothed_per_million": 9.166,
- "total_deaths_per_million": 7.367,
- "new_deaths_per_million": 0.343,
- "new_deaths_smoothed_per_million": 0.379,
- "new_tests": 161.0,
- "total_tests": 9156.0,
- "total_tests_per_thousand": 0.784,
- "new_tests_per_thousand": 0.014,
- "new_tests_smoothed": 392.0,
- "new_tests_smoothed_per_thousand": 0.034,
- "tests_per_case": 3.6639999999999997,
- "positive_rate": 0.273,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-05-07",
- "total_cases": 1886.0,
- "new_cases": 84.0,
- "new_cases_smoothed": 110.857,
- "total_deaths": 91.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 161.569,
- "new_cases_per_million": 7.196,
- "new_cases_smoothed_per_million": 9.497,
- "total_deaths_per_million": 7.796,
- "new_deaths_per_million": 0.428,
- "new_deaths_smoothed_per_million": 0.392,
- "new_tests": 943.0,
- "total_tests": 10099.0,
- "total_tests_per_thousand": 0.865,
- "new_tests_per_thousand": 0.081,
- "new_tests_smoothed": 507.0,
- "new_tests_smoothed_per_thousand": 0.043,
- "tests_per_case": 4.573,
- "positive_rate": 0.21899999999999997,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-05-08",
- "total_cases": 2081.0,
- "new_cases": 195.0,
- "new_cases_smoothed": 130.571,
- "total_deaths": 102.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 5.714,
- "total_cases_per_million": 178.274,
- "new_cases_per_million": 16.705,
- "new_cases_smoothed_per_million": 11.186,
- "total_deaths_per_million": 8.738,
- "new_deaths_per_million": 0.942,
- "new_deaths_smoothed_per_million": 0.49,
- "new_tests": 552.0,
- "total_tests": 10651.0,
- "total_tests_per_thousand": 0.912,
- "new_tests_per_thousand": 0.047,
- "new_tests_smoothed": 525.0,
- "new_tests_smoothed_per_thousand": 0.045,
- "tests_per_case": 4.021,
- "positive_rate": 0.249,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-05-09",
- "total_cases": 2266.0,
- "new_cases": 185.0,
- "new_cases_smoothed": 148.143,
- "total_deaths": 106.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 5.714,
- "total_cases_per_million": 194.123,
- "new_cases_per_million": 15.848,
- "new_cases_smoothed_per_million": 12.691,
- "total_deaths_per_million": 9.081,
- "new_deaths_per_million": 0.343,
- "new_deaths_smoothed_per_million": 0.49,
- "new_tests_smoothed": 501.0,
- "new_tests_smoothed_per_thousand": 0.043,
- "tests_per_case": 3.3819999999999997,
- "positive_rate": 0.29600000000000004,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-05-10",
- "total_cases": 2437.0,
- "new_cases": 171.0,
- "new_cases_smoothed": 138.143,
- "total_deaths": 114.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 6.143,
- "total_cases_per_million": 208.772,
- "new_cases_per_million": 14.649,
- "new_cases_smoothed_per_million": 11.834,
- "total_deaths_per_million": 9.766,
- "new_deaths_per_million": 0.685,
- "new_deaths_smoothed_per_million": 0.526,
- "total_tests": 11671.0,
- "total_tests_per_thousand": 1.0,
- "new_tests_smoothed": 513.0,
- "new_tests_smoothed_per_thousand": 0.044,
- "tests_per_case": 3.714,
- "positive_rate": 0.26899999999999996,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-05-11",
- "total_cases": 2556.0,
- "new_cases": 119.0,
- "new_cases_smoothed": 137.429,
- "total_deaths": 118.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 6.0,
- "total_cases_per_million": 218.966,
- "new_cases_per_million": 10.194,
- "new_cases_smoothed_per_million": 11.773,
- "total_deaths_per_million": 10.109,
- "new_deaths_per_million": 0.343,
- "new_deaths_smoothed_per_million": 0.514,
- "new_tests": 882.0,
- "total_tests": 12553.0,
- "total_tests_per_thousand": 1.075,
- "new_tests_per_thousand": 0.076,
- "new_tests_smoothed": 563.0,
- "new_tests_smoothed_per_thousand": 0.048,
- "tests_per_case": 4.0969999999999995,
- "positive_rate": 0.244,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-05-12",
- "total_cases": 2831.0,
- "new_cases": 275.0,
- "new_cases_smoothed": 164.286,
- "total_deaths": 122.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 5.714,
- "total_cases_per_million": 242.525,
- "new_cases_per_million": 23.559,
- "new_cases_smoothed_per_million": 14.074,
- "total_deaths_per_million": 10.451,
- "new_deaths_per_million": 0.343,
- "new_deaths_smoothed_per_million": 0.49,
- "new_tests": 527.0,
- "total_tests": 13080.0,
- "total_tests_per_thousand": 1.121,
- "new_tests_per_thousand": 0.045,
- "new_tests_smoothed": 584.0,
- "new_tests_smoothed_per_thousand": 0.05,
- "tests_per_case": 3.555,
- "positive_rate": 0.281,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-05-13",
- "total_cases": 2964.0,
- "new_cases": 133.0,
- "new_cases_smoothed": 166.0,
- "total_deaths": 128.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 6.0,
- "total_cases_per_million": 253.919,
- "new_cases_per_million": 11.394,
- "new_cases_smoothed_per_million": 14.221,
- "total_deaths_per_million": 10.965,
- "new_deaths_per_million": 0.514,
- "new_deaths_smoothed_per_million": 0.514,
- "new_tests": 525.0,
- "total_tests": 13605.0,
- "total_tests_per_thousand": 1.166,
- "new_tests_per_thousand": 0.045,
- "new_tests_smoothed": 636.0,
- "new_tests_smoothed_per_thousand": 0.054,
- "tests_per_case": 3.8310000000000004,
- "positive_rate": 0.261,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-05-14",
- "total_cases": 3148.0,
- "new_cases": 184.0,
- "new_cases_smoothed": 180.286,
- "total_deaths": 142.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 7.286,
- "total_cases_per_million": 269.682,
- "new_cases_per_million": 15.763,
- "new_cases_smoothed_per_million": 15.445,
- "total_deaths_per_million": 12.165,
- "new_deaths_per_million": 1.199,
- "new_deaths_smoothed_per_million": 0.624,
- "new_tests": 554.0,
- "total_tests": 14159.0,
- "total_tests_per_thousand": 1.213,
- "new_tests_per_thousand": 0.047,
- "new_tests_smoothed": 580.0,
- "new_tests_smoothed_per_thousand": 0.05,
- "tests_per_case": 3.217,
- "positive_rate": 0.311,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-05-15",
- "total_cases": 3372.0,
- "new_cases": 224.0,
- "new_cases_smoothed": 184.429,
- "total_deaths": 152.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 7.143,
- "total_cases_per_million": 288.871,
- "new_cases_per_million": 19.19,
- "new_cases_smoothed_per_million": 15.8,
- "total_deaths_per_million": 13.021,
- "new_deaths_per_million": 0.857,
- "new_deaths_smoothed_per_million": 0.612,
- "new_tests": 644.0,
- "total_tests": 14803.0,
- "total_tests_per_thousand": 1.268,
- "new_tests_per_thousand": 0.055,
- "new_tests_smoothed": 593.0,
- "new_tests_smoothed_per_thousand": 0.051,
- "tests_per_case": 3.215,
- "positive_rate": 0.311,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-05-16",
- "total_cases": 3577.0,
- "new_cases": 205.0,
- "new_cases_smoothed": 187.286,
- "total_deaths": 164.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 8.286,
- "total_cases_per_million": 306.433,
- "new_cases_per_million": 17.562,
- "new_cases_smoothed_per_million": 16.044,
- "total_deaths_per_million": 14.049,
- "new_deaths_per_million": 1.028,
- "new_deaths_smoothed_per_million": 0.71,
- "new_tests": 853.0,
- "total_tests": 15656.0,
- "total_tests_per_thousand": 1.341,
- "new_tests_per_thousand": 0.073,
- "new_tests_smoothed": 642.0,
- "new_tests_smoothed_per_thousand": 0.055,
- "tests_per_case": 3.428,
- "positive_rate": 0.292,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-05-17",
- "total_cases": 3826.0,
- "new_cases": 249.0,
- "new_cases_smoothed": 198.429,
- "total_deaths": 165.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 7.286,
- "total_cases_per_million": 327.764,
- "new_cases_per_million": 21.331,
- "new_cases_smoothed_per_million": 16.999,
- "total_deaths_per_million": 14.135,
- "new_deaths_per_million": 0.086,
- "new_deaths_smoothed_per_million": 0.624,
- "new_tests": 748.0,
- "total_tests": 16404.0,
- "total_tests_per_thousand": 1.405,
- "new_tests_per_thousand": 0.064,
- "new_tests_smoothed": 676.0,
- "new_tests_smoothed_per_thousand": 0.058,
- "tests_per_case": 3.407,
- "positive_rate": 0.294,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-05-18",
- "total_cases": 4088.0,
- "new_cases": 262.0,
- "new_cases_smoothed": 218.857,
- "total_deaths": 169.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 7.286,
- "total_cases_per_million": 350.209,
- "new_cases_per_million": 22.445,
- "new_cases_smoothed_per_million": 18.749,
- "total_deaths_per_million": 14.478,
- "new_deaths_per_million": 0.343,
- "new_deaths_smoothed_per_million": 0.624,
- "new_tests": 377.0,
- "total_tests": 16781.0,
- "total_tests_per_thousand": 1.438,
- "new_tests_per_thousand": 0.032,
- "new_tests_smoothed": 604.0,
- "new_tests_smoothed_per_thousand": 0.052,
- "tests_per_case": 2.76,
- "positive_rate": 0.36200000000000004,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-05-19",
- "total_cases": 4263.0,
- "new_cases": 175.0,
- "new_cases_smoothed": 204.571,
- "total_deaths": 174.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 7.429,
- "total_cases_per_million": 365.201,
- "new_cases_per_million": 14.992,
- "new_cases_smoothed_per_million": 17.525,
- "total_deaths_per_million": 14.906,
- "new_deaths_per_million": 0.428,
- "new_deaths_smoothed_per_million": 0.636,
- "new_tests": 779.0,
- "total_tests": 17560.0,
- "total_tests_per_thousand": 1.504,
- "new_tests_per_thousand": 0.067,
- "new_tests_smoothed": 640.0,
- "new_tests_smoothed_per_thousand": 0.055,
- "tests_per_case": 3.128,
- "positive_rate": 0.32,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-05-20",
- "total_cases": 4481.0,
- "new_cases": 218.0,
- "new_cases_smoothed": 216.714,
- "total_deaths": 189.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 8.714,
- "total_cases_per_million": 383.876,
- "new_cases_per_million": 18.676,
- "new_cases_smoothed_per_million": 18.565,
- "total_deaths_per_million": 16.191,
- "new_deaths_per_million": 1.285,
- "new_deaths_smoothed_per_million": 0.747,
- "new_tests": 1006.0,
- "total_tests": 18566.0,
- "total_tests_per_thousand": 1.591,
- "new_tests_per_thousand": 0.086,
- "new_tests_smoothed": 709.0,
- "new_tests_smoothed_per_thousand": 0.061,
- "tests_per_case": 3.272,
- "positive_rate": 0.306,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-05-21",
- "total_cases": 4919.0,
- "new_cases": 438.0,
- "new_cases_smoothed": 253.0,
- "total_deaths": 199.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 421.399,
- "new_cases_per_million": 37.522,
- "new_cases_smoothed_per_million": 21.674,
- "total_deaths_per_million": 17.048,
- "new_deaths_per_million": 0.857,
- "new_deaths_smoothed_per_million": 0.698,
- "new_tests": 723.0,
- "total_tests": 19289.0,
- "total_tests_per_thousand": 1.652,
- "new_tests_per_thousand": 0.062,
- "new_tests_smoothed": 733.0,
- "new_tests_smoothed_per_thousand": 0.063,
- "tests_per_case": 2.897,
- "positive_rate": 0.345,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-05-22",
- "total_cases": 5187.0,
- "new_cases": 268.0,
- "new_cases_smoothed": 259.286,
- "total_deaths": 215.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 9.0,
- "total_cases_per_million": 444.358,
- "new_cases_per_million": 22.959,
- "new_cases_smoothed_per_million": 22.212,
- "total_deaths_per_million": 18.419,
- "new_deaths_per_million": 1.371,
- "new_deaths_smoothed_per_million": 0.771,
- "new_tests": 807.0,
- "total_tests": 20096.0,
- "total_tests_per_thousand": 1.722,
- "new_tests_per_thousand": 0.069,
- "new_tests_smoothed": 756.0,
- "new_tests_smoothed_per_thousand": 0.065,
- "tests_per_case": 2.9160000000000004,
- "positive_rate": 0.34299999999999997,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-05-23",
- "total_cases": 5579.0,
- "new_cases": 392.0,
- "new_cases_smoothed": 286.0,
- "total_deaths": 230.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 9.429,
- "total_cases_per_million": 477.939,
- "new_cases_per_million": 33.582,
- "new_cases_smoothed_per_million": 24.501,
- "total_deaths_per_million": 19.704,
- "new_deaths_per_million": 1.285,
- "new_deaths_smoothed_per_million": 0.808,
- "new_tests": 1109.0,
- "total_tests": 21205.0,
- "total_tests_per_thousand": 1.817,
- "new_tests_per_thousand": 0.095,
- "new_tests_smoothed": 793.0,
- "new_tests_smoothed_per_thousand": 0.068,
- "tests_per_case": 2.773,
- "positive_rate": 0.361,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-05-24",
- "total_cases": 5915.0,
- "new_cases": 336.0,
- "new_cases_smoothed": 298.429,
- "total_deaths": 240.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 10.714,
- "total_cases_per_million": 506.724,
- "new_cases_per_million": 28.784,
- "new_cases_smoothed_per_million": 25.566,
- "total_deaths_per_million": 20.56,
- "new_deaths_per_million": 0.857,
- "new_deaths_smoothed_per_million": 0.918,
- "new_tests": 789.0,
- "total_tests": 21994.0,
- "total_tests_per_thousand": 1.884,
- "new_tests_per_thousand": 0.068,
- "new_tests_smoothed": 799.0,
- "new_tests_smoothed_per_thousand": 0.068,
- "tests_per_case": 2.677,
- "positive_rate": 0.374,
- "tests_units": "tests performed",
- "stringency_index": 96.3
- },
- {
- "date": "2020-05-25",
- "total_cases": 6263.0,
- "new_cases": 348.0,
- "new_cases_smoothed": 310.714,
- "total_deaths": 250.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 11.571,
- "total_cases_per_million": 536.536,
- "new_cases_per_million": 29.812,
- "new_cases_smoothed_per_million": 26.618,
- "total_deaths_per_million": 21.417,
- "new_deaths_per_million": 0.857,
- "new_deaths_smoothed_per_million": 0.991,
- "new_tests": 779.0,
- "total_tests": 22773.0,
- "total_tests_per_thousand": 1.951,
- "new_tests_per_thousand": 0.067,
- "new_tests_smoothed": 856.0,
- "new_tests_smoothed_per_thousand": 0.073,
- "tests_per_case": 2.755,
- "positive_rate": 0.363,
- "tests_units": "tests performed",
- "stringency_index": 93.52
- },
- {
- "date": "2020-05-26",
- "total_cases": 6660.0,
- "new_cases": 397.0,
- "new_cases_smoothed": 342.429,
- "total_deaths": 261.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 12.429,
- "total_cases_per_million": 570.546,
- "new_cases_per_million": 34.01,
- "new_cases_smoothed_per_million": 29.335,
- "total_deaths_per_million": 22.359,
- "new_deaths_per_million": 0.942,
- "new_deaths_smoothed_per_million": 1.065,
- "new_tests": 866.0,
- "total_tests": 23639.0,
- "total_tests_per_thousand": 2.025,
- "new_tests_per_thousand": 0.074,
- "new_tests_smoothed": 868.0,
- "new_tests_smoothed_per_thousand": 0.074,
- "tests_per_case": 2.535,
- "positive_rate": 0.395,
- "tests_units": "tests performed",
- "stringency_index": 93.52
- },
- {
- "date": "2020-05-27",
- "total_cases": 7136.0,
- "new_cases": 476.0,
- "new_cases_smoothed": 379.286,
- "total_deaths": 274.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 12.143,
- "total_cases_per_million": 611.324,
- "new_cases_per_million": 40.778,
- "new_cases_smoothed_per_million": 32.492,
- "total_deaths_per_million": 23.473,
- "new_deaths_per_million": 1.114,
- "new_deaths_smoothed_per_million": 1.04,
- "new_tests": 1426.0,
- "total_tests": 25065.0,
- "total_tests_per_thousand": 2.147,
- "new_tests_per_thousand": 0.122,
- "new_tests_smoothed": 928.0,
- "new_tests_smoothed_per_thousand": 0.079,
- "tests_per_case": 2.447,
- "positive_rate": 0.409,
- "tests_units": "tests performed",
- "stringency_index": 93.52
- },
- {
- "date": "2020-05-28",
- "total_cases": 7768.0,
- "new_cases": 632.0,
- "new_cases_smoothed": 407.0,
- "total_deaths": 280.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 11.571,
- "total_cases_per_million": 665.466,
- "new_cases_per_million": 54.142,
- "new_cases_smoothed_per_million": 34.867,
- "total_deaths_per_million": 23.987,
- "new_deaths_per_million": 0.514,
- "new_deaths_smoothed_per_million": 0.991,
- "new_tests": 1125.0,
- "total_tests": 26190.0,
- "total_tests_per_thousand": 2.244,
- "new_tests_per_thousand": 0.096,
- "new_tests_smoothed": 986.0,
- "new_tests_smoothed_per_thousand": 0.084,
- "tests_per_case": 2.423,
- "positive_rate": 0.413,
- "tests_units": "tests performed",
- "stringency_index": 93.52
- },
- {
- "date": "2020-05-29",
- "total_cases": 8387.0,
- "new_cases": 619.0,
- "new_cases_smoothed": 457.143,
- "total_deaths": 293.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 11.143,
- "total_cases_per_million": 718.494,
- "new_cases_per_million": 53.028,
- "new_cases_smoothed_per_million": 39.162,
- "total_deaths_per_million": 25.101,
- "new_deaths_per_million": 1.114,
- "new_deaths_smoothed_per_million": 0.955,
- "new_tests": 775.0,
- "total_tests": 26965.0,
- "total_tests_per_thousand": 2.31,
- "new_tests_per_thousand": 0.066,
- "new_tests_smoothed": 981.0,
- "new_tests_smoothed_per_thousand": 0.084,
- "tests_per_case": 2.146,
- "positive_rate": 0.466,
- "tests_units": "tests performed",
- "stringency_index": 93.52
- },
- {
- "date": "2020-05-30",
- "total_cases": 8731.0,
- "new_cases": 344.0,
- "new_cases_smoothed": 450.286,
- "total_deaths": 300.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 10.0,
- "total_cases_per_million": 747.964,
- "new_cases_per_million": 29.47,
- "new_cases_smoothed_per_million": 38.575,
- "total_deaths_per_million": 25.7,
- "new_deaths_per_million": 0.6,
- "new_deaths_smoothed_per_million": 0.857,
- "new_tests": 1274.0,
- "total_tests": 28239.0,
- "total_tests_per_thousand": 2.419,
- "new_tests_per_thousand": 0.109,
- "new_tests_smoothed": 1005.0,
- "new_tests_smoothed_per_thousand": 0.086,
- "tests_per_case": 2.2319999999999998,
- "positive_rate": 0.44799999999999995,
- "tests_units": "tests performed",
- "stringency_index": 93.52
- },
- {
- "date": "2020-05-31",
- "total_cases": 9592.0,
- "new_cases": 861.0,
- "new_cases_smoothed": 525.286,
- "total_deaths": 310.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 10.0,
- "total_cases_per_million": 821.723,
- "new_cases_per_million": 73.76,
- "new_cases_smoothed_per_million": 45.0,
- "total_deaths_per_million": 26.557,
- "new_deaths_per_million": 0.857,
- "new_deaths_smoothed_per_million": 0.857,
- "new_tests": 718.0,
- "total_tests": 28957.0,
- "total_tests_per_thousand": 2.481,
- "new_tests_per_thousand": 0.062,
- "new_tests_smoothed": 995.0,
- "new_tests_smoothed_per_thousand": 0.085,
- "tests_per_case": 1.8940000000000001,
- "positive_rate": 0.528,
- "tests_units": "tests performed",
- "stringency_index": 93.52
- },
- {
- "date": "2020-06-01",
- "total_cases": 9982.0,
- "new_cases": 390.0,
- "new_cases_smoothed": 531.286,
- "total_deaths": 313.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 9.0,
- "total_cases_per_million": 855.134,
- "new_cases_per_million": 33.41,
- "new_cases_smoothed_per_million": 45.514,
- "total_deaths_per_million": 26.814,
- "new_deaths_per_million": 0.257,
- "new_deaths_smoothed_per_million": 0.771,
- "new_tests": 1083.0,
- "total_tests": 30040.0,
- "total_tests_per_thousand": 2.573,
- "new_tests_per_thousand": 0.093,
- "new_tests_smoothed": 1038.0,
- "new_tests_smoothed_per_thousand": 0.089,
- "tests_per_case": 1.954,
- "positive_rate": 0.512,
- "tests_units": "tests performed",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-02",
- "total_cases": 10531.0,
- "new_cases": 549.0,
- "new_cases_smoothed": 553.0,
- "total_deaths": 343.0,
- "new_deaths": 30.0,
- "new_deaths_smoothed": 11.714,
- "total_cases_per_million": 902.165,
- "new_cases_per_million": 47.031,
- "new_cases_smoothed_per_million": 47.374,
- "total_deaths_per_million": 29.384,
- "new_deaths_per_million": 2.57,
- "new_deaths_smoothed_per_million": 1.004,
- "new_tests": 1146.0,
- "total_tests": 31186.0,
- "total_tests_per_thousand": 2.672,
- "new_tests_per_thousand": 0.098,
- "new_tests_smoothed": 1078.0,
- "new_tests_smoothed_per_thousand": 0.092,
- "tests_per_case": 1.949,
- "positive_rate": 0.513,
- "tests_units": "tests performed",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-03",
- "total_cases": 10991.0,
- "new_cases": 460.0,
- "new_cases_smoothed": 550.714,
- "total_deaths": 376.0,
- "new_deaths": 33.0,
- "new_deaths_smoothed": 14.571,
- "total_cases_per_million": 941.572,
- "new_cases_per_million": 39.407,
- "new_cases_smoothed_per_million": 47.178,
- "total_deaths_per_million": 32.211,
- "new_deaths_per_million": 2.827,
- "new_deaths_smoothed_per_million": 1.248,
- "new_tests": 1300.0,
- "total_tests": 32486.0,
- "total_tests_per_thousand": 2.783,
- "new_tests_per_thousand": 0.111,
- "new_tests_smoothed": 1060.0,
- "new_tests_smoothed_per_thousand": 0.091,
- "tests_per_case": 1.925,
- "positive_rate": 0.52,
- "tests_units": "tests performed",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-04",
- "total_cases": 11638.0,
- "new_cases": 647.0,
- "new_cases_smoothed": 552.857,
- "total_deaths": 400.0,
- "new_deaths": 24.0,
- "new_deaths_smoothed": 17.143,
- "total_cases_per_million": 996.999,
- "new_cases_per_million": 55.427,
- "new_cases_smoothed_per_million": 47.362,
- "total_deaths_per_million": 34.267,
- "new_deaths_per_million": 2.056,
- "new_deaths_smoothed_per_million": 1.469,
- "new_tests": 1460.0,
- "total_tests": 33946.0,
- "total_tests_per_thousand": 2.908,
- "new_tests_per_thousand": 0.125,
- "new_tests_smoothed": 1108.0,
- "new_tests_smoothed_per_thousand": 0.095,
- "tests_per_case": 2.004,
- "positive_rate": 0.499,
- "tests_units": "tests performed",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-05",
- "total_cases": 12245.0,
- "new_cases": 607.0,
- "new_cases_smoothed": 551.143,
- "total_deaths": 415.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 17.429,
- "total_cases_per_million": 1048.999,
- "new_cases_per_million": 52.0,
- "new_cases_smoothed_per_million": 47.215,
- "total_deaths_per_million": 35.552,
- "new_deaths_per_million": 1.285,
- "new_deaths_smoothed_per_million": 1.493,
- "new_tests": 1304.0,
- "total_tests": 35250.0,
- "total_tests_per_thousand": 3.02,
- "new_tests_per_thousand": 0.112,
- "new_tests_smoothed": 1184.0,
- "new_tests_smoothed_per_thousand": 0.101,
- "tests_per_case": 2.148,
- "positive_rate": 0.465,
- "tests_units": "tests performed",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-06",
- "total_cases": 12728.0,
- "new_cases": 483.0,
- "new_cases_smoothed": 571.0,
- "total_deaths": 427.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 18.143,
- "total_cases_per_million": 1090.377,
- "new_cases_per_million": 41.377,
- "new_cases_smoothed_per_million": 48.916,
- "total_deaths_per_million": 36.58,
- "new_deaths_per_million": 1.028,
- "new_deaths_smoothed_per_million": 1.554,
- "new_tests": 1280.0,
- "total_tests": 36530.0,
- "total_tests_per_thousand": 3.129,
- "new_tests_per_thousand": 0.11,
- "new_tests_smoothed": 1184.0,
- "new_tests_smoothed_per_thousand": 0.101,
- "tests_per_case": 2.074,
- "positive_rate": 0.48200000000000004,
- "tests_units": "tests performed",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-07",
- "total_cases": 13358.0,
- "new_cases": 630.0,
- "new_cases_smoothed": 538.0,
- "total_deaths": 454.0,
- "new_deaths": 27.0,
- "new_deaths_smoothed": 20.571,
- "total_cases_per_million": 1144.347,
- "new_cases_per_million": 53.971,
- "new_cases_smoothed_per_million": 46.089,
- "total_deaths_per_million": 38.893,
- "new_deaths_per_million": 2.313,
- "new_deaths_smoothed_per_million": 1.762,
- "new_tests": 746.0,
- "total_tests": 37276.0,
- "total_tests_per_thousand": 3.193,
- "new_tests_per_thousand": 0.064,
- "new_tests_smoothed": 1188.0,
- "new_tests_smoothed_per_thousand": 0.102,
- "tests_per_case": 2.208,
- "positive_rate": 0.45299999999999996,
- "tests_units": "tests performed",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-08",
- "total_cases": 13643.0,
- "new_cases": 285.0,
- "new_cases_smoothed": 523.0,
- "total_deaths": 465.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 21.714,
- "total_cases_per_million": 1168.763,
- "new_cases_per_million": 24.415,
- "new_cases_smoothed_per_million": 44.804,
- "total_deaths_per_million": 39.835,
- "new_deaths_per_million": 0.942,
- "new_deaths_smoothed_per_million": 1.86,
- "new_tests": 816.0,
- "total_tests": 38092.0,
- "total_tests_per_thousand": 3.263,
- "new_tests_per_thousand": 0.07,
- "new_tests_smoothed": 1150.0,
- "new_tests_smoothed_per_thousand": 0.099,
- "tests_per_case": 2.199,
- "positive_rate": 0.455,
- "tests_units": "tests performed",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-09",
- "total_cases": 13949.0,
- "new_cases": 306.0,
- "new_cases_smoothed": 488.286,
- "total_deaths": 475.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 18.857,
- "total_cases_per_million": 1194.977,
- "new_cases_per_million": 26.214,
- "new_cases_smoothed_per_million": 41.83,
- "total_deaths_per_million": 40.692,
- "new_deaths_per_million": 0.857,
- "new_deaths_smoothed_per_million": 1.615,
- "new_tests": 1518.0,
- "total_tests": 39610.0,
- "total_tests_per_thousand": 3.393,
- "new_tests_per_thousand": 0.13,
- "new_tests_smoothed": 1203.0,
- "new_tests_smoothed_per_thousand": 0.103,
- "tests_per_case": 2.464,
- "positive_rate": 0.406,
- "tests_units": "tests performed",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-10",
- "total_cases": 14644.0,
- "new_cases": 695.0,
- "new_cases_smoothed": 521.857,
- "total_deaths": 487.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 15.857,
- "total_cases_per_million": 1254.516,
- "new_cases_per_million": 59.539,
- "new_cases_smoothed_per_million": 44.706,
- "total_deaths_per_million": 41.72,
- "new_deaths_per_million": 1.028,
- "new_deaths_smoothed_per_million": 1.358,
- "new_tests": 1425.0,
- "total_tests": 41035.0,
- "total_tests_per_thousand": 3.515,
- "new_tests_per_thousand": 0.122,
- "new_tests_smoothed": 1221.0,
- "new_tests_smoothed_per_thousand": 0.105,
- "tests_per_case": 2.34,
- "positive_rate": 0.42700000000000005,
- "tests_units": "tests performed",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-11",
- "total_cases": 15281.0,
- "new_cases": 637.0,
- "new_cases_smoothed": 520.429,
- "total_deaths": 512.0,
- "new_deaths": 25.0,
- "new_deaths_smoothed": 16.0,
- "total_cases_per_million": 1309.086,
- "new_cases_per_million": 54.57,
- "new_cases_smoothed_per_million": 44.584,
- "total_deaths_per_million": 43.862,
- "new_deaths_per_million": 2.142,
- "new_deaths_smoothed_per_million": 1.371,
- "new_tests": 1706.0,
- "total_tests": 42741.0,
- "total_tests_per_thousand": 3.662,
- "new_tests_per_thousand": 0.146,
- "new_tests_smoothed": 1256.0,
- "new_tests_smoothed_per_thousand": 0.108,
- "tests_per_case": 2.4130000000000003,
- "positive_rate": 0.414,
- "tests_units": "tests performed",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-12",
- "total_cases": 16165.0,
- "new_cases": 884.0,
- "new_cases_smoothed": 560.0,
- "total_deaths": 533.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 16.857,
- "total_cases_per_million": 1384.816,
- "new_cases_per_million": 75.73,
- "new_cases_smoothed_per_million": 47.974,
- "total_deaths_per_million": 45.661,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 1.444,
- "new_tests": 1774.0,
- "total_tests": 44515.0,
- "total_tests_per_thousand": 3.813,
- "new_tests_per_thousand": 0.152,
- "new_tests_smoothed": 1324.0,
- "new_tests_smoothed_per_thousand": 0.113,
- "tests_per_case": 2.364,
- "positive_rate": 0.423,
- "tests_units": "tests performed",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-13",
- "total_cases": 16929.0,
- "new_cases": 764.0,
- "new_cases_smoothed": 600.143,
- "total_deaths": 559.0,
- "new_deaths": 26.0,
- "new_deaths_smoothed": 18.857,
- "total_cases_per_million": 1450.266,
- "new_cases_per_million": 65.45,
- "new_cases_smoothed_per_million": 51.413,
- "total_deaths_per_million": 47.888,
- "new_deaths_per_million": 2.227,
- "new_deaths_smoothed_per_million": 1.615,
- "new_tests": 1554.0,
- "total_tests": 46069.0,
- "total_tests_per_thousand": 3.947,
- "new_tests_per_thousand": 0.133,
- "new_tests_smoothed": 1363.0,
- "new_tests_smoothed_per_thousand": 0.117,
- "tests_per_case": 2.271,
- "positive_rate": 0.44,
- "tests_units": "tests performed",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-14",
- "total_cases": 17842.0,
- "new_cases": 913.0,
- "new_cases_smoothed": 640.571,
- "total_deaths": 585.0,
- "new_deaths": 26.0,
- "new_deaths_smoothed": 18.714,
- "total_cases_per_million": 1528.481,
- "new_cases_per_million": 78.214,
- "new_cases_smoothed_per_million": 54.876,
- "total_deaths_per_million": 50.116,
- "new_deaths_per_million": 2.227,
- "new_deaths_smoothed_per_million": 1.603,
- "new_tests": 1303.0,
- "total_tests": 47372.0,
- "total_tests_per_thousand": 4.058,
- "new_tests_per_thousand": 0.112,
- "new_tests_smoothed": 1442.0,
- "new_tests_smoothed_per_thousand": 0.124,
- "tests_per_case": 2.251,
- "positive_rate": 0.444,
- "tests_units": "tests performed",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-15",
- "total_cases": 18459.0,
- "new_cases": 617.0,
- "new_cases_smoothed": 688.0,
- "total_deaths": 611.0,
- "new_deaths": 26.0,
- "new_deaths_smoothed": 20.857,
- "total_cases_per_million": 1581.338,
- "new_cases_per_million": 52.857,
- "new_cases_smoothed_per_million": 58.939,
- "total_deaths_per_million": 52.343,
- "new_deaths_per_million": 2.227,
- "new_deaths_smoothed_per_million": 1.787,
- "new_tests": 1384.0,
- "total_tests": 48756.0,
- "total_tests_per_thousand": 4.177,
- "new_tests_per_thousand": 0.119,
- "new_tests_smoothed": 1523.0,
- "new_tests_smoothed_per_thousand": 0.13,
- "tests_per_case": 2.214,
- "positive_rate": 0.452,
- "tests_units": "tests performed",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-16",
- "total_cases": 19073.0,
- "new_cases": 614.0,
- "new_cases_smoothed": 732.0,
- "total_deaths": 632.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 22.429,
- "total_cases_per_million": 1633.938,
- "new_cases_per_million": 52.6,
- "new_cases_smoothed_per_million": 62.709,
- "total_deaths_per_million": 54.142,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 1.921,
- "new_tests": 1358.0,
- "total_tests": 50114.0,
- "total_tests_per_thousand": 4.293,
- "new_tests_per_thousand": 0.116,
- "new_tests_smoothed": 1501.0,
- "new_tests_smoothed_per_thousand": 0.129,
- "tests_per_case": 2.051,
- "positive_rate": 0.488,
- "tests_units": "tests performed",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-17",
- "total_cases": 19883.0,
- "new_cases": 810.0,
- "new_cases_smoothed": 748.429,
- "total_deaths": 659.0,
- "new_deaths": 27.0,
- "new_deaths_smoothed": 24.571,
- "total_cases_per_million": 1703.328,
- "new_cases_per_million": 69.391,
- "new_cases_smoothed_per_million": 64.116,
- "total_deaths_per_million": 56.455,
- "new_deaths_per_million": 2.313,
- "new_deaths_smoothed_per_million": 2.105,
- "new_tests": 1222.0,
- "total_tests": 51336.0,
- "total_tests_per_thousand": 4.398,
- "new_tests_per_thousand": 0.105,
- "new_tests_smoothed": 1472.0,
- "new_tests_smoothed_per_thousand": 0.126,
- "tests_per_case": 1.9669999999999999,
- "positive_rate": 0.508,
- "tests_units": "tests performed",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-18",
- "total_cases": 20685.0,
- "new_cases": 802.0,
- "new_cases_smoothed": 772.0,
- "total_deaths": 679.0,
- "new_deaths": 20.0,
- "new_deaths_smoothed": 23.857,
- "total_cases_per_million": 1772.034,
- "new_cases_per_million": 68.705,
- "new_cases_smoothed_per_million": 66.135,
- "total_deaths_per_million": 58.168,
- "new_deaths_per_million": 1.713,
- "new_deaths_smoothed_per_million": 2.044,
- "new_tests": 1420.0,
- "total_tests": 52756.0,
- "total_tests_per_thousand": 4.519,
- "new_tests_per_thousand": 0.122,
- "new_tests_smoothed": 1431.0,
- "new_tests_smoothed_per_thousand": 0.123,
- "tests_per_case": 1.854,
- "positive_rate": 0.539,
- "tests_units": "tests performed",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-19",
- "total_cases": 21499.0,
- "new_cases": 814.0,
- "new_cases_smoothed": 762.0,
- "total_deaths": 697.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 23.429,
- "total_cases_per_million": 1841.767,
- "new_cases_per_million": 69.733,
- "new_cases_smoothed_per_million": 65.279,
- "total_deaths_per_million": 59.71,
- "new_deaths_per_million": 1.542,
- "new_deaths_smoothed_per_million": 2.007,
- "new_tests": 2358.0,
- "total_tests": 55114.0,
- "total_tests_per_thousand": 4.721,
- "new_tests_per_thousand": 0.202,
- "new_tests_smoothed": 1514.0,
- "new_tests_smoothed_per_thousand": 0.13,
- "tests_per_case": 1.9869999999999999,
- "positive_rate": 0.503,
- "tests_units": "tests performed",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-20",
- "total_cases": 22476.0,
- "new_cases": 977.0,
- "new_cases_smoothed": 792.429,
- "total_deaths": 715.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 22.286,
- "total_cases_per_million": 1925.464,
- "new_cases_per_million": 83.697,
- "new_cases_smoothed_per_million": 67.885,
- "total_deaths_per_million": 61.252,
- "new_deaths_per_million": 1.542,
- "new_deaths_smoothed_per_million": 1.909,
- "new_tests": 1850.0,
- "total_tests": 56964.0,
- "total_tests_per_thousand": 4.88,
- "new_tests_per_thousand": 0.158,
- "new_tests_smoothed": 1556.0,
- "new_tests_smoothed_per_thousand": 0.133,
- "tests_per_case": 1.964,
- "positive_rate": 0.509,
- "tests_units": "tests performed",
- "stringency_index": 90.74
- },
- {
- "date": "2020-06-21",
- "total_cases": 23512.0,
- "new_cases": 1036.0,
- "new_cases_smoothed": 810.0,
- "total_deaths": 740.0,
- "new_deaths": 25.0,
- "new_deaths_smoothed": 22.143,
- "total_cases_per_million": 2014.216,
- "new_cases_per_million": 88.752,
- "new_cases_smoothed_per_million": 69.391,
- "total_deaths_per_million": 63.394,
- "new_deaths_per_million": 2.142,
- "new_deaths_smoothed_per_million": 1.897,
- "new_tests": 1825.0,
- "total_tests": 58789.0,
- "total_tests_per_thousand": 5.036,
- "new_tests_per_thousand": 0.156,
- "new_tests_smoothed": 1631.0,
- "new_tests_smoothed_per_thousand": 0.14,
- "tests_per_case": 2.0140000000000002,
- "positive_rate": 0.49700000000000005,
- "tests_units": "tests performed",
- "stringency_index": 90.74
- },
- {
- "date": "2020-06-22",
- "total_cases": 24388.0,
- "new_cases": 876.0,
- "new_cases_smoothed": 847.0,
- "total_deaths": 773.0,
- "new_deaths": 33.0,
- "new_deaths_smoothed": 23.143,
- "total_cases_per_million": 2089.261,
- "new_cases_per_million": 75.045,
- "new_cases_smoothed_per_million": 72.56,
- "total_deaths_per_million": 66.221,
- "new_deaths_per_million": 2.827,
- "new_deaths_smoothed_per_million": 1.983,
- "new_tests": 2666.0,
- "total_tests": 61455.0,
- "total_tests_per_thousand": 5.265,
- "new_tests_per_thousand": 0.228,
- "new_tests_smoothed": 1814.0,
- "new_tests_smoothed_per_thousand": 0.155,
- "tests_per_case": 2.142,
- "positive_rate": 0.467,
- "tests_units": "tests performed",
- "stringency_index": 90.74
- },
- {
- "date": "2020-06-23",
- "total_cases": 25493.0,
- "new_cases": 1105.0,
- "new_cases_smoothed": 917.143,
- "total_deaths": 820.0,
- "new_deaths": 47.0,
- "new_deaths_smoothed": 26.857,
- "total_cases_per_million": 2183.923,
- "new_cases_per_million": 94.663,
- "new_cases_smoothed_per_million": 78.569,
- "total_deaths_per_million": 70.247,
- "new_deaths_per_million": 4.026,
- "new_deaths_smoothed_per_million": 2.301,
- "new_tests": 1756.0,
- "total_tests": 63211.0,
- "total_tests_per_thousand": 5.415,
- "new_tests_per_thousand": 0.15,
- "new_tests_smoothed": 1871.0,
- "new_tests_smoothed_per_thousand": 0.16,
- "tests_per_case": 2.04,
- "positive_rate": 0.49,
- "tests_units": "tests performed",
- "stringency_index": 90.74
- },
- {
- "date": "2020-06-24",
- "total_cases": 26389.0,
- "new_cases": 896.0,
- "new_cases_smoothed": 929.429,
- "total_deaths": 846.0,
- "new_deaths": 26.0,
- "new_deaths_smoothed": 26.714,
- "total_cases_per_million": 2260.681,
- "new_cases_per_million": 76.758,
- "new_cases_smoothed_per_million": 79.622,
- "total_deaths_per_million": 72.475,
- "new_deaths_per_million": 2.227,
- "new_deaths_smoothed_per_million": 2.289,
- "new_tests": 1735.0,
- "total_tests": 64946.0,
- "total_tests_per_thousand": 5.564,
- "new_tests_per_thousand": 0.149,
- "new_tests_smoothed": 1944.0,
- "new_tests_smoothed_per_thousand": 0.167,
- "tests_per_case": 2.092,
- "positive_rate": 0.478,
- "tests_units": "tests performed",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-25",
- "total_cases": 27487.0,
- "new_cases": 1098.0,
- "new_cases_smoothed": 971.714,
- "total_deaths": 876.0,
- "new_deaths": 30.0,
- "new_deaths_smoothed": 28.143,
- "total_cases_per_million": 2354.744,
- "new_cases_per_million": 94.063,
- "new_cases_smoothed_per_million": 83.244,
- "total_deaths_per_million": 75.045,
- "new_deaths_per_million": 2.57,
- "new_deaths_smoothed_per_million": 2.411,
- "new_tests": 1651.0,
- "total_tests": 66597.0,
- "total_tests_per_thousand": 5.705,
- "new_tests_per_thousand": 0.141,
- "new_tests_smoothed": 1977.0,
- "new_tests_smoothed_per_thousand": 0.169,
- "tests_per_case": 2.035,
- "positive_rate": 0.49200000000000005,
- "tests_units": "tests performed",
- "stringency_index": 88.89
- },
- {
- "date": "2020-06-26",
- "total_cases": 28503.0,
- "new_cases": 1016.0,
- "new_cases_smoothed": 1000.571,
- "total_deaths": 913.0,
- "new_deaths": 37.0,
- "new_deaths_smoothed": 30.857,
- "total_cases_per_million": 2441.783,
- "new_cases_per_million": 87.038,
- "new_cases_smoothed_per_million": 85.717,
- "total_deaths_per_million": 78.214,
- "new_deaths_per_million": 3.17,
- "new_deaths_smoothed_per_million": 2.643,
- "new_tests": 2033.0,
- "total_tests": 68630.0,
- "total_tests_per_thousand": 5.879,
- "new_tests_per_thousand": 0.174,
- "new_tests_smoothed": 1931.0,
- "new_tests_smoothed_per_thousand": 0.165,
- "tests_per_case": 1.93,
- "positive_rate": 0.518,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-06-27",
- "total_cases": 29423.0,
- "new_cases": 920.0,
- "new_cases_smoothed": 992.429,
- "total_deaths": 934.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 31.286,
- "total_cases_per_million": 2520.597,
- "new_cases_per_million": 78.814,
- "new_cases_smoothed_per_million": 85.019,
- "total_deaths_per_million": 80.014,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 2.68,
- "new_tests": 2242.0,
- "total_tests": 70872.0,
- "total_tests_per_thousand": 6.071,
- "new_tests_per_thousand": 0.192,
- "new_tests_smoothed": 1987.0,
- "new_tests_smoothed_per_thousand": 0.17,
- "tests_per_case": 2.002,
- "positive_rate": 0.499,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-06-28",
- "total_cases": 30676.0,
- "new_cases": 1253.0,
- "new_cases_smoothed": 1023.429,
- "total_deaths": 970.0,
- "new_deaths": 36.0,
- "new_deaths_smoothed": 32.857,
- "total_cases_per_million": 2627.938,
- "new_cases_per_million": 107.341,
- "new_cases_smoothed_per_million": 87.675,
- "total_deaths_per_million": 83.098,
- "new_deaths_per_million": 3.084,
- "new_deaths_smoothed_per_million": 2.815,
- "new_tests": 1364.0,
- "total_tests": 72236.0,
- "total_tests_per_thousand": 6.188,
- "new_tests_per_thousand": 0.117,
- "new_tests_smoothed": 1921.0,
- "new_tests_smoothed_per_thousand": 0.165,
- "tests_per_case": 1.8769999999999998,
- "positive_rate": 0.5329999999999999,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-06-29",
- "total_cases": 31524.0,
- "new_cases": 848.0,
- "new_cases_smoothed": 1019.429,
- "total_deaths": 1014.0,
- "new_deaths": 44.0,
- "new_deaths_smoothed": 34.429,
- "total_cases_per_million": 2700.584,
- "new_cases_per_million": 72.646,
- "new_cases_smoothed_per_million": 87.332,
- "total_deaths_per_million": 86.867,
- "new_deaths_per_million": 3.769,
- "new_deaths_smoothed_per_million": 2.949,
- "new_tests": 1036.0,
- "total_tests": 73272.0,
- "total_tests_per_thousand": 6.277,
- "new_tests_per_thousand": 0.089,
- "new_tests_smoothed": 1688.0,
- "new_tests_smoothed_per_thousand": 0.145,
- "tests_per_case": 1.656,
- "positive_rate": 0.604,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-06-30",
- "total_cases": 32125.0,
- "new_cases": 601.0,
- "new_cases_smoothed": 947.429,
- "total_deaths": 1071.0,
- "new_deaths": 57.0,
- "new_deaths_smoothed": 35.857,
- "total_cases_per_million": 2752.071,
- "new_cases_per_million": 51.486,
- "new_cases_smoothed_per_million": 81.164,
- "total_deaths_per_million": 91.75,
- "new_deaths_per_million": 4.883,
- "new_deaths_smoothed_per_million": 3.072,
- "new_tests": 2194.0,
- "total_tests": 75466.0,
- "total_tests_per_thousand": 6.465,
- "new_tests_per_thousand": 0.188,
- "new_tests_smoothed": 1751.0,
- "new_tests_smoothed_per_thousand": 0.15,
- "tests_per_case": 1.848,
- "positive_rate": 0.541,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-07-01",
- "total_cases": 33219.0,
- "new_cases": 1094.0,
- "new_cases_smoothed": 975.714,
- "total_deaths": 1123.0,
- "new_deaths": 52.0,
- "new_deaths_smoothed": 39.571,
- "total_cases_per_million": 2845.791,
- "new_cases_per_million": 93.72,
- "new_cases_smoothed_per_million": 83.587,
- "total_deaths_per_million": 96.205,
- "new_deaths_per_million": 4.455,
- "new_deaths_smoothed_per_million": 3.39,
- "new_tests": 1947.0,
- "total_tests": 77413.0,
- "total_tests_per_thousand": 6.632,
- "new_tests_per_thousand": 0.167,
- "new_tests_smoothed": 1781.0,
- "new_tests_smoothed_per_thousand": 0.153,
- "tests_per_case": 1.825,
- "positive_rate": 0.5479999999999999,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-07-02",
- "total_cases": 34227.0,
- "new_cases": 1008.0,
- "new_cases_smoothed": 962.857,
- "total_deaths": 1201.0,
- "new_deaths": 78.0,
- "new_deaths_smoothed": 46.429,
- "total_cases_per_million": 2932.144,
- "new_cases_per_million": 86.353,
- "new_cases_smoothed_per_million": 82.486,
- "total_deaths_per_million": 102.887,
- "new_deaths_per_million": 6.682,
- "new_deaths_smoothed_per_million": 3.977,
- "new_tests": 2154.0,
- "total_tests": 79567.0,
- "total_tests_per_thousand": 6.816,
- "new_tests_per_thousand": 0.185,
- "new_tests_smoothed": 1853.0,
- "new_tests_smoothed_per_thousand": 0.159,
- "tests_per_case": 1.9240000000000002,
- "positive_rate": 0.52,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-07-03",
- "total_cases": 35528.0,
- "new_cases": 1301.0,
- "new_cases_smoothed": 1003.571,
- "total_deaths": 1271.0,
- "new_deaths": 70.0,
- "new_deaths_smoothed": 51.143,
- "total_cases_per_million": 3043.597,
- "new_cases_per_million": 111.454,
- "new_cases_smoothed_per_million": 85.974,
- "total_deaths_per_million": 108.883,
- "new_deaths_per_million": 5.997,
- "new_deaths_smoothed_per_million": 4.381,
- "new_tests": 2219.0,
- "total_tests": 81786.0,
- "total_tests_per_thousand": 7.006,
- "new_tests_per_thousand": 0.19,
- "new_tests_smoothed": 1879.0,
- "new_tests_smoothed_per_thousand": 0.161,
- "tests_per_case": 1.8719999999999999,
- "positive_rate": 0.534,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-07-04",
- "total_cases": 36818.0,
- "new_cases": 1290.0,
- "new_cases_smoothed": 1056.429,
- "total_deaths": 1320.0,
- "new_deaths": 49.0,
- "new_deaths_smoothed": 55.143,
- "total_cases_per_million": 3154.109,
- "new_cases_per_million": 110.511,
- "new_cases_smoothed_per_million": 90.502,
- "total_deaths_per_million": 113.081,
- "new_deaths_per_million": 4.198,
- "new_deaths_smoothed_per_million": 4.724,
- "new_tests": 2172.0,
- "total_tests": 83958.0,
- "total_tests_per_thousand": 7.192,
- "new_tests_per_thousand": 0.186,
- "new_tests_smoothed": 1869.0,
- "new_tests_smoothed_per_thousand": 0.16,
- "tests_per_case": 1.7690000000000001,
- "positive_rate": 0.565,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-07-05",
- "total_cases": 38071.0,
- "new_cases": 1253.0,
- "new_cases_smoothed": 1056.429,
- "total_deaths": 1378.0,
- "new_deaths": 58.0,
- "new_deaths_smoothed": 58.286,
- "total_cases_per_million": 3261.45,
- "new_cases_per_million": 107.341,
- "new_cases_smoothed_per_million": 90.502,
- "total_deaths_per_million": 118.05,
- "new_deaths_per_million": 4.969,
- "new_deaths_smoothed_per_million": 4.993,
- "new_tests": 2920.0,
- "total_tests": 86878.0,
- "total_tests_per_thousand": 7.443,
- "new_tests_per_thousand": 0.25,
- "new_tests_smoothed": 2092.0,
- "new_tests_smoothed_per_thousand": 0.179,
- "tests_per_case": 1.98,
- "positive_rate": 0.505,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-07-06",
- "total_cases": 39297.0,
- "new_cases": 1226.0,
- "new_cases_smoothed": 1110.429,
- "total_deaths": 1434.0,
- "new_deaths": 56.0,
- "new_deaths_smoothed": 60.0,
- "total_cases_per_million": 3366.478,
- "new_cases_per_million": 105.028,
- "new_cases_smoothed_per_million": 95.128,
- "total_deaths_per_million": 122.847,
- "new_deaths_per_million": 4.797,
- "new_deaths_smoothed_per_million": 5.14,
- "new_tests": 1940.0,
- "total_tests": 88818.0,
- "total_tests_per_thousand": 7.609,
- "new_tests_per_thousand": 0.166,
- "new_tests_smoothed": 2221.0,
- "new_tests_smoothed_per_thousand": 0.19,
- "tests_per_case": 2.0,
- "positive_rate": 0.5,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-07-07",
- "total_cases": 40509.0,
- "new_cases": 1212.0,
- "new_cases_smoothed": 1197.714,
- "total_deaths": 1476.0,
- "new_deaths": 42.0,
- "new_deaths_smoothed": 57.857,
- "total_cases_per_million": 3470.307,
- "new_cases_per_million": 103.829,
- "new_cases_smoothed_per_million": 102.605,
- "total_deaths_per_million": 126.445,
- "new_deaths_per_million": 3.598,
- "new_deaths_smoothed_per_million": 4.956,
- "new_tests": 1833.0,
- "total_tests": 90651.0,
- "total_tests_per_thousand": 7.766,
- "new_tests_per_thousand": 0.157,
- "new_tests_smoothed": 2169.0,
- "new_tests_smoothed_per_thousand": 0.186,
- "tests_per_case": 1.811,
- "positive_rate": 0.552,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-07-08",
- "total_cases": 41545.0,
- "new_cases": 1036.0,
- "new_cases_smoothed": 1189.429,
- "total_deaths": 1530.0,
- "new_deaths": 54.0,
- "new_deaths_smoothed": 58.143,
- "total_cases_per_million": 3559.059,
- "new_cases_per_million": 88.752,
- "new_cases_smoothed_per_million": 101.895,
- "total_deaths_per_million": 131.071,
- "new_deaths_per_million": 4.626,
- "new_deaths_smoothed_per_million": 4.981,
- "new_tests": 2177.0,
- "total_tests": 92828.0,
- "total_tests_per_thousand": 7.952,
- "new_tests_per_thousand": 0.186,
- "new_tests_smoothed": 2202.0,
- "new_tests_smoothed_per_thousand": 0.189,
- "tests_per_case": 1.851,
- "positive_rate": 0.54,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-07-09",
- "total_cases": 42984.0,
- "new_cases": 1439.0,
- "new_cases_smoothed": 1251.0,
- "total_deaths": 1577.0,
- "new_deaths": 47.0,
- "new_deaths_smoothed": 53.714,
- "total_cases_per_million": 3682.335,
- "new_cases_per_million": 123.276,
- "new_cases_smoothed_per_million": 107.17,
- "total_deaths_per_million": 135.098,
- "new_deaths_per_million": 4.026,
- "new_deaths_smoothed_per_million": 4.602,
- "new_tests": 2031.0,
- "total_tests": 94859.0,
- "total_tests_per_thousand": 8.126,
- "new_tests_per_thousand": 0.174,
- "new_tests_smoothed": 2185.0,
- "new_tests_smoothed_per_thousand": 0.187,
- "tests_per_case": 1.7469999999999999,
- "positive_rate": 0.573,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-07-10",
- "total_cases": 44113.0,
- "new_cases": 1129.0,
- "new_cases_smoothed": 1226.429,
- "total_deaths": 1638.0,
- "new_deaths": 61.0,
- "new_deaths_smoothed": 52.429,
- "total_cases_per_million": 3779.053,
- "new_cases_per_million": 96.719,
- "new_cases_smoothed_per_million": 105.065,
- "total_deaths_per_million": 140.323,
- "new_deaths_per_million": 5.226,
- "new_deaths_smoothed_per_million": 4.491,
- "new_tests": 2196.0,
- "total_tests": 97055.0,
- "total_tests_per_thousand": 8.314,
- "new_tests_per_thousand": 0.188,
- "new_tests_smoothed": 2181.0,
- "new_tests_smoothed_per_thousand": 0.187,
- "tests_per_case": 1.778,
- "positive_rate": 0.562,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-07-11",
- "total_cases": 45565.0,
- "new_cases": 1452.0,
- "new_cases_smoothed": 1249.571,
- "total_deaths": 1702.0,
- "new_deaths": 64.0,
- "new_deaths_smoothed": 54.571,
- "total_cases_per_million": 3903.443,
- "new_cases_per_million": 124.389,
- "new_cases_smoothed_per_million": 107.048,
- "total_deaths_per_million": 145.806,
- "new_deaths_per_million": 5.483,
- "new_deaths_smoothed_per_million": 4.675,
- "new_tests": 2699.0,
- "total_tests": 99754.0,
- "total_tests_per_thousand": 8.546,
- "new_tests_per_thousand": 0.231,
- "new_tests_smoothed": 2257.0,
- "new_tests_smoothed_per_thousand": 0.193,
- "tests_per_case": 1.806,
- "positive_rate": 0.5539999999999999,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-07-12",
- "total_cases": 47200.0,
- "new_cases": 1635.0,
- "new_cases_smoothed": 1304.143,
- "total_deaths": 1754.0,
- "new_deaths": 52.0,
- "new_deaths_smoothed": 53.714,
- "total_cases_per_million": 4043.509,
- "new_cases_per_million": 140.066,
- "new_cases_smoothed_per_million": 111.723,
- "total_deaths_per_million": 150.261,
- "new_deaths_per_million": 4.455,
- "new_deaths_smoothed_per_million": 4.602,
- "new_tests": 1869.0,
- "total_tests": 101623.0,
- "total_tests_per_thousand": 8.706,
- "new_tests_per_thousand": 0.16,
- "new_tests_smoothed": 2106.0,
- "new_tests_smoothed_per_thousand": 0.18,
- "tests_per_case": 1.615,
- "positive_rate": 0.619,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-07-13",
- "total_cases": 48187.0,
- "new_cases": 987.0,
- "new_cases_smoothed": 1270.0,
- "total_deaths": 1807.0,
- "new_deaths": 53.0,
- "new_deaths_smoothed": 53.286,
- "total_cases_per_million": 4128.063,
- "new_cases_per_million": 84.554,
- "new_cases_smoothed_per_million": 108.798,
- "total_deaths_per_million": 154.801,
- "new_deaths_per_million": 4.54,
- "new_deaths_smoothed_per_million": 4.565,
- "new_tests": 1705.0,
- "total_tests": 103328.0,
- "total_tests_per_thousand": 8.852,
- "new_tests_per_thousand": 0.146,
- "new_tests_smoothed": 2073.0,
- "new_tests_smoothed_per_thousand": 0.178,
- "tests_per_case": 1.632,
- "positive_rate": 0.613,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-07-14",
- "total_cases": 49250.0,
- "new_cases": 1063.0,
- "new_cases_smoothed": 1248.714,
- "total_deaths": 1866.0,
- "new_deaths": 59.0,
- "new_deaths_smoothed": 55.714,
- "total_cases_per_million": 4219.128,
- "new_cases_per_million": 91.065,
- "new_cases_smoothed_per_million": 106.974,
- "total_deaths_per_million": 159.856,
- "new_deaths_per_million": 5.054,
- "new_deaths_smoothed_per_million": 4.773,
- "new_tests": 2449.0,
- "total_tests": 105777.0,
- "total_tests_per_thousand": 9.062,
- "new_tests_per_thousand": 0.21,
- "new_tests_smoothed": 2161.0,
- "new_tests_smoothed_per_thousand": 0.185,
- "tests_per_case": 1.7309999999999999,
- "positive_rate": 0.578,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-07-15",
- "total_cases": 50867.0,
- "new_cases": 1617.0,
- "new_cases_smoothed": 1331.714,
- "total_deaths": 1898.0,
- "new_deaths": 32.0,
- "new_deaths_smoothed": 52.571,
- "total_cases_per_million": 4357.652,
- "new_cases_per_million": 138.524,
- "new_cases_smoothed_per_million": 114.085,
- "total_deaths_per_million": 162.597,
- "new_deaths_per_million": 2.741,
- "new_deaths_smoothed_per_million": 4.504,
- "new_tests": 2460.0,
- "total_tests": 108237.0,
- "total_tests_per_thousand": 9.272,
- "new_tests_per_thousand": 0.211,
- "new_tests_smoothed": 2201.0,
- "new_tests_smoothed_per_thousand": 0.189,
- "tests_per_case": 1.653,
- "positive_rate": 0.605,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-07-16",
- "total_cases": 52218.0,
- "new_cases": 1351.0,
- "new_cases_smoothed": 1319.143,
- "total_deaths": 1942.0,
- "new_deaths": 44.0,
- "new_deaths_smoothed": 52.143,
- "total_cases_per_million": 4473.389,
- "new_cases_per_million": 115.737,
- "new_cases_smoothed_per_million": 113.008,
- "total_deaths_per_million": 166.366,
- "new_deaths_per_million": 3.769,
- "new_deaths_smoothed_per_million": 4.467,
- "new_tests": 2875.0,
- "total_tests": 111112.0,
- "total_tests_per_thousand": 9.519,
- "new_tests_per_thousand": 0.246,
- "new_tests_smoothed": 2322.0,
- "new_tests_smoothed_per_thousand": 0.199,
- "tests_per_case": 1.76,
- "positive_rate": 0.568,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-07-17",
- "total_cases": 54156.0,
- "new_cases": 1938.0,
- "new_cases_smoothed": 1434.714,
- "total_deaths": 1984.0,
- "new_deaths": 42.0,
- "new_deaths_smoothed": 49.429,
- "total_cases_per_million": 4639.413,
- "new_cases_per_million": 166.024,
- "new_cases_smoothed_per_million": 122.908,
- "total_deaths_per_million": 169.964,
- "new_deaths_per_million": 3.598,
- "new_deaths_smoothed_per_million": 4.234,
- "new_tests": 3070.0,
- "total_tests": 114182.0,
- "total_tests_per_thousand": 9.782,
- "new_tests_per_thousand": 0.263,
- "new_tests_smoothed": 2447.0,
- "new_tests_smoothed_per_thousand": 0.21,
- "tests_per_case": 1.706,
- "positive_rate": 0.586,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-07-18",
- "total_cases": 56102.0,
- "new_cases": 1946.0,
- "new_cases_smoothed": 1505.286,
- "total_deaths": 2049.0,
- "new_deaths": 65.0,
- "new_deaths_smoothed": 49.571,
- "total_cases_per_million": 4806.122,
- "new_cases_per_million": 166.709,
- "new_cases_smoothed_per_million": 128.954,
- "total_deaths_per_million": 175.533,
- "new_deaths_per_million": 5.568,
- "new_deaths_smoothed_per_million": 4.247,
- "new_tests": 2982.0,
- "total_tests": 117164.0,
- "total_tests_per_thousand": 10.037,
- "new_tests_per_thousand": 0.255,
- "new_tests_smoothed": 2487.0,
- "new_tests_smoothed_per_thousand": 0.213,
- "tests_per_case": 1.652,
- "positive_rate": 0.605,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-07-19",
- "total_cases": 58138.0,
- "new_cases": 2036.0,
- "new_cases_smoothed": 1562.571,
- "total_deaths": 2106.0,
- "new_deaths": 57.0,
- "new_deaths_smoothed": 50.286,
- "total_cases_per_million": 4980.541,
- "new_cases_per_million": 174.419,
- "new_cases_smoothed_per_million": 133.862,
- "total_deaths_per_million": 180.416,
- "new_deaths_per_million": 4.883,
- "new_deaths_smoothed_per_million": 4.308,
- "new_tests": 2600.0,
- "total_tests": 119764.0,
- "total_tests_per_thousand": 10.26,
- "new_tests_per_thousand": 0.223,
- "new_tests_smoothed": 2592.0,
- "new_tests_smoothed_per_thousand": 0.222,
- "tests_per_case": 1.659,
- "positive_rate": 0.603,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-07-20",
- "total_cases": 59582.0,
- "new_cases": 1444.0,
- "new_cases_smoothed": 1627.857,
- "total_deaths": 2151.0,
- "new_deaths": 45.0,
- "new_deaths_smoothed": 49.143,
- "total_cases_per_million": 5104.245,
- "new_cases_per_million": 123.704,
- "new_cases_smoothed_per_million": 139.455,
- "total_deaths_per_million": 184.271,
- "new_deaths_per_million": 3.855,
- "new_deaths_smoothed_per_million": 4.21,
- "new_tests": 2023.0,
- "total_tests": 121787.0,
- "total_tests_per_thousand": 10.433,
- "new_tests_per_thousand": 0.173,
- "new_tests_smoothed": 2637.0,
- "new_tests_smoothed_per_thousand": 0.226,
- "tests_per_case": 1.62,
- "positive_rate": 0.617,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-07-21",
- "total_cases": 60991.0,
- "new_cases": 1409.0,
- "new_cases_smoothed": 1677.286,
- "total_deaths": 2218.0,
- "new_deaths": 67.0,
- "new_deaths_smoothed": 50.286,
- "total_cases_per_million": 5224.951,
- "new_cases_per_million": 120.706,
- "new_cases_smoothed_per_million": 143.689,
- "total_deaths_per_million": 190.011,
- "new_deaths_per_million": 5.74,
- "new_deaths_smoothed_per_million": 4.308,
- "new_tests": 2548.0,
- "total_tests": 124335.0,
- "total_tests_per_thousand": 10.651,
- "new_tests_per_thousand": 0.218,
- "new_tests_smoothed": 2651.0,
- "new_tests_smoothed_per_thousand": 0.227,
- "tests_per_case": 1.581,
- "positive_rate": 0.633,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-07-22",
- "total_cases": 62357.0,
- "new_cases": 1366.0,
- "new_cases_smoothed": 1641.429,
- "total_deaths": 2273.0,
- "new_deaths": 55.0,
- "new_deaths_smoothed": 53.571,
- "total_cases_per_million": 5341.973,
- "new_cases_per_million": 117.022,
- "new_cases_smoothed_per_million": 140.617,
- "total_deaths_per_million": 194.722,
- "new_deaths_per_million": 4.712,
- "new_deaths_smoothed_per_million": 4.589,
- "new_tests": 2832.0,
- "total_tests": 127167.0,
- "total_tests_per_thousand": 10.894,
- "new_tests_per_thousand": 0.243,
- "new_tests_smoothed": 2704.0,
- "new_tests_smoothed_per_thousand": 0.232,
- "tests_per_case": 1.6469999999999998,
- "positive_rate": 0.607,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-07-23",
- "total_cases": 64135.0,
- "new_cases": 1778.0,
- "new_cases_smoothed": 1702.429,
- "total_deaths": 2328.0,
- "new_deaths": 55.0,
- "new_deaths_smoothed": 55.143,
- "total_cases_per_million": 5494.289,
- "new_cases_per_million": 152.317,
- "new_cases_smoothed_per_million": 145.843,
- "total_deaths_per_million": 199.434,
- "new_deaths_per_million": 4.712,
- "new_deaths_smoothed_per_million": 4.724,
- "new_tests": 2240.0,
- "total_tests": 129407.0,
- "total_tests_per_thousand": 11.086,
- "new_tests_per_thousand": 0.192,
- "new_tests_smoothed": 2614.0,
- "new_tests_smoothed_per_thousand": 0.224,
- "tests_per_case": 1.535,
- "positive_rate": 0.6509999999999999,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-07-24",
- "total_cases": 65252.0,
- "new_cases": 1117.0,
- "new_cases_smoothed": 1585.143,
- "total_deaths": 2407.0,
- "new_deaths": 79.0,
- "new_deaths_smoothed": 60.429,
- "total_cases_per_million": 5589.98,
- "new_cases_per_million": 95.691,
- "new_cases_smoothed_per_million": 135.795,
- "total_deaths_per_million": 206.202,
- "new_deaths_per_million": 6.768,
- "new_deaths_smoothed_per_million": 5.177,
- "new_tests": 1935.0,
- "total_tests": 131342.0,
- "total_tests_per_thousand": 11.252,
- "new_tests_per_thousand": 0.166,
- "new_tests_smoothed": 2451.0,
- "new_tests_smoothed_per_thousand": 0.21,
- "tests_per_case": 1.546,
- "positive_rate": 0.647,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-07-25",
- "total_cases": 66456.0,
- "new_cases": 1204.0,
- "new_cases_smoothed": 1479.143,
- "total_deaths": 2473.0,
- "new_deaths": 66.0,
- "new_deaths_smoothed": 60.571,
- "total_cases_per_million": 5693.124,
- "new_cases_per_million": 103.144,
- "new_cases_smoothed_per_million": 126.715,
- "total_deaths_per_million": 211.856,
- "new_deaths_per_million": 5.654,
- "new_deaths_smoothed_per_million": 5.189,
- "new_tests": 3427.0,
- "total_tests": 134769.0,
- "total_tests_per_thousand": 11.545,
- "new_tests_per_thousand": 0.294,
- "new_tests_smoothed": 2515.0,
- "new_tests_smoothed_per_thousand": 0.215,
- "tests_per_case": 1.7,
- "positive_rate": 0.588,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-07-26",
- "total_cases": 68281.0,
- "new_cases": 1825.0,
- "new_cases_smoothed": 1449.0,
- "total_deaths": 2535.0,
- "new_deaths": 62.0,
- "new_deaths_smoothed": 61.286,
- "total_cases_per_million": 5849.467,
- "new_cases_per_million": 156.343,
- "new_cases_smoothed_per_million": 124.132,
- "total_deaths_per_million": 217.167,
- "new_deaths_per_million": 5.311,
- "new_deaths_smoothed_per_million": 5.25,
- "new_tests": 2156.0,
- "total_tests": 136925.0,
- "total_tests_per_thousand": 11.73,
- "new_tests_per_thousand": 0.185,
- "new_tests_smoothed": 2452.0,
- "new_tests_smoothed_per_thousand": 0.21,
- "tests_per_case": 1.692,
- "positive_rate": 0.591,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-07-27",
- "total_cases": 69429.0,
- "new_cases": 1148.0,
- "new_cases_smoothed": 1406.714,
- "total_deaths": 2583.0,
- "new_deaths": 48.0,
- "new_deaths_smoothed": 61.714,
- "total_cases_per_million": 5947.814,
- "new_cases_per_million": 98.346,
- "new_cases_smoothed_per_million": 120.51,
- "total_deaths_per_million": 221.279,
- "new_deaths_per_million": 4.112,
- "new_deaths_smoothed_per_million": 5.287,
- "new_tests": 2941.0,
- "total_tests": 139866.0,
- "total_tests_per_thousand": 11.982,
- "new_tests_per_thousand": 0.252,
- "new_tests_smoothed": 2583.0,
- "new_tests_smoothed_per_thousand": 0.221,
- "tests_per_case": 1.8359999999999999,
- "positive_rate": 0.545,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-07-28",
- "total_cases": 71811.0,
- "new_cases": 2382.0,
- "new_cases_smoothed": 1545.714,
- "total_deaths": 2647.0,
- "new_deaths": 64.0,
- "new_deaths_smoothed": 61.286,
- "total_cases_per_million": 6151.874,
- "new_cases_per_million": 204.06,
- "new_cases_smoothed_per_million": 132.418,
- "total_deaths_per_million": 226.762,
- "new_deaths_per_million": 5.483,
- "new_deaths_smoothed_per_million": 5.25,
- "new_tests": 2252.0,
- "total_tests": 142118.0,
- "total_tests_per_thousand": 12.175,
- "new_tests_per_thousand": 0.193,
- "new_tests_smoothed": 2540.0,
- "new_tests_smoothed_per_thousand": 0.218,
- "tests_per_case": 1.643,
- "positive_rate": 0.609,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-07-29",
- "total_cases": 72327.0,
- "new_cases": 516.0,
- "new_cases_smoothed": 1424.286,
- "total_deaths": 2720.0,
- "new_deaths": 73.0,
- "new_deaths_smoothed": 63.857,
- "total_cases_per_million": 6196.078,
- "new_cases_per_million": 44.204,
- "new_cases_smoothed_per_million": 122.015,
- "total_deaths_per_million": 233.016,
- "new_deaths_per_million": 6.254,
- "new_deaths_smoothed_per_million": 5.47,
- "new_tests": 2035.0,
- "total_tests": 144153.0,
- "total_tests_per_thousand": 12.349,
- "new_tests_per_thousand": 0.174,
- "new_tests_smoothed": 2427.0,
- "new_tests_smoothed_per_thousand": 0.208,
- "tests_per_case": 1.704,
- "positive_rate": 0.5870000000000001,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-07-30",
- "total_cases": 73534.0,
- "new_cases": 1207.0,
- "new_cases_smoothed": 1342.714,
- "total_deaths": 2808.0,
- "new_deaths": 88.0,
- "new_deaths_smoothed": 68.571,
- "total_cases_per_million": 6299.479,
- "new_cases_per_million": 103.401,
- "new_cases_smoothed_per_million": 115.027,
- "total_deaths_per_million": 240.555,
- "new_deaths_per_million": 7.539,
- "new_deaths_smoothed_per_million": 5.874,
- "new_tests": 3305.0,
- "total_tests": 147458.0,
- "total_tests_per_thousand": 12.632,
- "new_tests_per_thousand": 0.283,
- "new_tests_smoothed": 2579.0,
- "new_tests_smoothed_per_thousand": 0.221,
- "tests_per_case": 1.921,
- "positive_rate": 0.521,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-07-31",
- "total_cases": 75234.0,
- "new_cases": 1700.0,
- "new_cases_smoothed": 1426.0,
- "total_deaths": 2894.0,
- "new_deaths": 86.0,
- "new_deaths_smoothed": 69.571,
- "total_cases_per_million": 6445.114,
- "new_cases_per_million": 145.635,
- "new_cases_smoothed_per_million": 122.162,
- "total_deaths_per_million": 247.922,
- "new_deaths_per_million": 7.367,
- "new_deaths_smoothed_per_million": 5.96,
- "new_tests": 3012.0,
- "total_tests": 150470.0,
- "total_tests_per_thousand": 12.89,
- "new_tests_per_thousand": 0.258,
- "new_tests_smoothed": 2733.0,
- "new_tests_smoothed_per_thousand": 0.234,
- "tests_per_case": 1.9169999999999998,
- "positive_rate": 0.522,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-08-01",
- "total_cases": 76789.0,
- "new_cases": 1555.0,
- "new_cases_smoothed": 1476.143,
- "total_deaths": 2977.0,
- "new_deaths": 83.0,
- "new_deaths_smoothed": 72.0,
- "total_cases_per_million": 6578.327,
- "new_cases_per_million": 133.213,
- "new_cases_smoothed_per_million": 126.458,
- "total_deaths_per_million": 255.032,
- "new_deaths_per_million": 7.11,
- "new_deaths_smoothed_per_million": 6.168,
- "new_tests": 3484.0,
- "total_tests": 153954.0,
- "total_tests_per_thousand": 13.189,
- "new_tests_per_thousand": 0.298,
- "new_tests_smoothed": 2741.0,
- "new_tests_smoothed_per_thousand": 0.235,
- "tests_per_case": 1.857,
- "positive_rate": 0.539,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-08-02",
- "total_cases": 78793.0,
- "new_cases": 2004.0,
- "new_cases_smoothed": 1501.714,
- "total_deaths": 3064.0,
- "new_deaths": 87.0,
- "new_deaths_smoothed": 75.571,
- "total_cases_per_million": 6750.005,
- "new_cases_per_million": 171.678,
- "new_cases_smoothed_per_million": 128.648,
- "total_deaths_per_million": 262.485,
- "new_deaths_per_million": 7.453,
- "new_deaths_smoothed_per_million": 6.474,
- "new_tests": 2970.0,
- "total_tests": 156924.0,
- "total_tests_per_thousand": 13.443,
- "new_tests_per_thousand": 0.254,
- "new_tests_smoothed": 2857.0,
- "new_tests_smoothed_per_thousand": 0.245,
- "tests_per_case": 1.902,
- "positive_rate": 0.526,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-08-03",
- "total_cases": 80153.0,
- "new_cases": 1360.0,
- "new_cases_smoothed": 1532.0,
- "total_deaths": 3153.0,
- "new_deaths": 89.0,
- "new_deaths_smoothed": 81.429,
- "total_cases_per_million": 6866.513,
- "new_cases_per_million": 116.508,
- "new_cases_smoothed_per_million": 131.243,
- "total_deaths_per_million": 270.11,
- "new_deaths_per_million": 7.624,
- "new_deaths_smoothed_per_million": 6.976,
- "new_tests": 2903.0,
- "total_tests": 159827.0,
- "total_tests_per_thousand": 13.692,
- "new_tests_per_thousand": 0.249,
- "new_tests_smoothed": 2852.0,
- "new_tests_smoothed_per_thousand": 0.244,
- "tests_per_case": 1.8619999999999999,
- "positive_rate": 0.537,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-08-04",
- "total_cases": 81846.0,
- "new_cases": 1693.0,
- "new_cases_smoothed": 1433.571,
- "total_deaths": 3228.0,
- "new_deaths": 75.0,
- "new_deaths_smoothed": 83.0,
- "total_cases_per_million": 7011.548,
- "new_cases_per_million": 145.035,
- "new_cases_smoothed_per_million": 122.811,
- "total_deaths_per_million": 276.535,
- "new_deaths_per_million": 6.425,
- "new_deaths_smoothed_per_million": 7.11,
- "new_tests": 2834.0,
- "total_tests": 162661.0,
- "total_tests_per_thousand": 13.935,
- "new_tests_per_thousand": 0.243,
- "new_tests_smoothed": 2935.0,
- "new_tests_smoothed_per_thousand": 0.251,
- "tests_per_case": 2.0469999999999997,
- "positive_rate": 0.488,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-08-05",
- "total_cases": 83361.0,
- "new_cases": 1515.0,
- "new_cases_smoothed": 1576.286,
- "total_deaths": 3320.0,
- "new_deaths": 92.0,
- "new_deaths_smoothed": 85.714,
- "total_cases_per_million": 7141.334,
- "new_cases_per_million": 129.786,
- "new_cases_smoothed_per_million": 135.037,
- "total_deaths_per_million": 284.416,
- "new_deaths_per_million": 7.881,
- "new_deaths_smoothed_per_million": 7.343,
- "new_tests": 3443.0,
- "total_tests": 166104.0,
- "total_tests_per_thousand": 14.23,
- "new_tests_per_thousand": 0.295,
- "new_tests_smoothed": 3136.0,
- "new_tests_smoothed_per_thousand": 0.269,
- "tests_per_case": 1.989,
- "positive_rate": 0.503,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-08-06",
- "total_cases": 85141.0,
- "new_cases": 1780.0,
- "new_cases_smoothed": 1658.143,
- "total_deaths": 3385.0,
- "new_deaths": 65.0,
- "new_deaths_smoothed": 82.429,
- "total_cases_per_million": 7293.822,
- "new_cases_per_million": 152.488,
- "new_cases_smoothed_per_million": 142.049,
- "total_deaths_per_million": 289.985,
- "new_deaths_per_million": 5.568,
- "new_deaths_smoothed_per_million": 7.061,
- "new_tests": 2459.0,
- "total_tests": 168563.0,
- "total_tests_per_thousand": 14.44,
- "new_tests_per_thousand": 0.211,
- "new_tests_smoothed": 3015.0,
- "new_tests_smoothed_per_thousand": 0.258,
- "tests_per_case": 1.818,
- "positive_rate": 0.55,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-08-07",
- "total_cases": 86423.0,
- "new_cases": 1282.0,
- "new_cases_smoothed": 1598.429,
- "total_deaths": 3465.0,
- "new_deaths": 80.0,
- "new_deaths_smoothed": 81.571,
- "total_cases_per_million": 7403.648,
- "new_cases_per_million": 109.826,
- "new_cases_smoothed_per_million": 136.933,
- "total_deaths_per_million": 296.838,
- "new_deaths_per_million": 6.853,
- "new_deaths_smoothed_per_million": 6.988,
- "new_tests": 3140.0,
- "total_tests": 171703.0,
- "total_tests_per_thousand": 14.709,
- "new_tests_per_thousand": 0.269,
- "new_tests_smoothed": 3033.0,
- "new_tests_smoothed_per_thousand": 0.26,
- "tests_per_case": 1.8969999999999998,
- "positive_rate": 0.527,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-08-08",
- "total_cases": 87891.0,
- "new_cases": 1468.0,
- "new_cases_smoothed": 1586.0,
- "total_deaths": 3524.0,
- "new_deaths": 59.0,
- "new_deaths_smoothed": 78.143,
- "total_cases_per_million": 7529.408,
- "new_cases_per_million": 125.76,
- "new_cases_smoothed_per_million": 135.869,
- "total_deaths_per_million": 301.893,
- "new_deaths_per_million": 5.054,
- "new_deaths_smoothed_per_million": 6.694,
- "new_tests": 2438.0,
- "total_tests": 174141.0,
- "total_tests_per_thousand": 14.918,
- "new_tests_per_thousand": 0.209,
- "new_tests_smoothed": 2884.0,
- "new_tests_smoothed_per_thousand": 0.247,
- "tests_per_case": 1.818,
- "positive_rate": 0.55,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-08-09",
- "total_cases": 89055.0,
- "new_cases": 1164.0,
- "new_cases_smoothed": 1466.0,
- "total_deaths": 3587.0,
- "new_deaths": 63.0,
- "new_deaths_smoothed": 74.714,
- "total_cases_per_million": 7629.125,
- "new_cases_per_million": 99.717,
- "new_cases_smoothed_per_million": 125.589,
- "total_deaths_per_million": 307.29,
- "new_deaths_per_million": 5.397,
- "new_deaths_smoothed_per_million": 6.401,
- "new_tests": 2167.0,
- "total_tests": 176308.0,
- "total_tests_per_thousand": 15.104,
- "new_tests_per_thousand": 0.186,
- "new_tests_smoothed": 2769.0,
- "new_tests_smoothed_per_thousand": 0.237,
- "tests_per_case": 1.889,
- "positive_rate": 0.529,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-08-10",
- "total_cases": 89999.0,
- "new_cases": 944.0,
- "new_cases_smoothed": 1406.571,
- "total_deaths": 3640.0,
- "new_deaths": 53.0,
- "new_deaths_smoothed": 69.571,
- "total_cases_per_million": 7709.995,
- "new_cases_per_million": 80.87,
- "new_cases_smoothed_per_million": 120.498,
- "total_deaths_per_million": 311.83,
- "new_deaths_per_million": 4.54,
- "new_deaths_smoothed_per_million": 5.96,
- "new_tests": 3245.0,
- "total_tests": 179553.0,
- "total_tests_per_thousand": 15.382,
- "new_tests_per_thousand": 0.278,
- "new_tests_smoothed": 2818.0,
- "new_tests_smoothed_per_thousand": 0.241,
- "tests_per_case": 2.003,
- "positive_rate": 0.499,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-08-11",
- "total_cases": 91635.0,
- "new_cases": 1636.0,
- "new_cases_smoothed": 1398.429,
- "total_deaths": 3712.0,
- "new_deaths": 72.0,
- "new_deaths_smoothed": 69.143,
- "total_cases_per_million": 7850.148,
- "new_cases_per_million": 140.152,
- "new_cases_smoothed_per_million": 119.8,
- "total_deaths_per_million": 317.998,
- "new_deaths_per_million": 6.168,
- "new_deaths_smoothed_per_million": 5.923,
- "new_tests": 3759.0,
- "total_tests": 183312.0,
- "total_tests_per_thousand": 15.704,
- "new_tests_per_thousand": 0.322,
- "new_tests_smoothed": 2950.0,
- "new_tests_smoothed_per_thousand": 0.253,
- "tests_per_case": 2.11,
- "positive_rate": 0.474,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-08-12",
- "total_cases": 93328.0,
- "new_cases": 1693.0,
- "new_cases_smoothed": 1423.857,
- "total_deaths": 3761.0,
- "new_deaths": 49.0,
- "new_deaths_smoothed": 63.0,
- "total_cases_per_million": 7995.183,
- "new_cases_per_million": 145.035,
- "new_cases_smoothed_per_million": 121.978,
- "total_deaths_per_million": 322.196,
- "new_deaths_per_million": 4.198,
- "new_deaths_smoothed_per_million": 5.397,
- "new_tests": 3652.0,
- "total_tests": 186964.0,
- "total_tests_per_thousand": 16.017,
- "new_tests_per_thousand": 0.313,
- "new_tests_smoothed": 2980.0,
- "new_tests_smoothed_per_thousand": 0.255,
- "tests_per_case": 2.093,
- "positive_rate": 0.478,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-08-13",
- "total_cases": 95071.0,
- "new_cases": 1743.0,
- "new_cases_smoothed": 1418.571,
- "total_deaths": 3827.0,
- "new_deaths": 66.0,
- "new_deaths_smoothed": 63.143,
- "total_cases_per_million": 8144.501,
- "new_cases_per_million": 149.319,
- "new_cases_smoothed_per_million": 121.526,
- "total_deaths_per_million": 327.85,
- "new_deaths_per_million": 5.654,
- "new_deaths_smoothed_per_million": 5.409,
- "new_tests": 2470.0,
- "total_tests": 189434.0,
- "total_tests_per_thousand": 16.228,
- "new_tests_per_thousand": 0.212,
- "new_tests_smoothed": 2982.0,
- "new_tests_smoothed_per_thousand": 0.255,
- "tests_per_case": 2.102,
- "positive_rate": 0.47600000000000003,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-08-14",
- "total_cases": 95071.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1235.429,
- "total_deaths": 3827.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 51.714,
- "total_cases_per_million": 8144.501,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 105.836,
- "total_deaths_per_million": 327.85,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 4.43,
- "new_tests": 2991.0,
- "total_tests": 192425.0,
- "total_tests_per_thousand": 16.485,
- "new_tests_per_thousand": 0.256,
- "new_tests_smoothed": 2960.0,
- "new_tests_smoothed_per_thousand": 0.254,
- "tests_per_case": 2.396,
- "positive_rate": 0.41700000000000004,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-08-15",
- "total_cases": 96459.0,
- "new_cases": 1388.0,
- "new_cases_smoothed": 1224.0,
- "total_deaths": 3884.0,
- "new_deaths": 57.0,
- "new_deaths_smoothed": 51.429,
- "total_cases_per_million": 8263.408,
- "new_cases_per_million": 118.907,
- "new_cases_smoothed_per_million": 104.857,
- "total_deaths_per_million": 332.733,
- "new_deaths_per_million": 4.883,
- "new_deaths_smoothed_per_million": 4.406,
- "new_tests": 3552.0,
- "total_tests": 195977.0,
- "total_tests_per_thousand": 16.789,
- "new_tests_per_thousand": 0.304,
- "new_tests_smoothed": 3119.0,
- "new_tests_smoothed_per_thousand": 0.267,
- "tests_per_case": 2.548,
- "positive_rate": 0.392,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-08-16",
- "total_cases": 99146.0,
- "new_cases": 2687.0,
- "new_cases_smoothed": 1441.571,
- "total_deaths": 4003.0,
- "new_deaths": 119.0,
- "new_deaths_smoothed": 59.429,
- "total_cases_per_million": 8493.597,
- "new_cases_per_million": 230.189,
- "new_cases_smoothed_per_million": 123.496,
- "total_deaths_per_million": 342.927,
- "new_deaths_per_million": 10.194,
- "new_deaths_smoothed_per_million": 5.091,
- "new_tests": 2721.0,
- "total_tests": 198698.0,
- "total_tests_per_thousand": 17.022,
- "new_tests_per_thousand": 0.233,
- "new_tests_smoothed": 3199.0,
- "new_tests_smoothed_per_thousand": 0.274,
- "tests_per_case": 2.219,
- "positive_rate": 0.451,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-08-17",
- "total_cases": 100344.0,
- "new_cases": 1198.0,
- "new_cases_smoothed": 1477.857,
- "total_deaths": 4048.0,
- "new_deaths": 45.0,
- "new_deaths_smoothed": 58.286,
- "total_cases_per_million": 8596.226,
- "new_cases_per_million": 102.63,
- "new_cases_smoothed_per_million": 126.604,
- "total_deaths_per_million": 346.782,
- "new_deaths_per_million": 3.855,
- "new_deaths_smoothed_per_million": 4.993,
- "new_tests": 1513.0,
- "total_tests": 200211.0,
- "total_tests_per_thousand": 17.152,
- "new_tests_per_thousand": 0.13,
- "new_tests_smoothed": 2951.0,
- "new_tests_smoothed_per_thousand": 0.253,
- "tests_per_case": 1.9969999999999999,
- "positive_rate": 0.501,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-08-18",
- "total_cases": 101223.0,
- "new_cases": 879.0,
- "new_cases_smoothed": 1369.714,
- "total_deaths": 4123.0,
- "new_deaths": 75.0,
- "new_deaths_smoothed": 58.714,
- "total_cases_per_million": 8671.528,
- "new_cases_per_million": 75.302,
- "new_cases_smoothed_per_million": 117.34,
- "total_deaths_per_million": 353.207,
- "new_deaths_per_million": 6.425,
- "new_deaths_smoothed_per_million": 5.03,
- "new_tests": 4607.0,
- "total_tests": 204818.0,
- "total_tests_per_thousand": 17.546,
- "new_tests_per_thousand": 0.395,
- "new_tests_smoothed": 3072.0,
- "new_tests_smoothed_per_thousand": 0.263,
- "tests_per_case": 2.2430000000000003,
- "positive_rate": 0.446,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-08-19",
- "total_cases": 103019.0,
- "new_cases": 1796.0,
- "new_cases_smoothed": 1384.429,
- "total_deaths": 4172.0,
- "new_deaths": 49.0,
- "new_deaths_smoothed": 58.714,
- "total_cases_per_million": 8825.387,
- "new_cases_per_million": 153.859,
- "new_cases_smoothed_per_million": 118.601,
- "total_deaths_per_million": 357.405,
- "new_deaths_per_million": 4.198,
- "new_deaths_smoothed_per_million": 5.03,
- "new_tests": 3820.0,
- "total_tests": 208638.0,
- "total_tests_per_thousand": 17.874,
- "new_tests_per_thousand": 0.327,
- "new_tests_smoothed": 3096.0,
- "new_tests_smoothed_per_thousand": 0.265,
- "tests_per_case": 2.2359999999999998,
- "positive_rate": 0.447,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-08-20",
- "total_cases": 105050.0,
- "new_cases": 2031.0,
- "new_cases_smoothed": 1425.571,
- "total_deaths": 4233.0,
- "new_deaths": 61.0,
- "new_deaths_smoothed": 58.0,
- "total_cases_per_million": 8999.378,
- "new_cases_per_million": 173.991,
- "new_cases_smoothed_per_million": 122.125,
- "total_deaths_per_million": 362.631,
- "new_deaths_per_million": 5.226,
- "new_deaths_smoothed_per_million": 4.969,
- "new_tests": 2680.0,
- "total_tests": 211318.0,
- "total_tests_per_thousand": 18.103,
- "new_tests_per_thousand": 0.23,
- "new_tests_smoothed": 3126.0,
- "new_tests_smoothed_per_thousand": 0.268,
- "tests_per_case": 2.193,
- "positive_rate": 0.456,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-08-21",
- "total_cases": 106065.0,
- "new_cases": 1015.0,
- "new_cases_smoothed": 1570.571,
- "total_deaths": 4305.0,
- "new_deaths": 72.0,
- "new_deaths_smoothed": 68.286,
- "total_cases_per_million": 9086.331,
- "new_cases_per_million": 86.953,
- "new_cases_smoothed_per_million": 134.547,
- "total_deaths_per_million": 368.799,
- "new_deaths_per_million": 6.168,
- "new_deaths_smoothed_per_million": 5.85,
- "new_tests": 2595.0,
- "total_tests": 213913.0,
- "total_tests_per_thousand": 18.325,
- "new_tests_per_thousand": 0.222,
- "new_tests_smoothed": 3070.0,
- "new_tests_smoothed_per_thousand": 0.263,
- "tests_per_case": 1.955,
- "positive_rate": 0.512,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-08-22",
- "total_cases": 107435.0,
- "new_cases": 1370.0,
- "new_cases_smoothed": 1568.0,
- "total_deaths": 4366.0,
- "new_deaths": 61.0,
- "new_deaths_smoothed": 68.857,
- "total_cases_per_million": 9203.695,
- "new_cases_per_million": 117.365,
- "new_cases_smoothed_per_million": 134.327,
- "total_deaths_per_million": 374.025,
- "new_deaths_per_million": 5.226,
- "new_deaths_smoothed_per_million": 5.899,
- "new_tests": 2566.0,
- "total_tests": 216479.0,
- "total_tests_per_thousand": 18.545,
- "new_tests_per_thousand": 0.22,
- "new_tests_smoothed": 2929.0,
- "new_tests_smoothed_per_thousand": 0.251,
- "tests_per_case": 1.868,
- "positive_rate": 0.535,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-08-23",
- "total_cases": 108427.0,
- "new_cases": 992.0,
- "new_cases_smoothed": 1325.857,
- "total_deaths": 4442.0,
- "new_deaths": 76.0,
- "new_deaths_smoothed": 62.714,
- "total_cases_per_million": 9288.677,
- "new_cases_per_million": 84.982,
- "new_cases_smoothed_per_million": 113.583,
- "total_deaths_per_million": 380.535,
- "new_deaths_per_million": 6.511,
- "new_deaths_smoothed_per_million": 5.373,
- "new_tests": 2385.0,
- "total_tests": 218864.0,
- "total_tests_per_thousand": 18.75,
- "new_tests_per_thousand": 0.204,
- "new_tests_smoothed": 2881.0,
- "new_tests_smoothed_per_thousand": 0.247,
- "tests_per_case": 2.173,
- "positive_rate": 0.46,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-08-24",
- "total_cases": 109149.0,
- "new_cases": 722.0,
- "new_cases_smoothed": 1257.857,
- "total_deaths": 4509.0,
- "new_deaths": 67.0,
- "new_deaths_smoothed": 65.857,
- "total_cases_per_million": 9350.529,
- "new_cases_per_million": 61.852,
- "new_cases_smoothed_per_million": 107.758,
- "total_deaths_per_million": 386.275,
- "new_deaths_per_million": 5.74,
- "new_deaths_smoothed_per_million": 5.642,
- "new_tests": 2222.0,
- "total_tests": 221086.0,
- "total_tests_per_thousand": 18.94,
- "new_tests_per_thousand": 0.19,
- "new_tests_smoothed": 2982.0,
- "new_tests_smoothed_per_thousand": 0.255,
- "tests_per_case": 2.371,
- "positive_rate": 0.42200000000000004,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-08-25",
- "total_cases": 110148.0,
- "new_cases": 999.0,
- "new_cases_smoothed": 1275.0,
- "total_deaths": 4578.0,
- "new_deaths": 69.0,
- "new_deaths_smoothed": 65.0,
- "total_cases_per_million": 9436.111,
- "new_cases_per_million": 85.582,
- "new_cases_smoothed_per_million": 109.226,
- "total_deaths_per_million": 392.186,
- "new_deaths_per_million": 5.911,
- "new_deaths_smoothed_per_million": 5.568,
- "new_tests": 2114.0,
- "total_tests": 223200.0,
- "total_tests_per_thousand": 19.121,
- "new_tests_per_thousand": 0.181,
- "new_tests_smoothed": 2626.0,
- "new_tests_smoothed_per_thousand": 0.225,
- "tests_per_case": 2.06,
- "positive_rate": 0.486,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-08-26",
- "total_cases": 110999.0,
- "new_cases": 851.0,
- "new_cases_smoothed": 1140.0,
- "total_deaths": 4664.0,
- "new_deaths": 86.0,
- "new_deaths_smoothed": 70.286,
- "total_cases_per_million": 9509.014,
- "new_cases_per_million": 72.903,
- "new_cases_smoothed_per_million": 97.661,
- "total_deaths_per_million": 399.554,
- "new_deaths_per_million": 7.367,
- "new_deaths_smoothed_per_million": 6.021,
- "new_tests": 2274.0,
- "total_tests": 225474.0,
- "total_tests_per_thousand": 19.316,
- "new_tests_per_thousand": 0.195,
- "new_tests_smoothed": 2405.0,
- "new_tests_smoothed_per_thousand": 0.206,
- "tests_per_case": 2.11,
- "positive_rate": 0.474,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-08-27",
- "total_cases": 112094.0,
- "new_cases": 1095.0,
- "new_cases_smoothed": 1006.286,
- "total_deaths": 4726.0,
- "new_deaths": 62.0,
- "new_deaths_smoothed": 70.429,
- "total_cases_per_million": 9602.82,
- "new_cases_per_million": 93.806,
- "new_cases_smoothed_per_million": 86.206,
- "total_deaths_per_million": 404.865,
- "new_deaths_per_million": 5.311,
- "new_deaths_smoothed_per_million": 6.033,
- "new_tests": 3869.0,
- "total_tests": 229343.0,
- "total_tests_per_thousand": 19.647,
- "new_tests_per_thousand": 0.331,
- "new_tests_smoothed": 2575.0,
- "new_tests_smoothed_per_thousand": 0.221,
- "tests_per_case": 2.559,
- "positive_rate": 0.391,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-08-28",
- "total_cases": 113129.0,
- "new_cases": 1035.0,
- "new_cases_smoothed": 1009.143,
- "total_deaths": 4791.0,
- "new_deaths": 65.0,
- "new_deaths_smoothed": 69.429,
- "total_cases_per_million": 9691.486,
- "new_cases_per_million": 88.666,
- "new_cases_smoothed_per_million": 86.451,
- "total_deaths_per_million": 410.433,
- "new_deaths_per_million": 5.568,
- "new_deaths_smoothed_per_million": 5.948,
- "new_tests": 3632.0,
- "total_tests": 232975.0,
- "total_tests_per_thousand": 19.958,
- "new_tests_per_thousand": 0.311,
- "new_tests_smoothed": 2723.0,
- "new_tests_smoothed_per_thousand": 0.233,
- "tests_per_case": 2.698,
- "positive_rate": 0.371,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-08-29",
- "total_cases": 114409.0,
- "new_cases": 1280.0,
- "new_cases_smoothed": 996.286,
- "total_deaths": 4846.0,
- "new_deaths": 55.0,
- "new_deaths_smoothed": 68.571,
- "total_cases_per_million": 9801.141,
- "new_cases_per_million": 109.654,
- "new_cases_smoothed_per_million": 85.349,
- "total_deaths_per_million": 415.145,
- "new_deaths_per_million": 4.712,
- "new_deaths_smoothed_per_million": 5.874,
- "new_tests": 2615.0,
- "total_tests": 235590.0,
- "total_tests_per_thousand": 20.182,
- "new_tests_per_thousand": 0.224,
- "new_tests_smoothed": 2730.0,
- "new_tests_smoothed_per_thousand": 0.234,
- "tests_per_case": 2.74,
- "positive_rate": 0.365,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-08-30",
- "total_cases": 115354.0,
- "new_cases": 945.0,
- "new_cases_smoothed": 989.571,
- "total_deaths": 4938.0,
- "new_deaths": 92.0,
- "new_deaths_smoothed": 70.857,
- "total_cases_per_million": 9882.097,
- "new_cases_per_million": 80.956,
- "new_cases_smoothed_per_million": 84.774,
- "total_deaths_per_million": 423.026,
- "new_deaths_per_million": 7.881,
- "new_deaths_smoothed_per_million": 6.07,
- "new_tests_smoothed": 2630.0,
- "new_tests_smoothed_per_thousand": 0.225,
- "tests_per_case": 2.658,
- "positive_rate": 0.376,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-08-31",
- "total_cases": 115968.0,
- "new_cases": 614.0,
- "new_cases_smoothed": 974.143,
- "total_deaths": 4966.0,
- "new_deaths": 28.0,
- "new_deaths_smoothed": 65.286,
- "total_cases_per_million": 9934.696,
- "new_cases_per_million": 52.6,
- "new_cases_smoothed_per_million": 83.452,
- "total_deaths_per_million": 425.425,
- "new_deaths_per_million": 2.399,
- "new_deaths_smoothed_per_million": 5.593,
- "total_tests": 238965.0,
- "total_tests_per_thousand": 20.472,
- "new_tests_smoothed": 2554.0,
- "new_tests_smoothed_per_thousand": 0.219,
- "tests_per_case": 2.622,
- "positive_rate": 0.381,
- "tests_units": "tests performed",
- "stringency_index": 89.81
- },
- {
- "date": "2020-09-01",
- "total_cases": 116598.0,
- "new_cases": 630.0,
- "new_cases_smoothed": 921.429,
- "total_deaths": 5027.0,
- "new_deaths": 61.0,
- "new_deaths_smoothed": 64.143,
- "total_cases_per_million": 9988.667,
- "new_cases_per_million": 53.971,
- "new_cases_smoothed_per_million": 78.937,
- "total_deaths_per_million": 430.651,
- "new_deaths_per_million": 5.226,
- "new_deaths_smoothed_per_million": 5.495,
- "new_tests": 1693.0,
- "total_tests": 240658.0,
- "total_tests_per_thousand": 20.617,
- "new_tests_per_thousand": 0.145,
- "new_tests_smoothed": 2494.0,
- "new_tests_smoothed_per_thousand": 0.214,
- "tests_per_case": 2.707,
- "positive_rate": 0.369,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-09-02",
- "total_cases": 117267.0,
- "new_cases": 669.0,
- "new_cases_smoothed": 895.429,
- "total_deaths": 5101.0,
- "new_deaths": 74.0,
- "new_deaths_smoothed": 62.429,
- "total_cases_per_million": 10045.979,
- "new_cases_per_million": 57.312,
- "new_cases_smoothed_per_million": 76.709,
- "total_deaths_per_million": 436.99,
- "new_deaths_per_million": 6.339,
- "new_deaths_smoothed_per_million": 5.348,
- "new_tests": 2166.0,
- "total_tests": 242824.0,
- "total_tests_per_thousand": 20.802,
- "new_tests_per_thousand": 0.186,
- "new_tests_smoothed": 2479.0,
- "new_tests_smoothed_per_thousand": 0.212,
- "tests_per_case": 2.7689999999999997,
- "positive_rate": 0.361,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-09-03",
- "total_cases": 117928.0,
- "new_cases": 661.0,
- "new_cases_smoothed": 833.429,
- "total_deaths": 5203.0,
- "new_deaths": 102.0,
- "new_deaths_smoothed": 68.143,
- "total_cases_per_million": 10102.605,
- "new_cases_per_million": 56.626,
- "new_cases_smoothed_per_million": 71.398,
- "total_deaths_per_million": 445.728,
- "new_deaths_per_million": 8.738,
- "new_deaths_smoothed_per_million": 5.838,
- "new_tests": 2426.0,
- "total_tests": 245250.0,
- "total_tests_per_thousand": 21.01,
- "new_tests_per_thousand": 0.208,
- "new_tests_smoothed": 2272.0,
- "new_tests_smoothed_per_thousand": 0.195,
- "tests_per_case": 2.7260000000000004,
- "positive_rate": 0.36700000000000005,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-09-04",
- "total_cases": 117928.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 685.571,
- "total_deaths": 5203.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 58.857,
- "total_cases_per_million": 10102.605,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 58.731,
- "total_deaths_per_million": 445.728,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 5.042,
- "new_tests": 2286.0,
- "total_tests": 247536.0,
- "total_tests_per_thousand": 21.206,
- "new_tests_per_thousand": 0.196,
- "new_tests_smoothed": 2080.0,
- "new_tests_smoothed_per_thousand": 0.178,
- "tests_per_case": 3.034,
- "positive_rate": 0.33,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-09-05",
- "total_cases": 119580.0,
- "new_cases": 1652.0,
- "new_cases_smoothed": 738.714,
- "total_deaths": 5343.0,
- "new_deaths": 140.0,
- "new_deaths_smoothed": 71.0,
- "total_cases_per_million": 10244.128,
- "new_cases_per_million": 141.523,
- "new_cases_smoothed_per_million": 63.284,
- "total_deaths_per_million": 457.722,
- "new_deaths_per_million": 11.993,
- "new_deaths_smoothed_per_million": 6.082,
- "new_tests": 2770.0,
- "total_tests": 250306.0,
- "total_tests_per_thousand": 21.443,
- "new_tests_per_thousand": 0.237,
- "new_tests_smoothed": 2102.0,
- "new_tests_smoothed_per_thousand": 0.18,
- "tests_per_case": 2.845,
- "positive_rate": 0.35100000000000003,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-09-06",
- "total_cases": 120241.0,
- "new_cases": 661.0,
- "new_cases_smoothed": 698.143,
- "total_deaths": 5398.0,
- "new_deaths": 55.0,
- "new_deaths_smoothed": 65.714,
- "total_cases_per_million": 10300.754,
- "new_cases_per_million": 56.626,
- "new_cases_smoothed_per_million": 59.808,
- "total_deaths_per_million": 462.434,
- "new_deaths_per_million": 4.712,
- "new_deaths_smoothed_per_million": 5.63,
- "new_tests": 1625.0,
- "total_tests": 251931.0,
- "total_tests_per_thousand": 21.582,
- "new_tests_per_thousand": 0.139,
- "new_tests_smoothed": 2093.0,
- "new_tests_smoothed_per_thousand": 0.179,
- "tests_per_case": 2.998,
- "positive_rate": 0.33399999999999996,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-09-07",
- "total_cases": 120769.0,
- "new_cases": 528.0,
- "new_cases_smoothed": 685.857,
- "total_deaths": 7008.0,
- "new_deaths": 1610.0,
- "new_deaths_smoothed": 291.714,
- "total_cases_per_million": 10345.986,
- "new_cases_per_million": 45.232,
- "new_cases_smoothed_per_million": 58.756,
- "total_deaths_per_million": 600.358,
- "new_deaths_per_million": 137.925,
- "new_deaths_smoothed_per_million": 24.99,
- "new_tests": 2557.0,
- "total_tests": 254488.0,
- "total_tests_per_thousand": 21.801,
- "new_tests_per_thousand": 0.219,
- "new_tests_smoothed": 2218.0,
- "new_tests_smoothed_per_thousand": 0.19,
- "tests_per_case": 3.234,
- "positive_rate": 0.309,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-09-08",
- "total_cases": 121604.0,
- "new_cases": 835.0,
- "new_cases_smoothed": 715.143,
- "total_deaths": 7054.0,
- "new_deaths": 46.0,
- "new_deaths_smoothed": 289.571,
- "total_cases_per_million": 10417.519,
- "new_cases_per_million": 71.532,
- "new_cases_smoothed_per_million": 61.265,
- "total_deaths_per_million": 604.299,
- "new_deaths_per_million": 3.941,
- "new_deaths_smoothed_per_million": 24.807,
- "new_tests": 2737.0,
- "total_tests": 257225.0,
- "total_tests_per_thousand": 22.036,
- "new_tests_per_thousand": 0.234,
- "new_tests_smoothed": 2367.0,
- "new_tests_smoothed_per_thousand": 0.203,
- "tests_per_case": 3.31,
- "positive_rate": 0.302,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-09-09",
- "total_cases": 122308.0,
- "new_cases": 704.0,
- "new_cases_smoothed": 720.143,
- "total_deaths": 7097.0,
- "new_deaths": 43.0,
- "new_deaths_smoothed": 285.143,
- "total_cases_per_million": 10477.829,
- "new_cases_per_million": 60.31,
- "new_cases_smoothed_per_million": 61.693,
- "total_deaths_per_million": 607.983,
- "new_deaths_per_million": 3.684,
- "new_deaths_smoothed_per_million": 24.427,
- "new_tests": 2691.0,
- "total_tests": 259916.0,
- "total_tests_per_thousand": 22.266,
- "new_tests_per_thousand": 0.231,
- "new_tests_smoothed": 2442.0,
- "new_tests_smoothed_per_thousand": 0.209,
- "tests_per_case": 3.391,
- "positive_rate": 0.295,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-09-10",
- "total_cases": 123345.0,
- "new_cases": 1037.0,
- "new_cases_smoothed": 773.857,
- "total_deaths": 7146.0,
- "new_deaths": 49.0,
- "new_deaths_smoothed": 277.571,
- "total_cases_per_million": 10566.666,
- "new_cases_per_million": 88.837,
- "new_cases_smoothed_per_million": 66.294,
- "total_deaths_per_million": 612.18,
- "new_deaths_per_million": 4.198,
- "new_deaths_smoothed_per_million": 23.779,
- "new_tests": 3985.0,
- "total_tests": 263901.0,
- "total_tests_per_thousand": 22.608,
- "new_tests_per_thousand": 0.341,
- "new_tests_smoothed": 2664.0,
- "new_tests_smoothed_per_thousand": 0.228,
- "tests_per_case": 3.4419999999999997,
- "positive_rate": 0.29,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-09-11",
- "total_cases": 124205.0,
- "new_cases": 860.0,
- "new_cases_smoothed": 896.714,
- "total_deaths": 7193.0,
- "new_deaths": 47.0,
- "new_deaths_smoothed": 284.286,
- "total_cases_per_million": 10640.34,
- "new_cases_per_million": 73.674,
- "new_cases_smoothed_per_million": 76.819,
- "total_deaths_per_million": 616.207,
- "new_deaths_per_million": 4.026,
- "new_deaths_smoothed_per_million": 24.354,
- "new_tests": 2637.0,
- "total_tests": 266538.0,
- "total_tests_per_thousand": 22.834,
- "new_tests_per_thousand": 0.226,
- "new_tests_smoothed": 2715.0,
- "new_tests_smoothed_per_thousand": 0.233,
- "tests_per_case": 3.028,
- "positive_rate": 0.33,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-09-12",
- "total_cases": 125172.0,
- "new_cases": 967.0,
- "new_cases_smoothed": 798.857,
- "total_deaths": 7250.0,
- "new_deaths": 57.0,
- "new_deaths_smoothed": 272.429,
- "total_cases_per_million": 10723.181,
- "new_cases_per_million": 82.841,
- "new_cases_smoothed_per_million": 68.436,
- "total_deaths_per_million": 621.09,
- "new_deaths_per_million": 4.883,
- "new_deaths_smoothed_per_million": 23.338,
- "new_tests": 3090.0,
- "total_tests": 269628.0,
- "total_tests_per_thousand": 23.098,
- "new_tests_per_thousand": 0.265,
- "new_tests_smoothed": 2760.0,
- "new_tests_smoothed_per_thousand": 0.236,
- "tests_per_case": 3.455,
- "positive_rate": 0.289,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-09-13",
- "total_cases": 125982.0,
- "new_cases": 810.0,
- "new_cases_smoothed": 820.143,
- "total_deaths": 7297.0,
- "new_deaths": 47.0,
- "new_deaths_smoothed": 271.286,
- "total_cases_per_million": 10792.571,
- "new_cases_per_million": 69.391,
- "new_cases_smoothed_per_million": 70.26,
- "total_deaths_per_million": 625.116,
- "new_deaths_per_million": 4.026,
- "new_deaths_smoothed_per_million": 23.24,
- "new_tests": 1895.0,
- "total_tests": 271523.0,
- "total_tests_per_thousand": 23.261,
- "new_tests_per_thousand": 0.162,
- "new_tests_smoothed": 2799.0,
- "new_tests_smoothed_per_thousand": 0.24,
- "tests_per_case": 3.4130000000000003,
- "positive_rate": 0.293,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-09-14",
- "total_cases": 126791.0,
- "new_cases": 809.0,
- "new_cases_smoothed": 860.286,
- "total_deaths": 7344.0,
- "new_deaths": 47.0,
- "new_deaths_smoothed": 48.0,
- "total_cases_per_million": 10861.877,
- "new_cases_per_million": 69.305,
- "new_cases_smoothed_per_million": 73.699,
- "total_deaths_per_million": 629.143,
- "new_deaths_per_million": 4.026,
- "new_deaths_smoothed_per_million": 4.112,
- "new_tests": 1513.0,
- "total_tests": 273036.0,
- "total_tests_per_thousand": 23.39,
- "new_tests_per_thousand": 0.13,
- "new_tests_smoothed": 2650.0,
- "new_tests_smoothed_per_thousand": 0.227,
- "tests_per_case": 3.08,
- "positive_rate": 0.325,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-09-15",
- "total_cases": 127619.0,
- "new_cases": 828.0,
- "new_cases_smoothed": 859.286,
- "total_deaths": 7394.0,
- "new_deaths": 50.0,
- "new_deaths_smoothed": 48.571,
- "total_cases_per_million": 10932.809,
- "new_cases_per_million": 70.933,
- "new_cases_smoothed_per_million": 73.613,
- "total_deaths_per_million": 633.426,
- "new_deaths_per_million": 4.283,
- "new_deaths_smoothed_per_million": 4.161,
- "new_tests": 2925.0,
- "total_tests": 275961.0,
- "total_tests_per_thousand": 23.641,
- "new_tests_per_thousand": 0.251,
- "new_tests_smoothed": 2677.0,
- "new_tests_smoothed_per_thousand": 0.229,
- "tests_per_case": 3.115,
- "positive_rate": 0.321,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-09-16",
- "total_cases": 128286.0,
- "new_cases": 667.0,
- "new_cases_smoothed": 854.0,
- "total_deaths": 7447.0,
- "new_deaths": 53.0,
- "new_deaths_smoothed": 50.0,
- "total_cases_per_million": 10989.95,
- "new_cases_per_million": 57.14,
- "new_cases_smoothed_per_million": 73.16,
- "total_deaths_per_million": 637.966,
- "new_deaths_per_million": 4.54,
- "new_deaths_smoothed_per_million": 4.283,
- "new_tests": 1684.0,
- "total_tests": 277645.0,
- "total_tests_per_thousand": 23.785,
- "new_tests_per_thousand": 0.144,
- "new_tests_smoothed": 2533.0,
- "new_tests_smoothed_per_thousand": 0.217,
- "tests_per_case": 2.966,
- "positive_rate": 0.337,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-09-17",
- "total_cases": 128872.0,
- "new_cases": 586.0,
- "new_cases_smoothed": 789.571,
- "total_deaths": 7478.0,
- "new_deaths": 31.0,
- "new_deaths_smoothed": 47.429,
- "total_cases_per_million": 11040.151,
- "new_cases_per_million": 50.201,
- "new_cases_smoothed_per_million": 67.641,
- "total_deaths_per_million": 640.622,
- "new_deaths_per_million": 2.656,
- "new_deaths_smoothed_per_million": 4.063,
- "new_tests": 2196.0,
- "total_tests": 279841.0,
- "total_tests_per_thousand": 23.973,
- "new_tests_per_thousand": 0.188,
- "new_tests_smoothed": 2277.0,
- "new_tests_smoothed_per_thousand": 0.195,
- "tests_per_case": 2.884,
- "positive_rate": 0.34700000000000003,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-09-18",
- "total_cases": 129419.0,
- "new_cases": 547.0,
- "new_cases_smoothed": 744.857,
- "total_deaths": 7511.0,
- "new_deaths": 33.0,
- "new_deaths_smoothed": 45.429,
- "total_cases_per_million": 11087.011,
- "new_cases_per_million": 46.86,
- "new_cases_smoothed_per_million": 63.81,
- "total_deaths_per_million": 643.449,
- "new_deaths_per_million": 2.827,
- "new_deaths_smoothed_per_million": 3.892,
- "new_tests": 2300.0,
- "total_tests": 282141.0,
- "total_tests_per_thousand": 24.17,
- "new_tests_per_thousand": 0.197,
- "new_tests_smoothed": 2229.0,
- "new_tests_smoothed_per_thousand": 0.191,
- "tests_per_case": 2.9930000000000003,
- "positive_rate": 0.33399999999999996,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-09-19",
- "total_cases": 130051.0,
- "new_cases": 632.0,
- "new_cases_smoothed": 697.0,
- "total_deaths": 7550.0,
- "new_deaths": 39.0,
- "new_deaths_smoothed": 42.857,
- "total_cases_per_million": 11141.153,
- "new_cases_per_million": 54.142,
- "new_cases_smoothed_per_million": 59.71,
- "total_deaths_per_million": 646.79,
- "new_deaths_per_million": 3.341,
- "new_deaths_smoothed_per_million": 3.671,
- "new_tests": 1651.0,
- "total_tests": 283792.0,
- "total_tests_per_thousand": 24.312,
- "new_tests_per_thousand": 0.141,
- "new_tests_smoothed": 2023.0,
- "new_tests_smoothed_per_thousand": 0.173,
- "tests_per_case": 2.9019999999999997,
- "positive_rate": 0.345,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-09-20",
- "total_cases": 130470.0,
- "new_cases": 419.0,
- "new_cases_smoothed": 641.143,
- "total_deaths": 7586.0,
- "new_deaths": 36.0,
- "new_deaths_smoothed": 41.286,
- "total_cases_per_million": 11177.048,
- "new_cases_per_million": 35.895,
- "new_cases_smoothed_per_million": 54.925,
- "total_deaths_per_million": 649.874,
- "new_deaths_per_million": 3.084,
- "new_deaths_smoothed_per_million": 3.537,
- "new_tests": 766.0,
- "total_tests": 284558.0,
- "total_tests_per_thousand": 24.377,
- "new_tests_per_thousand": 0.066,
- "new_tests_smoothed": 1862.0,
- "new_tests_smoothed_per_thousand": 0.16,
- "tests_per_case": 2.904,
- "positive_rate": 0.344,
- "tests_units": "tests performed",
- "stringency_index": 81.48
- },
- {
- "date": "2020-09-21",
- "total_cases": 130676.0,
- "new_cases": 206.0,
- "new_cases_smoothed": 555.0,
- "total_deaths": 7617.0,
- "new_deaths": 31.0,
- "new_deaths_smoothed": 39.0,
- "total_cases_per_million": 11194.695,
- "new_cases_per_million": 17.648,
- "new_cases_smoothed_per_million": 47.545,
- "total_deaths_per_million": 652.53,
- "new_deaths_per_million": 2.656,
- "new_deaths_smoothed_per_million": 3.341,
- "new_tests": 1097.0,
- "total_tests": 285655.0,
- "total_tests_per_thousand": 24.471,
- "new_tests_per_thousand": 0.094,
- "new_tests_smoothed": 1803.0,
- "new_tests_smoothed_per_thousand": 0.154,
- "tests_per_case": 3.2489999999999997,
- "positive_rate": 0.308,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-22",
- "total_cases": 130986.0,
- "new_cases": 310.0,
- "new_cases_smoothed": 481.0,
- "total_deaths": 7654.0,
- "new_deaths": 37.0,
- "new_deaths_smoothed": 37.143,
- "total_cases_per_million": 11221.252,
- "new_cases_per_million": 26.557,
- "new_cases_smoothed_per_million": 41.206,
- "total_deaths_per_million": 655.7,
- "new_deaths_per_million": 3.17,
- "new_deaths_smoothed_per_million": 3.182,
- "new_tests": 1605.0,
- "total_tests": 287260.0,
- "total_tests_per_thousand": 24.609,
- "new_tests_per_thousand": 0.137,
- "new_tests_smoothed": 1614.0,
- "new_tests_smoothed_per_thousand": 0.138,
- "tests_per_case": 3.3560000000000003,
- "positive_rate": 0.298,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-23",
- "total_cases": 131453.0,
- "new_cases": 467.0,
- "new_cases_smoothed": 452.429,
- "total_deaths": 7693.0,
- "new_deaths": 39.0,
- "new_deaths_smoothed": 35.143,
- "total_cases_per_million": 11261.259,
- "new_cases_per_million": 40.007,
- "new_cases_smoothed_per_million": 38.758,
- "total_deaths_per_million": 659.041,
- "new_deaths_per_million": 3.341,
- "new_deaths_smoothed_per_million": 3.011
- },
- {
- "date": "2020-09-24",
- "total_cases": 131990.0,
- "new_cases": 537.0,
- "new_cases_smoothed": 445.429,
- "total_deaths": 7731.0,
- "new_deaths": 38.0,
- "new_deaths_smoothed": 36.143,
- "total_cases_per_million": 11307.262,
- "new_cases_per_million": 46.003,
- "new_cases_smoothed_per_million": 38.159,
- "total_deaths_per_million": 662.296,
- "new_deaths_per_million": 3.255,
- "new_deaths_smoothed_per_million": 3.096
- },
- {
- "date": "2020-09-25",
- "total_cases": 132618.0,
- "new_cases": 628.0,
- "new_cases_smoothed": 457.0,
- "total_deaths": 7765.0,
- "new_deaths": 34.0,
- "new_deaths_smoothed": 36.286,
- "total_cases_per_million": 11361.061,
- "new_cases_per_million": 53.799,
- "new_cases_smoothed_per_million": 39.15,
- "total_deaths_per_million": 665.209,
- "new_deaths_per_million": 2.913,
- "new_deaths_smoothed_per_million": 3.109
- }
- ]
- },
- "BRA": {
- "continent": "South America",
- "location": "Brazil",
- "population": 212559409.0,
- "population_density": 25.04,
- "median_age": 33.5,
- "aged_65_older": 8.552,
- "aged_70_older": 5.06,
- "gdp_per_capita": 14103.452,
- "extreme_poverty": 3.4,
- "cardiovasc_death_rate": 177.961,
- "diabetes_prevalence": 8.11,
- "female_smokers": 10.1,
- "male_smokers": 17.9,
- "hospital_beds_per_thousand": 2.2,
- "life_expectancy": 75.88,
- "human_development_index": 0.759,
- "data": [
- {
- "date": "2019-12-31",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-01-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-02",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-03",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-04",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-05",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-06",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-07",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-08",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-09",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-10",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-11",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-12",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-13",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-14",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-15",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-16",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-17",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-18",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-19",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-20",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-21",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-22",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-23",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-24",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-25",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-26",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-27",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-28",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-29",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-01-30",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-01-31",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-02",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-03",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-04",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-05",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-06",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-07",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-08",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-09",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-10",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-11",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-12",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-13",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-14",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-15",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-16",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-17",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-18",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-19",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-20",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-21",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-22",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-23",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-24",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-25",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-26",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.005,
- "new_cases_per_million": 0.005,
- "new_cases_smoothed_per_million": 0.001,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-27",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.005,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.001,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-28",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.005,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.001,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-29",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.005,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.001,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-03-01",
- "total_cases": 2.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.009,
- "new_cases_per_million": 0.005,
- "new_cases_smoothed_per_million": 0.001,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-03-02",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.009,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.001,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-03",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.009,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.001,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-04",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.009,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.001,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-05",
- "total_cases": 3.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.014,
- "new_cases_per_million": 0.005,
- "new_cases_smoothed_per_million": 0.001,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-06",
- "total_cases": 8.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.038,
- "new_cases_per_million": 0.024,
- "new_cases_smoothed_per_million": 0.005,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-07",
- "total_cases": 13.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.061,
- "new_cases_per_million": 0.024,
- "new_cases_smoothed_per_million": 0.008,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-08",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.061,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.007,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-09",
- "total_cases": 25.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.118,
- "new_cases_per_million": 0.056,
- "new_cases_smoothed_per_million": 0.015,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-10",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.118,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.015,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-11",
- "total_cases": 34.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 4.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.16,
- "new_cases_per_million": 0.042,
- "new_cases_smoothed_per_million": 0.022,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-12",
- "total_cases": 52.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 7.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.245,
- "new_cases_per_million": 0.085,
- "new_cases_smoothed_per_million": 0.033,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 28.7
- },
- {
- "date": "2020-03-13",
- "total_cases": 77.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 9.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.362,
- "new_cases_per_million": 0.118,
- "new_cases_smoothed_per_million": 0.046,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-03-14",
- "total_cases": 98.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 12.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.461,
- "new_cases_per_million": 0.099,
- "new_cases_smoothed_per_million": 0.057,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 42.13
- },
- {
- "date": "2020-03-15",
- "total_cases": 121.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 15.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.569,
- "new_cases_per_million": 0.108,
- "new_cases_smoothed_per_million": 0.073,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 42.13
- },
- {
- "date": "2020-03-16",
- "total_cases": 200.0,
- "new_cases": 79.0,
- "new_cases_smoothed": 25.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.941,
- "new_cases_per_million": 0.372,
- "new_cases_smoothed_per_million": 0.118,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 42.13
- },
- {
- "date": "2020-03-17",
- "total_cases": 234.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 29.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.101,
- "new_cases_per_million": 0.16,
- "new_cases_smoothed_per_million": 0.14,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.87
- },
- {
- "date": "2020-03-18",
- "total_cases": 291.0,
- "new_cases": 57.0,
- "new_cases_smoothed": 36.714,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1.369,
- "new_cases_per_million": 0.268,
- "new_cases_smoothed_per_million": 0.173,
- "total_deaths_per_million": 0.005,
- "new_deaths_per_million": 0.005,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 60.65
- },
- {
- "date": "2020-03-19",
- "total_cases": 428.0,
- "new_cases": 137.0,
- "new_cases_smoothed": 53.714,
- "total_deaths": 4.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 2.014,
- "new_cases_per_million": 0.645,
- "new_cases_smoothed_per_million": 0.253,
- "total_deaths_per_million": 0.019,
- "new_deaths_per_million": 0.014,
- "new_deaths_smoothed_per_million": 0.003,
- "stringency_index": 66.2
- },
- {
- "date": "2020-03-20",
- "total_cases": 621.0,
- "new_cases": 193.0,
- "new_cases_smoothed": 77.714,
- "total_deaths": 6.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 2.922,
- "new_cases_per_million": 0.908,
- "new_cases_smoothed_per_million": 0.366,
- "total_deaths_per_million": 0.028,
- "new_deaths_per_million": 0.009,
- "new_deaths_smoothed_per_million": 0.004,
- "stringency_index": 66.2
- },
- {
- "date": "2020-03-21",
- "total_cases": 904.0,
- "new_cases": 283.0,
- "new_cases_smoothed": 115.143,
- "total_deaths": 11.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 4.253,
- "new_cases_per_million": 1.331,
- "new_cases_smoothed_per_million": 0.542,
- "total_deaths_per_million": 0.052,
- "new_deaths_per_million": 0.024,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 71.76
- },
- {
- "date": "2020-03-22",
- "total_cases": 1128.0,
- "new_cases": 224.0,
- "new_cases_smoothed": 143.857,
- "total_deaths": 18.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 5.307,
- "new_cases_per_million": 1.054,
- "new_cases_smoothed_per_million": 0.677,
- "total_deaths_per_million": 0.085,
- "new_deaths_per_million": 0.033,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 71.76
- },
- {
- "date": "2020-03-23",
- "total_cases": 1546.0,
- "new_cases": 418.0,
- "new_cases_smoothed": 192.286,
- "total_deaths": 25.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 7.273,
- "new_cases_per_million": 1.967,
- "new_cases_smoothed_per_million": 0.905,
- "total_deaths_per_million": 0.118,
- "new_deaths_per_million": 0.033,
- "new_deaths_smoothed_per_million": 0.017,
- "stringency_index": 71.76
- },
- {
- "date": "2020-03-24",
- "total_cases": 1891.0,
- "new_cases": 345.0,
- "new_cases_smoothed": 236.714,
- "total_deaths": 34.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 8.896,
- "new_cases_per_million": 1.623,
- "new_cases_smoothed_per_million": 1.114,
- "total_deaths_per_million": 0.16,
- "new_deaths_per_million": 0.042,
- "new_deaths_smoothed_per_million": 0.023,
- "stringency_index": 71.76
- },
- {
- "date": "2020-03-25",
- "total_cases": 2201.0,
- "new_cases": 310.0,
- "new_cases_smoothed": 272.857,
- "total_deaths": 46.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 6.429,
- "total_cases_per_million": 10.355,
- "new_cases_per_million": 1.458,
- "new_cases_smoothed_per_million": 1.284,
- "total_deaths_per_million": 0.216,
- "new_deaths_per_million": 0.056,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 71.76
- },
- {
- "date": "2020-03-26",
- "total_cases": 2433.0,
- "new_cases": 232.0,
- "new_cases_smoothed": 286.429,
- "total_deaths": 57.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 7.571,
- "total_cases_per_million": 11.446,
- "new_cases_per_million": 1.091,
- "new_cases_smoothed_per_million": 1.348,
- "total_deaths_per_million": 0.268,
- "new_deaths_per_million": 0.052,
- "new_deaths_smoothed_per_million": 0.036,
- "stringency_index": 71.76
- },
- {
- "date": "2020-03-27",
- "total_cases": 2915.0,
- "new_cases": 482.0,
- "new_cases_smoothed": 327.714,
- "total_deaths": 77.0,
- "new_deaths": 20.0,
- "new_deaths_smoothed": 10.143,
- "total_cases_per_million": 13.714,
- "new_cases_per_million": 2.268,
- "new_cases_smoothed_per_million": 1.542,
- "total_deaths_per_million": 0.362,
- "new_deaths_per_million": 0.094,
- "new_deaths_smoothed_per_million": 0.048,
- "stringency_index": 74.54
- },
- {
- "date": "2020-03-28",
- "total_cases": 3417.0,
- "new_cases": 502.0,
- "new_cases_smoothed": 359.0,
- "total_deaths": 92.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 11.571,
- "total_cases_per_million": 16.076,
- "new_cases_per_million": 2.362,
- "new_cases_smoothed_per_million": 1.689,
- "total_deaths_per_million": 0.433,
- "new_deaths_per_million": 0.071,
- "new_deaths_smoothed_per_million": 0.054,
- "stringency_index": 74.54
- },
- {
- "date": "2020-03-29",
- "total_cases": 3904.0,
- "new_cases": 487.0,
- "new_cases_smoothed": 396.571,
- "total_deaths": 114.0,
- "new_deaths": 22.0,
- "new_deaths_smoothed": 13.714,
- "total_cases_per_million": 18.367,
- "new_cases_per_million": 2.291,
- "new_cases_smoothed_per_million": 1.866,
- "total_deaths_per_million": 0.536,
- "new_deaths_per_million": 0.104,
- "new_deaths_smoothed_per_million": 0.065,
- "stringency_index": 74.54
- },
- {
- "date": "2020-03-30",
- "total_cases": 4256.0,
- "new_cases": 352.0,
- "new_cases_smoothed": 387.143,
- "total_deaths": 136.0,
- "new_deaths": 22.0,
- "new_deaths_smoothed": 15.857,
- "total_cases_per_million": 20.023,
- "new_cases_per_million": 1.656,
- "new_cases_smoothed_per_million": 1.821,
- "total_deaths_per_million": 0.64,
- "new_deaths_per_million": 0.104,
- "new_deaths_smoothed_per_million": 0.075,
- "stringency_index": 74.54
- },
- {
- "date": "2020-03-31",
- "total_cases": 4579.0,
- "new_cases": 323.0,
- "new_cases_smoothed": 384.0,
- "total_deaths": 159.0,
- "new_deaths": 23.0,
- "new_deaths_smoothed": 17.857,
- "total_cases_per_million": 21.542,
- "new_cases_per_million": 1.52,
- "new_cases_smoothed_per_million": 1.807,
- "total_deaths_per_million": 0.748,
- "new_deaths_per_million": 0.108,
- "new_deaths_smoothed_per_million": 0.084,
- "stringency_index": 74.54
- },
- {
- "date": "2020-04-01",
- "total_cases": 5717.0,
- "new_cases": 1138.0,
- "new_cases_smoothed": 502.286,
- "total_deaths": 201.0,
- "new_deaths": 42.0,
- "new_deaths_smoothed": 22.143,
- "total_cases_per_million": 26.896,
- "new_cases_per_million": 5.354,
- "new_cases_smoothed_per_million": 2.363,
- "total_deaths_per_million": 0.946,
- "new_deaths_per_million": 0.198,
- "new_deaths_smoothed_per_million": 0.104,
- "stringency_index": 74.54
- },
- {
- "date": "2020-04-02",
- "total_cases": 6836.0,
- "new_cases": 1119.0,
- "new_cases_smoothed": 629.0,
- "total_deaths": 241.0,
- "new_deaths": 40.0,
- "new_deaths_smoothed": 26.286,
- "total_cases_per_million": 32.16,
- "new_cases_per_million": 5.264,
- "new_cases_smoothed_per_million": 2.959,
- "total_deaths_per_million": 1.134,
- "new_deaths_per_million": 0.188,
- "new_deaths_smoothed_per_million": 0.124,
- "stringency_index": 74.54
- },
- {
- "date": "2020-04-03",
- "total_cases": 7910.0,
- "new_cases": 1074.0,
- "new_cases_smoothed": 713.571,
- "total_deaths": 299.0,
- "new_deaths": 58.0,
- "new_deaths_smoothed": 31.714,
- "total_cases_per_million": 37.213,
- "new_cases_per_million": 5.053,
- "new_cases_smoothed_per_million": 3.357,
- "total_deaths_per_million": 1.407,
- "new_deaths_per_million": 0.273,
- "new_deaths_smoothed_per_million": 0.149,
- "stringency_index": 74.54
- },
- {
- "date": "2020-04-04",
- "total_cases": 9056.0,
- "new_cases": 1146.0,
- "new_cases_smoothed": 805.571,
- "total_deaths": 359.0,
- "new_deaths": 60.0,
- "new_deaths_smoothed": 38.143,
- "total_cases_per_million": 42.605,
- "new_cases_per_million": 5.391,
- "new_cases_smoothed_per_million": 3.79,
- "total_deaths_per_million": 1.689,
- "new_deaths_per_million": 0.282,
- "new_deaths_smoothed_per_million": 0.179,
- "stringency_index": 74.54
- },
- {
- "date": "2020-04-05",
- "total_cases": 10278.0,
- "new_cases": 1222.0,
- "new_cases_smoothed": 910.571,
- "total_deaths": 432.0,
- "new_deaths": 73.0,
- "new_deaths_smoothed": 45.429,
- "total_cases_per_million": 48.354,
- "new_cases_per_million": 5.749,
- "new_cases_smoothed_per_million": 4.284,
- "total_deaths_per_million": 2.032,
- "new_deaths_per_million": 0.343,
- "new_deaths_smoothed_per_million": 0.214,
- "stringency_index": 74.54
- },
- {
- "date": "2020-04-06",
- "total_cases": 11130.0,
- "new_cases": 852.0,
- "new_cases_smoothed": 982.0,
- "total_deaths": 486.0,
- "new_deaths": 54.0,
- "new_deaths_smoothed": 50.0,
- "total_cases_per_million": 52.362,
- "new_cases_per_million": 4.008,
- "new_cases_smoothed_per_million": 4.62,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.254,
- "new_deaths_smoothed_per_million": 0.235,
- "stringency_index": 74.54
- },
- {
- "date": "2020-04-07",
- "total_cases": 12056.0,
- "new_cases": 926.0,
- "new_cases_smoothed": 1068.143,
- "total_deaths": 553.0,
- "new_deaths": 67.0,
- "new_deaths_smoothed": 56.286,
- "total_cases_per_million": 56.718,
- "new_cases_per_million": 4.356,
- "new_cases_smoothed_per_million": 5.025,
- "total_deaths_per_million": 2.602,
- "new_deaths_per_million": 0.315,
- "new_deaths_smoothed_per_million": 0.265,
- "total_tests": 62985.0,
- "total_tests_per_thousand": 0.296,
- "tests_units": "tests performed",
- "stringency_index": 74.54
- },
- {
- "date": "2020-04-08",
- "total_cases": 13717.0,
- "new_cases": 1661.0,
- "new_cases_smoothed": 1142.857,
- "total_deaths": 667.0,
- "new_deaths": 114.0,
- "new_deaths_smoothed": 66.571,
- "total_cases_per_million": 64.533,
- "new_cases_per_million": 7.814,
- "new_cases_smoothed_per_million": 5.377,
- "total_deaths_per_million": 3.138,
- "new_deaths_per_million": 0.536,
- "new_deaths_smoothed_per_million": 0.313,
- "tests_units": "tests performed",
- "stringency_index": 74.54
- },
- {
- "date": "2020-04-09",
- "total_cases": 15927.0,
- "new_cases": 2210.0,
- "new_cases_smoothed": 1298.714,
- "total_deaths": 800.0,
- "new_deaths": 133.0,
- "new_deaths_smoothed": 79.857,
- "total_cases_per_million": 74.93,
- "new_cases_per_million": 10.397,
- "new_cases_smoothed_per_million": 6.11,
- "total_deaths_per_million": 3.764,
- "new_deaths_per_million": 0.626,
- "new_deaths_smoothed_per_million": 0.376,
- "tests_units": "tests performed",
- "stringency_index": 74.54
- },
- {
- "date": "2020-04-10",
- "total_cases": 17857.0,
- "new_cases": 1930.0,
- "new_cases_smoothed": 1421.0,
- "total_deaths": 941.0,
- "new_deaths": 141.0,
- "new_deaths_smoothed": 91.714,
- "total_cases_per_million": 84.009,
- "new_cases_per_million": 9.08,
- "new_cases_smoothed_per_million": 6.685,
- "total_deaths_per_million": 4.427,
- "new_deaths_per_million": 0.663,
- "new_deaths_smoothed_per_million": 0.431,
- "tests_units": "tests performed",
- "stringency_index": 74.54
- },
- {
- "date": "2020-04-11",
- "total_cases": 19638.0,
- "new_cases": 1781.0,
- "new_cases_smoothed": 1511.714,
- "total_deaths": 1056.0,
- "new_deaths": 115.0,
- "new_deaths_smoothed": 99.571,
- "total_cases_per_million": 92.388,
- "new_cases_per_million": 8.379,
- "new_cases_smoothed_per_million": 7.112,
- "total_deaths_per_million": 4.968,
- "new_deaths_per_million": 0.541,
- "new_deaths_smoothed_per_million": 0.468,
- "tests_units": "tests performed",
- "stringency_index": 74.54
- },
- {
- "date": "2020-04-12",
- "total_cases": 20727.0,
- "new_cases": 1089.0,
- "new_cases_smoothed": 1492.714,
- "total_deaths": 1124.0,
- "new_deaths": 68.0,
- "new_deaths_smoothed": 98.857,
- "total_cases_per_million": 97.512,
- "new_cases_per_million": 5.123,
- "new_cases_smoothed_per_million": 7.023,
- "total_deaths_per_million": 5.288,
- "new_deaths_per_million": 0.32,
- "new_deaths_smoothed_per_million": 0.465,
- "tests_units": "tests performed",
- "stringency_index": 74.54
- },
- {
- "date": "2020-04-13",
- "total_cases": 22169.0,
- "new_cases": 1442.0,
- "new_cases_smoothed": 1577.0,
- "total_deaths": 1223.0,
- "new_deaths": 99.0,
- "new_deaths_smoothed": 105.286,
- "total_cases_per_million": 104.296,
- "new_cases_per_million": 6.784,
- "new_cases_smoothed_per_million": 7.419,
- "total_deaths_per_million": 5.754,
- "new_deaths_per_million": 0.466,
- "new_deaths_smoothed_per_million": 0.495,
- "tests_units": "tests performed",
- "stringency_index": 74.54
- },
- {
- "date": "2020-04-14",
- "total_cases": 23430.0,
- "new_cases": 1261.0,
- "new_cases_smoothed": 1624.857,
- "total_deaths": 1328.0,
- "new_deaths": 105.0,
- "new_deaths_smoothed": 110.714,
- "total_cases_per_million": 110.228,
- "new_cases_per_million": 5.932,
- "new_cases_smoothed_per_million": 7.644,
- "total_deaths_per_million": 6.248,
- "new_deaths_per_million": 0.494,
- "new_deaths_smoothed_per_million": 0.521,
- "new_tests_smoothed": 5345.0,
- "new_tests_smoothed_per_thousand": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 74.54
- },
- {
- "date": "2020-04-15",
- "total_cases": 25262.0,
- "new_cases": 1832.0,
- "new_cases_smoothed": 1649.286,
- "total_deaths": 1532.0,
- "new_deaths": 204.0,
- "new_deaths_smoothed": 123.571,
- "total_cases_per_million": 118.847,
- "new_cases_per_million": 8.619,
- "new_cases_smoothed_per_million": 7.759,
- "total_deaths_per_million": 7.207,
- "new_deaths_per_million": 0.96,
- "new_deaths_smoothed_per_million": 0.581,
- "new_tests_smoothed": 5345.0,
- "new_tests_smoothed_per_thousand": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 74.54
- },
- {
- "date": "2020-04-16",
- "total_cases": 28320.0,
- "new_cases": 3058.0,
- "new_cases_smoothed": 1770.429,
- "total_deaths": 1736.0,
- "new_deaths": 204.0,
- "new_deaths_smoothed": 133.714,
- "total_cases_per_million": 133.233,
- "new_cases_per_million": 14.387,
- "new_cases_smoothed_per_million": 8.329,
- "total_deaths_per_million": 8.167,
- "new_deaths_per_million": 0.96,
- "new_deaths_smoothed_per_million": 0.629,
- "new_tests_smoothed": 5345.0,
- "new_tests_smoothed_per_thousand": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 74.54
- },
- {
- "date": "2020-04-17",
- "total_cases": 30425.0,
- "new_cases": 2105.0,
- "new_cases_smoothed": 1795.429,
- "total_deaths": 1924.0,
- "new_deaths": 188.0,
- "new_deaths_smoothed": 140.429,
- "total_cases_per_million": 143.136,
- "new_cases_per_million": 9.903,
- "new_cases_smoothed_per_million": 8.447,
- "total_deaths_per_million": 9.052,
- "new_deaths_per_million": 0.884,
- "new_deaths_smoothed_per_million": 0.661,
- "new_tests_smoothed": 5345.0,
- "new_tests_smoothed_per_thousand": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 74.54
- },
- {
- "date": "2020-04-18",
- "total_cases": 33682.0,
- "new_cases": 3257.0,
- "new_cases_smoothed": 2006.286,
- "total_deaths": 2141.0,
- "new_deaths": 217.0,
- "new_deaths_smoothed": 155.0,
- "total_cases_per_million": 158.459,
- "new_cases_per_million": 15.323,
- "new_cases_smoothed_per_million": 9.439,
- "total_deaths_per_million": 10.072,
- "new_deaths_per_million": 1.021,
- "new_deaths_smoothed_per_million": 0.729,
- "new_tests_smoothed": 5345.0,
- "new_tests_smoothed_per_thousand": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 74.54
- },
- {
- "date": "2020-04-19",
- "total_cases": 36599.0,
- "new_cases": 2917.0,
- "new_cases_smoothed": 2267.429,
- "total_deaths": 2347.0,
- "new_deaths": 206.0,
- "new_deaths_smoothed": 174.714,
- "total_cases_per_million": 172.182,
- "new_cases_per_million": 13.723,
- "new_cases_smoothed_per_million": 10.667,
- "total_deaths_per_million": 11.042,
- "new_deaths_per_million": 0.969,
- "new_deaths_smoothed_per_million": 0.822,
- "new_tests_smoothed": 5345.0,
- "new_tests_smoothed_per_thousand": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 74.54
- },
- {
- "date": "2020-04-20",
- "total_cases": 38654.0,
- "new_cases": 2055.0,
- "new_cases_smoothed": 2355.0,
- "total_deaths": 2462.0,
- "new_deaths": 115.0,
- "new_deaths_smoothed": 177.0,
- "total_cases_per_million": 181.85,
- "new_cases_per_million": 9.668,
- "new_cases_smoothed_per_million": 11.079,
- "total_deaths_per_million": 11.583,
- "new_deaths_per_million": 0.541,
- "new_deaths_smoothed_per_million": 0.833,
- "total_tests": 132467.0,
- "total_tests_per_thousand": 0.623,
- "new_tests_smoothed": 5345.0,
- "new_tests_smoothed_per_thousand": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 74.54
- },
- {
- "date": "2020-04-21",
- "total_cases": 40581.0,
- "new_cases": 1927.0,
- "new_cases_smoothed": 2450.143,
- "total_deaths": 2575.0,
- "new_deaths": 113.0,
- "new_deaths_smoothed": 178.143,
- "total_cases_per_million": 190.916,
- "new_cases_per_million": 9.066,
- "new_cases_smoothed_per_million": 11.527,
- "total_deaths_per_million": 12.114,
- "new_deaths_per_million": 0.532,
- "new_deaths_smoothed_per_million": 0.838,
- "stringency_index": 74.54
- },
- {
- "date": "2020-04-22",
- "total_cases": 43079.0,
- "new_cases": 2498.0,
- "new_cases_smoothed": 2545.286,
- "total_deaths": 2741.0,
- "new_deaths": 166.0,
- "new_deaths_smoothed": 172.714,
- "total_cases_per_million": 202.668,
- "new_cases_per_million": 11.752,
- "new_cases_smoothed_per_million": 11.974,
- "total_deaths_per_million": 12.895,
- "new_deaths_per_million": 0.781,
- "new_deaths_smoothed_per_million": 0.813,
- "stringency_index": 74.54
- },
- {
- "date": "2020-04-23",
- "total_cases": 45757.0,
- "new_cases": 2678.0,
- "new_cases_smoothed": 2491.0,
- "total_deaths": 2906.0,
- "new_deaths": 165.0,
- "new_deaths_smoothed": 167.143,
- "total_cases_per_million": 215.267,
- "new_cases_per_million": 12.599,
- "new_cases_smoothed_per_million": 11.719,
- "total_deaths_per_million": 13.671,
- "new_deaths_per_million": 0.776,
- "new_deaths_smoothed_per_million": 0.786,
- "stringency_index": 74.54
- },
- {
- "date": "2020-04-24",
- "total_cases": 49492.0,
- "new_cases": 3735.0,
- "new_cases_smoothed": 2723.857,
- "total_deaths": 3313.0,
- "new_deaths": 407.0,
- "new_deaths_smoothed": 198.429,
- "total_cases_per_million": 232.838,
- "new_cases_per_million": 17.572,
- "new_cases_smoothed_per_million": 12.815,
- "total_deaths_per_million": 15.586,
- "new_deaths_per_million": 1.915,
- "new_deaths_smoothed_per_million": 0.934,
- "stringency_index": 74.54
- },
- {
- "date": "2020-04-25",
- "total_cases": 52995.0,
- "new_cases": 3503.0,
- "new_cases_smoothed": 2759.0,
- "total_deaths": 3670.0,
- "new_deaths": 357.0,
- "new_deaths_smoothed": 218.429,
- "total_cases_per_million": 249.319,
- "new_cases_per_million": 16.48,
- "new_cases_smoothed_per_million": 12.98,
- "total_deaths_per_million": 17.266,
- "new_deaths_per_million": 1.68,
- "new_deaths_smoothed_per_million": 1.028,
- "stringency_index": 74.54
- },
- {
- "date": "2020-04-26",
- "total_cases": 58509.0,
- "new_cases": 5514.0,
- "new_cases_smoothed": 3130.0,
- "total_deaths": 4016.0,
- "new_deaths": 346.0,
- "new_deaths_smoothed": 238.429,
- "total_cases_per_million": 275.26,
- "new_cases_per_million": 25.941,
- "new_cases_smoothed_per_million": 14.725,
- "total_deaths_per_million": 18.894,
- "new_deaths_per_million": 1.628,
- "new_deaths_smoothed_per_million": 1.122,
- "stringency_index": 77.31
- },
- {
- "date": "2020-04-27",
- "total_cases": 61888.0,
- "new_cases": 3379.0,
- "new_cases_smoothed": 3319.143,
- "total_deaths": 4205.0,
- "new_deaths": 189.0,
- "new_deaths_smoothed": 249.0,
- "total_cases_per_million": 291.156,
- "new_cases_per_million": 15.897,
- "new_cases_smoothed_per_million": 15.615,
- "total_deaths_per_million": 19.783,
- "new_deaths_per_million": 0.889,
- "new_deaths_smoothed_per_million": 1.171,
- "stringency_index": 77.31
- },
- {
- "date": "2020-04-28",
- "total_cases": 66501.0,
- "new_cases": 4613.0,
- "new_cases_smoothed": 3702.857,
- "total_deaths": 4543.0,
- "new_deaths": 338.0,
- "new_deaths_smoothed": 281.143,
- "total_cases_per_million": 312.858,
- "new_cases_per_million": 21.702,
- "new_cases_smoothed_per_million": 17.42,
- "total_deaths_per_million": 21.373,
- "new_deaths_per_million": 1.59,
- "new_deaths_smoothed_per_million": 1.323,
- "stringency_index": 77.31
- },
- {
- "date": "2020-04-29",
- "total_cases": 71886.0,
- "new_cases": 5385.0,
- "new_cases_smoothed": 4115.286,
- "total_deaths": 5017.0,
- "new_deaths": 474.0,
- "new_deaths_smoothed": 325.143,
- "total_cases_per_million": 338.193,
- "new_cases_per_million": 25.334,
- "new_cases_smoothed_per_million": 19.361,
- "total_deaths_per_million": 23.603,
- "new_deaths_per_million": 2.23,
- "new_deaths_smoothed_per_million": 1.53,
- "stringency_index": 77.31
- },
- {
- "date": "2020-04-30",
- "total_cases": 78162.0,
- "new_cases": 6276.0,
- "new_cases_smoothed": 4629.286,
- "total_deaths": 5466.0,
- "new_deaths": 449.0,
- "new_deaths_smoothed": 365.714,
- "total_cases_per_million": 367.718,
- "new_cases_per_million": 29.526,
- "new_cases_smoothed_per_million": 21.779,
- "total_deaths_per_million": 25.715,
- "new_deaths_per_million": 2.112,
- "new_deaths_smoothed_per_million": 1.721,
- "stringency_index": 77.31
- },
- {
- "date": "2020-05-01",
- "total_cases": 85380.0,
- "new_cases": 7218.0,
- "new_cases_smoothed": 5126.857,
- "total_deaths": 5901.0,
- "new_deaths": 435.0,
- "new_deaths_smoothed": 369.714,
- "total_cases_per_million": 401.676,
- "new_cases_per_million": 33.958,
- "new_cases_smoothed_per_million": 24.12,
- "total_deaths_per_million": 27.762,
- "new_deaths_per_million": 2.046,
- "new_deaths_smoothed_per_million": 1.739,
- "stringency_index": 77.31
- },
- {
- "date": "2020-05-02",
- "total_cases": 91589.0,
- "new_cases": 6209.0,
- "new_cases_smoothed": 5513.429,
- "total_deaths": 6329.0,
- "new_deaths": 428.0,
- "new_deaths_smoothed": 379.857,
- "total_cases_per_million": 430.887,
- "new_cases_per_million": 29.211,
- "new_cases_smoothed_per_million": 25.938,
- "total_deaths_per_million": 29.775,
- "new_deaths_per_million": 2.014,
- "new_deaths_smoothed_per_million": 1.787,
- "stringency_index": 77.31
- },
- {
- "date": "2020-05-03",
- "total_cases": 96559.0,
- "new_cases": 4970.0,
- "new_cases_smoothed": 5435.714,
- "total_deaths": 6750.0,
- "new_deaths": 421.0,
- "new_deaths_smoothed": 390.571,
- "total_cases_per_million": 454.268,
- "new_cases_per_million": 23.382,
- "new_cases_smoothed_per_million": 25.573,
- "total_deaths_per_million": 31.756,
- "new_deaths_per_million": 1.981,
- "new_deaths_smoothed_per_million": 1.837,
- "stringency_index": 77.31
- },
- {
- "date": "2020-05-04",
- "total_cases": 101147.0,
- "new_cases": 4588.0,
- "new_cases_smoothed": 5608.429,
- "total_deaths": 7025.0,
- "new_deaths": 275.0,
- "new_deaths_smoothed": 402.857,
- "total_cases_per_million": 475.853,
- "new_cases_per_million": 21.585,
- "new_cases_smoothed_per_million": 26.385,
- "total_deaths_per_million": 33.05,
- "new_deaths_per_million": 1.294,
- "new_deaths_smoothed_per_million": 1.895,
- "stringency_index": 77.31
- },
- {
- "date": "2020-05-05",
- "total_cases": 107780.0,
- "new_cases": 6633.0,
- "new_cases_smoothed": 5897.0,
- "total_deaths": 7321.0,
- "new_deaths": 296.0,
- "new_deaths_smoothed": 396.857,
- "total_cases_per_million": 507.058,
- "new_cases_per_million": 31.205,
- "new_cases_smoothed_per_million": 27.743,
- "total_deaths_per_million": 34.442,
- "new_deaths_per_million": 1.393,
- "new_deaths_smoothed_per_million": 1.867,
- "stringency_index": 81.02
- },
- {
- "date": "2020-05-06",
- "total_cases": 114715.0,
- "new_cases": 6935.0,
- "new_cases_smoothed": 6118.429,
- "total_deaths": 7921.0,
- "new_deaths": 600.0,
- "new_deaths_smoothed": 414.857,
- "total_cases_per_million": 539.684,
- "new_cases_per_million": 32.626,
- "new_cases_smoothed_per_million": 28.785,
- "total_deaths_per_million": 37.265,
- "new_deaths_per_million": 2.823,
- "new_deaths_smoothed_per_million": 1.952,
- "stringency_index": 81.02
- },
- {
- "date": "2020-05-07",
- "total_cases": 125218.0,
- "new_cases": 10503.0,
- "new_cases_smoothed": 6722.286,
- "total_deaths": 8536.0,
- "new_deaths": 615.0,
- "new_deaths_smoothed": 438.571,
- "total_cases_per_million": 589.096,
- "new_cases_per_million": 49.412,
- "new_cases_smoothed_per_million": 31.625,
- "total_deaths_per_million": 40.158,
- "new_deaths_per_million": 2.893,
- "new_deaths_smoothed_per_million": 2.063,
- "stringency_index": 81.02
- },
- {
- "date": "2020-05-08",
- "total_cases": 135106.0,
- "new_cases": 9888.0,
- "new_cases_smoothed": 7103.714,
- "total_deaths": 9146.0,
- "new_deaths": 610.0,
- "new_deaths_smoothed": 463.571,
- "total_cases_per_million": 635.615,
- "new_cases_per_million": 46.519,
- "new_cases_smoothed_per_million": 33.42,
- "total_deaths_per_million": 43.028,
- "new_deaths_per_million": 2.87,
- "new_deaths_smoothed_per_million": 2.181,
- "stringency_index": 81.02
- },
- {
- "date": "2020-05-09",
- "total_cases": 145328.0,
- "new_cases": 10222.0,
- "new_cases_smoothed": 7677.0,
- "total_deaths": 9897.0,
- "new_deaths": 751.0,
- "new_deaths_smoothed": 509.714,
- "total_cases_per_million": 683.705,
- "new_cases_per_million": 48.09,
- "new_cases_smoothed_per_million": 36.117,
- "total_deaths_per_million": 46.561,
- "new_deaths_per_million": 3.533,
- "new_deaths_smoothed_per_million": 2.398,
- "stringency_index": 81.02
- },
- {
- "date": "2020-05-10",
- "total_cases": 155939.0,
- "new_cases": 10611.0,
- "new_cases_smoothed": 8482.857,
- "total_deaths": 10627.0,
- "new_deaths": 730.0,
- "new_deaths_smoothed": 553.857,
- "total_cases_per_million": 733.625,
- "new_cases_per_million": 49.92,
- "new_cases_smoothed_per_million": 39.908,
- "total_deaths_per_million": 49.995,
- "new_deaths_per_million": 3.434,
- "new_deaths_smoothed_per_million": 2.606,
- "stringency_index": 81.02
- },
- {
- "date": "2020-05-11",
- "total_cases": 162699.0,
- "new_cases": 6760.0,
- "new_cases_smoothed": 8793.143,
- "total_deaths": 11123.0,
- "new_deaths": 496.0,
- "new_deaths_smoothed": 585.429,
- "total_cases_per_million": 765.428,
- "new_cases_per_million": 31.803,
- "new_cases_smoothed_per_million": 41.368,
- "total_deaths_per_million": 52.329,
- "new_deaths_per_million": 2.333,
- "new_deaths_smoothed_per_million": 2.754,
- "stringency_index": 81.02
- },
- {
- "date": "2020-05-12",
- "total_cases": 168331.0,
- "new_cases": 5632.0,
- "new_cases_smoothed": 8650.143,
- "total_deaths": 11519.0,
- "new_deaths": 396.0,
- "new_deaths_smoothed": 599.714,
- "total_cases_per_million": 791.924,
- "new_cases_per_million": 26.496,
- "new_cases_smoothed_per_million": 40.695,
- "total_deaths_per_million": 54.192,
- "new_deaths_per_million": 1.863,
- "new_deaths_smoothed_per_million": 2.821,
- "stringency_index": 81.02
- },
- {
- "date": "2020-05-13",
- "total_cases": 177589.0,
- "new_cases": 9258.0,
- "new_cases_smoothed": 8982.0,
- "total_deaths": 12400.0,
- "new_deaths": 881.0,
- "new_deaths_smoothed": 639.857,
- "total_cases_per_million": 835.479,
- "new_cases_per_million": 43.555,
- "new_cases_smoothed_per_million": 42.256,
- "total_deaths_per_million": 58.337,
- "new_deaths_per_million": 4.145,
- "new_deaths_smoothed_per_million": 3.01,
- "stringency_index": 81.02
- },
- {
- "date": "2020-05-14",
- "total_cases": 188974.0,
- "new_cases": 11385.0,
- "new_cases_smoothed": 9108.0,
- "total_deaths": 13149.0,
- "new_deaths": 749.0,
- "new_deaths_smoothed": 659.0,
- "total_cases_per_million": 889.041,
- "new_cases_per_million": 53.561,
- "new_cases_smoothed_per_million": 42.849,
- "total_deaths_per_million": 61.86,
- "new_deaths_per_million": 3.524,
- "new_deaths_smoothed_per_million": 3.1,
- "stringency_index": 81.02
- },
- {
- "date": "2020-05-15",
- "total_cases": 202918.0,
- "new_cases": 13944.0,
- "new_cases_smoothed": 9687.429,
- "total_deaths": 13993.0,
- "new_deaths": 844.0,
- "new_deaths_smoothed": 692.429,
- "total_cases_per_million": 954.641,
- "new_cases_per_million": 65.6,
- "new_cases_smoothed_per_million": 45.575,
- "total_deaths_per_million": 65.831,
- "new_deaths_per_million": 3.971,
- "new_deaths_smoothed_per_million": 3.258,
- "stringency_index": 81.02
- },
- {
- "date": "2020-05-16",
- "total_cases": 218223.0,
- "new_cases": 15305.0,
- "new_cases_smoothed": 10413.571,
- "total_deaths": 14817.0,
- "new_deaths": 824.0,
- "new_deaths_smoothed": 702.857,
- "total_cases_per_million": 1026.645,
- "new_cases_per_million": 72.003,
- "new_cases_smoothed_per_million": 48.991,
- "total_deaths_per_million": 69.708,
- "new_deaths_per_million": 3.877,
- "new_deaths_smoothed_per_million": 3.307,
- "stringency_index": 81.02
- },
- {
- "date": "2020-05-17",
- "total_cases": 233142.0,
- "new_cases": 14919.0,
- "new_cases_smoothed": 11029.0,
- "total_deaths": 15633.0,
- "new_deaths": 816.0,
- "new_deaths_smoothed": 715.143,
- "total_cases_per_million": 1096.832,
- "new_cases_per_million": 70.187,
- "new_cases_smoothed_per_million": 51.887,
- "total_deaths_per_million": 73.546,
- "new_deaths_per_million": 3.839,
- "new_deaths_smoothed_per_million": 3.364,
- "stringency_index": 81.02
- },
- {
- "date": "2020-05-18",
- "total_cases": 241080.0,
- "new_cases": 7938.0,
- "new_cases_smoothed": 11197.286,
- "total_deaths": 16118.0,
- "new_deaths": 485.0,
- "new_deaths_smoothed": 713.571,
- "total_cases_per_million": 1134.177,
- "new_cases_per_million": 37.345,
- "new_cases_smoothed_per_million": 52.678,
- "total_deaths_per_million": 75.828,
- "new_deaths_per_million": 2.282,
- "new_deaths_smoothed_per_million": 3.357,
- "stringency_index": 81.02
- },
- {
- "date": "2020-05-19",
- "total_cases": 254220.0,
- "new_cases": 13140.0,
- "new_cases_smoothed": 12269.857,
- "total_deaths": 16792.0,
- "new_deaths": 674.0,
- "new_deaths_smoothed": 753.286,
- "total_cases_per_million": 1195.995,
- "new_cases_per_million": 61.818,
- "new_cases_smoothed_per_million": 57.724,
- "total_deaths_per_million": 78.999,
- "new_deaths_per_million": 3.171,
- "new_deaths_smoothed_per_million": 3.544,
- "stringency_index": 81.02
- },
- {
- "date": "2020-05-20",
- "total_cases": 271628.0,
- "new_cases": 17408.0,
- "new_cases_smoothed": 13434.143,
- "total_deaths": 17971.0,
- "new_deaths": 1179.0,
- "new_deaths_smoothed": 795.857,
- "total_cases_per_million": 1277.892,
- "new_cases_per_million": 81.897,
- "new_cases_smoothed_per_million": 63.202,
- "total_deaths_per_million": 84.546,
- "new_deaths_per_million": 5.547,
- "new_deaths_smoothed_per_million": 3.744,
- "stringency_index": 81.02
- },
- {
- "date": "2020-05-21",
- "total_cases": 291579.0,
- "new_cases": 19951.0,
- "new_cases_smoothed": 14657.857,
- "total_deaths": 18859.0,
- "new_deaths": 888.0,
- "new_deaths_smoothed": 815.714,
- "total_cases_per_million": 1371.753,
- "new_cases_per_million": 93.861,
- "new_cases_smoothed_per_million": 68.959,
- "total_deaths_per_million": 88.723,
- "new_deaths_per_million": 4.178,
- "new_deaths_smoothed_per_million": 3.838,
- "stringency_index": 81.02
- },
- {
- "date": "2020-05-22",
- "total_cases": 310087.0,
- "new_cases": 18508.0,
- "new_cases_smoothed": 15309.857,
- "total_deaths": 20047.0,
- "new_deaths": 1188.0,
- "new_deaths_smoothed": 864.857,
- "total_cases_per_million": 1458.825,
- "new_cases_per_million": 87.072,
- "new_cases_smoothed_per_million": 72.026,
- "total_deaths_per_million": 94.312,
- "new_deaths_per_million": 5.589,
- "new_deaths_smoothed_per_million": 4.069,
- "stringency_index": 81.02
- },
- {
- "date": "2020-05-23",
- "total_cases": 330890.0,
- "new_cases": 20803.0,
- "new_cases_smoothed": 16095.286,
- "total_deaths": 21048.0,
- "new_deaths": 1001.0,
- "new_deaths_smoothed": 890.143,
- "total_cases_per_million": 1556.694,
- "new_cases_per_million": 97.869,
- "new_cases_smoothed_per_million": 75.721,
- "total_deaths_per_million": 99.022,
- "new_deaths_per_million": 4.709,
- "new_deaths_smoothed_per_million": 4.188,
- "stringency_index": 81.02
- },
- {
- "date": "2020-05-24",
- "total_cases": 347398.0,
- "new_cases": 16508.0,
- "new_cases_smoothed": 16322.286,
- "total_deaths": 22013.0,
- "new_deaths": 965.0,
- "new_deaths_smoothed": 911.429,
- "total_cases_per_million": 1634.357,
- "new_cases_per_million": 77.663,
- "new_cases_smoothed_per_million": 76.789,
- "total_deaths_per_million": 103.562,
- "new_deaths_per_million": 4.54,
- "new_deaths_smoothed_per_million": 4.288,
- "stringency_index": 81.02
- },
- {
- "date": "2020-05-25",
- "total_cases": 363211.0,
- "new_cases": 15813.0,
- "new_cases_smoothed": 17447.286,
- "total_deaths": 22666.0,
- "new_deaths": 653.0,
- "new_deaths_smoothed": 935.429,
- "total_cases_per_million": 1708.751,
- "new_cases_per_million": 74.393,
- "new_cases_smoothed_per_million": 82.082,
- "total_deaths_per_million": 106.634,
- "new_deaths_per_million": 3.072,
- "new_deaths_smoothed_per_million": 4.401,
- "stringency_index": 81.02
- },
- {
- "date": "2020-05-26",
- "total_cases": 374898.0,
- "new_cases": 11687.0,
- "new_cases_smoothed": 17239.714,
- "total_deaths": 23473.0,
- "new_deaths": 807.0,
- "new_deaths_smoothed": 954.429,
- "total_cases_per_million": 1763.733,
- "new_cases_per_million": 54.982,
- "new_cases_smoothed_per_million": 81.105,
- "total_deaths_per_million": 110.43,
- "new_deaths_per_million": 3.797,
- "new_deaths_smoothed_per_million": 4.49,
- "stringency_index": 81.02
- },
- {
- "date": "2020-05-27",
- "total_cases": 391222.0,
- "new_cases": 16324.0,
- "new_cases_smoothed": 17084.857,
- "total_deaths": 24512.0,
- "new_deaths": 1039.0,
- "new_deaths_smoothed": 934.429,
- "total_cases_per_million": 1840.53,
- "new_cases_per_million": 76.797,
- "new_cases_smoothed_per_million": 80.377,
- "total_deaths_per_million": 115.318,
- "new_deaths_per_million": 4.888,
- "new_deaths_smoothed_per_million": 4.396,
- "stringency_index": 81.02
- },
- {
- "date": "2020-05-28",
- "total_cases": 411821.0,
- "new_cases": 20599.0,
- "new_cases_smoothed": 17177.429,
- "total_deaths": 25598.0,
- "new_deaths": 1086.0,
- "new_deaths_smoothed": 962.714,
- "total_cases_per_million": 1937.44,
- "new_cases_per_million": 96.909,
- "new_cases_smoothed_per_million": 80.812,
- "total_deaths_per_million": 120.428,
- "new_deaths_per_million": 5.109,
- "new_deaths_smoothed_per_million": 4.529,
- "stringency_index": 81.02
- },
- {
- "date": "2020-05-29",
- "total_cases": 438238.0,
- "new_cases": 26417.0,
- "new_cases_smoothed": 18307.286,
- "total_deaths": 26754.0,
- "new_deaths": 1156.0,
- "new_deaths_smoothed": 958.143,
- "total_cases_per_million": 2061.72,
- "new_cases_per_million": 124.281,
- "new_cases_smoothed_per_million": 86.128,
- "total_deaths_per_million": 125.866,
- "new_deaths_per_million": 5.438,
- "new_deaths_smoothed_per_million": 4.508,
- "total_tests": 485000.0,
- "total_tests_per_thousand": 2.282,
- "tests_units": "tests performed",
- "stringency_index": 81.02
- },
- {
- "date": "2020-05-30",
- "total_cases": 465166.0,
- "new_cases": 26928.0,
- "new_cases_smoothed": 19182.286,
- "total_deaths": 27878.0,
- "new_deaths": 1124.0,
- "new_deaths_smoothed": 975.714,
- "total_cases_per_million": 2188.405,
- "new_cases_per_million": 126.685,
- "new_cases_smoothed_per_million": 90.244,
- "total_deaths_per_million": 131.154,
- "new_deaths_per_million": 5.288,
- "new_deaths_smoothed_per_million": 4.59,
- "stringency_index": 81.02
- },
- {
- "date": "2020-05-31",
- "total_cases": 498440.0,
- "new_cases": 33274.0,
- "new_cases_smoothed": 21577.429,
- "total_deaths": 28834.0,
- "new_deaths": 956.0,
- "new_deaths_smoothed": 974.429,
- "total_cases_per_million": 2344.944,
- "new_cases_per_million": 156.54,
- "new_cases_smoothed_per_million": 101.512,
- "total_deaths_per_million": 135.651,
- "new_deaths_per_million": 4.498,
- "new_deaths_smoothed_per_million": 4.584,
- "stringency_index": 81.02
- },
- {
- "date": "2020-06-01",
- "total_cases": 514849.0,
- "new_cases": 16409.0,
- "new_cases_smoothed": 21662.571,
- "total_deaths": 29314.0,
- "new_deaths": 480.0,
- "new_deaths_smoothed": 949.714,
- "total_cases_per_million": 2422.142,
- "new_cases_per_million": 77.197,
- "new_cases_smoothed_per_million": 101.913,
- "total_deaths_per_million": 137.91,
- "new_deaths_per_million": 2.258,
- "new_deaths_smoothed_per_million": 4.468,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-02",
- "total_cases": 526447.0,
- "new_cases": 11598.0,
- "new_cases_smoothed": 21649.857,
- "total_deaths": 29937.0,
- "new_deaths": 623.0,
- "new_deaths_smoothed": 923.429,
- "total_cases_per_million": 2476.705,
- "new_cases_per_million": 54.564,
- "new_cases_smoothed_per_million": 101.853,
- "total_deaths_per_million": 140.841,
- "new_deaths_per_million": 2.931,
- "new_deaths_smoothed_per_million": 4.344,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-03",
- "total_cases": 555383.0,
- "new_cases": 28936.0,
- "new_cases_smoothed": 23451.571,
- "total_deaths": 31199.0,
- "new_deaths": 1262.0,
- "new_deaths_smoothed": 955.286,
- "total_cases_per_million": 2612.837,
- "new_cases_per_million": 136.131,
- "new_cases_smoothed_per_million": 110.329,
- "total_deaths_per_million": 146.778,
- "new_deaths_per_million": 5.937,
- "new_deaths_smoothed_per_million": 4.494,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-04",
- "total_cases": 584016.0,
- "new_cases": 28633.0,
- "new_cases_smoothed": 24599.286,
- "total_deaths": 32548.0,
- "new_deaths": 1349.0,
- "new_deaths_smoothed": 992.857,
- "total_cases_per_million": 2747.542,
- "new_cases_per_million": 134.706,
- "new_cases_smoothed_per_million": 115.729,
- "total_deaths_per_million": 153.124,
- "new_deaths_per_million": 6.346,
- "new_deaths_smoothed_per_million": 4.671,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-05",
- "total_cases": 614932.0,
- "new_cases": 30916.0,
- "new_cases_smoothed": 25242.0,
- "total_deaths": 34021.0,
- "new_deaths": 1473.0,
- "new_deaths_smoothed": 1038.143,
- "total_cases_per_million": 2892.989,
- "new_cases_per_million": 145.446,
- "new_cases_smoothed_per_million": 118.753,
- "total_deaths_per_million": 160.054,
- "new_deaths_per_million": 6.93,
- "new_deaths_smoothed_per_million": 4.884,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-06",
- "total_cases": 645762.0,
- "new_cases": 30830.0,
- "new_cases_smoothed": 25799.429,
- "total_deaths": 35026.0,
- "new_deaths": 1005.0,
- "new_deaths_smoothed": 1021.143,
- "total_cases_per_million": 3038.031,
- "new_cases_per_million": 145.042,
- "new_cases_smoothed_per_million": 121.375,
- "total_deaths_per_million": 164.782,
- "new_deaths_per_million": 4.728,
- "new_deaths_smoothed_per_million": 4.804,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-07",
- "total_cases": 672837.0,
- "new_cases": 27075.0,
- "new_cases_smoothed": 24913.857,
- "total_deaths": 35930.0,
- "new_deaths": 904.0,
- "new_deaths_smoothed": 1013.714,
- "total_cases_per_million": 3165.407,
- "new_cases_per_million": 127.376,
- "new_cases_smoothed_per_million": 117.209,
- "total_deaths_per_million": 169.035,
- "new_deaths_per_million": 4.253,
- "new_deaths_smoothed_per_million": 4.769,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-08",
- "total_cases": 691758.0,
- "new_cases": 18921.0,
- "new_cases_smoothed": 25272.714,
- "total_deaths": 36455.0,
- "new_deaths": 525.0,
- "new_deaths_smoothed": 1020.143,
- "total_cases_per_million": 3254.422,
- "new_cases_per_million": 89.015,
- "new_cases_smoothed_per_million": 118.897,
- "total_deaths_per_million": 171.505,
- "new_deaths_per_million": 2.47,
- "new_deaths_smoothed_per_million": 4.799,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-09",
- "total_cases": 707412.0,
- "new_cases": 15654.0,
- "new_cases_smoothed": 25852.143,
- "total_deaths": 37134.0,
- "new_deaths": 679.0,
- "new_deaths_smoothed": 1028.143,
- "total_cases_per_million": 3328.067,
- "new_cases_per_million": 73.645,
- "new_cases_smoothed_per_million": 121.623,
- "total_deaths_per_million": 174.699,
- "new_deaths_per_million": 3.194,
- "new_deaths_smoothed_per_million": 4.837,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-10",
- "total_cases": 739503.0,
- "new_cases": 32091.0,
- "new_cases_smoothed": 26302.857,
- "total_deaths": 38406.0,
- "new_deaths": 1272.0,
- "new_deaths_smoothed": 1029.571,
- "total_cases_per_million": 3479.041,
- "new_cases_per_million": 150.974,
- "new_cases_smoothed_per_million": 123.744,
- "total_deaths_per_million": 180.684,
- "new_deaths_per_million": 5.984,
- "new_deaths_smoothed_per_million": 4.844,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-11",
- "total_cases": 772416.0,
- "new_cases": 32913.0,
- "new_cases_smoothed": 26914.286,
- "total_deaths": 39680.0,
- "new_deaths": 1274.0,
- "new_deaths_smoothed": 1018.857,
- "total_cases_per_million": 3633.883,
- "new_cases_per_million": 154.841,
- "new_cases_smoothed_per_million": 126.62,
- "total_deaths_per_million": 186.677,
- "new_deaths_per_million": 5.994,
- "new_deaths_smoothed_per_million": 4.793,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-12",
- "total_cases": 802828.0,
- "new_cases": 30412.0,
- "new_cases_smoothed": 26842.286,
- "total_deaths": 40919.0,
- "new_deaths": 1239.0,
- "new_deaths_smoothed": 985.429,
- "total_cases_per_million": 3776.958,
- "new_cases_per_million": 143.075,
- "new_cases_smoothed_per_million": 126.281,
- "total_deaths_per_million": 192.506,
- "new_deaths_per_million": 5.829,
- "new_deaths_smoothed_per_million": 4.636,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-13",
- "total_cases": 828810.0,
- "new_cases": 25982.0,
- "new_cases_smoothed": 26149.714,
- "total_deaths": 41828.0,
- "new_deaths": 909.0,
- "new_deaths_smoothed": 971.714,
- "total_cases_per_million": 3899.192,
- "new_cases_per_million": 122.234,
- "new_cases_smoothed_per_million": 123.023,
- "total_deaths_per_million": 196.783,
- "new_deaths_per_million": 4.276,
- "new_deaths_smoothed_per_million": 4.571,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-14",
- "total_cases": 850514.0,
- "new_cases": 21704.0,
- "new_cases_smoothed": 25382.429,
- "total_deaths": 42720.0,
- "new_deaths": 892.0,
- "new_deaths_smoothed": 970.0,
- "total_cases_per_million": 4001.3,
- "new_cases_per_million": 102.108,
- "new_cases_smoothed_per_million": 119.413,
- "total_deaths_per_million": 200.979,
- "new_deaths_per_million": 4.196,
- "new_deaths_smoothed_per_million": 4.563,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-15",
- "total_cases": 867624.0,
- "new_cases": 17110.0,
- "new_cases_smoothed": 25123.714,
- "total_deaths": 43332.0,
- "new_deaths": 612.0,
- "new_deaths_smoothed": 982.429,
- "total_cases_per_million": 4081.795,
- "new_cases_per_million": 80.495,
- "new_cases_smoothed_per_million": 118.196,
- "total_deaths_per_million": 203.858,
- "new_deaths_per_million": 2.879,
- "new_deaths_smoothed_per_million": 4.622,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-16",
- "total_cases": 888271.0,
- "new_cases": 20647.0,
- "new_cases_smoothed": 25837.0,
- "total_deaths": 43959.0,
- "new_deaths": 627.0,
- "new_deaths_smoothed": 975.0,
- "total_cases_per_million": 4178.931,
- "new_cases_per_million": 97.135,
- "new_cases_smoothed_per_million": 121.552,
- "total_deaths_per_million": 206.808,
- "new_deaths_per_million": 2.95,
- "new_deaths_smoothed_per_million": 4.587,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-17",
- "total_cases": 923189.0,
- "new_cases": 34918.0,
- "new_cases_smoothed": 26240.857,
- "total_deaths": 45241.0,
- "new_deaths": 1282.0,
- "new_deaths_smoothed": 976.429,
- "total_cases_per_million": 4343.205,
- "new_cases_per_million": 164.274,
- "new_cases_smoothed_per_million": 123.452,
- "total_deaths_per_million": 212.839,
- "new_deaths_per_million": 6.031,
- "new_deaths_smoothed_per_million": 4.594,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-18",
- "total_cases": 955377.0,
- "new_cases": 32188.0,
- "new_cases_smoothed": 26137.286,
- "total_deaths": 46510.0,
- "new_deaths": 1269.0,
- "new_deaths_smoothed": 975.714,
- "total_cases_per_million": 4494.635,
- "new_cases_per_million": 151.431,
- "new_cases_smoothed_per_million": 122.965,
- "total_deaths_per_million": 218.809,
- "new_deaths_per_million": 5.97,
- "new_deaths_smoothed_per_million": 4.59,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-19",
- "total_cases": 978142.0,
- "new_cases": 22765.0,
- "new_cases_smoothed": 25044.857,
- "total_deaths": 47748.0,
- "new_deaths": 1238.0,
- "new_deaths_smoothed": 975.571,
- "total_cases_per_million": 4601.735,
- "new_cases_per_million": 107.099,
- "new_cases_smoothed_per_million": 117.825,
- "total_deaths_per_million": 224.634,
- "new_deaths_per_million": 5.824,
- "new_deaths_smoothed_per_million": 4.59,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-20",
- "total_cases": 1032913.0,
- "new_cases": 54771.0,
- "new_cases_smoothed": 29157.571,
- "total_deaths": 48954.0,
- "new_deaths": 1206.0,
- "new_deaths_smoothed": 1018.0,
- "total_cases_per_million": 4859.409,
- "new_cases_per_million": 257.674,
- "new_cases_smoothed_per_million": 137.174,
- "total_deaths_per_million": 230.307,
- "new_deaths_per_million": 5.674,
- "new_deaths_smoothed_per_million": 4.789,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-21",
- "total_cases": 1067579.0,
- "new_cases": 34666.0,
- "new_cases_smoothed": 31009.286,
- "total_deaths": 49976.0,
- "new_deaths": 1022.0,
- "new_deaths_smoothed": 1036.571,
- "total_cases_per_million": 5022.497,
- "new_cases_per_million": 163.089,
- "new_cases_smoothed_per_million": 145.885,
- "total_deaths_per_million": 235.115,
- "new_deaths_per_million": 4.808,
- "new_deaths_smoothed_per_million": 4.877,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-22",
- "total_cases": 1085038.0,
- "new_cases": 17459.0,
- "new_cases_smoothed": 31059.143,
- "total_deaths": 50617.0,
- "new_deaths": 641.0,
- "new_deaths_smoothed": 1040.714,
- "total_cases_per_million": 5104.634,
- "new_cases_per_million": 82.137,
- "new_cases_smoothed_per_million": 146.12,
- "total_deaths_per_million": 238.131,
- "new_deaths_per_million": 3.016,
- "new_deaths_smoothed_per_million": 4.896,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-23",
- "total_cases": 1106470.0,
- "new_cases": 21432.0,
- "new_cases_smoothed": 31171.286,
- "total_deaths": 51271.0,
- "new_deaths": 654.0,
- "new_deaths_smoothed": 1044.571,
- "total_cases_per_million": 5205.462,
- "new_cases_per_million": 100.828,
- "new_cases_smoothed_per_million": 146.647,
- "total_deaths_per_million": 241.208,
- "new_deaths_per_million": 3.077,
- "new_deaths_smoothed_per_million": 4.914,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-24",
- "total_cases": 1145906.0,
- "new_cases": 39436.0,
- "new_cases_smoothed": 31816.714,
- "total_deaths": 52645.0,
- "new_deaths": 1374.0,
- "new_deaths_smoothed": 1057.714,
- "total_cases_per_million": 5390.992,
- "new_cases_per_million": 185.529,
- "new_cases_smoothed_per_million": 149.684,
- "total_deaths_per_million": 247.672,
- "new_deaths_per_million": 6.464,
- "new_deaths_smoothed_per_million": 4.976,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-25",
- "total_cases": 1188631.0,
- "new_cases": 42725.0,
- "new_cases_smoothed": 33322.0,
- "total_deaths": 53830.0,
- "new_deaths": 1185.0,
- "new_deaths_smoothed": 1045.714,
- "total_cases_per_million": 5591.994,
- "new_cases_per_million": 201.003,
- "new_cases_smoothed_per_million": 156.766,
- "total_deaths_per_million": 253.247,
- "new_deaths_per_million": 5.575,
- "new_deaths_smoothed_per_million": 4.92,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-26",
- "total_cases": 1228114.0,
- "new_cases": 39483.0,
- "new_cases_smoothed": 35710.286,
- "total_deaths": 54971.0,
- "new_deaths": 1141.0,
- "new_deaths_smoothed": 1031.857,
- "total_cases_per_million": 5777.745,
- "new_cases_per_million": 185.75,
- "new_cases_smoothed_per_million": 168.001,
- "total_deaths_per_million": 258.615,
- "new_deaths_per_million": 5.368,
- "new_deaths_smoothed_per_million": 4.854,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-27",
- "total_cases": 1274974.0,
- "new_cases": 46860.0,
- "new_cases_smoothed": 34580.143,
- "total_deaths": 55961.0,
- "new_deaths": 990.0,
- "new_deaths_smoothed": 1001.0,
- "total_cases_per_million": 5998.201,
- "new_cases_per_million": 220.456,
- "new_cases_smoothed_per_million": 162.685,
- "total_deaths_per_million": 263.272,
- "new_deaths_per_million": 4.658,
- "new_deaths_smoothed_per_million": 4.709,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-28",
- "total_cases": 1313667.0,
- "new_cases": 38693.0,
- "new_cases_smoothed": 35155.429,
- "total_deaths": 57070.0,
- "new_deaths": 1109.0,
- "new_deaths_smoothed": 1013.429,
- "total_cases_per_million": 6180.235,
- "new_cases_per_million": 182.034,
- "new_cases_smoothed_per_million": 165.391,
- "total_deaths_per_million": 268.49,
- "new_deaths_per_million": 5.217,
- "new_deaths_smoothed_per_million": 4.768,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-29",
- "total_cases": 1344143.0,
- "new_cases": 30476.0,
- "new_cases_smoothed": 37015.0,
- "total_deaths": 57622.0,
- "new_deaths": 552.0,
- "new_deaths_smoothed": 1000.714,
- "total_cases_per_million": 6323.611,
- "new_cases_per_million": 143.376,
- "new_cases_smoothed_per_million": 174.14,
- "total_deaths_per_million": 271.087,
- "new_deaths_per_million": 2.597,
- "new_deaths_smoothed_per_million": 4.708,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-30",
- "total_cases": 1368195.0,
- "new_cases": 24052.0,
- "new_cases_smoothed": 37389.286,
- "total_deaths": 58314.0,
- "new_deaths": 692.0,
- "new_deaths_smoothed": 1006.143,
- "total_cases_per_million": 6436.765,
- "new_cases_per_million": 113.154,
- "new_cases_smoothed_per_million": 175.9,
- "total_deaths_per_million": 274.342,
- "new_deaths_per_million": 3.256,
- "new_deaths_smoothed_per_million": 4.733,
- "total_tests": 1478671.0,
- "total_tests_per_thousand": 6.957,
- "tests_units": "tests performed",
- "stringency_index": 77.31
- },
- {
- "date": "2020-07-01",
- "total_cases": 1402041.0,
- "new_cases": 33846.0,
- "new_cases_smoothed": 36590.714,
- "total_deaths": 59594.0,
- "new_deaths": 1280.0,
- "new_deaths_smoothed": 992.714,
- "total_cases_per_million": 6595.996,
- "new_cases_per_million": 159.231,
- "new_cases_smoothed_per_million": 172.143,
- "total_deaths_per_million": 280.364,
- "new_deaths_per_million": 6.022,
- "new_deaths_smoothed_per_million": 4.67,
- "tests_units": "tests performed",
- "stringency_index": 77.31
- },
- {
- "date": "2020-07-02",
- "total_cases": 1448753.0,
- "new_cases": 46712.0,
- "new_cases_smoothed": 37160.286,
- "total_deaths": 60632.0,
- "new_deaths": 1038.0,
- "new_deaths_smoothed": 971.714,
- "total_cases_per_million": 6815.756,
- "new_cases_per_million": 219.76,
- "new_cases_smoothed_per_million": 174.823,
- "total_deaths_per_million": 285.247,
- "new_deaths_per_million": 4.883,
- "new_deaths_smoothed_per_million": 4.571,
- "tests_units": "tests performed",
- "stringency_index": 77.31
- },
- {
- "date": "2020-07-03",
- "total_cases": 1496858.0,
- "new_cases": 48105.0,
- "new_cases_smoothed": 38392.0,
- "total_deaths": 61884.0,
- "new_deaths": 1252.0,
- "new_deaths_smoothed": 987.571,
- "total_cases_per_million": 7042.069,
- "new_cases_per_million": 226.313,
- "new_cases_smoothed_per_million": 180.618,
- "total_deaths_per_million": 291.137,
- "new_deaths_per_million": 5.89,
- "new_deaths_smoothed_per_million": 4.646,
- "tests_units": "tests performed",
- "stringency_index": 81.02
- },
- {
- "date": "2020-07-04",
- "total_cases": 1539081.0,
- "new_cases": 42223.0,
- "new_cases_smoothed": 37729.571,
- "total_deaths": 63174.0,
- "new_deaths": 1290.0,
- "new_deaths_smoothed": 1030.429,
- "total_cases_per_million": 7240.71,
- "new_cases_per_million": 198.641,
- "new_cases_smoothed_per_million": 177.501,
- "total_deaths_per_million": 297.206,
- "new_deaths_per_million": 6.069,
- "new_deaths_smoothed_per_million": 4.848,
- "total_tests": 2124223.0,
- "total_tests_per_thousand": 9.994,
- "tests_units": "tests performed",
- "stringency_index": 81.02
- },
- {
- "date": "2020-07-05",
- "total_cases": 1577004.0,
- "new_cases": 37923.0,
- "new_cases_smoothed": 37619.571,
- "total_deaths": 64265.0,
- "new_deaths": 1091.0,
- "new_deaths_smoothed": 1027.857,
- "total_cases_per_million": 7419.121,
- "new_cases_per_million": 178.411,
- "new_cases_smoothed_per_million": 176.984,
- "total_deaths_per_million": 302.339,
- "new_deaths_per_million": 5.133,
- "new_deaths_smoothed_per_million": 4.836,
- "tests_units": "tests performed",
- "stringency_index": 81.02
- },
- {
- "date": "2020-07-06",
- "total_cases": 1603055.0,
- "new_cases": 26051.0,
- "new_cases_smoothed": 36987.429,
- "total_deaths": 64867.0,
- "new_deaths": 602.0,
- "new_deaths_smoothed": 1035.0,
- "total_cases_per_million": 7541.68,
- "new_cases_per_million": 122.559,
- "new_cases_smoothed_per_million": 174.01,
- "total_deaths_per_million": 305.171,
- "new_deaths_per_million": 2.832,
- "new_deaths_smoothed_per_million": 4.869,
- "tests_units": "tests performed",
- "stringency_index": 81.02
- },
- {
- "date": "2020-07-07",
- "total_cases": 1623284.0,
- "new_cases": 20229.0,
- "new_cases_smoothed": 36441.286,
- "total_deaths": 65487.0,
- "new_deaths": 620.0,
- "new_deaths_smoothed": 1024.714,
- "total_cases_per_million": 7636.848,
- "new_cases_per_million": 95.169,
- "new_cases_smoothed_per_million": 171.44,
- "total_deaths_per_million": 308.088,
- "new_deaths_per_million": 2.917,
- "new_deaths_smoothed_per_million": 4.821,
- "new_tests_smoothed": 98318.0,
- "new_tests_smoothed_per_thousand": 0.463,
- "tests_units": "tests performed",
- "stringency_index": 81.02
- },
- {
- "date": "2020-07-08",
- "total_cases": 1668589.0,
- "new_cases": 45305.0,
- "new_cases_smoothed": 38078.286,
- "total_deaths": 66741.0,
- "new_deaths": 1254.0,
- "new_deaths_smoothed": 1021.0,
- "total_cases_per_million": 7849.989,
- "new_cases_per_million": 213.14,
- "new_cases_smoothed_per_million": 179.142,
- "total_deaths_per_million": 313.988,
- "new_deaths_per_million": 5.9,
- "new_deaths_smoothed_per_million": 4.803,
- "new_tests_smoothed": 77295.0,
- "new_tests_smoothed_per_thousand": 0.364,
- "tests_units": "tests performed",
- "stringency_index": 81.02
- },
- {
- "date": "2020-07-09",
- "total_cases": 1713160.0,
- "new_cases": 44571.0,
- "new_cases_smoothed": 37772.429,
- "total_deaths": 67964.0,
- "new_deaths": 1223.0,
- "new_deaths_smoothed": 1047.429,
- "total_cases_per_million": 8059.676,
- "new_cases_per_million": 209.687,
- "new_cases_smoothed_per_million": 177.703,
- "total_deaths_per_million": 319.741,
- "new_deaths_per_million": 5.754,
- "new_deaths_smoothed_per_million": 4.928,
- "new_tests_smoothed": 56272.0,
- "new_tests_smoothed_per_thousand": 0.265,
- "tests_units": "tests performed",
- "stringency_index": 81.02
- },
- {
- "date": "2020-07-10",
- "total_cases": 1755779.0,
- "new_cases": 42619.0,
- "new_cases_smoothed": 36988.714,
- "total_deaths": 69184.0,
- "new_deaths": 1220.0,
- "new_deaths_smoothed": 1042.857,
- "total_cases_per_million": 8260.18,
- "new_cases_per_million": 200.504,
- "new_cases_smoothed_per_million": 174.016,
- "total_deaths_per_million": 325.481,
- "new_deaths_per_million": 5.74,
- "new_deaths_smoothed_per_million": 4.906,
- "new_tests_smoothed": 35249.0,
- "new_tests_smoothed_per_thousand": 0.166,
- "tests_units": "tests performed",
- "stringency_index": 81.02
- },
- {
- "date": "2020-07-11",
- "total_cases": 1800827.0,
- "new_cases": 45048.0,
- "new_cases_smoothed": 37392.286,
- "total_deaths": 70398.0,
- "new_deaths": 1214.0,
- "new_deaths_smoothed": 1032.0,
- "total_cases_per_million": 8472.111,
- "new_cases_per_million": 211.931,
- "new_cases_smoothed_per_million": 175.915,
- "total_deaths_per_million": 331.192,
- "new_deaths_per_million": 5.711,
- "new_deaths_smoothed_per_million": 4.855,
- "total_tests": 2223803.0,
- "total_tests_per_thousand": 10.462,
- "new_tests_smoothed": 14226.0,
- "new_tests_smoothed_per_thousand": 0.067,
- "tests_units": "tests performed",
- "stringency_index": 81.02
- },
- {
- "date": "2020-07-12",
- "total_cases": 1839850.0,
- "new_cases": 39023.0,
- "new_cases_smoothed": 37549.429,
- "total_deaths": 71469.0,
- "new_deaths": 1071.0,
- "new_deaths_smoothed": 1029.143,
- "total_cases_per_million": 8655.698,
- "new_cases_per_million": 183.586,
- "new_cases_smoothed_per_million": 176.654,
- "total_deaths_per_million": 336.231,
- "new_deaths_per_million": 5.039,
- "new_deaths_smoothed_per_million": 4.842,
- "new_tests_smoothed": 16661.0,
- "new_tests_smoothed_per_thousand": 0.078,
- "tests_units": "tests performed",
- "stringency_index": 81.02
- },
- {
- "date": "2020-07-13",
- "total_cases": 1864681.0,
- "new_cases": 24831.0,
- "new_cases_smoothed": 37375.143,
- "total_deaths": 72100.0,
- "new_deaths": 631.0,
- "new_deaths_smoothed": 1033.286,
- "total_cases_per_million": 8772.517,
- "new_cases_per_million": 116.819,
- "new_cases_smoothed_per_million": 175.834,
- "total_deaths_per_million": 339.199,
- "new_deaths_per_million": 2.969,
- "new_deaths_smoothed_per_million": 4.861,
- "new_tests_smoothed": 19097.0,
- "new_tests_smoothed_per_thousand": 0.09,
- "tests_units": "tests performed",
- "stringency_index": 81.02
- },
- {
- "date": "2020-07-14",
- "total_cases": 1884967.0,
- "new_cases": 20286.0,
- "new_cases_smoothed": 37383.286,
- "total_deaths": 72833.0,
- "new_deaths": 733.0,
- "new_deaths_smoothed": 1049.429,
- "total_cases_per_million": 8867.954,
- "new_cases_per_million": 95.437,
- "new_cases_smoothed_per_million": 175.872,
- "total_deaths_per_million": 342.648,
- "new_deaths_per_million": 3.448,
- "new_deaths_smoothed_per_million": 4.937,
- "new_tests_smoothed": 21533.0,
- "new_tests_smoothed_per_thousand": 0.101,
- "tests_units": "tests performed",
- "stringency_index": 81.02
- },
- {
- "date": "2020-07-15",
- "total_cases": 1926824.0,
- "new_cases": 41857.0,
- "new_cases_smoothed": 36890.714,
- "total_deaths": 74133.0,
- "new_deaths": 1300.0,
- "new_deaths_smoothed": 1056.0,
- "total_cases_per_million": 9064.873,
- "new_cases_per_million": 196.919,
- "new_cases_smoothed_per_million": 173.555,
- "total_deaths_per_million": 348.764,
- "new_deaths_per_million": 6.116,
- "new_deaths_smoothed_per_million": 4.968,
- "new_tests_smoothed": 23968.0,
- "new_tests_smoothed_per_thousand": 0.113,
- "tests_units": "tests performed",
- "stringency_index": 81.02
- },
- {
- "date": "2020-07-16",
- "total_cases": 1966748.0,
- "new_cases": 39924.0,
- "new_cases_smoothed": 36226.857,
- "total_deaths": 75366.0,
- "new_deaths": 1233.0,
- "new_deaths_smoothed": 1057.429,
- "total_cases_per_million": 9252.698,
- "new_cases_per_million": 187.825,
- "new_cases_smoothed_per_million": 170.432,
- "total_deaths_per_million": 354.564,
- "new_deaths_per_million": 5.801,
- "new_deaths_smoothed_per_million": 4.975,
- "new_tests_smoothed": 26404.0,
- "new_tests_smoothed_per_thousand": 0.124,
- "tests_units": "tests performed",
- "stringency_index": 81.02
- },
- {
- "date": "2020-07-17",
- "total_cases": 2012151.0,
- "new_cases": 45403.0,
- "new_cases_smoothed": 36624.571,
- "total_deaths": 76688.0,
- "new_deaths": 1322.0,
- "new_deaths_smoothed": 1072.0,
- "total_cases_per_million": 9466.299,
- "new_cases_per_million": 213.601,
- "new_cases_smoothed_per_million": 172.303,
- "total_deaths_per_million": 360.784,
- "new_deaths_per_million": 6.219,
- "new_deaths_smoothed_per_million": 5.043,
- "new_tests_smoothed": 28839.0,
- "new_tests_smoothed_per_thousand": 0.136,
- "tests_units": "tests performed",
- "stringency_index": 81.02
- },
- {
- "date": "2020-07-18",
- "total_cases": 2046328.0,
- "new_cases": 34177.0,
- "new_cases_smoothed": 35071.571,
- "total_deaths": 77851.0,
- "new_deaths": 1163.0,
- "new_deaths_smoothed": 1064.714,
- "total_cases_per_million": 9627.087,
- "new_cases_per_million": 160.788,
- "new_cases_smoothed_per_million": 164.997,
- "total_deaths_per_million": 366.255,
- "new_deaths_per_million": 5.471,
- "new_deaths_smoothed_per_million": 5.009,
- "new_tests_smoothed": 31275.0,
- "new_tests_smoothed_per_thousand": 0.147,
- "tests_units": "tests performed",
- "stringency_index": 81.02
- },
- {
- "date": "2020-07-19",
- "total_cases": 2074860.0,
- "new_cases": 28532.0,
- "new_cases_smoothed": 33572.857,
- "total_deaths": 78772.0,
- "new_deaths": 921.0,
- "new_deaths_smoothed": 1043.286,
- "total_cases_per_million": 9761.318,
- "new_cases_per_million": 134.231,
- "new_cases_smoothed_per_million": 157.946,
- "total_deaths_per_million": 370.588,
- "new_deaths_per_million": 4.333,
- "new_deaths_smoothed_per_million": 4.908,
- "new_tests_smoothed": 31275.0,
- "new_tests_smoothed_per_thousand": 0.147,
- "tests_units": "tests performed",
- "stringency_index": 81.02
- },
- {
- "date": "2020-07-20",
- "total_cases": 2098389.0,
- "new_cases": 23529.0,
- "new_cases_smoothed": 33386.857,
- "total_deaths": 79488.0,
- "new_deaths": 716.0,
- "new_deaths_smoothed": 1055.429,
- "total_cases_per_million": 9872.012,
- "new_cases_per_million": 110.694,
- "new_cases_smoothed_per_million": 157.071,
- "total_deaths_per_million": 373.957,
- "new_deaths_per_million": 3.368,
- "new_deaths_smoothed_per_million": 4.965,
- "new_tests_smoothed": 31275.0,
- "new_tests_smoothed_per_thousand": 0.147,
- "tests_units": "tests performed",
- "stringency_index": 81.02
- },
- {
- "date": "2020-07-21",
- "total_cases": 2118646.0,
- "new_cases": 20257.0,
- "new_cases_smoothed": 33382.714,
- "total_deaths": 80120.0,
- "new_deaths": 632.0,
- "new_deaths_smoothed": 1041.0,
- "total_cases_per_million": 9967.312,
- "new_cases_per_million": 95.3,
- "new_cases_smoothed_per_million": 157.051,
- "total_deaths_per_million": 376.93,
- "new_deaths_per_million": 2.973,
- "new_deaths_smoothed_per_million": 4.897,
- "total_tests": 2536552.0,
- "total_tests_per_thousand": 11.933,
- "new_tests_smoothed": 31275.0,
- "new_tests_smoothed_per_thousand": 0.147,
- "tests_units": "tests performed",
- "stringency_index": 81.02
- },
- {
- "date": "2020-07-22",
- "total_cases": 2159654.0,
- "new_cases": 41008.0,
- "new_cases_smoothed": 33261.429,
- "total_deaths": 81487.0,
- "new_deaths": 1367.0,
- "new_deaths_smoothed": 1050.571,
- "total_cases_per_million": 10160.237,
- "new_cases_per_million": 192.925,
- "new_cases_smoothed_per_million": 156.481,
- "total_deaths_per_million": 383.361,
- "new_deaths_per_million": 6.431,
- "new_deaths_smoothed_per_million": 4.942,
- "new_tests_smoothed": 31892.0,
- "new_tests_smoothed_per_thousand": 0.15,
- "tests_units": "tests performed",
- "stringency_index": 81.02
- },
- {
- "date": "2020-07-23",
- "total_cases": 2227514.0,
- "new_cases": 67860.0,
- "new_cases_smoothed": 37252.286,
- "total_deaths": 82771.0,
- "new_deaths": 1284.0,
- "new_deaths_smoothed": 1057.857,
- "total_cases_per_million": 10479.489,
- "new_cases_per_million": 319.252,
- "new_cases_smoothed_per_million": 175.256,
- "total_deaths_per_million": 389.402,
- "new_deaths_per_million": 6.041,
- "new_deaths_smoothed_per_million": 4.977,
- "new_tests_smoothed": 32509.0,
- "new_tests_smoothed_per_thousand": 0.153,
- "tests_units": "tests performed",
- "stringency_index": 81.02
- },
- {
- "date": "2020-07-24",
- "total_cases": 2287475.0,
- "new_cases": 59961.0,
- "new_cases_smoothed": 39332.0,
- "total_deaths": 84082.0,
- "new_deaths": 1311.0,
- "new_deaths_smoothed": 1056.286,
- "total_cases_per_million": 10761.58,
- "new_cases_per_million": 282.091,
- "new_cases_smoothed_per_million": 185.04,
- "total_deaths_per_million": 395.569,
- "new_deaths_per_million": 6.168,
- "new_deaths_smoothed_per_million": 4.969,
- "new_tests_smoothed": 33126.0,
- "new_tests_smoothed_per_thousand": 0.156,
- "tests_units": "tests performed",
- "stringency_index": 81.02
- },
- {
- "date": "2020-07-25",
- "total_cases": 2343366.0,
- "new_cases": 55891.0,
- "new_cases_smoothed": 42434.0,
- "total_deaths": 85238.0,
- "new_deaths": 1156.0,
- "new_deaths_smoothed": 1055.286,
- "total_cases_per_million": 11024.523,
- "new_cases_per_million": 262.943,
- "new_cases_smoothed_per_million": 199.634,
- "total_deaths_per_million": 401.008,
- "new_deaths_per_million": 5.438,
- "new_deaths_smoothed_per_million": 4.965,
- "total_tests": 2678927.0,
- "total_tests_per_thousand": 12.603,
- "new_tests_smoothed": 33743.0,
- "new_tests_smoothed_per_thousand": 0.159,
- "tests_units": "tests performed",
- "stringency_index": 81.02
- },
- {
- "date": "2020-07-26",
- "total_cases": 2394513.0,
- "new_cases": 51147.0,
- "new_cases_smoothed": 45664.714,
- "total_deaths": 86449.0,
- "new_deaths": 1211.0,
- "new_deaths_smoothed": 1096.714,
- "total_cases_per_million": 11265.147,
- "new_cases_per_million": 240.624,
- "new_cases_smoothed_per_million": 214.833,
- "total_deaths_per_million": 406.705,
- "new_deaths_per_million": 5.697,
- "new_deaths_smoothed_per_million": 5.16,
- "new_tests_smoothed": 40654.0,
- "new_tests_smoothed_per_thousand": 0.191,
- "tests_units": "tests performed",
- "stringency_index": 81.02
- },
- {
- "date": "2020-07-27",
- "total_cases": 2419091.0,
- "new_cases": 24578.0,
- "new_cases_smoothed": 45814.571,
- "total_deaths": 87004.0,
- "new_deaths": 555.0,
- "new_deaths_smoothed": 1073.714,
- "total_cases_per_million": 11380.776,
- "new_cases_per_million": 115.629,
- "new_cases_smoothed_per_million": 215.538,
- "total_deaths_per_million": 409.316,
- "new_deaths_per_million": 2.611,
- "new_deaths_smoothed_per_million": 5.051,
- "new_tests_smoothed": 47566.0,
- "new_tests_smoothed_per_thousand": 0.224,
- "tests_units": "tests performed",
- "stringency_index": 81.02
- },
- {
- "date": "2020-07-28",
- "total_cases": 2442375.0,
- "new_cases": 23284.0,
- "new_cases_smoothed": 46247.0,
- "total_deaths": 87618.0,
- "new_deaths": 614.0,
- "new_deaths_smoothed": 1071.143,
- "total_cases_per_million": 11490.317,
- "new_cases_per_million": 109.541,
- "new_cases_smoothed_per_million": 217.572,
- "total_deaths_per_million": 412.205,
- "new_deaths_per_million": 2.889,
- "new_deaths_smoothed_per_million": 5.039,
- "new_tests_smoothed": 54477.0,
- "new_tests_smoothed_per_thousand": 0.256,
- "tests_units": "tests performed",
- "stringency_index": 81.02
- },
- {
- "date": "2020-07-29",
- "total_cases": 2483191.0,
- "new_cases": 40816.0,
- "new_cases_smoothed": 46219.571,
- "total_deaths": 88539.0,
- "new_deaths": 921.0,
- "new_deaths_smoothed": 1007.429,
- "total_cases_per_million": 11682.339,
- "new_cases_per_million": 192.022,
- "new_cases_smoothed_per_million": 217.443,
- "total_deaths_per_million": 416.538,
- "new_deaths_per_million": 4.333,
- "new_deaths_smoothed_per_million": 4.74,
- "new_tests_smoothed": 60772.0,
- "new_tests_smoothed_per_thousand": 0.286,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-07-30",
- "total_cases": 2552265.0,
- "new_cases": 69074.0,
- "new_cases_smoothed": 46393.0,
- "total_deaths": 90134.0,
- "new_deaths": 1595.0,
- "new_deaths_smoothed": 1051.857,
- "total_cases_per_million": 12007.302,
- "new_cases_per_million": 324.963,
- "new_cases_smoothed_per_million": 218.259,
- "total_deaths_per_million": 424.041,
- "new_deaths_per_million": 7.504,
- "new_deaths_smoothed_per_million": 4.949,
- "new_tests_smoothed": 67066.0,
- "new_tests_smoothed_per_thousand": 0.316,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-07-31",
- "total_cases": 2610102.0,
- "new_cases": 57837.0,
- "new_cases_smoothed": 46089.571,
- "total_deaths": 91263.0,
- "new_deaths": 1129.0,
- "new_deaths_smoothed": 1025.857,
- "total_cases_per_million": 12279.4,
- "new_cases_per_million": 272.098,
- "new_cases_smoothed_per_million": 216.831,
- "total_deaths_per_million": 429.353,
- "new_deaths_per_million": 5.311,
- "new_deaths_smoothed_per_million": 4.826,
- "new_tests_smoothed": 73361.0,
- "new_tests_smoothed_per_thousand": 0.345,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-08-01",
- "total_cases": 2662485.0,
- "new_cases": 52383.0,
- "new_cases_smoothed": 45588.429,
- "total_deaths": 92475.0,
- "new_deaths": 1212.0,
- "new_deaths_smoothed": 1033.857,
- "total_cases_per_million": 12525.839,
- "new_cases_per_million": 246.439,
- "new_cases_smoothed_per_million": 214.474,
- "total_deaths_per_million": 435.055,
- "new_deaths_per_million": 5.702,
- "new_deaths_smoothed_per_million": 4.864,
- "new_tests_smoothed": 79655.0,
- "new_tests_smoothed_per_thousand": 0.375,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-08-02",
- "total_cases": 2707877.0,
- "new_cases": 45392.0,
- "new_cases_smoothed": 44766.286,
- "total_deaths": 93563.0,
- "new_deaths": 1088.0,
- "new_deaths_smoothed": 1016.286,
- "total_cases_per_million": 12739.389,
- "new_cases_per_million": 213.55,
- "new_cases_smoothed_per_million": 210.606,
- "total_deaths_per_million": 440.173,
- "new_deaths_per_million": 5.119,
- "new_deaths_smoothed_per_million": 4.781,
- "total_tests": 3316167.0,
- "total_tests_per_thousand": 15.601,
- "new_tests_smoothed": 79655.0,
- "new_tests_smoothed_per_thousand": 0.375,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-08-03",
- "total_cases": 2733677.0,
- "new_cases": 25800.0,
- "new_cases_smoothed": 44940.857,
- "total_deaths": 94104.0,
- "new_deaths": 541.0,
- "new_deaths_smoothed": 1014.286,
- "total_cases_per_million": 12860.767,
- "new_cases_per_million": 121.378,
- "new_cases_smoothed_per_million": 211.427,
- "total_deaths_per_million": 442.719,
- "new_deaths_per_million": 2.545,
- "new_deaths_smoothed_per_million": 4.772,
- "new_tests_smoothed": 80041.0,
- "new_tests_smoothed_per_thousand": 0.377,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-08-04",
- "total_cases": 2750318.0,
- "new_cases": 16641.0,
- "new_cases_smoothed": 43991.857,
- "total_deaths": 94665.0,
- "new_deaths": 561.0,
- "new_deaths_smoothed": 1006.714,
- "total_cases_per_million": 12939.056,
- "new_cases_per_million": 78.289,
- "new_cases_smoothed_per_million": 206.963,
- "total_deaths_per_million": 445.358,
- "new_deaths_per_million": 2.639,
- "new_deaths_smoothed_per_million": 4.736,
- "new_tests_smoothed": 80428.0,
- "new_tests_smoothed_per_thousand": 0.378,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-08-05",
- "total_cases": 2801921.0,
- "new_cases": 51603.0,
- "new_cases_smoothed": 45532.857,
- "total_deaths": 95819.0,
- "new_deaths": 1154.0,
- "new_deaths_smoothed": 1040.0,
- "total_cases_per_million": 13181.825,
- "new_cases_per_million": 242.77,
- "new_cases_smoothed_per_million": 214.212,
- "total_deaths_per_million": 450.787,
- "new_deaths_per_million": 5.429,
- "new_deaths_smoothed_per_million": 4.893,
- "new_tests_smoothed": 80814.0,
- "new_tests_smoothed_per_thousand": 0.38,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-08-06",
- "total_cases": 2859073.0,
- "new_cases": 57152.0,
- "new_cases_smoothed": 43829.714,
- "total_deaths": 97256.0,
- "new_deaths": 1437.0,
- "new_deaths_smoothed": 1017.429,
- "total_cases_per_million": 13450.701,
- "new_cases_per_million": 268.875,
- "new_cases_smoothed_per_million": 206.2,
- "total_deaths_per_million": 457.547,
- "new_deaths_per_million": 6.76,
- "new_deaths_smoothed_per_million": 4.787,
- "new_tests_smoothed": 81200.0,
- "new_tests_smoothed_per_thousand": 0.382,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-08-07",
- "total_cases": 2912212.0,
- "new_cases": 53139.0,
- "new_cases_smoothed": 43158.571,
- "total_deaths": 98493.0,
- "new_deaths": 1237.0,
- "new_deaths_smoothed": 1032.857,
- "total_cases_per_million": 13700.697,
- "new_cases_per_million": 249.996,
- "new_cases_smoothed_per_million": 203.042,
- "total_deaths_per_million": 463.367,
- "new_deaths_per_million": 5.82,
- "new_deaths_smoothed_per_million": 4.859,
- "new_tests_smoothed": 81587.0,
- "new_tests_smoothed_per_thousand": 0.384,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-08-08",
- "total_cases": 2962442.0,
- "new_cases": 50230.0,
- "new_cases_smoothed": 42851.0,
- "total_deaths": 99572.0,
- "new_deaths": 1079.0,
- "new_deaths_smoothed": 1013.857,
- "total_cases_per_million": 13937.007,
- "new_cases_per_million": 236.31,
- "new_cases_smoothed_per_million": 201.595,
- "total_deaths_per_million": 468.443,
- "new_deaths_per_million": 5.076,
- "new_deaths_smoothed_per_million": 4.77,
- "total_tests": 3810322.0,
- "total_tests_per_thousand": 17.926,
- "new_tests_smoothed": 81973.0,
- "new_tests_smoothed_per_thousand": 0.386,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-08-09",
- "total_cases": 3012412.0,
- "new_cases": 49970.0,
- "new_cases_smoothed": 43505.0,
- "total_deaths": 100477.0,
- "new_deaths": 905.0,
- "new_deaths_smoothed": 987.714,
- "total_cases_per_million": 14172.094,
- "new_cases_per_million": 235.087,
- "new_cases_smoothed_per_million": 204.672,
- "total_deaths_per_million": 472.701,
- "new_deaths_per_million": 4.258,
- "new_deaths_smoothed_per_million": 4.647,
- "new_tests_smoothed": 77580.0,
- "new_tests_smoothed_per_thousand": 0.365,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-08-10",
- "total_cases": 3035422.0,
- "new_cases": 23010.0,
- "new_cases_smoothed": 43106.429,
- "total_deaths": 101049.0,
- "new_deaths": 572.0,
- "new_deaths_smoothed": 992.143,
- "total_cases_per_million": 14280.346,
- "new_cases_per_million": 108.252,
- "new_cases_smoothed_per_million": 202.797,
- "total_deaths_per_million": 475.392,
- "new_deaths_per_million": 2.691,
- "new_deaths_smoothed_per_million": 4.668,
- "new_tests_smoothed": 72801.0,
- "new_tests_smoothed_per_thousand": 0.342,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-08-11",
- "total_cases": 3057470.0,
- "new_cases": 22048.0,
- "new_cases_smoothed": 43878.857,
- "total_deaths": 101752.0,
- "new_deaths": 703.0,
- "new_deaths_smoothed": 1012.429,
- "total_cases_per_million": 14384.073,
- "new_cases_per_million": 103.726,
- "new_cases_smoothed_per_million": 206.431,
- "total_deaths_per_million": 478.699,
- "new_deaths_per_million": 3.307,
- "new_deaths_smoothed_per_million": 4.763,
- "new_tests_smoothed": 68021.0,
- "new_tests_smoothed_per_thousand": 0.32,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-08-12",
- "total_cases": 3109630.0,
- "new_cases": 52160.0,
- "new_cases_smoothed": 43958.429,
- "total_deaths": 103026.0,
- "new_deaths": 1274.0,
- "new_deaths_smoothed": 1029.571,
- "total_cases_per_million": 14629.463,
- "new_cases_per_million": 245.39,
- "new_cases_smoothed_per_million": 206.805,
- "total_deaths_per_million": 484.693,
- "new_deaths_per_million": 5.994,
- "new_deaths_smoothed_per_million": 4.844,
- "new_tests_smoothed": 63242.0,
- "new_tests_smoothed_per_thousand": 0.298,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-08-13",
- "total_cases": 3164785.0,
- "new_cases": 55155.0,
- "new_cases_smoothed": 43673.143,
- "total_deaths": 104201.0,
- "new_deaths": 1175.0,
- "new_deaths_smoothed": 992.143,
- "total_cases_per_million": 14888.943,
- "new_cases_per_million": 259.48,
- "new_cases_smoothed_per_million": 205.463,
- "total_deaths_per_million": 490.221,
- "new_deaths_per_million": 5.528,
- "new_deaths_smoothed_per_million": 4.668,
- "new_tests_smoothed": 58463.0,
- "new_tests_smoothed_per_thousand": 0.275,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-08-14",
- "total_cases": 3224876.0,
- "new_cases": 60091.0,
- "new_cases_smoothed": 44666.286,
- "total_deaths": 105463.0,
- "new_deaths": 1262.0,
- "new_deaths_smoothed": 995.714,
- "total_cases_per_million": 15171.645,
- "new_cases_per_million": 282.702,
- "new_cases_smoothed_per_million": 210.136,
- "total_deaths_per_million": 496.158,
- "new_deaths_per_million": 5.937,
- "new_deaths_smoothed_per_million": 4.684,
- "new_tests_smoothed": 53684.0,
- "new_tests_smoothed_per_thousand": 0.253,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-08-15",
- "total_cases": 3275520.0,
- "new_cases": 50644.0,
- "new_cases_smoothed": 44725.429,
- "total_deaths": 106523.0,
- "new_deaths": 1060.0,
- "new_deaths_smoothed": 993.0,
- "total_cases_per_million": 15409.904,
- "new_cases_per_million": 238.258,
- "new_cases_smoothed_per_million": 210.414,
- "total_deaths_per_million": 501.145,
- "new_deaths_per_million": 4.987,
- "new_deaths_smoothed_per_million": 4.672,
- "total_tests": 4152652.0,
- "total_tests_per_thousand": 19.536,
- "new_tests_smoothed": 48904.0,
- "new_tests_smoothed_per_thousand": 0.23,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-08-16",
- "total_cases": 3317096.0,
- "new_cases": 41576.0,
- "new_cases_smoothed": 43526.286,
- "total_deaths": 107232.0,
- "new_deaths": 709.0,
- "new_deaths_smoothed": 965.0,
- "total_cases_per_million": 15605.501,
- "new_cases_per_million": 195.597,
- "new_cases_smoothed_per_million": 204.772,
- "total_deaths_per_million": 504.48,
- "new_deaths_per_million": 3.336,
- "new_deaths_smoothed_per_million": 4.54,
- "new_tests_smoothed": 55087.0,
- "new_tests_smoothed_per_thousand": 0.259,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-08-17",
- "total_cases": 3340197.0,
- "new_cases": 23101.0,
- "new_cases_smoothed": 43539.286,
- "total_deaths": 107852.0,
- "new_deaths": 620.0,
- "new_deaths_smoothed": 971.857,
- "total_cases_per_million": 15714.181,
- "new_cases_per_million": 108.68,
- "new_cases_smoothed_per_million": 204.833,
- "total_deaths_per_million": 507.397,
- "new_deaths_per_million": 2.917,
- "new_deaths_smoothed_per_million": 4.572,
- "new_tests_smoothed": 61270.0,
- "new_tests_smoothed_per_thousand": 0.288,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-08-18",
- "total_cases": 3359570.0,
- "new_cases": 19373.0,
- "new_cases_smoothed": 43157.143,
- "total_deaths": 108536.0,
- "new_deaths": 684.0,
- "new_deaths_smoothed": 969.143,
- "total_cases_per_million": 15805.322,
- "new_cases_per_million": 91.142,
- "new_cases_smoothed_per_million": 203.036,
- "total_deaths_per_million": 510.615,
- "new_deaths_per_million": 3.218,
- "new_deaths_smoothed_per_million": 4.559,
- "new_tests_smoothed": 67453.0,
- "new_tests_smoothed_per_thousand": 0.317,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-08-19",
- "total_cases": 3407354.0,
- "new_cases": 47784.0,
- "new_cases_smoothed": 42532.0,
- "total_deaths": 109888.0,
- "new_deaths": 1352.0,
- "new_deaths_smoothed": 980.286,
- "total_cases_per_million": 16030.125,
- "new_cases_per_million": 224.803,
- "new_cases_smoothed_per_million": 200.095,
- "total_deaths_per_million": 516.975,
- "new_deaths_per_million": 6.361,
- "new_deaths_smoothed_per_million": 4.612,
- "new_tests_smoothed": 73636.0,
- "new_tests_smoothed_per_thousand": 0.346,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-08-20",
- "total_cases": 3456652.0,
- "new_cases": 49298.0,
- "new_cases_smoothed": 41695.286,
- "total_deaths": 111100.0,
- "new_deaths": 1212.0,
- "new_deaths_smoothed": 985.571,
- "total_cases_per_million": 16262.051,
- "new_cases_per_million": 231.926,
- "new_cases_smoothed_per_million": 196.158,
- "total_deaths_per_million": 522.677,
- "new_deaths_per_million": 5.702,
- "new_deaths_smoothed_per_million": 4.637,
- "new_tests_smoothed": 79819.0,
- "new_tests_smoothed_per_thousand": 0.376,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-08-21",
- "total_cases": 3501975.0,
- "new_cases": 45323.0,
- "new_cases_smoothed": 39585.571,
- "total_deaths": 112304.0,
- "new_deaths": 1204.0,
- "new_deaths_smoothed": 977.286,
- "total_cases_per_million": 16475.276,
- "new_cases_per_million": 213.225,
- "new_cases_smoothed_per_million": 186.233,
- "total_deaths_per_million": 528.342,
- "new_deaths_per_million": 5.664,
- "new_deaths_smoothed_per_million": 4.598,
- "new_tests_smoothed": 86002.0,
- "new_tests_smoothed_per_thousand": 0.405,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-08-22",
- "total_cases": 3532330.0,
- "new_cases": 30355.0,
- "new_cases_smoothed": 36687.143,
- "total_deaths": 113358.0,
- "new_deaths": 1054.0,
- "new_deaths_smoothed": 976.429,
- "total_cases_per_million": 16618.083,
- "new_cases_per_million": 142.807,
- "new_cases_smoothed_per_million": 172.597,
- "total_deaths_per_million": 533.3,
- "new_deaths_per_million": 4.959,
- "new_deaths_smoothed_per_million": 4.594,
- "total_tests": 4797948.0,
- "total_tests_per_thousand": 22.572,
- "new_tests_smoothed": 92185.0,
- "new_tests_smoothed_per_thousand": 0.434,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-08-23",
- "total_cases": 3582362.0,
- "new_cases": 50032.0,
- "new_cases_smoothed": 37895.143,
- "total_deaths": 114250.0,
- "new_deaths": 892.0,
- "new_deaths_smoothed": 1002.571,
- "total_cases_per_million": 16853.462,
- "new_cases_per_million": 235.379,
- "new_cases_smoothed_per_million": 178.28,
- "total_deaths_per_million": 537.497,
- "new_deaths_per_million": 4.196,
- "new_deaths_smoothed_per_million": 4.717,
- "new_tests_smoothed": 85140.0,
- "new_tests_smoothed_per_thousand": 0.401,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-08-24",
- "total_cases": 3605783.0,
- "new_cases": 23421.0,
- "new_cases_smoothed": 37940.857,
- "total_deaths": 114744.0,
- "new_deaths": 494.0,
- "new_deaths_smoothed": 984.571,
- "total_cases_per_million": 16963.648,
- "new_cases_per_million": 110.186,
- "new_cases_smoothed_per_million": 178.495,
- "total_deaths_per_million": 539.821,
- "new_deaths_per_million": 2.324,
- "new_deaths_smoothed_per_million": 4.632,
- "new_tests_smoothed": 78094.0,
- "new_tests_smoothed_per_thousand": 0.367,
- "tests_units": "tests performed",
- "stringency_index": 76.39
- },
- {
- "date": "2020-08-25",
- "total_cases": 3622861.0,
- "new_cases": 17078.0,
- "new_cases_smoothed": 37613.0,
- "total_deaths": 115309.0,
- "new_deaths": 565.0,
- "new_deaths_smoothed": 967.571,
- "total_cases_per_million": 17043.993,
- "new_cases_per_million": 80.345,
- "new_cases_smoothed_per_million": 176.953,
- "total_deaths_per_million": 542.479,
- "new_deaths_per_million": 2.658,
- "new_deaths_smoothed_per_million": 4.552,
- "new_tests_smoothed": 71049.0,
- "new_tests_smoothed_per_thousand": 0.334,
- "tests_units": "tests performed",
- "stringency_index": 76.39
- },
- {
- "date": "2020-08-26",
- "total_cases": 3669995.0,
- "new_cases": 47134.0,
- "new_cases_smoothed": 37520.143,
- "total_deaths": 116580.0,
- "new_deaths": 1271.0,
- "new_deaths_smoothed": 956.0,
- "total_cases_per_million": 17265.738,
- "new_cases_per_million": 221.745,
- "new_cases_smoothed_per_million": 176.516,
- "total_deaths_per_million": 548.458,
- "new_deaths_per_million": 5.98,
- "new_deaths_smoothed_per_million": 4.498,
- "new_tests_smoothed": 64003.0,
- "new_tests_smoothed_per_thousand": 0.301,
- "tests_units": "tests performed",
- "stringency_index": 76.39
- },
- {
- "date": "2020-08-27",
- "total_cases": 3717156.0,
- "new_cases": 47161.0,
- "new_cases_smoothed": 37214.857,
- "total_deaths": 117665.0,
- "new_deaths": 1085.0,
- "new_deaths_smoothed": 937.857,
- "total_cases_per_million": 17487.61,
- "new_cases_per_million": 221.872,
- "new_cases_smoothed_per_million": 175.08,
- "total_deaths_per_million": 553.563,
- "new_deaths_per_million": 5.104,
- "new_deaths_smoothed_per_million": 4.412,
- "new_tests_smoothed": 56958.0,
- "new_tests_smoothed_per_thousand": 0.268,
- "tests_units": "tests performed",
- "stringency_index": 76.39
- },
- {
- "date": "2020-08-28",
- "total_cases": 3761391.0,
- "new_cases": 44235.0,
- "new_cases_smoothed": 37059.429,
- "total_deaths": 118649.0,
- "new_deaths": 984.0,
- "new_deaths_smoothed": 906.429,
- "total_cases_per_million": 17695.716,
- "new_cases_per_million": 208.107,
- "new_cases_smoothed_per_million": 174.349,
- "total_deaths_per_million": 558.192,
- "new_deaths_per_million": 4.629,
- "new_deaths_smoothed_per_million": 4.264,
- "new_tests_smoothed": 49912.0,
- "new_tests_smoothed_per_thousand": 0.235,
- "tests_units": "tests performed",
- "stringency_index": 76.39
- },
- {
- "date": "2020-08-29",
- "total_cases": 3804803.0,
- "new_cases": 43412.0,
- "new_cases_smoothed": 38924.714,
- "total_deaths": 119504.0,
- "new_deaths": 855.0,
- "new_deaths_smoothed": 878.0,
- "total_cases_per_million": 17899.951,
- "new_cases_per_million": 204.235,
- "new_cases_smoothed_per_million": 183.124,
- "total_deaths_per_million": 562.215,
- "new_deaths_per_million": 4.022,
- "new_deaths_smoothed_per_million": 4.131,
- "new_tests_smoothed": 42867.0,
- "new_tests_smoothed_per_thousand": 0.202,
- "tests_units": "tests performed",
- "stringency_index": 76.39
- },
- {
- "date": "2020-08-30",
- "total_cases": 3846153.0,
- "new_cases": 41350.0,
- "new_cases_smoothed": 37684.429,
- "total_deaths": 120462.0,
- "new_deaths": 958.0,
- "new_deaths_smoothed": 887.429,
- "total_cases_per_million": 18094.485,
- "new_cases_per_million": 194.534,
- "new_cases_smoothed_per_million": 177.289,
- "total_deaths_per_million": 566.722,
- "new_deaths_per_million": 4.507,
- "new_deaths_smoothed_per_million": 4.175,
- "new_tests_smoothed": 42867.0,
- "new_tests_smoothed_per_thousand": 0.202,
- "tests_units": "tests performed",
- "stringency_index": 76.39
- },
- {
- "date": "2020-08-31",
- "total_cases": 3862311.0,
- "new_cases": 16158.0,
- "new_cases_smoothed": 36646.857,
- "total_deaths": 120828.0,
- "new_deaths": 366.0,
- "new_deaths_smoothed": 869.143,
- "total_cases_per_million": 18170.501,
- "new_cases_per_million": 76.016,
- "new_cases_smoothed_per_million": 172.408,
- "total_deaths_per_million": 568.443,
- "new_deaths_per_million": 1.722,
- "new_deaths_smoothed_per_million": 4.089,
- "total_tests": 5183751.0,
- "total_tests_per_thousand": 24.387,
- "new_tests_smoothed": 42867.0,
- "new_tests_smoothed_per_thousand": 0.202,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-09-01",
- "total_cases": 3908272.0,
- "new_cases": 45961.0,
- "new_cases_smoothed": 40773.0,
- "total_deaths": 121381.0,
- "new_deaths": 553.0,
- "new_deaths_smoothed": 867.429,
- "total_cases_per_million": 18386.728,
- "new_cases_per_million": 216.227,
- "new_cases_smoothed_per_million": 191.819,
- "total_deaths_per_million": 571.045,
- "new_deaths_per_million": 2.602,
- "new_deaths_smoothed_per_million": 4.081,
- "new_tests_smoothed": 48636.0,
- "new_tests_smoothed_per_thousand": 0.229,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-09-02",
- "total_cases": 3950931.0,
- "new_cases": 42659.0,
- "new_cases_smoothed": 40133.714,
- "total_deaths": 122596.0,
- "new_deaths": 1215.0,
- "new_deaths_smoothed": 859.429,
- "total_cases_per_million": 18587.42,
- "new_cases_per_million": 200.692,
- "new_cases_smoothed_per_million": 188.812,
- "total_deaths_per_million": 576.761,
- "new_deaths_per_million": 5.716,
- "new_deaths_smoothed_per_million": 4.043,
- "new_tests_smoothed": 54405.0,
- "new_tests_smoothed_per_thousand": 0.256,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-09-03",
- "total_cases": 3997865.0,
- "new_cases": 46934.0,
- "new_cases_smoothed": 40101.286,
- "total_deaths": 123780.0,
- "new_deaths": 1184.0,
- "new_deaths_smoothed": 873.571,
- "total_cases_per_million": 18808.224,
- "new_cases_per_million": 220.804,
- "new_cases_smoothed_per_million": 188.659,
- "total_deaths_per_million": 582.331,
- "new_deaths_per_million": 5.57,
- "new_deaths_smoothed_per_million": 4.11,
- "new_tests_smoothed": 60174.0,
- "new_tests_smoothed_per_thousand": 0.283,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-09-04",
- "total_cases": 4041638.0,
- "new_cases": 43773.0,
- "new_cases_smoothed": 40035.286,
- "total_deaths": 124614.0,
- "new_deaths": 834.0,
- "new_deaths_smoothed": 852.143,
- "total_cases_per_million": 19014.157,
- "new_cases_per_million": 205.933,
- "new_cases_smoothed_per_million": 188.349,
- "total_deaths_per_million": 586.255,
- "new_deaths_per_million": 3.924,
- "new_deaths_smoothed_per_million": 4.009,
- "new_tests_smoothed": 65943.0,
- "new_tests_smoothed_per_thousand": 0.31,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-09-05",
- "total_cases": 4092832.0,
- "new_cases": 51194.0,
- "new_cases_smoothed": 41147.0,
- "total_deaths": 125521.0,
- "new_deaths": 907.0,
- "new_deaths_smoothed": 859.571,
- "total_cases_per_million": 19255.003,
- "new_cases_per_million": 240.846,
- "new_cases_smoothed_per_million": 193.579,
- "total_deaths_per_million": 590.522,
- "new_deaths_per_million": 4.267,
- "new_deaths_smoothed_per_million": 4.044,
- "total_tests": 5600000.0,
- "total_tests_per_thousand": 26.346,
- "new_tests_smoothed": 71712.0,
- "new_tests_smoothed_per_thousand": 0.337,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-09-06",
- "total_cases": 4123000.0,
- "new_cases": 30168.0,
- "new_cases_smoothed": 39549.571,
- "total_deaths": 126203.0,
- "new_deaths": 682.0,
- "new_deaths_smoothed": 820.143,
- "total_cases_per_million": 19396.93,
- "new_cases_per_million": 141.927,
- "new_cases_smoothed_per_million": 186.064,
- "total_deaths_per_million": 593.73,
- "new_deaths_per_million": 3.209,
- "new_deaths_smoothed_per_million": 3.858,
- "new_tests_smoothed": 71710.0,
- "new_tests_smoothed_per_thousand": 0.337,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-09-07",
- "total_cases": 4137521.0,
- "new_cases": 14521.0,
- "new_cases_smoothed": 39315.714,
- "total_deaths": 126650.0,
- "new_deaths": 447.0,
- "new_deaths_smoothed": 831.714,
- "total_cases_per_million": 19465.245,
- "new_cases_per_million": 68.315,
- "new_cases_smoothed_per_million": 184.963,
- "total_deaths_per_million": 595.833,
- "new_deaths_per_million": 2.103,
- "new_deaths_smoothed_per_million": 3.913,
- "new_tests_smoothed": 71709.0,
- "new_tests_smoothed_per_thousand": 0.337,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-09-08",
- "total_cases": 4147794.0,
- "new_cases": 10273.0,
- "new_cases_smoothed": 34217.429,
- "total_deaths": 126960.0,
- "new_deaths": 310.0,
- "new_deaths_smoothed": 797.0,
- "total_cases_per_million": 19513.575,
- "new_cases_per_million": 48.33,
- "new_cases_smoothed_per_million": 160.978,
- "total_deaths_per_million": 597.292,
- "new_deaths_per_million": 1.458,
- "new_deaths_smoothed_per_million": 3.75,
- "new_tests_smoothed": 65939.0,
- "new_tests_smoothed_per_thousand": 0.31,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-09-09",
- "total_cases": 4162073.0,
- "new_cases": 14279.0,
- "new_cases_smoothed": 30163.143,
- "total_deaths": 127464.0,
- "new_deaths": 504.0,
- "new_deaths_smoothed": 695.429,
- "total_cases_per_million": 19580.752,
- "new_cases_per_million": 67.177,
- "new_cases_smoothed_per_million": 141.905,
- "total_deaths_per_million": 599.663,
- "new_deaths_per_million": 2.371,
- "new_deaths_smoothed_per_million": 3.272,
- "new_tests_smoothed": 60168.0,
- "new_tests_smoothed_per_thousand": 0.283,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-09-10",
- "total_cases": 4197889.0,
- "new_cases": 35816.0,
- "new_cases_smoothed": 28574.857,
- "total_deaths": 128539.0,
- "new_deaths": 1075.0,
- "new_deaths_smoothed": 679.857,
- "total_cases_per_million": 19749.25,
- "new_cases_per_million": 168.499,
- "new_cases_smoothed_per_million": 134.432,
- "total_deaths_per_million": 604.72,
- "new_deaths_per_million": 5.057,
- "new_deaths_smoothed_per_million": 3.198,
- "new_tests_smoothed": 54398.0,
- "new_tests_smoothed_per_thousand": 0.256,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-09-11",
- "total_cases": 4238446.0,
- "new_cases": 40557.0,
- "new_cases_smoothed": 28115.429,
- "total_deaths": 129522.0,
- "new_deaths": 983.0,
- "new_deaths_smoothed": 701.143,
- "total_cases_per_million": 19940.054,
- "new_cases_per_million": 190.803,
- "new_cases_smoothed_per_million": 132.271,
- "total_deaths_per_million": 609.345,
- "new_deaths_per_million": 4.625,
- "new_deaths_smoothed_per_million": 3.299,
- "new_tests_smoothed": 48628.0,
- "new_tests_smoothed_per_thousand": 0.229,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-09-12",
- "total_cases": 4282164.0,
- "new_cases": 43718.0,
- "new_cases_smoothed": 27047.429,
- "total_deaths": 130396.0,
- "new_deaths": 874.0,
- "new_deaths_smoothed": 696.429,
- "total_cases_per_million": 20145.728,
- "new_cases_per_million": 205.674,
- "new_cases_smoothed_per_million": 127.246,
- "total_deaths_per_million": 613.457,
- "new_deaths_per_million": 4.112,
- "new_deaths_smoothed_per_million": 3.276,
- "total_tests": 5900000.0,
- "total_tests_per_thousand": 27.757,
- "new_tests_smoothed": 42857.0,
- "new_tests_smoothed_per_thousand": 0.202,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-09-13",
- "total_cases": 4315687.0,
- "new_cases": 33523.0,
- "new_cases_smoothed": 27526.714,
- "total_deaths": 131210.0,
- "new_deaths": 814.0,
- "new_deaths_smoothed": 715.286,
- "total_cases_per_million": 20303.439,
- "new_cases_per_million": 157.711,
- "new_cases_smoothed_per_million": 129.501,
- "total_deaths_per_million": 617.286,
- "new_deaths_per_million": 3.83,
- "new_deaths_smoothed_per_million": 3.365,
- "new_tests_smoothed": 46939.0,
- "new_tests_smoothed_per_thousand": 0.221,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-09-14",
- "total_cases": 4330455.0,
- "new_cases": 14768.0,
- "new_cases_smoothed": 27562.0,
- "total_deaths": 131625.0,
- "new_deaths": 415.0,
- "new_deaths_smoothed": 710.714,
- "total_cases_per_million": 20372.916,
- "new_cases_per_million": 69.477,
- "new_cases_smoothed_per_million": 129.667,
- "total_deaths_per_million": 619.239,
- "new_deaths_per_million": 1.952,
- "new_deaths_smoothed_per_million": 3.344,
- "new_tests_smoothed": 51020.0,
- "new_tests_smoothed_per_thousand": 0.24,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-09-15",
- "total_cases": 4345610.0,
- "new_cases": 15155.0,
- "new_cases_smoothed": 28259.429,
- "total_deaths": 132006.0,
- "new_deaths": 381.0,
- "new_deaths_smoothed": 720.857,
- "total_cases_per_million": 20444.214,
- "new_cases_per_million": 71.298,
- "new_cases_smoothed_per_million": 132.948,
- "total_deaths_per_million": 621.031,
- "new_deaths_per_million": 1.792,
- "new_deaths_smoothed_per_million": 3.391,
- "new_tests_smoothed": 55102.0,
- "new_tests_smoothed_per_thousand": 0.259,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-09-16",
- "total_cases": 4382263.0,
- "new_cases": 36653.0,
- "new_cases_smoothed": 31455.714,
- "total_deaths": 133119.0,
- "new_deaths": 1113.0,
- "new_deaths_smoothed": 807.857,
- "total_cases_per_million": 20616.65,
- "new_cases_per_million": 172.436,
- "new_cases_smoothed_per_million": 147.986,
- "total_deaths_per_million": 626.267,
- "new_deaths_per_million": 5.236,
- "new_deaths_smoothed_per_million": 3.801,
- "new_tests_smoothed": 59184.0,
- "new_tests_smoothed_per_thousand": 0.278,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-09-17",
- "total_cases": 4419083.0,
- "new_cases": 36820.0,
- "new_cases_smoothed": 31599.143,
- "total_deaths": 134106.0,
- "new_deaths": 987.0,
- "new_deaths_smoothed": 795.286,
- "total_cases_per_million": 20789.872,
- "new_cases_per_million": 173.222,
- "new_cases_smoothed_per_million": 148.66,
- "total_deaths_per_million": 630.911,
- "new_deaths_per_million": 4.643,
- "new_deaths_smoothed_per_million": 3.741,
- "new_tests_smoothed": 63265.0,
- "new_tests_smoothed_per_thousand": 0.298,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-09-18",
- "total_cases": 4455386.0,
- "new_cases": 36303.0,
- "new_cases_smoothed": 30991.429,
- "total_deaths": 134935.0,
- "new_deaths": 829.0,
- "new_deaths_smoothed": 773.286,
- "total_cases_per_million": 20960.662,
- "new_cases_per_million": 170.79,
- "new_cases_smoothed_per_million": 145.801,
- "total_deaths_per_million": 634.811,
- "new_deaths_per_million": 3.9,
- "new_deaths_smoothed_per_million": 3.638,
- "new_tests_smoothed": 67347.0,
- "new_tests_smoothed_per_thousand": 0.317,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-09-19",
- "total_cases": 4495183.0,
- "new_cases": 39797.0,
- "new_cases_smoothed": 30431.286,
- "total_deaths": 135793.0,
- "new_deaths": 858.0,
- "new_deaths_smoothed": 771.0,
- "total_cases_per_million": 21147.89,
- "new_cases_per_million": 187.228,
- "new_cases_smoothed_per_million": 143.166,
- "total_deaths_per_million": 638.847,
- "new_deaths_per_million": 4.037,
- "new_deaths_smoothed_per_million": 3.627,
- "total_tests": 6400000.0,
- "total_tests_per_thousand": 30.109,
- "new_tests_smoothed": 71429.0,
- "new_tests_smoothed_per_thousand": 0.336,
- "tests_units": "tests performed",
- "stringency_index": 72.69
- },
- {
- "date": "2020-09-20",
- "total_cases": 4528240.0,
- "new_cases": 33057.0,
- "new_cases_smoothed": 30364.714,
- "total_deaths": 136532.0,
- "new_deaths": 739.0,
- "new_deaths_smoothed": 760.286,
- "total_cases_per_million": 21303.409,
- "new_cases_per_million": 155.519,
- "new_cases_smoothed_per_million": 142.853,
- "total_deaths_per_million": 642.324,
- "new_deaths_per_million": 3.477,
- "new_deaths_smoothed_per_million": 3.577,
- "stringency_index": 72.69
- },
- {
- "date": "2020-09-21",
- "total_cases": 4544629.0,
- "new_cases": 16389.0,
- "new_cases_smoothed": 30596.286,
- "total_deaths": 136895.0,
- "new_deaths": 363.0,
- "new_deaths_smoothed": 752.857,
- "total_cases_per_million": 21380.512,
- "new_cases_per_million": 77.103,
- "new_cases_smoothed_per_million": 143.942,
- "total_deaths_per_million": 644.032,
- "new_deaths_per_million": 1.708,
- "new_deaths_smoothed_per_million": 3.542,
- "stringency_index": 72.69
- },
- {
- "date": "2020-09-22",
- "total_cases": 4558068.0,
- "new_cases": 13439.0,
- "new_cases_smoothed": 30351.143,
- "total_deaths": 137272.0,
- "new_deaths": 377.0,
- "new_deaths_smoothed": 752.286,
- "total_cases_per_million": 21443.737,
- "new_cases_per_million": 63.225,
- "new_cases_smoothed_per_million": 142.789,
- "total_deaths_per_million": 645.805,
- "new_deaths_per_million": 1.774,
- "new_deaths_smoothed_per_million": 3.539,
- "stringency_index": 72.69
- },
- {
- "date": "2020-09-23",
- "total_cases": 4591604.0,
- "new_cases": 33536.0,
- "new_cases_smoothed": 29905.857,
- "total_deaths": 138108.0,
- "new_deaths": 836.0,
- "new_deaths_smoothed": 712.714,
- "total_cases_per_million": 21601.509,
- "new_cases_per_million": 157.772,
- "new_cases_smoothed_per_million": 140.694,
- "total_deaths_per_million": 649.738,
- "new_deaths_per_million": 3.933,
- "new_deaths_smoothed_per_million": 3.353
- },
- {
- "date": "2020-09-24",
- "total_cases": 4624885.0,
- "new_cases": 33281.0,
- "new_cases_smoothed": 29400.286,
- "total_deaths": 138977.0,
- "new_deaths": 869.0,
- "new_deaths_smoothed": 695.857,
- "total_cases_per_million": 21758.082,
- "new_cases_per_million": 156.573,
- "new_cases_smoothed_per_million": 138.316,
- "total_deaths_per_million": 653.827,
- "new_deaths_per_million": 4.088,
- "new_deaths_smoothed_per_million": 3.274
- },
- {
- "date": "2020-09-25",
- "total_cases": 4657702.0,
- "new_cases": 32817.0,
- "new_cases_smoothed": 28902.286,
- "total_deaths": 139808.0,
- "new_deaths": 831.0,
- "new_deaths_smoothed": 696.143,
- "total_cases_per_million": 21912.472,
- "new_cases_per_million": 154.39,
- "new_cases_smoothed_per_million": 135.973,
- "total_deaths_per_million": 657.736,
- "new_deaths_per_million": 3.909,
- "new_deaths_smoothed_per_million": 3.275
- }
- ]
- },
- "BRB": {
- "continent": "North America",
- "location": "Barbados",
- "population": 287371.0,
- "population_density": 664.463,
- "median_age": 39.8,
- "aged_65_older": 14.952,
- "aged_70_older": 9.473,
- "gdp_per_capita": 16978.068,
- "cardiovasc_death_rate": 170.05,
- "diabetes_prevalence": 13.57,
- "female_smokers": 1.9,
- "male_smokers": 14.5,
- "handwashing_facilities": 88.469,
- "hospital_beds_per_thousand": 5.8,
- "life_expectancy": 79.19,
- "human_development_index": 0.8,
- "data": [
- {
- "date": "2020-03-18",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 3.48,
- "new_cases_per_million": 3.48,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-03-19",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 3.48,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-03-20",
- "total_cases": 2.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 6.96,
- "new_cases_per_million": 3.48,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-03-21",
- "total_cases": 6.0,
- "new_cases": 4.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 20.879,
- "new_cases_per_million": 13.919,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-03-22",
- "total_cases": 14.0,
- "new_cases": 8.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 48.718,
- "new_cases_per_million": 27.839,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-03-23",
- "total_cases": 17.0,
- "new_cases": 3.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 59.157,
- "new_cases_per_million": 10.439,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-03-24",
- "total_cases": 17.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 59.157,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.451,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-03-25",
- "total_cases": 18.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 62.637,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 8.451,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-03-26",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 62.637,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.451,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-03-27",
- "total_cases": 24.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 3.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 83.516,
- "new_cases_per_million": 20.879,
- "new_cases_smoothed_per_million": 10.937,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-03-28",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 83.516,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.948,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-29",
- "total_cases": 26.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 90.475,
- "new_cases_per_million": 6.96,
- "new_cases_smoothed_per_million": 5.965,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-30",
- "total_cases": 33.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 114.834,
- "new_cases_per_million": 24.359,
- "new_cases_smoothed_per_million": 7.954,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-31",
- "total_cases": 34.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 118.314,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 8.451,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-01",
- "total_cases": 34.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 118.314,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.954,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-02",
- "total_cases": 45.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 3.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 156.592,
- "new_cases_per_million": 38.278,
- "new_cases_smoothed_per_million": 13.422,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-03",
- "total_cases": 45.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 156.592,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.439,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-04",
- "total_cases": 45.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 156.592,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.439,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-05",
- "total_cases": 51.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 3.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 177.471,
- "new_cases_per_million": 20.879,
- "new_cases_smoothed_per_million": 12.428,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-06",
- "total_cases": 56.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 194.87,
- "new_cases_per_million": 17.399,
- "new_cases_smoothed_per_million": 11.434,
- "total_deaths_per_million": 3.48,
- "new_deaths_per_million": 3.48,
- "new_deaths_smoothed_per_million": 0.497,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-07",
- "total_cases": 60.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 2.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 208.789,
- "new_cases_per_million": 13.919,
- "new_cases_smoothed_per_million": 12.925,
- "total_deaths_per_million": 6.96,
- "new_deaths_per_million": 3.48,
- "new_deaths_smoothed_per_million": 0.994,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-08",
- "total_cases": 63.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 219.229,
- "new_cases_per_million": 10.439,
- "new_cases_smoothed_per_million": 14.416,
- "total_deaths_per_million": 10.439,
- "new_deaths_per_million": 3.48,
- "new_deaths_smoothed_per_million": 1.491,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-09",
- "total_cases": 63.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 219.229,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.948,
- "total_deaths_per_million": 10.439,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.491,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-10",
- "total_cases": 66.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 229.668,
- "new_cases_per_million": 10.439,
- "new_cases_smoothed_per_million": 10.439,
- "total_deaths_per_million": 10.439,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.491,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-11",
- "total_cases": 67.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 3.143,
- "total_deaths": 4.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 233.148,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 10.937,
- "total_deaths_per_million": 13.919,
- "new_deaths_per_million": 3.48,
- "new_deaths_smoothed_per_million": 1.988,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-12",
- "total_cases": 68.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 236.628,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 8.451,
- "total_deaths_per_million": 13.919,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.988,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-13",
- "total_cases": 71.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 247.067,
- "new_cases_per_million": 10.439,
- "new_cases_smoothed_per_million": 7.457,
- "total_deaths_per_million": 13.919,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.491,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-14",
- "total_cases": 72.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 250.547,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 5.965,
- "total_deaths_per_million": 13.919,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.994,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-15",
- "total_cases": 73.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 5.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 254.027,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 4.971,
- "total_deaths_per_million": 17.399,
- "new_deaths_per_million": 3.48,
- "new_deaths_smoothed_per_million": 0.994,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-16",
- "total_cases": 75.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 260.987,
- "new_cases_per_million": 6.96,
- "new_cases_smoothed_per_million": 5.965,
- "total_deaths_per_million": 17.399,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.994,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-17",
- "total_cases": 75.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 260.987,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.474,
- "total_deaths_per_million": 17.399,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.994,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-18",
- "total_cases": 75.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 260.987,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.977,
- "total_deaths_per_million": 17.399,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.497,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-19",
- "total_cases": 75.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 260.987,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.48,
- "total_deaths_per_million": 17.399,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.497,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-20",
- "total_cases": 75.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 260.987,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.988,
- "total_deaths_per_million": 17.399,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.497,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-21",
- "total_cases": 75.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 260.987,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.491,
- "total_deaths_per_million": 17.399,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.497,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-22",
- "total_cases": 75.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 260.987,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.994,
- "total_deaths_per_million": 17.399,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-23",
- "total_cases": 76.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 6.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 264.466,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 0.497,
- "total_deaths_per_million": 20.879,
- "new_deaths_per_million": 3.48,
- "new_deaths_smoothed_per_million": 0.497,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-24",
- "total_cases": 76.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 264.466,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.497,
- "total_deaths_per_million": 20.879,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.497,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-25",
- "total_cases": 76.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 264.466,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.497,
- "total_deaths_per_million": 20.879,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.497,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-26",
- "total_cases": 79.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 274.906,
- "new_cases_per_million": 10.439,
- "new_cases_smoothed_per_million": 1.988,
- "total_deaths_per_million": 20.879,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.497,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-27",
- "total_cases": 79.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 274.906,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.988,
- "total_deaths_per_million": 20.879,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.497,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-28",
- "total_cases": 80.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 278.386,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 2.486,
- "total_deaths_per_million": 20.879,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.497,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-29",
- "total_cases": 80.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 278.386,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.486,
- "total_deaths_per_million": 20.879,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.497,
- "stringency_index": 88.89
- },
- {
- "date": "2020-04-30",
- "total_cases": 80.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 7.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 278.386,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.988,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 3.48,
- "new_deaths_smoothed_per_million": 0.497,
- "stringency_index": 88.89
- },
- {
- "date": "2020-05-01",
- "total_cases": 81.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 281.866,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 2.486,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.497,
- "stringency_index": 88.89
- },
- {
- "date": "2020-05-02",
- "total_cases": 81.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 281.866,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.486,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.497,
- "stringency_index": 88.89
- },
- {
- "date": "2020-05-03",
- "total_cases": 81.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 281.866,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.994,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.497,
- "stringency_index": 88.89
- },
- {
- "date": "2020-05-04",
- "total_cases": 82.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 285.345,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 1.491,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.497,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-05",
- "total_cases": 82.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 285.345,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.994,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.497,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-06",
- "total_cases": 82.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 285.345,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.994,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.497,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-07",
- "total_cases": 82.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 285.345,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.994,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-08",
- "total_cases": 82.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 285.345,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.497,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-09",
- "total_cases": 83.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 288.825,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 0.994,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-10",
- "total_cases": 84.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 292.305,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 1.491,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-11",
- "total_cases": 84.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 292.305,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.994,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-12",
- "total_cases": 84.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 292.305,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.994,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-13",
- "total_cases": 85.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 295.785,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 1.491,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-14",
- "total_cases": 85.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 295.785,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.491,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-15",
- "total_cases": 85.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 295.785,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.491,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-16",
- "total_cases": 85.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 295.785,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.994,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-17",
- "total_cases": 86.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 299.265,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 0.994,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-18",
- "total_cases": 88.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 306.224,
- "new_cases_per_million": 6.96,
- "new_cases_smoothed_per_million": 1.988,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-19",
- "total_cases": 88.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 306.224,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.988,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-20",
- "total_cases": 90.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 313.184,
- "new_cases_per_million": 6.96,
- "new_cases_smoothed_per_million": 2.486,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-21",
- "total_cases": 90.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 313.184,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.486,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-22",
- "total_cases": 90.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 313.184,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.486,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-23",
- "total_cases": 90.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 313.184,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.486,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-24",
- "total_cases": 92.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 320.144,
- "new_cases_per_million": 6.96,
- "new_cases_smoothed_per_million": 2.983,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-25",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 320.144,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.988,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-26",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 320.144,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.988,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-27",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 320.144,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.994,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-28",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 320.144,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.994,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-29",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 320.144,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.994,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-30",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 320.144,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.994,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-31",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 320.144,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.48
- },
- {
- "date": "2020-06-01",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 320.144,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-02",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 320.144,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-03",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 320.144,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-04",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 320.144,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-05",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 320.144,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-06",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 320.144,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-07",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 320.144,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-08",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 320.144,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-09",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 320.144,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-10",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 320.144,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-11",
- "total_cases": 96.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 334.063,
- "new_cases_per_million": 13.919,
- "new_cases_smoothed_per_million": 1.988,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-12",
- "total_cases": 96.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 334.063,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.988,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-13",
- "total_cases": 96.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 334.063,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.988,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-14",
- "total_cases": 96.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 334.063,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.988,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-15",
- "total_cases": 96.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 334.063,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.988,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 66.67
- },
- {
- "date": "2020-06-16",
- "total_cases": 97.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 337.543,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 2.486,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 66.67
- },
- {
- "date": "2020-06-17",
- "total_cases": 97.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 337.543,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.486,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 66.67
- },
- {
- "date": "2020-06-18",
- "total_cases": 97.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 337.543,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.497,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 66.67
- },
- {
- "date": "2020-06-19",
- "total_cases": 97.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 337.543,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.497,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 66.67
- },
- {
- "date": "2020-06-20",
- "total_cases": 97.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 337.543,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.497,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 66.67
- },
- {
- "date": "2020-06-21",
- "total_cases": 97.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 337.543,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.497,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 66.67
- },
- {
- "date": "2020-06-22",
- "total_cases": 97.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 337.543,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.497,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 66.67
- },
- {
- "date": "2020-06-23",
- "total_cases": 97.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 337.543,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 66.67
- },
- {
- "date": "2020-06-24",
- "total_cases": 97.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 337.543,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 66.67
- },
- {
- "date": "2020-06-25",
- "total_cases": 97.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 337.543,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 66.67
- },
- {
- "date": "2020-06-26",
- "total_cases": 97.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 337.543,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 66.67
- },
- {
- "date": "2020-06-27",
- "total_cases": 97.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 337.543,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 66.67
- },
- {
- "date": "2020-06-28",
- "total_cases": 97.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 337.543,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 66.67
- },
- {
- "date": "2020-06-29",
- "total_cases": 97.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 337.543,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 66.67
- },
- {
- "date": "2020-06-30",
- "total_cases": 97.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 337.543,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 66.67
- },
- {
- "date": "2020-07-01",
- "total_cases": 97.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 337.543,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-02",
- "total_cases": 97.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 337.543,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-03",
- "total_cases": 97.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 337.543,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-04",
- "total_cases": 97.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 337.543,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-05",
- "total_cases": 97.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 337.543,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-06",
- "total_cases": 98.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 341.023,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 0.497,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-07",
- "total_cases": 98.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 341.023,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.497,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-08",
- "total_cases": 98.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 341.023,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.497,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-09",
- "total_cases": 98.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 341.023,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.497,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-10",
- "total_cases": 98.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 341.023,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.497,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-11",
- "total_cases": 98.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 341.023,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.497,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-12",
- "total_cases": 103.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 358.422,
- "new_cases_per_million": 17.399,
- "new_cases_smoothed_per_million": 2.983,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-07-13",
- "total_cases": 103.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 358.422,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.486,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-07-14",
- "total_cases": 103.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 358.422,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.486,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-07-15",
- "total_cases": 103.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 358.422,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.486,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-07-16",
- "total_cases": 104.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 361.902,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 2.983,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-07-17",
- "total_cases": 104.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 361.902,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.983,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-07-18",
- "total_cases": 104.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 361.902,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.983,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-07-19",
- "total_cases": 104.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 361.902,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.497,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-07-20",
- "total_cases": 105.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 365.381,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 0.994,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-07-21",
- "total_cases": 106.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 368.861,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 1.491,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-07-22",
- "total_cases": 106.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 368.861,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.491,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-07-23",
- "total_cases": 106.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 368.861,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.994,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.93
- },
- {
- "date": "2020-07-24",
- "total_cases": 106.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 368.861,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.994,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.93
- },
- {
- "date": "2020-07-25",
- "total_cases": 108.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 375.821,
- "new_cases_per_million": 6.96,
- "new_cases_smoothed_per_million": 1.988,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-26",
- "total_cases": 108.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 375.821,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.988,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-27",
- "total_cases": 110.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 382.78,
- "new_cases_per_million": 6.96,
- "new_cases_smoothed_per_million": 2.486,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-28",
- "total_cases": 110.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 382.78,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.988,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-29",
- "total_cases": 110.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 382.78,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.988,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-30",
- "total_cases": 110.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 382.78,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.988,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-31",
- "total_cases": 110.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 382.78,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.988,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-01",
- "total_cases": 110.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 382.78,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.994,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-02",
- "total_cases": 122.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 424.538,
- "new_cases_per_million": 41.758,
- "new_cases_smoothed_per_million": 6.96,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-03",
- "total_cases": 132.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 3.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 459.337,
- "new_cases_per_million": 34.798,
- "new_cases_smoothed_per_million": 10.937,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-04",
- "total_cases": 132.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 459.337,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.937,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-05",
- "total_cases": 132.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 459.337,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.937,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-06",
- "total_cases": 133.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 462.816,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 11.434,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-07",
- "total_cases": 133.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 462.816,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 11.434,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-08",
- "total_cases": 138.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 4.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 480.215,
- "new_cases_per_million": 17.399,
- "new_cases_smoothed_per_million": 13.919,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-09",
- "total_cases": 138.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 480.215,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.954,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-10",
- "total_cases": 142.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 494.135,
- "new_cases_per_million": 13.919,
- "new_cases_smoothed_per_million": 4.971,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-11",
- "total_cases": 143.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 497.615,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 5.468,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-12",
- "total_cases": 143.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 497.615,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.468,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-13",
- "total_cases": 143.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 497.615,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.971,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-14",
- "total_cases": 144.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 501.094,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 5.468,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-15",
- "total_cases": 148.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 515.014,
- "new_cases_per_million": 13.919,
- "new_cases_smoothed_per_million": 4.971,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-16",
- "total_cases": 150.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 521.973,
- "new_cases_per_million": 6.96,
- "new_cases_smoothed_per_million": 5.965,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-17",
- "total_cases": 151.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 525.453,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 4.474,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-18",
- "total_cases": 152.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 528.933,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 4.474,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-19",
- "total_cases": 153.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 532.413,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 4.971,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-20",
- "total_cases": 155.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 539.372,
- "new_cases_per_million": 6.96,
- "new_cases_smoothed_per_million": 5.965,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-21",
- "total_cases": 156.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 542.852,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 5.965,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-08-22",
- "total_cases": 157.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 546.332,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 4.474,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-08-23",
- "total_cases": 158.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 549.812,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 3.977,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-08-24",
- "total_cases": 161.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 560.251,
- "new_cases_per_million": 10.439,
- "new_cases_smoothed_per_million": 4.971,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-08-25",
- "total_cases": 161.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 560.251,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.474,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-08-26",
- "total_cases": 164.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 570.691,
- "new_cases_per_million": 10.439,
- "new_cases_smoothed_per_million": 5.468,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-08-27",
- "total_cases": 165.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 574.171,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 4.971,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-08-28",
- "total_cases": 165.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 574.171,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.474,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-08-29",
- "total_cases": 166.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 577.65,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 4.474,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-08-30",
- "total_cases": 170.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 591.57,
- "new_cases_per_million": 13.919,
- "new_cases_smoothed_per_million": 5.965,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-08-31",
- "total_cases": 173.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 602.009,
- "new_cases_per_million": 10.439,
- "new_cases_smoothed_per_million": 5.965,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-01",
- "total_cases": 174.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 605.489,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 6.463,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-02",
- "total_cases": 176.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 612.449,
- "new_cases_per_million": 6.96,
- "new_cases_smoothed_per_million": 5.965,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-03",
- "total_cases": 176.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 612.449,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.468,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-04",
- "total_cases": 177.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 615.929,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 5.965,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-05",
- "total_cases": 178.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 619.408,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 5.965,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-06",
- "total_cases": 178.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 619.408,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.977,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-07",
- "total_cases": 179.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 622.888,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 2.983,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-08",
- "total_cases": 179.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 622.888,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.486,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-09",
- "total_cases": 180.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 626.368,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 1.988,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-10",
- "total_cases": 180.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 626.368,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.988,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-11",
- "total_cases": 180.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 626.368,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.491,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-09-12",
- "total_cases": 180.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 626.368,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.994,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-09-13",
- "total_cases": 180.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 626.368,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.994,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-09-14",
- "total_cases": 181.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 629.848,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 0.994,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-09-15",
- "total_cases": 183.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 636.807,
- "new_cases_per_million": 6.96,
- "new_cases_smoothed_per_million": 1.988,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-09-16",
- "total_cases": 184.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 640.287,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 1.988,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-09-17",
- "total_cases": 185.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 643.767,
- "new_cases_per_million": 3.48,
- "new_cases_smoothed_per_million": 2.486,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-09-18",
- "total_cases": 185.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 643.767,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.486,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-09-19",
- "total_cases": 185.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 643.767,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.486,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-09-20",
- "total_cases": 185.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 643.767,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.486,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 27.78
- },
- {
- "date": "2020-09-21",
- "total_cases": 189.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 657.686,
- "new_cases_per_million": 13.919,
- "new_cases_smoothed_per_million": 3.977,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-22",
- "total_cases": 189.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 657.686,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.983,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-23",
- "total_cases": 189.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 657.686,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.486,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-24",
- "total_cases": 189.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 657.686,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.988,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-25",
- "total_cases": 189.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 657.686,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.988,
- "total_deaths_per_million": 24.359,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- }
- ]
- },
- "BRN": {
- "continent": "Asia",
- "location": "Brunei",
- "population": 437483.0,
- "population_density": 81.347,
- "median_age": 32.4,
- "aged_65_older": 4.591,
- "aged_70_older": 2.382,
- "gdp_per_capita": 71809.251,
- "cardiovasc_death_rate": 201.285,
- "diabetes_prevalence": 12.79,
- "female_smokers": 2.0,
- "male_smokers": 30.9,
- "hospital_beds_per_thousand": 2.7,
- "life_expectancy": 75.86,
- "human_development_index": 0.853,
- "data": [
- {
- "date": "2020-03-10",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 2.286,
- "new_cases_per_million": 2.286,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-12",
- "total_cases": 11.0,
- "new_cases": 10.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 25.144,
- "new_cases_per_million": 22.858,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-13",
- "total_cases": 25.0,
- "new_cases": 14.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 57.145,
- "new_cases_per_million": 32.001,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-03-14",
- "total_cases": 37.0,
- "new_cases": 12.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 84.575,
- "new_cases_per_million": 27.43,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-03-15",
- "total_cases": 40.0,
- "new_cases": 3.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 91.432,
- "new_cases_per_million": 6.857,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-03-16",
- "total_cases": 50.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 7.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 114.29,
- "new_cases_per_million": 22.858,
- "new_cases_smoothed_per_million": 16.327,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-03-17",
- "total_cases": 54.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 7.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 123.433,
- "new_cases_per_million": 9.143,
- "new_cases_smoothed_per_million": 17.307,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-03-18",
- "total_cases": 56.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 7.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 128.005,
- "new_cases_per_million": 4.572,
- "new_cases_smoothed_per_million": 17.96,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-03-19",
- "total_cases": 68.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 8.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 155.435,
- "new_cases_per_million": 27.43,
- "new_cases_smoothed_per_million": 18.613,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-03-20",
- "total_cases": 73.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 6.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 166.864,
- "new_cases_per_million": 11.429,
- "new_cases_smoothed_per_million": 15.674,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-03-21",
- "total_cases": 78.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 5.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 178.293,
- "new_cases_per_million": 11.429,
- "new_cases_smoothed_per_million": 13.388,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-03-22",
- "total_cases": 83.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 6.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 189.722,
- "new_cases_per_million": 11.429,
- "new_cases_smoothed_per_million": 14.041,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-03-23",
- "total_cases": 88.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 201.151,
- "new_cases_per_million": 11.429,
- "new_cases_smoothed_per_million": 12.409,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-03-24",
- "total_cases": 91.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 5.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 208.008,
- "new_cases_per_million": 6.857,
- "new_cases_smoothed_per_million": 12.082,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-03-25",
- "total_cases": 104.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 6.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 237.724,
- "new_cases_per_million": 29.715,
- "new_cases_smoothed_per_million": 15.674,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-03-26",
- "total_cases": 107.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 244.581,
- "new_cases_per_million": 6.857,
- "new_cases_smoothed_per_million": 12.735,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-03-27",
- "total_cases": 114.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 5.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 260.582,
- "new_cases_per_million": 16.001,
- "new_cases_smoothed_per_million": 13.388,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-03-28",
- "total_cases": 115.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 5.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 262.867,
- "new_cases_per_million": 2.286,
- "new_cases_smoothed_per_million": 12.082,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-03-29",
- "total_cases": 120.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 5.286,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 274.296,
- "new_cases_per_million": 11.429,
- "new_cases_smoothed_per_million": 12.082,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 2.286,
- "new_deaths_smoothed_per_million": 0.327,
- "stringency_index": 52.78
- },
- {
- "date": "2020-03-30",
- "total_cases": 126.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 288.011,
- "new_cases_per_million": 13.715,
- "new_cases_smoothed_per_million": 12.409,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.327,
- "stringency_index": 52.78
- },
- {
- "date": "2020-03-31",
- "total_cases": 127.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 290.297,
- "new_cases_per_million": 2.286,
- "new_cases_smoothed_per_million": 11.756,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.327,
- "stringency_index": 52.78
- },
- {
- "date": "2020-04-01",
- "total_cases": 129.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 3.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 294.869,
- "new_cases_per_million": 4.572,
- "new_cases_smoothed_per_million": 8.164,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.327,
- "stringency_index": 52.78
- },
- {
- "date": "2020-04-02",
- "total_cases": 131.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 3.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 299.44,
- "new_cases_per_million": 4.572,
- "new_cases_smoothed_per_million": 7.837,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.327,
- "stringency_index": 52.78
- },
- {
- "date": "2020-04-03",
- "total_cases": 133.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 304.012,
- "new_cases_per_million": 4.572,
- "new_cases_smoothed_per_million": 6.204,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.327,
- "stringency_index": 52.78
- },
- {
- "date": "2020-04-04",
- "total_cases": 133.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 304.012,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.878,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.327,
- "stringency_index": 52.78
- },
- {
- "date": "2020-04-05",
- "total_cases": 135.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 308.583,
- "new_cases_per_million": 4.572,
- "new_cases_smoothed_per_million": 4.898,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-04-06",
- "total_cases": 135.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 308.583,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.939,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-04-07",
- "total_cases": 135.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 308.583,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.612,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-04-08",
- "total_cases": 135.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 308.583,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.959,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-04-09",
- "total_cases": 135.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 308.583,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.306,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-04-10",
- "total_cases": 135.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 308.583,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.653,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-04-11",
- "total_cases": 136.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 310.869,
- "new_cases_per_million": 2.286,
- "new_cases_smoothed_per_million": 0.98,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-04-12",
- "total_cases": 136.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 310.869,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-04-13",
- "total_cases": 136.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 310.869,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-04-14",
- "total_cases": 136.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 310.869,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-04-15",
- "total_cases": 136.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 310.869,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-04-16",
- "total_cases": 136.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 310.869,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-04-17",
- "total_cases": 136.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 310.869,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-04-18",
- "total_cases": 136.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 310.869,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-04-19",
- "total_cases": 137.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 313.155,
- "new_cases_per_million": 2.286,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-04-20",
- "total_cases": 138.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 315.441,
- "new_cases_per_million": 2.286,
- "new_cases_smoothed_per_million": 0.653,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-04-21",
- "total_cases": 138.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 315.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.653,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-04-22",
- "total_cases": 138.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 315.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.653,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-04-23",
- "total_cases": 138.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 315.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.653,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-04-24",
- "total_cases": 138.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 315.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.653,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-04-25",
- "total_cases": 138.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 315.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.653,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-04-26",
- "total_cases": 138.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 315.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-04-27",
- "total_cases": 138.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 315.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-04-28",
- "total_cases": 138.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 315.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-04-29",
- "total_cases": 138.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 315.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-04-30",
- "total_cases": 138.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 315.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-05-01",
- "total_cases": 138.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 315.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-05-02",
- "total_cases": 138.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 315.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-05-03",
- "total_cases": 138.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 315.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-05-04",
- "total_cases": 138.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 315.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-05-05",
- "total_cases": 138.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 315.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-05-06",
- "total_cases": 138.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 315.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-05-07",
- "total_cases": 139.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 317.727,
- "new_cases_per_million": 2.286,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-05-08",
- "total_cases": 141.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 4.572,
- "new_cases_smoothed_per_million": 0.98,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-05-09",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.98,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-05-10",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.98,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-05-11",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.98,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-05-12",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.98,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-05-13",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.98,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-05-14",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.653,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.33
- },
- {
- "date": "2020-05-15",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-05-16",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-05-17",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-05-18",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-05-19",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-05-20",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-05-21",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-05-22",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-05-23",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-05-24",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-05-25",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-05-26",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-05-27",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-05-28",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 4.572,
- "new_deaths_per_million": 2.286,
- "new_deaths_smoothed_per_million": 0.327,
- "stringency_index": 52.78
- },
- {
- "date": "2020-05-29",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 4.572,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.327,
- "stringency_index": 52.78
- },
- {
- "date": "2020-05-30",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 4.572,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.327,
- "stringency_index": 52.78
- },
- {
- "date": "2020-05-31",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 4.572,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.327,
- "stringency_index": 52.78
- },
- {
- "date": "2020-06-01",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 4.572,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.327,
- "stringency_index": 52.78
- },
- {
- "date": "2020-06-02",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 4.572,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.327,
- "stringency_index": 49.07
- },
- {
- "date": "2020-06-03",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 4.572,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.327,
- "stringency_index": 49.07
- },
- {
- "date": "2020-06-04",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 4.572,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-06-05",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 4.572,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-06-06",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 4.572,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-06-07",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 4.572,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-06-08",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 4.572,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-06-09",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 4.572,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-06-10",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 4.572,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-06-11",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 4.572,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-06-12",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 4.572,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-06-13",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 4.572,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-06-14",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 4.572,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-06-15",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 4.572,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-06-16",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 4.572,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-06-17",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 2.286,
- "new_deaths_smoothed_per_million": 0.327,
- "stringency_index": 49.07
- },
- {
- "date": "2020-06-18",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.327,
- "stringency_index": 49.07
- },
- {
- "date": "2020-06-19",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.327,
- "stringency_index": 49.07
- },
- {
- "date": "2020-06-20",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.327,
- "stringency_index": 49.07
- },
- {
- "date": "2020-06-21",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.327,
- "stringency_index": 49.07
- },
- {
- "date": "2020-06-22",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.327,
- "stringency_index": 49.07
- },
- {
- "date": "2020-06-23",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.327,
- "stringency_index": 49.07
- },
- {
- "date": "2020-06-24",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-06-25",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-06-26",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-06-27",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-06-28",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-06-29",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-06-30",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-07-01",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-07-02",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-07-03",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-07-04",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-07-05",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-07-06",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-07-07",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-07-08",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-07-09",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-07-10",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-07-11",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-07-12",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-07-13",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-07-14",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-07-15",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-07-16",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-07-17",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-07-18",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-07-19",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-07-20",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-07-21",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-07-22",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-07-23",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-07-24",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-07-25",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-07-26",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-07-27",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-07-28",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-07-29",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-07-30",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-07-31",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-01",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-02",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-03",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-04",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-05",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-06",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-07",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.298,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-08",
- "total_cases": 142.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 324.584,
- "new_cases_per_million": 2.286,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-09",
- "total_cases": 142.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 324.584,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-10",
- "total_cases": 142.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 324.584,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-11",
- "total_cases": 142.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 324.584,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-12",
- "total_cases": 142.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 324.584,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-13",
- "total_cases": 142.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 324.584,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 33.33
- },
- {
- "date": "2020-08-14",
- "total_cases": 142.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 324.584,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 33.33
- },
- {
- "date": "2020-08-15",
- "total_cases": 142.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 324.584,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 33.33
- },
- {
- "date": "2020-08-16",
- "total_cases": 142.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 324.584,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 33.33
- },
- {
- "date": "2020-08-17",
- "total_cases": 142.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 324.584,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.04
- },
- {
- "date": "2020-08-18",
- "total_cases": 142.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 324.584,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.04
- },
- {
- "date": "2020-08-19",
- "total_cases": 142.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 324.584,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.04
- },
- {
- "date": "2020-08-20",
- "total_cases": 142.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 324.584,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.04
- },
- {
- "date": "2020-08-21",
- "total_cases": 143.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 326.87,
- "new_cases_per_million": 2.286,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.04
- },
- {
- "date": "2020-08-22",
- "total_cases": 143.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 326.87,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.04
- },
- {
- "date": "2020-08-23",
- "total_cases": 143.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 326.87,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.04
- },
- {
- "date": "2020-08-24",
- "total_cases": 143.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 326.87,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.04
- },
- {
- "date": "2020-08-25",
- "total_cases": 143.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 326.87,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.04
- },
- {
- "date": "2020-08-26",
- "total_cases": 144.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 329.156,
- "new_cases_per_million": 2.286,
- "new_cases_smoothed_per_million": 0.653,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.04
- },
- {
- "date": "2020-08-27",
- "total_cases": 144.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 329.156,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.653,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.04
- },
- {
- "date": "2020-08-28",
- "total_cases": 144.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 329.156,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.04
- },
- {
- "date": "2020-08-29",
- "total_cases": 144.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 329.156,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.04
- },
- {
- "date": "2020-08-30",
- "total_cases": 144.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 329.156,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.04
- },
- {
- "date": "2020-08-31",
- "total_cases": 144.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 329.156,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.04
- },
- {
- "date": "2020-09-01",
- "total_cases": 144.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 329.156,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 34.26
- },
- {
- "date": "2020-09-02",
- "total_cases": 144.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 329.156,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 34.26
- },
- {
- "date": "2020-09-03",
- "total_cases": 144.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 329.156,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 34.26
- },
- {
- "date": "2020-09-04",
- "total_cases": 144.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 329.156,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 34.26
- },
- {
- "date": "2020-09-05",
- "total_cases": 145.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 331.441,
- "new_cases_per_million": 2.286,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 34.26
- },
- {
- "date": "2020-09-06",
- "total_cases": 145.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 331.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 34.26
- },
- {
- "date": "2020-09-07",
- "total_cases": 145.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 331.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 34.26
- },
- {
- "date": "2020-09-08",
- "total_cases": 145.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 331.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 34.26
- },
- {
- "date": "2020-09-09",
- "total_cases": 145.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 331.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 34.26
- },
- {
- "date": "2020-09-10",
- "total_cases": 145.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 331.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 34.26
- },
- {
- "date": "2020-09-11",
- "total_cases": 145.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 331.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.327,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 34.26
- },
- {
- "date": "2020-09-12",
- "total_cases": 145.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 331.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 34.26
- },
- {
- "date": "2020-09-13",
- "total_cases": 145.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 331.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 34.26
- },
- {
- "date": "2020-09-14",
- "total_cases": 145.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 331.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 34.26
- },
- {
- "date": "2020-09-15",
- "total_cases": 145.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 331.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 34.26
- },
- {
- "date": "2020-09-16",
- "total_cases": 145.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 331.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 34.26
- },
- {
- "date": "2020-09-17",
- "total_cases": 145.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 331.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 34.26
- },
- {
- "date": "2020-09-18",
- "total_cases": 145.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 331.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-19",
- "total_cases": 145.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 331.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-20",
- "total_cases": 145.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 331.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-21",
- "total_cases": 145.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 331.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-22",
- "total_cases": 145.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 331.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-23",
- "total_cases": 145.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 331.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-24",
- "total_cases": 145.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 331.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-25",
- "total_cases": 145.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 331.441,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.857,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- }
- ]
- },
- "BTN": {
- "continent": "Asia",
- "location": "Bhutan",
- "population": 771612.0,
- "population_density": 21.188,
- "median_age": 28.6,
- "aged_65_older": 4.885,
- "aged_70_older": 2.977,
- "gdp_per_capita": 8708.597,
- "extreme_poverty": 1.5,
- "cardiovasc_death_rate": 217.066,
- "diabetes_prevalence": 9.75,
- "handwashing_facilities": 79.807,
- "hospital_beds_per_thousand": 1.7,
- "life_expectancy": 71.78,
- "human_development_index": 0.612,
- "data": [
- {
- "date": "2020-03-06",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 1.296,
- "new_cases_per_million": 1.296,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 31.48
- },
- {
- "date": "2020-03-12",
- "new_cases_smoothed": 0.143,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.185,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 31.48
- },
- {
- "date": "2020-03-13",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.296,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 31.48
- },
- {
- "date": "2020-03-14",
- "new_cases_smoothed": 0.0,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 31.48
- },
- {
- "date": "2020-03-15",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.296,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 31.48
- },
- {
- "date": "2020-03-16",
- "new_cases_smoothed": 0.0,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 31.48
- },
- {
- "date": "2020-03-17",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.296,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 31.48
- },
- {
- "date": "2020-03-18",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.296,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 33.33
- },
- {
- "date": "2020-03-19",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.296,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 33.33
- },
- {
- "date": "2020-03-20",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.296,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 33.33
- },
- {
- "date": "2020-03-21",
- "total_cases": 2.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.592,
- "new_cases_per_million": 1.296,
- "new_cases_smoothed_per_million": 0.185,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 33.33
- },
- {
- "date": "2020-03-22",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.592,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.185,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 33.33
- },
- {
- "date": "2020-03-23",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.592,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.185,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-03-24",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.592,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.185,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-03-25",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.592,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.185,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-03-26",
- "total_cases": 3.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.888,
- "new_cases_per_million": 1.296,
- "new_cases_smoothed_per_million": 0.37,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 42.59
- },
- {
- "date": "2020-03-27",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.888,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.37,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-03-28",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.888,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.185,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-03-29",
- "total_cases": 4.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5.184,
- "new_cases_per_million": 1.296,
- "new_cases_smoothed_per_million": 0.37,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-03-30",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5.184,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.37,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-03-31",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5.184,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.37,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-01",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5.184,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.37,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-02",
- "total_cases": 5.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.48,
- "new_cases_per_million": 1.296,
- "new_cases_smoothed_per_million": 0.37,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-03",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.48,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.37,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-04",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.48,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.37,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-05",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.48,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.185,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-06",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.48,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.185,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-07",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.48,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.185,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-08",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.48,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.185,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-09",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.48,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-10",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.48,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-11",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.48,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-12",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.48,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-13",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.48,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-14",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.48,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-15",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.48,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-16",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.48,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-17",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.48,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-18",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.48,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-19",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.48,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-20",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.48,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-21",
- "total_cases": 6.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 7.776,
- "new_cases_per_million": 1.296,
- "new_cases_smoothed_per_million": 0.185,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-22",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 7.776,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.185,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-23",
- "total_cases": 7.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.072,
- "new_cases_per_million": 1.296,
- "new_cases_smoothed_per_million": 0.37,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-24",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.072,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.37,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-25",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.072,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.37,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-26",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.072,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.37,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-27",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.072,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.37,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-28",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.072,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.185,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-29",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.072,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.185,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-30",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.072,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-01",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.072,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-02",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.072,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-03",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.072,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-04",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.072,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-05",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.072,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-06",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.072,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-07",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.072,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-08",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.072,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-09",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.072,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-10",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.072,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-11",
- "total_cases": 9.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 11.664,
- "new_cases_per_million": 2.592,
- "new_cases_smoothed_per_million": 0.37,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-12",
- "total_cases": 11.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 14.256,
- "new_cases_per_million": 2.592,
- "new_cases_smoothed_per_million": 0.741,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-13",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 14.256,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.741,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-14",
- "total_cases": 15.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 19.44,
- "new_cases_per_million": 5.184,
- "new_cases_smoothed_per_million": 1.481,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-15",
- "total_cases": 20.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 25.92,
- "new_cases_per_million": 6.48,
- "new_cases_smoothed_per_million": 2.407,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-16",
- "total_cases": 21.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 27.216,
- "new_cases_per_million": 1.296,
- "new_cases_smoothed_per_million": 2.592,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-17",
- "total_cases": 21.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 27.216,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.592,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-18",
- "total_cases": 21.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 27.216,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.222,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-19",
- "total_cases": 21.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 27.216,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.851,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-20",
- "total_cases": 21.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 27.216,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.851,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-21",
- "total_cases": 21.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 27.216,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.111,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-22",
- "total_cases": 21.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 27.216,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.185,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-23",
- "total_cases": 24.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 31.104,
- "new_cases_per_million": 3.888,
- "new_cases_smoothed_per_million": 0.555,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-24",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 31.104,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.555,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-25",
- "total_cases": 27.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 34.992,
- "new_cases_per_million": 3.888,
- "new_cases_smoothed_per_million": 1.111,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-26",
- "total_cases": 27.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 34.992,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.111,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-27",
- "total_cases": 27.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 34.992,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.111,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-28",
- "total_cases": 28.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 36.288,
- "new_cases_per_million": 1.296,
- "new_cases_smoothed_per_million": 1.296,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-29",
- "total_cases": 31.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 40.176,
- "new_cases_per_million": 3.888,
- "new_cases_smoothed_per_million": 1.851,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-30",
- "total_cases": 33.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 42.768,
- "new_cases_per_million": 2.592,
- "new_cases_smoothed_per_million": 1.666,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-31",
- "total_cases": 43.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 55.727,
- "new_cases_per_million": 12.96,
- "new_cases_smoothed_per_million": 3.518,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-01",
- "total_cases": 43.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 55.727,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.962,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-02",
- "total_cases": 47.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 60.911,
- "new_cases_per_million": 5.184,
- "new_cases_smoothed_per_million": 3.703,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-03",
- "total_cases": 47.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 60.911,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.703,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-04",
- "total_cases": 47.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 60.911,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.518,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-05",
- "total_cases": 48.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 62.207,
- "new_cases_per_million": 1.296,
- "new_cases_smoothed_per_million": 3.147,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-06",
- "total_cases": 48.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 62.207,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.777,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-07",
- "total_cases": 48.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 62.207,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.926,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-08",
- "total_cases": 59.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 76.463,
- "new_cases_per_million": 14.256,
- "new_cases_smoothed_per_million": 2.962,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-09",
- "total_cases": 59.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 76.463,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.222,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-10",
- "total_cases": 59.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 76.463,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.222,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-11",
- "total_cases": 62.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 80.351,
- "new_cases_per_million": 3.888,
- "new_cases_smoothed_per_million": 2.777,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-12",
- "total_cases": 62.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 80.351,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.592,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-13",
- "total_cases": 62.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 80.351,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.592,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-14",
- "total_cases": 66.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 85.535,
- "new_cases_per_million": 5.184,
- "new_cases_smoothed_per_million": 3.333,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-15",
- "total_cases": 66.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 85.535,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.296,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-16",
- "total_cases": 67.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 86.831,
- "new_cases_per_million": 1.296,
- "new_cases_smoothed_per_million": 1.481,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-17",
- "total_cases": 67.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 86.831,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.481,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-18",
- "total_cases": 67.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 86.831,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.926,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-19",
- "total_cases": 67.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 86.831,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.926,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-20",
- "total_cases": 68.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 88.127,
- "new_cases_per_million": 1.296,
- "new_cases_smoothed_per_million": 1.111,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-21",
- "total_cases": 68.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 88.127,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.37,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-22",
- "total_cases": 68.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 88.127,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.37,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-23",
- "total_cases": 69.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 89.423,
- "new_cases_per_million": 1.296,
- "new_cases_smoothed_per_million": 0.37,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-24",
- "total_cases": 70.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 90.719,
- "new_cases_per_million": 1.296,
- "new_cases_smoothed_per_million": 0.555,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-25",
- "total_cases": 70.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 90.719,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.555,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-26",
- "total_cases": 70.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 90.719,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.555,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-27",
- "total_cases": 75.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 97.199,
- "new_cases_per_million": 6.48,
- "new_cases_smoothed_per_million": 1.296,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-28",
- "total_cases": 76.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 98.495,
- "new_cases_per_million": 1.296,
- "new_cases_smoothed_per_million": 1.481,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-29",
- "total_cases": 76.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 98.495,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.481,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-06-30",
- "total_cases": 77.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 99.791,
- "new_cases_per_million": 1.296,
- "new_cases_smoothed_per_million": 1.481,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 83.33
- },
- {
- "date": "2020-07-01",
- "total_cases": 77.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 99.791,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.296,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 71.3
- },
- {
- "date": "2020-07-02",
- "total_cases": 77.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 99.791,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.296,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 71.3
- },
- {
- "date": "2020-07-03",
- "total_cases": 77.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 99.791,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.296,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 71.3
- },
- {
- "date": "2020-07-04",
- "total_cases": 78.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 101.087,
- "new_cases_per_million": 1.296,
- "new_cases_smoothed_per_million": 0.555,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 71.3
- },
- {
- "date": "2020-07-05",
- "total_cases": 78.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 101.087,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.37,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 71.3
- },
- {
- "date": "2020-07-06",
- "total_cases": 80.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 103.679,
- "new_cases_per_million": 2.592,
- "new_cases_smoothed_per_million": 0.741,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 71.3
- },
- {
- "date": "2020-07-07",
- "total_cases": 80.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 103.679,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.555,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 71.3
- },
- {
- "date": "2020-07-08",
- "total_cases": 80.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 103.679,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.555,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 71.3
- },
- {
- "date": "2020-07-09",
- "total_cases": 80.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 103.679,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.555,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 71.3
- },
- {
- "date": "2020-07-10",
- "total_cases": 80.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 103.679,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.555,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 71.3
- },
- {
- "date": "2020-07-11",
- "total_cases": 82.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 106.271,
- "new_cases_per_million": 2.592,
- "new_cases_smoothed_per_million": 0.741,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 71.3
- },
- {
- "date": "2020-07-12",
- "total_cases": 82.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 106.271,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.741,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 71.3
- },
- {
- "date": "2020-07-13",
- "total_cases": 84.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 108.863,
- "new_cases_per_million": 2.592,
- "new_cases_smoothed_per_million": 0.741,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 71.3
- },
- {
- "date": "2020-07-14",
- "total_cases": 84.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 108.863,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.741,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-07-15",
- "total_cases": 84.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 108.863,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.741,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-07-16",
- "total_cases": 84.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 108.863,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.741,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-07-17",
- "total_cases": 86.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 111.455,
- "new_cases_per_million": 2.592,
- "new_cases_smoothed_per_million": 1.111,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-07-18",
- "total_cases": 87.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 112.751,
- "new_cases_per_million": 1.296,
- "new_cases_smoothed_per_million": 0.926,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-07-19",
- "total_cases": 87.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 112.751,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.926,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-07-20",
- "total_cases": 89.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 115.343,
- "new_cases_per_million": 2.592,
- "new_cases_smoothed_per_million": 0.926,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-07-21",
- "total_cases": 90.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 116.639,
- "new_cases_per_million": 1.296,
- "new_cases_smoothed_per_million": 1.111,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-07-22",
- "total_cases": 92.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 119.231,
- "new_cases_per_million": 2.592,
- "new_cases_smoothed_per_million": 1.481,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-07-23",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 119.231,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.481,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-07-24",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 119.231,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.111,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-07-25",
- "total_cases": 92.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 119.231,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.926,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-07-26",
- "total_cases": 93.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 120.527,
- "new_cases_per_million": 1.296,
- "new_cases_smoothed_per_million": 1.111,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-07-27",
- "total_cases": 95.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 123.119,
- "new_cases_per_million": 2.592,
- "new_cases_smoothed_per_million": 1.111,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-07-28",
- "total_cases": 99.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 128.303,
- "new_cases_per_million": 5.184,
- "new_cases_smoothed_per_million": 1.666,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-07-29",
- "total_cases": 99.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 128.303,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.296,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-07-30",
- "total_cases": 101.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 130.895,
- "new_cases_per_million": 2.592,
- "new_cases_smoothed_per_million": 1.666,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-07-31",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 130.895,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.666,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-08-01",
- "total_cases": 101.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 130.895,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.666,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-08-02",
- "total_cases": 102.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 132.191,
- "new_cases_per_million": 1.296,
- "new_cases_smoothed_per_million": 1.666,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-08-03",
- "total_cases": 103.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 133.487,
- "new_cases_per_million": 1.296,
- "new_cases_smoothed_per_million": 1.481,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-08-04",
- "total_cases": 103.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 133.487,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.741,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-08-05",
- "total_cases": 105.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 136.079,
- "new_cases_per_million": 2.592,
- "new_cases_smoothed_per_million": 1.111,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-08-06",
- "total_cases": 105.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 136.079,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.741,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-08-07",
- "total_cases": 108.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 139.967,
- "new_cases_per_million": 3.888,
- "new_cases_smoothed_per_million": 1.296,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-08-08",
- "total_cases": 108.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 139.967,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.296,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-08-09",
- "total_cases": 108.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 139.967,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.111,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-08-10",
- "total_cases": 110.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 142.559,
- "new_cases_per_million": 2.592,
- "new_cases_smoothed_per_million": 1.296,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-08-11",
- "total_cases": 113.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 146.447,
- "new_cases_per_million": 3.888,
- "new_cases_smoothed_per_million": 1.851,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-08-12",
- "total_cases": 113.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 146.447,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.481,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-08-13",
- "total_cases": 128.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 165.886,
- "new_cases_per_million": 19.44,
- "new_cases_smoothed_per_million": 4.258,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-08-14",
- "total_cases": 131.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 169.774,
- "new_cases_per_million": 3.888,
- "new_cases_smoothed_per_million": 4.258,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-08-15",
- "total_cases": 133.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 3.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 172.366,
- "new_cases_per_million": 2.592,
- "new_cases_smoothed_per_million": 4.629,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-08-16",
- "total_cases": 133.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 172.366,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.629,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-08-17",
- "total_cases": 141.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 4.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 182.734,
- "new_cases_per_million": 10.368,
- "new_cases_smoothed_per_million": 5.739,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-08-18",
- "total_cases": 146.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 4.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 189.214,
- "new_cases_per_million": 6.48,
- "new_cases_smoothed_per_million": 6.11,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-08-19",
- "total_cases": 147.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 4.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 190.51,
- "new_cases_per_million": 1.296,
- "new_cases_smoothed_per_million": 6.295,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-08-20",
- "total_cases": 150.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 3.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 194.398,
- "new_cases_per_million": 3.888,
- "new_cases_smoothed_per_million": 4.073,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-08-21",
- "total_cases": 153.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 3.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 198.286,
- "new_cases_per_million": 3.888,
- "new_cases_smoothed_per_million": 4.073,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-08-22",
- "total_cases": 153.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 198.286,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.703,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-08-23",
- "total_cases": 155.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 3.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 200.878,
- "new_cases_per_million": 2.592,
- "new_cases_smoothed_per_million": 4.073,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-08-24",
- "total_cases": 155.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 200.878,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.592,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-08-25",
- "total_cases": 156.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 202.174,
- "new_cases_per_million": 1.296,
- "new_cases_smoothed_per_million": 1.851,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-08-26",
- "total_cases": 173.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 224.206,
- "new_cases_per_million": 22.032,
- "new_cases_smoothed_per_million": 4.814,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-08-27",
- "total_cases": 183.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 4.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 237.166,
- "new_cases_per_million": 12.96,
- "new_cases_smoothed_per_million": 6.11,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-08-28",
- "total_cases": 184.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 4.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 238.462,
- "new_cases_per_million": 1.296,
- "new_cases_smoothed_per_million": 5.739,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-08-29",
- "total_cases": 195.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 6.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 252.718,
- "new_cases_per_million": 14.256,
- "new_cases_smoothed_per_million": 7.776,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-08-30",
- "total_cases": 195.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 252.718,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.406,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-08-31",
- "total_cases": 224.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 9.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 290.301,
- "new_cases_per_million": 37.584,
- "new_cases_smoothed_per_million": 12.775,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-09-01",
- "total_cases": 225.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 9.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 291.597,
- "new_cases_per_million": 1.296,
- "new_cases_smoothed_per_million": 12.775,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-09-02",
- "total_cases": 227.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 7.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 294.189,
- "new_cases_per_million": 2.592,
- "new_cases_smoothed_per_million": 9.998,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-09-03",
- "total_cases": 227.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 294.189,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.146,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-09-04",
- "total_cases": 227.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 294.189,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.961,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-09-05",
- "total_cases": 228.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 4.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 295.485,
- "new_cases_per_million": 1.296,
- "new_cases_smoothed_per_million": 6.11,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-09-06",
- "total_cases": 228.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 295.485,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.11,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-09-07",
- "total_cases": 230.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 298.077,
- "new_cases_per_million": 2.592,
- "new_cases_smoothed_per_million": 1.111,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-09-08",
- "total_cases": 233.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 301.965,
- "new_cases_per_million": 3.888,
- "new_cases_smoothed_per_million": 1.481,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-09-09",
- "total_cases": 234.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 303.261,
- "new_cases_per_million": 1.296,
- "new_cases_smoothed_per_million": 1.296,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-09-10",
- "total_cases": 234.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 303.261,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.296,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-09-11",
- "total_cases": 238.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 308.445,
- "new_cases_per_million": 5.184,
- "new_cases_smoothed_per_million": 2.037,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-09-12",
- "total_cases": 241.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 312.333,
- "new_cases_per_million": 3.888,
- "new_cases_smoothed_per_million": 2.407,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-09-13",
- "total_cases": 244.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 316.221,
- "new_cases_per_million": 3.888,
- "new_cases_smoothed_per_million": 2.962,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-09-14",
- "total_cases": 245.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 317.517,
- "new_cases_per_million": 1.296,
- "new_cases_smoothed_per_million": 2.777,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-09-15",
- "total_cases": 246.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 318.813,
- "new_cases_per_million": 1.296,
- "new_cases_smoothed_per_million": 2.407,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-09-16",
- "total_cases": 246.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 318.813,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.222,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-09-17",
- "total_cases": 246.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 318.813,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.222,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 65.74
- },
- {
- "date": "2020-09-18",
- "total_cases": 252.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 326.589,
- "new_cases_per_million": 7.776,
- "new_cases_smoothed_per_million": 2.592,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-19",
- "total_cases": 258.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 334.365,
- "new_cases_per_million": 7.776,
- "new_cases_smoothed_per_million": 3.147,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-20",
- "total_cases": 259.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 335.661,
- "new_cases_per_million": 1.296,
- "new_cases_smoothed_per_million": 2.777,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-21",
- "total_cases": 261.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 338.253,
- "new_cases_per_million": 2.592,
- "new_cases_smoothed_per_million": 2.962,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-22",
- "total_cases": 261.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 338.253,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.777,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-23",
- "total_cases": 261.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 338.253,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.777,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-24",
- "total_cases": 261.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 338.253,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.777,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-25",
- "total_cases": 263.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 340.845,
- "new_cases_per_million": 2.592,
- "new_cases_smoothed_per_million": 2.037,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- }
- ]
- },
- "BWA": {
- "continent": "Africa",
- "location": "Botswana",
- "population": 2351625.0,
- "population_density": 4.044,
- "median_age": 25.8,
- "aged_65_older": 3.941,
- "aged_70_older": 2.242,
- "gdp_per_capita": 15807.374,
- "cardiovasc_death_rate": 237.372,
- "diabetes_prevalence": 4.81,
- "female_smokers": 5.7,
- "male_smokers": 34.4,
- "hospital_beds_per_thousand": 1.8,
- "life_expectancy": 69.59,
- "human_development_index": 0.717,
- "data": [
- {
- "date": "2020-04-01",
- "total_cases": 3.0,
- "new_cases": 3.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 1.276,
- "new_cases_per_million": 1.276,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 61.11
- },
- {
- "date": "2020-04-02",
- "total_cases": 4.0,
- "new_cases": 1.0,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "total_cases_per_million": 1.701,
- "new_cases_per_million": 0.425,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.425,
- "stringency_index": 86.11
- },
- {
- "date": "2020-04-03",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 1.701,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-04-04",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 1.701,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-04-05",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 1.701,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-04-06",
- "total_cases": 6.0,
- "new_cases": 2.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 2.551,
- "new_cases_per_million": 0.85,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-04-07",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2.551,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.364,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.061,
- "stringency_index": 86.11
- },
- {
- "date": "2020-04-08",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2.551,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.182,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.061,
- "stringency_index": 86.11
- },
- {
- "date": "2020-04-09",
- "total_cases": 7.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.977,
- "new_cases_per_million": 0.425,
- "new_cases_smoothed_per_million": 0.182,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-04-10",
- "total_cases": 13.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5.528,
- "new_cases_per_million": 2.551,
- "new_cases_smoothed_per_million": 0.547,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-04-11",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5.528,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.547,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-04-12",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5.528,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.547,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-04-13",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5.528,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.425,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-04-14",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5.528,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.425,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-04-15",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5.528,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.425,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-04-16",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5.528,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.364,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-04-17",
- "total_cases": 15.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.379,
- "new_cases_per_million": 0.85,
- "new_cases_smoothed_per_million": 0.121,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-04-18",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.379,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.121,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-04-19",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.379,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.121,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-04-20",
- "total_cases": 20.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 8.505,
- "new_cases_per_million": 2.126,
- "new_cases_smoothed_per_million": 0.425,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-04-21",
- "total_cases": 20.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 8.505,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.425,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-04-22",
- "total_cases": 20.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 8.505,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.425,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-04-23",
- "total_cases": 22.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.355,
- "new_cases_per_million": 0.85,
- "new_cases_smoothed_per_million": 0.547,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-04-24",
- "total_cases": 22.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.355,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.425,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-04-25",
- "total_cases": 22.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.355,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.425,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-04-26",
- "total_cases": 22.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.355,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.425,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-04-27",
- "total_cases": 22.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.355,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.121,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-04-28",
- "total_cases": 22.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.355,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.121,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-04-29",
- "total_cases": 23.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.78,
- "new_cases_per_million": 0.425,
- "new_cases_smoothed_per_million": 0.182,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-04-30",
- "total_cases": 23.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.78,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.061,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-01",
- "total_cases": 23.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.78,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.061,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-02",
- "total_cases": 23.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.78,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.061,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-03",
- "total_cases": 23.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.78,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.061,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-04",
- "total_cases": 23.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.78,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.061,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-05",
- "total_cases": 23.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.78,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.061,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-06",
- "total_cases": 23.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.78,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-07",
- "total_cases": 23.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.78,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-08",
- "total_cases": 23.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.78,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-09",
- "total_cases": 23.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.78,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-10",
- "total_cases": 23.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.78,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-11",
- "total_cases": 23.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.78,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-05-12",
- "total_cases": 24.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.206,
- "new_cases_per_million": 0.425,
- "new_cases_smoothed_per_million": 0.061,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-05-13",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.206,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.061,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-05-14",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.206,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.061,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-05-15",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.206,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.061,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-05-16",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.206,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.061,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-05-17",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.206,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.061,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-05-18",
- "total_cases": 25.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.631,
- "new_cases_per_million": 0.425,
- "new_cases_smoothed_per_million": 0.121,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-05-19",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.631,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.061,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.7
- },
- {
- "date": "2020-05-20",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.631,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.061,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 66.67
- },
- {
- "date": "2020-05-21",
- "total_cases": 29.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.332,
- "new_cases_per_million": 1.701,
- "new_cases_smoothed_per_million": 0.304,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 66.67
- },
- {
- "date": "2020-05-22",
- "total_cases": 29.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.332,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.304,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 61.11
- },
- {
- "date": "2020-05-23",
- "total_cases": 30.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.757,
- "new_cases_per_million": 0.425,
- "new_cases_smoothed_per_million": 0.364,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 61.11
- },
- {
- "date": "2020-05-24",
- "total_cases": 30.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.757,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.364,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 61.11
- },
- {
- "date": "2020-05-25",
- "total_cases": 35.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 14.883,
- "new_cases_per_million": 2.126,
- "new_cases_smoothed_per_million": 0.607,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 61.11
- },
- {
- "date": "2020-05-26",
- "total_cases": 35.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 14.883,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.607,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 61.11
- },
- {
- "date": "2020-05-27",
- "total_cases": 35.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 14.883,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.607,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 61.11
- },
- {
- "date": "2020-05-28",
- "total_cases": 35.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 14.883,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.364,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 61.11
- },
- {
- "date": "2020-05-29",
- "total_cases": 35.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 14.883,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.364,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 61.11
- },
- {
- "date": "2020-05-30",
- "total_cases": 35.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 14.883,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.304,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 61.11
- },
- {
- "date": "2020-05-31",
- "total_cases": 35.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 14.883,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.304,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 61.11
- },
- {
- "date": "2020-06-01",
- "total_cases": 38.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 16.159,
- "new_cases_per_million": 1.276,
- "new_cases_smoothed_per_million": 0.182,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 61.11
- },
- {
- "date": "2020-06-02",
- "total_cases": 38.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 16.159,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.182,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-03",
- "total_cases": 38.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 16.159,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.182,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-04",
- "total_cases": 40.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 17.01,
- "new_cases_per_million": 0.85,
- "new_cases_smoothed_per_million": 0.304,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-05",
- "total_cases": 40.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 17.01,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.304,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-06",
- "total_cases": 40.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 17.01,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.304,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-07",
- "total_cases": 40.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 17.01,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.304,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-08",
- "total_cases": 40.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 17.01,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.121,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-09",
- "total_cases": 42.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 17.86,
- "new_cases_per_million": 0.85,
- "new_cases_smoothed_per_million": 0.243,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-10",
- "total_cases": 42.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 17.86,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.243,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-11",
- "total_cases": 48.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 20.411,
- "new_cases_per_million": 2.551,
- "new_cases_smoothed_per_million": 0.486,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-12",
- "total_cases": 48.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 20.411,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.486,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-13",
- "total_cases": 60.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 25.514,
- "new_cases_per_million": 5.103,
- "new_cases_smoothed_per_million": 1.215,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-14",
- "total_cases": 60.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 25.514,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.215,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-15",
- "total_cases": 60.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 25.514,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.215,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-16",
- "total_cases": 60.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 25.514,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.093,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-17",
- "total_cases": 60.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 25.514,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.093,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-18",
- "total_cases": 60.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 25.514,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.729,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-19",
- "total_cases": 79.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 4.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 33.594,
- "new_cases_per_million": 8.08,
- "new_cases_smoothed_per_million": 1.883,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-20",
- "total_cases": 89.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 37.846,
- "new_cases_per_million": 4.252,
- "new_cases_smoothed_per_million": 1.762,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-21",
- "total_cases": 89.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 37.846,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.762,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-22",
- "total_cases": 89.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 37.846,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.762,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-23",
- "total_cases": 89.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 37.846,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.762,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-24",
- "total_cases": 89.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 37.846,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.762,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-25",
- "total_cases": 89.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 37.846,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.762,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-26",
- "total_cases": 89.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 37.846,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.607,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-27",
- "total_cases": 125.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 53.155,
- "new_cases_per_million": 15.309,
- "new_cases_smoothed_per_million": 2.187,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-28",
- "total_cases": 125.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 53.155,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.187,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-29",
- "total_cases": 125.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 53.155,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.187,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-30",
- "total_cases": 175.0,
- "new_cases": 50.0,
- "new_cases_smoothed": 12.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 74.417,
- "new_cases_per_million": 21.262,
- "new_cases_smoothed_per_million": 5.224,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-01",
- "total_cases": 227.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 19.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 96.529,
- "new_cases_per_million": 22.112,
- "new_cases_smoothed_per_million": 8.383,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-02",
- "total_cases": 227.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 19.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 96.529,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.383,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-03",
- "total_cases": 227.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 19.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 96.529,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.383,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-04",
- "total_cases": 275.0,
- "new_cases": 48.0,
- "new_cases_smoothed": 21.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 116.94,
- "new_cases_per_million": 20.411,
- "new_cases_smoothed_per_million": 9.112,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-05",
- "total_cases": 275.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 21.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 116.94,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.112,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-06",
- "total_cases": 275.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 21.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 116.94,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.112,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-07",
- "total_cases": 275.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 14.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 116.94,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.075,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-08",
- "total_cases": 314.0,
- "new_cases": 39.0,
- "new_cases_smoothed": 12.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 133.525,
- "new_cases_per_million": 16.584,
- "new_cases_smoothed_per_million": 5.285,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-09",
- "total_cases": 314.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 12.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 133.525,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.285,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-10",
- "total_cases": 314.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 12.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 133.525,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.285,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-11",
- "total_cases": 314.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 133.525,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.369,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-12",
- "total_cases": 314.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 133.525,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.369,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-13",
- "total_cases": 399.0,
- "new_cases": 85.0,
- "new_cases_smoothed": 17.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 169.67,
- "new_cases_per_million": 36.145,
- "new_cases_smoothed_per_million": 7.533,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-14",
- "total_cases": 399.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 17.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 169.67,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.533,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-15",
- "total_cases": 399.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 12.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 169.67,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.164,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-16",
- "total_cases": 399.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 12.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 169.67,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.164,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-17",
- "total_cases": 522.0,
- "new_cases": 123.0,
- "new_cases_smoothed": 29.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 221.974,
- "new_cases_per_million": 52.304,
- "new_cases_smoothed_per_million": 12.636,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-18",
- "total_cases": 522.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 29.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 221.974,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 12.636,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-19",
- "total_cases": 522.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 29.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 221.974,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 12.636,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-20",
- "total_cases": 522.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 17.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 221.974,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.472,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-21",
- "total_cases": 522.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 17.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 221.974,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.472,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-22",
- "total_cases": 522.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 17.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 221.974,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.472,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-23",
- "total_cases": 522.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 17.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 221.974,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.472,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-24",
- "total_cases": 686.0,
- "new_cases": 164.0,
- "new_cases_smoothed": 23.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 291.713,
- "new_cases_per_million": 69.739,
- "new_cases_smoothed_per_million": 9.963,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-25",
- "total_cases": 686.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 23.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 291.713,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.963,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-07-26",
- "total_cases": 686.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 23.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 291.713,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.963,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.17
- },
- {
- "date": "2020-07-27",
- "total_cases": 686.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 23.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 291.713,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.963,
- "total_deaths_per_million": 0.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.17
- },
- {
- "date": "2020-07-28",
- "total_cases": 739.0,
- "new_cases": 53.0,
- "new_cases_smoothed": 31.0,
- "total_deaths": 2.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 314.251,
- "new_cases_per_million": 22.538,
- "new_cases_smoothed_per_million": 13.182,
- "total_deaths_per_million": 0.85,
- "new_deaths_per_million": 0.425,
- "new_deaths_smoothed_per_million": 0.061,
- "stringency_index": 54.17
- },
- {
- "date": "2020-07-29",
- "total_cases": 739.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 31.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 314.251,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 13.182,
- "total_deaths_per_million": 0.85,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.061,
- "stringency_index": 54.17
- },
- {
- "date": "2020-07-30",
- "total_cases": 804.0,
- "new_cases": 65.0,
- "new_cases_smoothed": 40.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 341.891,
- "new_cases_per_million": 27.64,
- "new_cases_smoothed_per_million": 17.131,
- "total_deaths_per_million": 0.85,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.061,
- "stringency_index": 54.17
- },
- {
- "date": "2020-07-31",
- "total_cases": 804.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 16.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 341.891,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.168,
- "total_deaths_per_million": 0.85,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.061,
- "stringency_index": 64.35
- },
- {
- "date": "2020-08-01",
- "total_cases": 804.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 16.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 341.891,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.168,
- "total_deaths_per_million": 0.85,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.061,
- "stringency_index": 64.35
- },
- {
- "date": "2020-08-02",
- "total_cases": 804.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 16.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 341.891,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.168,
- "total_deaths_per_million": 0.85,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.061,
- "stringency_index": 64.35
- },
- {
- "date": "2020-08-03",
- "total_cases": 804.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 16.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 341.891,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.168,
- "total_deaths_per_million": 0.85,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.061,
- "stringency_index": 58.8
- },
- {
- "date": "2020-08-04",
- "total_cases": 804.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 9.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 341.891,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.949,
- "total_deaths_per_million": 0.85,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.8
- },
- {
- "date": "2020-08-05",
- "total_cases": 804.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 9.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 341.891,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.949,
- "total_deaths_per_million": 0.85,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.8
- },
- {
- "date": "2020-08-06",
- "total_cases": 804.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 341.891,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.85,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 58.8
- },
- {
- "date": "2020-08-07",
- "total_cases": 909.0,
- "new_cases": 105.0,
- "new_cases_smoothed": 15.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 386.541,
- "new_cases_per_million": 44.65,
- "new_cases_smoothed_per_million": 6.379,
- "total_deaths_per_million": 0.85,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.94
- },
- {
- "date": "2020-08-08",
- "total_cases": 909.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 15.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 386.541,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.379,
- "total_deaths_per_million": 0.85,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.94
- },
- {
- "date": "2020-08-09",
- "total_cases": 909.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 15.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 386.541,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.379,
- "total_deaths_per_million": 0.85,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.94
- },
- {
- "date": "2020-08-10",
- "total_cases": 909.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 15.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 386.541,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.379,
- "total_deaths_per_million": 0.85,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.94
- },
- {
- "date": "2020-08-11",
- "total_cases": 1066.0,
- "new_cases": 157.0,
- "new_cases_smoothed": 37.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 453.304,
- "new_cases_per_million": 66.762,
- "new_cases_smoothed_per_million": 15.916,
- "total_deaths_per_million": 0.85,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.94
- },
- {
- "date": "2020-08-12",
- "total_cases": 1066.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 37.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 453.304,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 15.916,
- "total_deaths_per_million": 0.85,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.94
- },
- {
- "date": "2020-08-13",
- "total_cases": 1066.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 37.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 453.304,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 15.916,
- "total_deaths_per_million": 0.85,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.94
- },
- {
- "date": "2020-08-14",
- "total_cases": 1214.0,
- "new_cases": 148.0,
- "new_cases_smoothed": 43.571,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 516.239,
- "new_cases_per_million": 62.935,
- "new_cases_smoothed_per_million": 18.528,
- "total_deaths_per_million": 1.276,
- "new_deaths_per_million": 0.425,
- "new_deaths_smoothed_per_million": 0.061,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-15",
- "total_cases": 1214.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 43.571,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 516.239,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 18.528,
- "total_deaths_per_million": 1.276,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.061,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-16",
- "total_cases": 1214.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 43.571,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 516.239,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 18.528,
- "total_deaths_per_million": 1.276,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.061,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-17",
- "total_cases": 1214.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 43.571,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 516.239,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 18.528,
- "total_deaths_per_million": 1.276,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.061,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-18",
- "total_cases": 1308.0,
- "new_cases": 94.0,
- "new_cases_smoothed": 34.571,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 556.211,
- "new_cases_per_million": 39.972,
- "new_cases_smoothed_per_million": 14.701,
- "total_deaths_per_million": 1.276,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.061,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-19",
- "total_cases": 1308.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 34.571,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 556.211,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 14.701,
- "total_deaths_per_million": 1.276,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.061,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-20",
- "total_cases": 1308.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 34.571,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 556.211,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 14.701,
- "total_deaths_per_million": 1.276,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.061,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-21",
- "total_cases": 1308.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 13.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 556.211,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.71,
- "total_deaths_per_million": 1.276,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-22",
- "total_cases": 1308.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 13.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 556.211,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.71,
- "total_deaths_per_million": 1.276,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-23",
- "total_cases": 1308.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 13.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 556.211,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.71,
- "total_deaths_per_million": 1.276,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-24",
- "total_cases": 1308.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 13.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 556.211,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.71,
- "total_deaths_per_million": 1.276,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-25",
- "total_cases": 1562.0,
- "new_cases": 254.0,
- "new_cases_smoothed": 36.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 664.222,
- "new_cases_per_million": 108.01,
- "new_cases_smoothed_per_million": 15.43,
- "total_deaths_per_million": 1.276,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-08-26",
- "total_cases": 1562.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 36.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 664.222,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 15.43,
- "total_deaths_per_million": 1.276,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-08-27",
- "total_cases": 1633.0,
- "new_cases": 71.0,
- "new_cases_smoothed": 46.429,
- "total_deaths": 6.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 694.413,
- "new_cases_per_million": 30.192,
- "new_cases_smoothed_per_million": 19.743,
- "total_deaths_per_million": 2.551,
- "new_deaths_per_million": 1.276,
- "new_deaths_smoothed_per_million": 0.182,
- "stringency_index": 52.78
- },
- {
- "date": "2020-08-28",
- "total_cases": 1633.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 46.429,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 694.413,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 19.743,
- "total_deaths_per_million": 2.551,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.182,
- "stringency_index": 52.78
- },
- {
- "date": "2020-08-29",
- "total_cases": 1633.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 46.429,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 694.413,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 19.743,
- "total_deaths_per_million": 2.551,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.182,
- "stringency_index": 52.78
- },
- {
- "date": "2020-08-30",
- "total_cases": 1633.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 46.429,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 694.413,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 19.743,
- "total_deaths_per_million": 2.551,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.182,
- "stringency_index": 52.78
- },
- {
- "date": "2020-08-31",
- "total_cases": 1633.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 46.429,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 694.413,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 19.743,
- "total_deaths_per_million": 2.551,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.182,
- "stringency_index": 52.78
- },
- {
- "date": "2020-09-01",
- "total_cases": 1724.0,
- "new_cases": 91.0,
- "new_cases_smoothed": 23.143,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 733.11,
- "new_cases_per_million": 38.697,
- "new_cases_smoothed_per_million": 9.841,
- "total_deaths_per_million": 2.551,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.182,
- "stringency_index": 52.78
- },
- {
- "date": "2020-09-02",
- "total_cases": 1724.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 23.143,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 733.11,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.841,
- "total_deaths_per_million": 2.551,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.182,
- "stringency_index": 52.78
- },
- {
- "date": "2020-09-03",
- "total_cases": 1724.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 13.0,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 733.11,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.528,
- "total_deaths_per_million": 2.551,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-09-04",
- "total_cases": 1724.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 13.0,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 733.11,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.528,
- "total_deaths_per_million": 2.551,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 49.07
- },
- {
- "date": "2020-09-05",
- "total_cases": 2002.0,
- "new_cases": 278.0,
- "new_cases_smoothed": 52.714,
- "total_deaths": 8.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 851.326,
- "new_cases_per_million": 118.216,
- "new_cases_smoothed_per_million": 22.416,
- "total_deaths_per_million": 3.402,
- "new_deaths_per_million": 0.85,
- "new_deaths_smoothed_per_million": 0.121,
- "stringency_index": 49.07
- },
- {
- "date": "2020-09-06",
- "total_cases": 2002.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 52.714,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 851.326,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 22.416,
- "total_deaths_per_million": 3.402,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.121,
- "stringency_index": 49.07
- },
- {
- "date": "2020-09-07",
- "total_cases": 2002.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 52.714,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 851.326,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 22.416,
- "total_deaths_per_million": 3.402,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.121,
- "stringency_index": 49.07
- },
- {
- "date": "2020-09-08",
- "total_cases": 2126.0,
- "new_cases": 124.0,
- "new_cases_smoothed": 57.429,
- "total_deaths": 9.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 904.056,
- "new_cases_per_million": 52.729,
- "new_cases_smoothed_per_million": 24.421,
- "total_deaths_per_million": 3.827,
- "new_deaths_per_million": 0.425,
- "new_deaths_smoothed_per_million": 0.182,
- "stringency_index": 49.07
- },
- {
- "date": "2020-09-09",
- "total_cases": 2126.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 57.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 904.056,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 24.421,
- "total_deaths_per_million": 3.827,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.182,
- "stringency_index": 49.07
- },
- {
- "date": "2020-09-10",
- "total_cases": 2126.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 57.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 904.056,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 24.421,
- "total_deaths_per_million": 3.827,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.182,
- "stringency_index": 49.07
- },
- {
- "date": "2020-09-11",
- "total_cases": 2252.0,
- "new_cases": 126.0,
- "new_cases_smoothed": 75.429,
- "total_deaths": 10.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 957.636,
- "new_cases_per_million": 53.58,
- "new_cases_smoothed_per_million": 32.075,
- "total_deaths_per_million": 4.252,
- "new_deaths_per_million": 0.425,
- "new_deaths_smoothed_per_million": 0.243,
- "stringency_index": 49.07
- },
- {
- "date": "2020-09-12",
- "total_cases": 2252.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 35.714,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 957.636,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 15.187,
- "total_deaths_per_million": 4.252,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.121,
- "stringency_index": 49.07
- },
- {
- "date": "2020-09-13",
- "total_cases": 2252.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 35.714,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 957.636,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 15.187,
- "total_deaths_per_million": 4.252,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.121,
- "stringency_index": 49.07
- },
- {
- "date": "2020-09-14",
- "total_cases": 2252.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 35.714,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 957.636,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 15.187,
- "total_deaths_per_million": 4.252,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.121,
- "stringency_index": 58.33
- },
- {
- "date": "2020-09-15",
- "total_cases": 2463.0,
- "new_cases": 211.0,
- "new_cases_smoothed": 48.143,
- "total_deaths": 11.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1047.361,
- "new_cases_per_million": 89.725,
- "new_cases_smoothed_per_million": 20.472,
- "total_deaths_per_million": 4.678,
- "new_deaths_per_million": 0.425,
- "new_deaths_smoothed_per_million": 0.121,
- "stringency_index": 58.33
- },
- {
- "date": "2020-09-16",
- "total_cases": 2463.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 48.143,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1047.361,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 20.472,
- "total_deaths_per_million": 4.678,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.121,
- "stringency_index": 58.33
- },
- {
- "date": "2020-09-17",
- "total_cases": 2463.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 48.143,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1047.361,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 20.472,
- "total_deaths_per_million": 4.678,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.121,
- "stringency_index": 58.33
- },
- {
- "date": "2020-09-18",
- "total_cases": 2567.0,
- "new_cases": 104.0,
- "new_cases_smoothed": 45.0,
- "total_deaths": 13.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 1091.586,
- "new_cases_per_million": 44.225,
- "new_cases_smoothed_per_million": 19.136,
- "total_deaths_per_million": 5.528,
- "new_deaths_per_million": 0.85,
- "new_deaths_smoothed_per_million": 0.182,
- "stringency_index": 58.33
- },
- {
- "date": "2020-09-19",
- "total_cases": 2567.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 45.0,
- "total_deaths": 13.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 1091.586,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 19.136,
- "total_deaths_per_million": 5.528,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.182,
- "stringency_index": 58.33
- },
- {
- "date": "2020-09-20",
- "total_cases": 2567.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 45.0,
- "total_deaths": 13.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 1091.586,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 19.136,
- "total_deaths_per_million": 5.528,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.182,
- "stringency_index": 58.33
- },
- {
- "date": "2020-09-21",
- "total_cases": 2567.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 45.0,
- "total_deaths": 13.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 1091.586,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 19.136,
- "total_deaths_per_million": 5.528,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.182,
- "stringency_index": 58.33
- },
- {
- "date": "2020-09-22",
- "total_cases": 2567.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 14.857,
- "total_deaths": 13.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1091.586,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.318,
- "total_deaths_per_million": 5.528,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.121,
- "stringency_index": 58.33
- },
- {
- "date": "2020-09-23",
- "total_cases": 2567.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 14.857,
- "total_deaths": 13.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1091.586,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.318,
- "total_deaths_per_million": 5.528,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.121,
- "stringency_index": 58.33
- },
- {
- "date": "2020-09-24",
- "total_cases": 2567.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 14.857,
- "total_deaths": 13.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1091.586,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.318,
- "total_deaths_per_million": 5.528,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.121,
- "stringency_index": 58.33
- },
- {
- "date": "2020-09-25",
- "total_cases": 2921.0,
- "new_cases": 354.0,
- "new_cases_smoothed": 50.571,
- "total_deaths": 16.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 1242.12,
- "new_cases_per_million": 150.534,
- "new_cases_smoothed_per_million": 21.505,
- "total_deaths_per_million": 6.804,
- "new_deaths_per_million": 1.276,
- "new_deaths_smoothed_per_million": 0.182
- }
- ]
- },
- "CAF": {
- "continent": "Africa",
- "location": "Central African Republic",
- "population": 4829764.0,
- "population_density": 7.479,
- "median_age": 18.3,
- "aged_65_older": 3.655,
- "aged_70_older": 2.251,
- "gdp_per_capita": 661.24,
- "cardiovasc_death_rate": 435.727,
- "diabetes_prevalence": 6.1,
- "handwashing_facilities": 16.603,
- "hospital_beds_per_thousand": 1.0,
- "life_expectancy": 53.28,
- "human_development_index": 0.367,
- "data": [
- {
- "date": "2020-03-16",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.207,
- "new_cases_per_million": 0.207,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-17",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.207,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-18",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.207,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-19",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.207,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-20",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.207,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-21",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.207,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-22",
- "total_cases": 3.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.621,
- "new_cases_per_million": 0.414,
- "new_cases_smoothed_per_million": 0.089,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-23",
- "total_cases": 4.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.828,
- "new_cases_per_million": 0.207,
- "new_cases_smoothed_per_million": 0.089,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-24",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.828,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.089,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-25",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.828,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.089,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-26",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.828,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.089,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-03-27",
- "total_cases": 5.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.035,
- "new_cases_per_million": 0.207,
- "new_cases_smoothed_per_million": 0.118,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-03-28",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.035,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.118,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-03-29",
- "total_cases": 6.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.242,
- "new_cases_per_million": 0.207,
- "new_cases_smoothed_per_million": 0.089,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-03-30",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.242,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.059,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-03-31",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.242,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.059,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-01",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.242,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.059,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-02",
- "total_cases": 8.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.656,
- "new_cases_per_million": 0.414,
- "new_cases_smoothed_per_million": 0.118,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-03",
- "total_cases": 8.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.656,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.089,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-04",
- "total_cases": 8.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.656,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.089,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-05",
- "total_cases": 9.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.863,
- "new_cases_per_million": 0.207,
- "new_cases_smoothed_per_million": 0.089,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-06",
- "total_cases": 9.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.863,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.089,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-07",
- "total_cases": 9.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.863,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.089,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-08",
- "total_cases": 9.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.863,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.089,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-09",
- "total_cases": 10.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.07,
- "new_cases_per_million": 0.207,
- "new_cases_smoothed_per_million": 0.059,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-10",
- "total_cases": 11.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.278,
- "new_cases_per_million": 0.207,
- "new_cases_smoothed_per_million": 0.089,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-11",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.278,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.089,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-12",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.278,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.059,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-13",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.278,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.059,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-14",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.278,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.059,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-15",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.278,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.059,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-16",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.278,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.03,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-17",
- "total_cases": 12.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.485,
- "new_cases_per_million": 0.207,
- "new_cases_smoothed_per_million": 0.03,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-18",
- "total_cases": 12.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.485,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.03,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-19",
- "total_cases": 12.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.485,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.03,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-20",
- "total_cases": 12.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.485,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.03,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-21",
- "total_cases": 12.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.485,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.03,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-22",
- "total_cases": 14.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.899,
- "new_cases_per_million": 0.414,
- "new_cases_smoothed_per_million": 0.089,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-23",
- "total_cases": 16.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.313,
- "new_cases_per_million": 0.414,
- "new_cases_smoothed_per_million": 0.148,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-24",
- "total_cases": 17.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.52,
- "new_cases_per_million": 0.207,
- "new_cases_smoothed_per_million": 0.148,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-25",
- "total_cases": 19.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.934,
- "new_cases_per_million": 0.414,
- "new_cases_smoothed_per_million": 0.207,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-26",
- "total_cases": 19.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.934,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.207,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-27",
- "total_cases": 19.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.934,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.207,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-28",
- "total_cases": 50.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.352,
- "new_cases_per_million": 6.419,
- "new_cases_smoothed_per_million": 1.124,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-29",
- "total_cases": 50.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.352,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.065,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-30",
- "total_cases": 50.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.352,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.006,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-05-01",
- "total_cases": 50.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.352,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.976,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-05-02",
- "total_cases": 72.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 7.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 14.908,
- "new_cases_per_million": 4.555,
- "new_cases_smoothed_per_million": 1.568,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-05-03",
- "total_cases": 72.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 14.908,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.568,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-05-04",
- "total_cases": 72.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 14.908,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.568,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-05-05",
- "total_cases": 94.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 6.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 19.463,
- "new_cases_per_million": 4.555,
- "new_cases_smoothed_per_million": 1.301,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-05-06",
- "total_cases": 94.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 19.463,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.301,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-05-07",
- "total_cases": 94.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 19.463,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.301,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.52
- },
- {
- "date": "2020-05-08",
- "total_cases": 94.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 19.463,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.301,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-09",
- "total_cases": 143.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 10.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 29.608,
- "new_cases_per_million": 10.145,
- "new_cases_smoothed_per_million": 2.1,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-10",
- "total_cases": 143.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 10.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 29.608,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.1,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-11",
- "total_cases": 179.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 15.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 37.062,
- "new_cases_per_million": 7.454,
- "new_cases_smoothed_per_million": 3.165,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-12",
- "total_cases": 179.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 12.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 37.062,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.514,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-13",
- "total_cases": 179.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 12.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 37.062,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.514,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-14",
- "total_cases": 197.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 14.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 40.789,
- "new_cases_per_million": 3.727,
- "new_cases_smoothed_per_million": 3.047,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-15",
- "total_cases": 221.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 18.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.758,
- "new_cases_per_million": 4.969,
- "new_cases_smoothed_per_million": 3.756,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-16",
- "total_cases": 301.0,
- "new_cases": 80.0,
- "new_cases_smoothed": 22.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 62.322,
- "new_cases_per_million": 16.564,
- "new_cases_smoothed_per_million": 4.673,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-17",
- "total_cases": 327.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 26.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 67.705,
- "new_cases_per_million": 5.383,
- "new_cases_smoothed_per_million": 5.442,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-18",
- "total_cases": 327.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 21.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 67.705,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.378,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-19",
- "total_cases": 336.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 22.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 69.569,
- "new_cases_per_million": 1.863,
- "new_cases_smoothed_per_million": 4.644,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-20",
- "total_cases": 411.0,
- "new_cases": 75.0,
- "new_cases_smoothed": 33.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 85.097,
- "new_cases_per_million": 15.529,
- "new_cases_smoothed_per_million": 6.862,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-21",
- "total_cases": 411.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 30.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 85.097,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.33,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-22",
- "total_cases": 436.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 30.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 90.274,
- "new_cases_per_million": 5.176,
- "new_cases_smoothed_per_million": 6.359,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-23",
- "total_cases": 479.0,
- "new_cases": 43.0,
- "new_cases_smoothed": 25.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 99.177,
- "new_cases_per_million": 8.903,
- "new_cases_smoothed_per_million": 5.265,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-24",
- "total_cases": 552.0,
- "new_cases": 73.0,
- "new_cases_smoothed": 32.143,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 114.291,
- "new_cases_per_million": 15.115,
- "new_cases_smoothed_per_million": 6.655,
- "total_deaths_per_million": 0.207,
- "new_deaths_per_million": 0.207,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-25",
- "total_cases": 604.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 39.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 125.058,
- "new_cases_per_million": 10.767,
- "new_cases_smoothed_per_million": 8.193,
- "total_deaths_per_million": 0.207,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-26",
- "total_cases": 652.0,
- "new_cases": 48.0,
- "new_cases_smoothed": 45.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 134.996,
- "new_cases_per_million": 9.938,
- "new_cases_smoothed_per_million": 9.347,
- "total_deaths_per_million": 0.207,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-27",
- "total_cases": 671.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 37.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 138.93,
- "new_cases_per_million": 3.934,
- "new_cases_smoothed_per_million": 7.69,
- "total_deaths_per_million": 0.207,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-28",
- "total_cases": 702.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 41.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 145.349,
- "new_cases_per_million": 6.419,
- "new_cases_smoothed_per_million": 8.607,
- "total_deaths_per_million": 0.207,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-29",
- "total_cases": 755.0,
- "new_cases": 53.0,
- "new_cases_smoothed": 45.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 156.322,
- "new_cases_per_million": 10.974,
- "new_cases_smoothed_per_million": 9.436,
- "total_deaths_per_million": 0.207,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-30",
- "total_cases": 874.0,
- "new_cases": 119.0,
- "new_cases_smoothed": 56.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 180.961,
- "new_cases_per_million": 24.639,
- "new_cases_smoothed_per_million": 11.684,
- "total_deaths_per_million": 0.207,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-31",
- "total_cases": 962.0,
- "new_cases": 88.0,
- "new_cases_smoothed": 58.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 199.182,
- "new_cases_per_million": 18.22,
- "new_cases_smoothed_per_million": 12.127,
- "total_deaths_per_million": 0.207,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-01",
- "total_cases": 1011.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 58.143,
- "total_deaths": 2.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 209.327,
- "new_cases_per_million": 10.145,
- "new_cases_smoothed_per_million": 12.038,
- "total_deaths_per_million": 0.414,
- "new_deaths_per_million": 0.207,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-02",
- "total_cases": 1069.0,
- "new_cases": 58.0,
- "new_cases_smoothed": 59.571,
- "total_deaths": 4.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 221.336,
- "new_cases_per_million": 12.009,
- "new_cases_smoothed_per_million": 12.334,
- "total_deaths_per_million": 0.828,
- "new_deaths_per_million": 0.414,
- "new_deaths_smoothed_per_million": 0.089,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-03",
- "total_cases": 1173.0,
- "new_cases": 104.0,
- "new_cases_smoothed": 71.714,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 242.869,
- "new_cases_per_million": 21.533,
- "new_cases_smoothed_per_million": 14.848,
- "total_deaths_per_million": 0.828,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.089,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-04",
- "total_cases": 1189.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 69.571,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 246.182,
- "new_cases_per_million": 3.313,
- "new_cases_smoothed_per_million": 14.405,
- "total_deaths_per_million": 0.828,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.089,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-05",
- "total_cases": 1288.0,
- "new_cases": 99.0,
- "new_cases_smoothed": 76.143,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 266.68,
- "new_cases_per_million": 20.498,
- "new_cases_smoothed_per_million": 15.765,
- "total_deaths_per_million": 0.828,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.089,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-06",
- "total_cases": 1451.0,
- "new_cases": 163.0,
- "new_cases_smoothed": 82.429,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 300.429,
- "new_cases_per_million": 33.749,
- "new_cases_smoothed_per_million": 17.067,
- "total_deaths_per_million": 0.828,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.089,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-07",
- "total_cases": 1570.0,
- "new_cases": 119.0,
- "new_cases_smoothed": 86.857,
- "total_deaths": 5.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 325.068,
- "new_cases_per_million": 24.639,
- "new_cases_smoothed_per_million": 17.984,
- "total_deaths_per_million": 1.035,
- "new_deaths_per_million": 0.207,
- "new_deaths_smoothed_per_million": 0.118,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-08",
- "total_cases": 1634.0,
- "new_cases": 64.0,
- "new_cases_smoothed": 89.0,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 338.319,
- "new_cases_per_million": 13.251,
- "new_cases_smoothed_per_million": 18.427,
- "total_deaths_per_million": 1.035,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.089,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-09",
- "total_cases": 1850.0,
- "new_cases": 216.0,
- "new_cases_smoothed": 111.571,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 383.041,
- "new_cases_per_million": 44.723,
- "new_cases_smoothed_per_million": 23.101,
- "total_deaths_per_million": 1.035,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-10",
- "total_cases": 1888.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 102.143,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 390.909,
- "new_cases_per_million": 7.868,
- "new_cases_smoothed_per_million": 21.149,
- "total_deaths_per_million": 1.035,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 75.93
- },
- {
- "date": "2020-06-11",
- "total_cases": 1952.0,
- "new_cases": 64.0,
- "new_cases_smoothed": 109.0,
- "total_deaths": 6.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 404.161,
- "new_cases_per_million": 13.251,
- "new_cases_smoothed_per_million": 22.568,
- "total_deaths_per_million": 1.242,
- "new_deaths_per_million": 0.207,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 64.81
- },
- {
- "date": "2020-06-12",
- "total_cases": 2044.0,
- "new_cases": 92.0,
- "new_cases_smoothed": 108.0,
- "total_deaths": 7.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 423.209,
- "new_cases_per_million": 19.049,
- "new_cases_smoothed_per_million": 22.361,
- "total_deaths_per_million": 1.449,
- "new_deaths_per_million": 0.207,
- "new_deaths_smoothed_per_million": 0.089,
- "stringency_index": 64.81
- },
- {
- "date": "2020-06-13",
- "total_cases": 2057.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 86.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 425.901,
- "new_cases_per_million": 2.692,
- "new_cases_smoothed_per_million": 17.925,
- "total_deaths_per_million": 1.449,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.089,
- "stringency_index": 64.81
- },
- {
- "date": "2020-06-14",
- "total_cases": 2057.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 69.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 425.901,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 14.405,
- "total_deaths_per_million": 1.449,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 64.81
- },
- {
- "date": "2020-06-15",
- "total_cases": 2222.0,
- "new_cases": 165.0,
- "new_cases_smoothed": 84.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 460.064,
- "new_cases_per_million": 34.163,
- "new_cases_smoothed_per_million": 17.392,
- "total_deaths_per_million": 1.449,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 64.81
- },
- {
- "date": "2020-06-16",
- "total_cases": 2289.0,
- "new_cases": 67.0,
- "new_cases_smoothed": 62.714,
- "total_deaths": 10.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 473.936,
- "new_cases_per_million": 13.872,
- "new_cases_smoothed_per_million": 12.985,
- "total_deaths_per_million": 2.07,
- "new_deaths_per_million": 0.621,
- "new_deaths_smoothed_per_million": 0.148,
- "stringency_index": 64.81
- },
- {
- "date": "2020-06-17",
- "total_cases": 2410.0,
- "new_cases": 121.0,
- "new_cases_smoothed": 74.571,
- "total_deaths": 14.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 498.989,
- "new_cases_per_million": 25.053,
- "new_cases_smoothed_per_million": 15.44,
- "total_deaths_per_million": 2.899,
- "new_deaths_per_million": 0.828,
- "new_deaths_smoothed_per_million": 0.266,
- "stringency_index": 64.81
- },
- {
- "date": "2020-06-18",
- "total_cases": 2564.0,
- "new_cases": 154.0,
- "new_cases_smoothed": 87.429,
- "total_deaths": 18.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 530.875,
- "new_cases_per_million": 31.886,
- "new_cases_smoothed_per_million": 18.102,
- "total_deaths_per_million": 3.727,
- "new_deaths_per_million": 0.828,
- "new_deaths_smoothed_per_million": 0.355,
- "stringency_index": 64.81
- },
- {
- "date": "2020-06-19",
- "total_cases": 2605.0,
- "new_cases": 41.0,
- "new_cases_smoothed": 80.143,
- "total_deaths": 19.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 539.364,
- "new_cases_per_million": 8.489,
- "new_cases_smoothed_per_million": 16.594,
- "total_deaths_per_million": 3.934,
- "new_deaths_per_million": 0.207,
- "new_deaths_smoothed_per_million": 0.355,
- "stringency_index": 64.81
- },
- {
- "date": "2020-06-20",
- "total_cases": 2605.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 78.286,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 539.364,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 16.209,
- "total_deaths_per_million": 3.934,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.355,
- "stringency_index": 64.81
- },
- {
- "date": "2020-06-21",
- "total_cases": 2808.0,
- "new_cases": 203.0,
- "new_cases_smoothed": 107.286,
- "total_deaths": 23.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 581.395,
- "new_cases_per_million": 42.031,
- "new_cases_smoothed_per_million": 22.213,
- "total_deaths_per_million": 4.762,
- "new_deaths_per_million": 0.828,
- "new_deaths_smoothed_per_million": 0.473,
- "stringency_index": 64.81
- },
- {
- "date": "2020-06-22",
- "total_cases": 2808.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 83.714,
- "total_deaths": 23.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 581.395,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 17.333,
- "total_deaths_per_million": 4.762,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.473,
- "stringency_index": 64.81
- },
- {
- "date": "2020-06-23",
- "total_cases": 2963.0,
- "new_cases": 155.0,
- "new_cases_smoothed": 96.286,
- "total_deaths": 30.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 613.488,
- "new_cases_per_million": 32.093,
- "new_cases_smoothed_per_million": 19.936,
- "total_deaths_per_million": 6.211,
- "new_deaths_per_million": 1.449,
- "new_deaths_smoothed_per_million": 0.592,
- "stringency_index": 64.81
- },
- {
- "date": "2020-06-24",
- "total_cases": 3051.0,
- "new_cases": 88.0,
- "new_cases_smoothed": 91.571,
- "total_deaths": 37.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 631.708,
- "new_cases_per_million": 18.22,
- "new_cases_smoothed_per_million": 18.96,
- "total_deaths_per_million": 7.661,
- "new_deaths_per_million": 1.449,
- "new_deaths_smoothed_per_million": 0.68,
- "stringency_index": 64.81
- },
- {
- "date": "2020-06-25",
- "total_cases": 3099.0,
- "new_cases": 48.0,
- "new_cases_smoothed": 76.429,
- "total_deaths": 38.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 641.646,
- "new_cases_per_million": 9.938,
- "new_cases_smoothed_per_million": 15.824,
- "total_deaths_per_million": 7.868,
- "new_deaths_per_million": 0.207,
- "new_deaths_smoothed_per_million": 0.592,
- "stringency_index": 64.81
- },
- {
- "date": "2020-06-26",
- "total_cases": 3244.0,
- "new_cases": 145.0,
- "new_cases_smoothed": 91.286,
- "total_deaths": 40.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 671.668,
- "new_cases_per_million": 30.022,
- "new_cases_smoothed_per_million": 18.901,
- "total_deaths_per_million": 8.282,
- "new_deaths_per_million": 0.414,
- "new_deaths_smoothed_per_million": 0.621,
- "stringency_index": 64.81
- },
- {
- "date": "2020-06-27",
- "total_cases": 3340.0,
- "new_cases": 96.0,
- "new_cases_smoothed": 105.0,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 691.545,
- "new_cases_per_million": 19.877,
- "new_cases_smoothed_per_million": 21.74,
- "total_deaths_per_million": 8.282,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.621,
- "stringency_index": 64.81
- },
- {
- "date": "2020-06-28",
- "total_cases": 3429.0,
- "new_cases": 89.0,
- "new_cases_smoothed": 88.714,
- "total_deaths": 45.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 709.973,
- "new_cases_per_million": 18.427,
- "new_cases_smoothed_per_million": 18.368,
- "total_deaths_per_million": 9.317,
- "new_deaths_per_million": 1.035,
- "new_deaths_smoothed_per_million": 0.651,
- "stringency_index": 64.81
- },
- {
- "date": "2020-06-29",
- "total_cases": 3429.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 88.714,
- "total_deaths": 45.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 709.973,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 18.368,
- "total_deaths_per_million": 9.317,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.651,
- "stringency_index": 64.81
- },
- {
- "date": "2020-06-30",
- "total_cases": 3613.0,
- "new_cases": 184.0,
- "new_cases_smoothed": 92.857,
- "total_deaths": 47.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 748.07,
- "new_cases_per_million": 38.097,
- "new_cases_smoothed_per_million": 19.226,
- "total_deaths_per_million": 9.731,
- "new_deaths_per_million": 0.414,
- "new_deaths_smoothed_per_million": 0.503,
- "stringency_index": 64.81
- },
- {
- "date": "2020-07-01",
- "total_cases": 3745.0,
- "new_cases": 132.0,
- "new_cases_smoothed": 99.143,
- "total_deaths": 47.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 775.4,
- "new_cases_per_million": 27.331,
- "new_cases_smoothed_per_million": 20.527,
- "total_deaths_per_million": 9.731,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.296,
- "stringency_index": 64.81
- },
- {
- "date": "2020-07-02",
- "total_cases": 3745.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 92.286,
- "total_deaths": 47.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 775.4,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 19.108,
- "total_deaths_per_million": 9.731,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.266,
- "stringency_index": 64.81
- },
- {
- "date": "2020-07-03",
- "total_cases": 3823.0,
- "new_cases": 78.0,
- "new_cases_smoothed": 82.714,
- "total_deaths": 48.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 791.55,
- "new_cases_per_million": 16.15,
- "new_cases_smoothed_per_million": 17.126,
- "total_deaths_per_million": 9.938,
- "new_deaths_per_million": 0.207,
- "new_deaths_smoothed_per_million": 0.237,
- "stringency_index": 64.81
- },
- {
- "date": "2020-07-04",
- "total_cases": 3918.0,
- "new_cases": 95.0,
- "new_cases_smoothed": 82.571,
- "total_deaths": 48.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 811.22,
- "new_cases_per_million": 19.67,
- "new_cases_smoothed_per_million": 17.096,
- "total_deaths_per_million": 9.938,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.237,
- "stringency_index": 64.81
- },
- {
- "date": "2020-07-05",
- "total_cases": 3969.0,
- "new_cases": 51.0,
- "new_cases_smoothed": 77.143,
- "total_deaths": 48.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 821.779,
- "new_cases_per_million": 10.56,
- "new_cases_smoothed_per_million": 15.972,
- "total_deaths_per_million": 9.938,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.089,
- "stringency_index": 64.81
- },
- {
- "date": "2020-07-06",
- "total_cases": 3969.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 77.143,
- "total_deaths": 48.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 821.779,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 15.972,
- "total_deaths_per_million": 9.938,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.089,
- "stringency_index": 64.81
- },
- {
- "date": "2020-07-07",
- "total_cases": 4033.0,
- "new_cases": 64.0,
- "new_cases_smoothed": 60.0,
- "total_deaths": 52.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 835.03,
- "new_cases_per_million": 13.251,
- "new_cases_smoothed_per_million": 12.423,
- "total_deaths_per_million": 10.767,
- "new_deaths_per_million": 0.828,
- "new_deaths_smoothed_per_million": 0.148,
- "stringency_index": 64.81
- },
- {
- "date": "2020-07-08",
- "total_cases": 4071.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 46.571,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 842.898,
- "new_cases_per_million": 7.868,
- "new_cases_smoothed_per_million": 9.643,
- "total_deaths_per_million": 10.767,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.148,
- "stringency_index": 64.81
- },
- {
- "date": "2020-07-09",
- "total_cases": 4109.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 52.0,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 850.766,
- "new_cases_per_million": 7.868,
- "new_cases_smoothed_per_million": 10.767,
- "total_deaths_per_million": 10.767,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.148,
- "stringency_index": 64.81
- },
- {
- "date": "2020-07-10",
- "total_cases": 4200.0,
- "new_cases": 91.0,
- "new_cases_smoothed": 53.857,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 869.608,
- "new_cases_per_million": 18.842,
- "new_cases_smoothed_per_million": 11.151,
- "total_deaths_per_million": 10.767,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.118,
- "stringency_index": 64.81
- },
- {
- "date": "2020-07-11",
- "total_cases": 4259.0,
- "new_cases": 59.0,
- "new_cases_smoothed": 48.714,
- "total_deaths": 53.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 881.824,
- "new_cases_per_million": 12.216,
- "new_cases_smoothed_per_million": 10.086,
- "total_deaths_per_million": 10.974,
- "new_deaths_per_million": 0.207,
- "new_deaths_smoothed_per_million": 0.148,
- "stringency_index": 64.81
- },
- {
- "date": "2020-07-12",
- "total_cases": 4288.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 45.571,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 887.828,
- "new_cases_per_million": 6.004,
- "new_cases_smoothed_per_million": 9.436,
- "total_deaths_per_million": 10.974,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.148,
- "stringency_index": 64.81
- },
- {
- "date": "2020-07-13",
- "total_cases": 4288.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 45.571,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 887.828,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.436,
- "total_deaths_per_million": 10.974,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.148,
- "stringency_index": 64.81
- },
- {
- "date": "2020-07-14",
- "total_cases": 4321.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 41.143,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 894.661,
- "new_cases_per_million": 6.833,
- "new_cases_smoothed_per_million": 8.519,
- "total_deaths_per_million": 10.974,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 53.7
- },
- {
- "date": "2020-07-15",
- "total_cases": 4356.0,
- "new_cases": 35.0,
- "new_cases_smoothed": 40.714,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 901.907,
- "new_cases_per_million": 7.247,
- "new_cases_smoothed_per_million": 8.43,
- "total_deaths_per_million": 10.974,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 53.7
- },
- {
- "date": "2020-07-16",
- "total_cases": 4362.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 36.143,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 903.15,
- "new_cases_per_million": 1.242,
- "new_cases_smoothed_per_million": 7.483,
- "total_deaths_per_million": 10.974,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 53.7
- },
- {
- "date": "2020-07-17",
- "total_cases": 4373.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 24.714,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 905.427,
- "new_cases_per_million": 2.278,
- "new_cases_smoothed_per_million": 5.117,
- "total_deaths_per_million": 10.974,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 53.7
- },
- {
- "date": "2020-07-18",
- "total_cases": 4389.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 18.571,
- "total_deaths": 53.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 908.74,
- "new_cases_per_million": 3.313,
- "new_cases_smoothed_per_million": 3.845,
- "total_deaths_per_million": 10.974,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 53.7
- },
- {
- "date": "2020-07-19",
- "total_cases": 4485.0,
- "new_cases": 96.0,
- "new_cases_smoothed": 28.143,
- "total_deaths": 55.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 928.617,
- "new_cases_per_million": 19.877,
- "new_cases_smoothed_per_million": 5.827,
- "total_deaths_per_million": 11.388,
- "new_deaths_per_million": 0.414,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 53.7
- },
- {
- "date": "2020-07-20",
- "total_cases": 4485.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 28.143,
- "total_deaths": 55.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 928.617,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.827,
- "total_deaths_per_million": 11.388,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 53.7
- },
- {
- "date": "2020-07-21",
- "total_cases": 4548.0,
- "new_cases": 63.0,
- "new_cases_smoothed": 32.429,
- "total_deaths": 55.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 941.661,
- "new_cases_per_million": 13.044,
- "new_cases_smoothed_per_million": 6.714,
- "total_deaths_per_million": 11.388,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 53.7
- },
- {
- "date": "2020-07-22",
- "total_cases": 4561.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 29.286,
- "total_deaths": 55.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 944.353,
- "new_cases_per_million": 2.692,
- "new_cases_smoothed_per_million": 6.064,
- "total_deaths_per_million": 11.388,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 53.7
- },
- {
- "date": "2020-07-23",
- "total_cases": 4574.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 30.286,
- "total_deaths": 57.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 947.044,
- "new_cases_per_million": 2.692,
- "new_cases_smoothed_per_million": 6.271,
- "total_deaths_per_million": 11.802,
- "new_deaths_per_million": 0.414,
- "new_deaths_smoothed_per_million": 0.118,
- "stringency_index": 53.7
- },
- {
- "date": "2020-07-24",
- "total_cases": 4590.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 31.0,
- "total_deaths": 58.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 950.357,
- "new_cases_per_million": 3.313,
- "new_cases_smoothed_per_million": 6.419,
- "total_deaths_per_million": 12.009,
- "new_deaths_per_million": 0.207,
- "new_deaths_smoothed_per_million": 0.148,
- "stringency_index": 54.63
- },
- {
- "date": "2020-07-25",
- "total_cases": 4593.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 29.143,
- "total_deaths": 59.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 950.978,
- "new_cases_per_million": 0.621,
- "new_cases_smoothed_per_million": 6.034,
- "total_deaths_per_million": 12.216,
- "new_deaths_per_million": 0.207,
- "new_deaths_smoothed_per_million": 0.177,
- "stringency_index": 54.63
- },
- {
- "date": "2020-07-26",
- "total_cases": 4598.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 16.143,
- "total_deaths": 59.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 952.013,
- "new_cases_per_million": 1.035,
- "new_cases_smoothed_per_million": 3.342,
- "total_deaths_per_million": 12.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.118,
- "stringency_index": 54.63
- },
- {
- "date": "2020-07-27",
- "total_cases": 4599.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 16.286,
- "total_deaths": 59.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 952.22,
- "new_cases_per_million": 0.207,
- "new_cases_smoothed_per_million": 3.372,
- "total_deaths_per_million": 12.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.118,
- "stringency_index": 54.63
- },
- {
- "date": "2020-07-28",
- "total_cases": 4599.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.286,
- "total_deaths": 59.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 952.22,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.509,
- "total_deaths_per_million": 12.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.118,
- "stringency_index": 54.63
- },
- {
- "date": "2020-07-29",
- "total_cases": 4599.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 59.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 952.22,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.124,
- "total_deaths_per_million": 12.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.118,
- "stringency_index": 54.63
- },
- {
- "date": "2020-07-30",
- "total_cases": 4605.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 4.429,
- "total_deaths": 59.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 953.463,
- "new_cases_per_million": 1.242,
- "new_cases_smoothed_per_million": 0.917,
- "total_deaths_per_million": 12.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 54.63
- },
- {
- "date": "2020-07-31",
- "total_cases": 4605.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 59.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 953.463,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.444,
- "total_deaths_per_million": 12.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-01",
- "total_cases": 4608.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 59.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 954.084,
- "new_cases_per_million": 0.621,
- "new_cases_smoothed_per_million": 0.444,
- "total_deaths_per_million": 12.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-02",
- "total_cases": 4614.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 59.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 955.326,
- "new_cases_per_million": 1.242,
- "new_cases_smoothed_per_million": 0.473,
- "total_deaths_per_million": 12.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-03",
- "total_cases": 4614.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 59.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 955.326,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.444,
- "total_deaths_per_million": 12.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-04",
- "total_cases": 4614.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 59.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 955.326,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.444,
- "total_deaths_per_million": 12.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-05",
- "total_cases": 4618.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 59.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 956.154,
- "new_cases_per_million": 0.828,
- "new_cases_smoothed_per_million": 0.562,
- "total_deaths_per_million": 12.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-06",
- "total_cases": 4618.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 59.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 956.154,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.385,
- "total_deaths_per_million": 12.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-07",
- "total_cases": 4620.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 59.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 956.568,
- "new_cases_per_million": 0.414,
- "new_cases_smoothed_per_million": 0.444,
- "total_deaths_per_million": 12.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-08",
- "total_cases": 4641.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 4.714,
- "total_deaths": 59.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 960.917,
- "new_cases_per_million": 4.348,
- "new_cases_smoothed_per_million": 0.976,
- "total_deaths_per_million": 12.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-09",
- "total_cases": 4641.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.857,
- "total_deaths": 60.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 960.917,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.799,
- "total_deaths_per_million": 12.423,
- "new_deaths_per_million": 0.207,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-10",
- "total_cases": 4641.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.857,
- "total_deaths": 60.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 960.917,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.799,
- "total_deaths_per_million": 12.423,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-11",
- "total_cases": 4641.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.857,
- "total_deaths": 60.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 960.917,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.799,
- "total_deaths_per_million": 12.423,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-12",
- "total_cases": 4647.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 61.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 962.159,
- "new_cases_per_million": 1.242,
- "new_cases_smoothed_per_million": 0.858,
- "total_deaths_per_million": 12.63,
- "new_deaths_per_million": 0.207,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-13",
- "total_cases": 4652.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 4.857,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 963.194,
- "new_cases_per_million": 1.035,
- "new_cases_smoothed_per_million": 1.006,
- "total_deaths_per_million": 12.63,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-14",
- "total_cases": 4652.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.571,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 963.194,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.947,
- "total_deaths_per_million": 12.63,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-15",
- "total_cases": 4652.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 963.194,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.325,
- "total_deaths_per_million": 12.63,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-16",
- "total_cases": 4652.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 963.194,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.325,
- "total_deaths_per_million": 12.63,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-17",
- "total_cases": 4652.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 963.194,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.325,
- "total_deaths_per_million": 12.63,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-18",
- "total_cases": 4667.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 966.3,
- "new_cases_per_million": 3.106,
- "new_cases_smoothed_per_million": 0.769,
- "total_deaths_per_million": 12.63,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-19",
- "total_cases": 4679.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 4.571,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 968.784,
- "new_cases_per_million": 2.485,
- "new_cases_smoothed_per_million": 0.947,
- "total_deaths_per_million": 12.63,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-20",
- "total_cases": 4679.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.857,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 968.784,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.799,
- "total_deaths_per_million": 12.63,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-21",
- "total_cases": 4679.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.857,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 968.784,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.799,
- "total_deaths_per_million": 12.63,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-22",
- "total_cases": 4679.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.857,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 968.784,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.799,
- "total_deaths_per_million": 12.63,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-23",
- "total_cases": 4679.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.857,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 968.784,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.799,
- "total_deaths_per_million": 12.63,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-24",
- "total_cases": 4679.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.857,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 968.784,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.799,
- "total_deaths_per_million": 12.63,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-25",
- "total_cases": 4679.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 968.784,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.355,
- "total_deaths_per_million": 12.63,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-26",
- "total_cases": 4691.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 971.269,
- "new_cases_per_million": 2.485,
- "new_cases_smoothed_per_million": 0.355,
- "total_deaths_per_million": 12.63,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-27",
- "total_cases": 4698.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 972.718,
- "new_cases_per_million": 1.449,
- "new_cases_smoothed_per_million": 0.562,
- "total_deaths_per_million": 12.63,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-28",
- "total_cases": 4698.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 972.718,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.562,
- "total_deaths_per_million": 12.63,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-29",
- "total_cases": 4700.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 973.132,
- "new_cases_per_million": 0.414,
- "new_cases_smoothed_per_million": 0.621,
- "total_deaths_per_million": 12.63,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-30",
- "total_cases": 4700.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 973.132,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.621,
- "total_deaths_per_million": 12.63,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-08-31",
- "total_cases": 4700.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 973.132,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.621,
- "total_deaths_per_million": 12.63,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-09-01",
- "total_cases": 4711.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 4.571,
- "total_deaths": 62.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 975.41,
- "new_cases_per_million": 2.278,
- "new_cases_smoothed_per_million": 0.947,
- "total_deaths_per_million": 12.837,
- "new_deaths_per_million": 0.207,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 54.63
- },
- {
- "date": "2020-09-02",
- "total_cases": 4711.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 62.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 975.41,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.592,
- "total_deaths_per_million": 12.837,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 54.63
- },
- {
- "date": "2020-09-03",
- "total_cases": 4712.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 62.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 975.617,
- "new_cases_per_million": 0.207,
- "new_cases_smoothed_per_million": 0.414,
- "total_deaths_per_million": 12.837,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 54.63
- },
- {
- "date": "2020-09-04",
- "total_cases": 4729.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 4.429,
- "total_deaths": 62.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 979.137,
- "new_cases_per_million": 3.52,
- "new_cases_smoothed_per_million": 0.917,
- "total_deaths_per_million": 12.837,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 54.63
- },
- {
- "date": "2020-09-05",
- "total_cases": 4729.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 62.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 979.137,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.858,
- "total_deaths_per_million": 12.837,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 54.63
- },
- {
- "date": "2020-09-06",
- "total_cases": 4729.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 62.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 979.137,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.858,
- "total_deaths_per_million": 12.837,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 54.63
- },
- {
- "date": "2020-09-07",
- "total_cases": 4729.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 62.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 979.137,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.858,
- "total_deaths_per_million": 12.837,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.03,
- "stringency_index": 54.63
- },
- {
- "date": "2020-09-08",
- "total_cases": 4729.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 62.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 979.137,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.532,
- "total_deaths_per_million": 12.837,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-09-09",
- "total_cases": 4736.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 3.571,
- "total_deaths": 62.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 980.586,
- "new_cases_per_million": 1.449,
- "new_cases_smoothed_per_million": 0.739,
- "total_deaths_per_million": 12.837,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-09-10",
- "total_cases": 4736.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.429,
- "total_deaths": 62.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 980.586,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.71,
- "total_deaths_per_million": 12.837,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-09-11",
- "total_cases": 4747.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 62.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 982.864,
- "new_cases_per_million": 2.278,
- "new_cases_smoothed_per_million": 0.532,
- "total_deaths_per_million": 12.837,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-09-12",
- "total_cases": 4749.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 62.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 983.278,
- "new_cases_per_million": 0.414,
- "new_cases_smoothed_per_million": 0.592,
- "total_deaths_per_million": 12.837,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-09-13",
- "total_cases": 4749.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 62.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 983.278,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.592,
- "total_deaths_per_million": 12.837,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-09-14",
- "total_cases": 4749.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 62.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 983.278,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.592,
- "total_deaths_per_million": 12.837,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-09-15",
- "total_cases": 4772.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 6.143,
- "total_deaths": 62.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 988.04,
- "new_cases_per_million": 4.762,
- "new_cases_smoothed_per_million": 1.272,
- "total_deaths_per_million": 12.837,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.48
- },
- {
- "date": "2020-09-16",
- "total_cases": 4772.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 62.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 988.04,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.065,
- "total_deaths_per_million": 12.837,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.48
- },
- {
- "date": "2020-09-17",
- "total_cases": 4782.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 6.571,
- "total_deaths": 62.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 990.11,
- "new_cases_per_million": 2.07,
- "new_cases_smoothed_per_million": 1.361,
- "total_deaths_per_million": 12.837,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.48
- },
- {
- "date": "2020-09-18",
- "total_cases": 4782.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.0,
- "total_deaths": 62.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 990.11,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.035,
- "total_deaths_per_million": 12.837,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.48
- },
- {
- "date": "2020-09-19",
- "total_cases": 4786.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 5.286,
- "total_deaths": 62.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 990.939,
- "new_cases_per_million": 0.828,
- "new_cases_smoothed_per_million": 1.094,
- "total_deaths_per_million": 12.837,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.48
- },
- {
- "date": "2020-09-20",
- "total_cases": 4786.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.286,
- "total_deaths": 62.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 990.939,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.094,
- "total_deaths_per_million": 12.837,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.48
- },
- {
- "date": "2020-09-21",
- "total_cases": 4793.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 6.286,
- "total_deaths": 62.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 992.388,
- "new_cases_per_million": 1.449,
- "new_cases_smoothed_per_million": 1.301,
- "total_deaths_per_million": 12.837,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.48
- },
- {
- "date": "2020-09-22",
- "total_cases": 4793.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 62.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 992.388,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.621,
- "total_deaths_per_million": 12.837,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.48
- },
- {
- "date": "2020-09-23",
- "total_cases": 4802.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 4.286,
- "total_deaths": 62.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 994.251,
- "new_cases_per_million": 1.863,
- "new_cases_smoothed_per_million": 0.887,
- "total_deaths_per_million": 12.837,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.48
- },
- {
- "date": "2020-09-24",
- "total_cases": 4802.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 62.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 994.251,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.592,
- "total_deaths_per_million": 12.837,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.48
- },
- {
- "date": "2020-09-25",
- "total_cases": 4804.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 3.143,
- "total_deaths": 62.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 994.666,
- "new_cases_per_million": 0.414,
- "new_cases_smoothed_per_million": 0.651,
- "total_deaths_per_million": 12.837,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- }
- ]
- },
- "CAN": {
- "continent": "North America",
- "location": "Canada",
- "population": 37742157.0,
- "population_density": 4.037,
- "median_age": 41.4,
- "aged_65_older": 16.984,
- "aged_70_older": 10.797,
- "gdp_per_capita": 44017.591,
- "extreme_poverty": 0.5,
- "cardiovasc_death_rate": 105.599,
- "diabetes_prevalence": 7.37,
- "female_smokers": 12.0,
- "male_smokers": 16.6,
- "hospital_beds_per_thousand": 2.5,
- "life_expectancy": 82.43,
- "human_development_index": 0.926,
- "data": [
- {
- "date": "2019-12-31",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-01-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-02",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-03",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-04",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-05",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-06",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-07",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-08",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-09",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-10",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-11",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-12",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-13",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-14",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-15",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-16",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-17",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-18",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-19",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-20",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-21",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-22",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-01-23",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-01-24",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-01-25",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-01-26",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.026,
- "new_cases_per_million": 0.026,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-01-27",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.026,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-01-28",
- "total_cases": 2.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.053,
- "new_cases_per_million": 0.026,
- "new_cases_smoothed_per_million": 0.008,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-01-29",
- "total_cases": 3.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.079,
- "new_cases_per_million": 0.026,
- "new_cases_smoothed_per_million": 0.011,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-01-30",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.079,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.011,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-01-31",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.079,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.011,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-01",
- "total_cases": 4.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.106,
- "new_cases_per_million": 0.026,
- "new_cases_smoothed_per_million": 0.015,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-02",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.106,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.011,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-03",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.106,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.011,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-04",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.106,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.008,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-05",
- "total_cases": 5.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.132,
- "new_cases_per_million": 0.026,
- "new_cases_smoothed_per_million": 0.008,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-06",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.132,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.008,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-07",
- "total_cases": 7.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.185,
- "new_cases_per_million": 0.053,
- "new_cases_smoothed_per_million": 0.015,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-08",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.185,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.011,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-09",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.185,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.011,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-10",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.185,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.011,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-11",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.185,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.011,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-12",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.185,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.008,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-13",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.185,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.008,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-14",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.185,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-15",
- "total_cases": 8.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.212,
- "new_cases_per_million": 0.026,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-16",
- "total_cases": 8.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.212,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-17",
- "total_cases": 8.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.212,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-18",
- "total_cases": 8.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.212,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-19",
- "total_cases": 8.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.212,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-20",
- "total_cases": 8.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.212,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-21",
- "total_cases": 9.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.238,
- "new_cases_per_million": 0.026,
- "new_cases_smoothed_per_million": 0.008,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-22",
- "total_cases": 9.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.238,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-23",
- "total_cases": 9.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.238,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-24",
- "total_cases": 9.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.238,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-25",
- "total_cases": 11.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.291,
- "new_cases_per_million": 0.053,
- "new_cases_smoothed_per_million": 0.011,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-26",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.291,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.011,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-27",
- "total_cases": 12.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.318,
- "new_cases_per_million": 0.026,
- "new_cases_smoothed_per_million": 0.015,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-28",
- "total_cases": 14.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.371,
- "new_cases_per_million": 0.053,
- "new_cases_smoothed_per_million": 0.019,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-02-29",
- "total_cases": 16.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.424,
- "new_cases_per_million": 0.053,
- "new_cases_smoothed_per_million": 0.026,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-03-01",
- "total_cases": 20.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.53,
- "new_cases_per_million": 0.106,
- "new_cases_smoothed_per_million": 0.042,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-03-02",
- "total_cases": 24.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.636,
- "new_cases_per_million": 0.106,
- "new_cases_smoothed_per_million": 0.057,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-03-03",
- "total_cases": 27.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.715,
- "new_cases_per_million": 0.079,
- "new_cases_smoothed_per_million": 0.061,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-03-04",
- "total_cases": 30.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.795,
- "new_cases_per_million": 0.079,
- "new_cases_smoothed_per_million": 0.072,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-03-05",
- "total_cases": 33.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.874,
- "new_cases_per_million": 0.079,
- "new_cases_smoothed_per_million": 0.079,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-03-06",
- "total_cases": 45.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 4.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.192,
- "new_cases_per_million": 0.318,
- "new_cases_smoothed_per_million": 0.117,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-03-07",
- "total_cases": 51.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 5.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.351,
- "new_cases_per_million": 0.159,
- "new_cases_smoothed_per_million": 0.132,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-03-08",
- "total_cases": 57.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 5.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.51,
- "new_cases_per_million": 0.159,
- "new_cases_smoothed_per_million": 0.14,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-03-09",
- "total_cases": 62.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.643,
- "new_cases_per_million": 0.132,
- "new_cases_smoothed_per_million": 0.144,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-03-10",
- "total_cases": 77.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 7.143,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2.04,
- "new_cases_per_million": 0.397,
- "new_cases_smoothed_per_million": 0.189,
- "total_deaths_per_million": 0.026,
- "new_deaths_per_million": 0.026,
- "new_deaths_smoothed_per_million": 0.004,
- "stringency_index": 2.78
- },
- {
- "date": "2020-03-11",
- "total_cases": 93.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 9.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2.464,
- "new_cases_per_million": 0.424,
- "new_cases_smoothed_per_million": 0.238,
- "total_deaths_per_million": 0.026,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.004,
- "stringency_index": 13.89
- },
- {
- "date": "2020-03-12",
- "total_cases": 103.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 10.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2.729,
- "new_cases_per_million": 0.265,
- "new_cases_smoothed_per_million": 0.265,
- "total_deaths_per_million": 0.026,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.004,
- "stringency_index": 22.22
- },
- {
- "date": "2020-03-13",
- "total_cases": 138.0,
- "new_cases": 35.0,
- "new_cases_smoothed": 13.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 3.656,
- "new_cases_per_million": 0.927,
- "new_cases_smoothed_per_million": 0.352,
- "total_deaths_per_million": 0.026,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.004,
- "stringency_index": 22.22
- },
- {
- "date": "2020-03-14",
- "total_cases": 176.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 17.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 4.663,
- "new_cases_per_million": 1.007,
- "new_cases_smoothed_per_million": 0.473,
- "total_deaths_per_million": 0.026,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.004,
- "stringency_index": 24.07
- },
- {
- "date": "2020-03-15",
- "total_cases": 244.0,
- "new_cases": 68.0,
- "new_cases_smoothed": 26.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 6.465,
- "new_cases_per_million": 1.802,
- "new_cases_smoothed_per_million": 0.708,
- "total_deaths_per_million": 0.026,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.004,
- "stringency_index": 24.07
- },
- {
- "date": "2020-03-16",
- "total_cases": 304.0,
- "new_cases": 60.0,
- "new_cases_smoothed": 34.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 8.055,
- "new_cases_per_million": 1.59,
- "new_cases_smoothed_per_million": 0.916,
- "total_deaths_per_million": 0.026,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.004,
- "stringency_index": 43.52
- },
- {
- "date": "2020-03-17",
- "total_cases": 424.0,
- "new_cases": 120.0,
- "new_cases_smoothed": 49.571,
- "total_deaths": 4.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 11.234,
- "new_cases_per_million": 3.179,
- "new_cases_smoothed_per_million": 1.313,
- "total_deaths_per_million": 0.106,
- "new_deaths_per_million": 0.079,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 43.52
- },
- {
- "date": "2020-03-18",
- "total_cases": 569.0,
- "new_cases": 145.0,
- "new_cases_smoothed": 68.0,
- "total_deaths": 8.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 15.076,
- "new_cases_per_million": 3.842,
- "new_cases_smoothed_per_million": 1.802,
- "total_deaths_per_million": 0.212,
- "new_deaths_per_million": 0.106,
- "new_deaths_smoothed_per_million": 0.026,
- "total_tests": 53975.0,
- "total_tests_per_thousand": 1.43,
- "tests_units": "people tested",
- "stringency_index": 61.11
- },
- {
- "date": "2020-03-19",
- "total_cases": 690.0,
- "new_cases": 121.0,
- "new_cases_smoothed": 83.857,
- "total_deaths": 9.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 18.282,
- "new_cases_per_million": 3.206,
- "new_cases_smoothed_per_million": 2.222,
- "total_deaths_per_million": 0.238,
- "new_deaths_per_million": 0.026,
- "new_deaths_smoothed_per_million": 0.03,
- "new_tests": 981.0,
- "total_tests": 54956.0,
- "total_tests_per_thousand": 1.456,
- "new_tests_per_thousand": 0.026,
- "tests_units": "people tested",
- "stringency_index": 61.11
- },
- {
- "date": "2020-03-20",
- "total_cases": 846.0,
- "new_cases": 156.0,
- "new_cases_smoothed": 101.143,
- "total_deaths": 10.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 22.415,
- "new_cases_per_million": 4.133,
- "new_cases_smoothed_per_million": 2.68,
- "total_deaths_per_million": 0.265,
- "new_deaths_per_million": 0.026,
- "new_deaths_smoothed_per_million": 0.034,
- "new_tests": 21858.0,
- "total_tests": 76814.0,
- "total_tests_per_thousand": 2.035,
- "new_tests_per_thousand": 0.579,
- "tests_units": "people tested",
- "stringency_index": 71.3
- },
- {
- "date": "2020-03-21",
- "total_cases": 971.0,
- "new_cases": 125.0,
- "new_cases_smoothed": 113.571,
- "total_deaths": 12.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 25.727,
- "new_cases_per_million": 3.312,
- "new_cases_smoothed_per_million": 3.009,
- "total_deaths_per_million": 0.318,
- "new_deaths_per_million": 0.053,
- "new_deaths_smoothed_per_million": 0.042,
- "new_tests": 12069.0,
- "total_tests": 88883.0,
- "total_tests_per_thousand": 2.355,
- "new_tests_per_thousand": 0.32,
- "tests_units": "people tested",
- "stringency_index": 71.3
- },
- {
- "date": "2020-03-22",
- "total_cases": 1302.0,
- "new_cases": 331.0,
- "new_cases_smoothed": 151.143,
- "total_deaths": 18.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 34.497,
- "new_cases_per_million": 8.77,
- "new_cases_smoothed_per_million": 4.005,
- "total_deaths_per_million": 0.477,
- "new_deaths_per_million": 0.159,
- "new_deaths_smoothed_per_million": 0.064,
- "new_tests": 9941.0,
- "total_tests": 98824.0,
- "total_tests_per_thousand": 2.618,
- "new_tests_per_thousand": 0.263,
- "tests_units": "people tested",
- "stringency_index": 71.3
- },
- {
- "date": "2020-03-23",
- "total_cases": 1430.0,
- "new_cases": 128.0,
- "new_cases_smoothed": 160.857,
- "total_deaths": 20.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 37.889,
- "new_cases_per_million": 3.391,
- "new_cases_smoothed_per_million": 4.262,
- "total_deaths_per_million": 0.53,
- "new_deaths_per_million": 0.053,
- "new_deaths_smoothed_per_million": 0.072,
- "new_tests": 8323.0,
- "total_tests": 107147.0,
- "total_tests_per_thousand": 2.839,
- "new_tests_per_thousand": 0.221,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-03-24",
- "total_cases": 1646.0,
- "new_cases": 216.0,
- "new_cases_smoothed": 174.571,
- "total_deaths": 24.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 43.612,
- "new_cases_per_million": 5.723,
- "new_cases_smoothed_per_million": 4.625,
- "total_deaths_per_million": 0.636,
- "new_deaths_per_million": 0.106,
- "new_deaths_smoothed_per_million": 0.076,
- "new_tests": 17915.0,
- "total_tests": 125062.0,
- "total_tests_per_thousand": 3.314,
- "new_tests_per_thousand": 0.475,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-03-25",
- "total_cases": 1959.0,
- "new_cases": 313.0,
- "new_cases_smoothed": 198.571,
- "total_deaths": 27.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 51.905,
- "new_cases_per_million": 8.293,
- "new_cases_smoothed_per_million": 5.261,
- "total_deaths_per_million": 0.715,
- "new_deaths_per_million": 0.079,
- "new_deaths_smoothed_per_million": 0.072,
- "new_tests": 17092.0,
- "total_tests": 142154.0,
- "total_tests_per_thousand": 3.766,
- "new_tests_per_thousand": 0.453,
- "new_tests_smoothed": 12597.0,
- "new_tests_smoothed_per_thousand": 0.334,
- "tests_per_case": 63.438,
- "positive_rate": 0.016,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-03-26",
- "total_cases": 3385.0,
- "new_cases": 1426.0,
- "new_cases_smoothed": 385.0,
- "total_deaths": 35.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 89.688,
- "new_cases_per_million": 37.783,
- "new_cases_smoothed_per_million": 10.201,
- "total_deaths_per_million": 0.927,
- "new_deaths_per_million": 0.212,
- "new_deaths_smoothed_per_million": 0.098,
- "new_tests": 19449.0,
- "total_tests": 161603.0,
- "total_tests_per_thousand": 4.282,
- "new_tests_per_thousand": 0.515,
- "new_tests_smoothed": 15235.0,
- "new_tests_smoothed_per_thousand": 0.404,
- "tests_per_case": 39.571,
- "positive_rate": 0.025,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-03-27",
- "total_cases": 4018.0,
- "new_cases": 633.0,
- "new_cases_smoothed": 453.143,
- "total_deaths": 39.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 106.459,
- "new_cases_per_million": 16.772,
- "new_cases_smoothed_per_million": 12.006,
- "total_deaths_per_million": 1.033,
- "new_deaths_per_million": 0.106,
- "new_deaths_smoothed_per_million": 0.11,
- "new_tests": 9041.0,
- "total_tests": 170644.0,
- "total_tests_per_thousand": 4.521,
- "new_tests_per_thousand": 0.24,
- "new_tests_smoothed": 13404.0,
- "new_tests_smoothed_per_thousand": 0.355,
- "tests_per_case": 29.58,
- "positive_rate": 0.034,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-03-28",
- "total_cases": 4675.0,
- "new_cases": 657.0,
- "new_cases_smoothed": 529.143,
- "total_deaths": 53.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 5.857,
- "total_cases_per_million": 123.867,
- "new_cases_per_million": 17.408,
- "new_cases_smoothed_per_million": 14.02,
- "total_deaths_per_million": 1.404,
- "new_deaths_per_million": 0.371,
- "new_deaths_smoothed_per_million": 0.155,
- "new_tests": 13557.0,
- "total_tests": 184201.0,
- "total_tests_per_thousand": 4.881,
- "new_tests_per_thousand": 0.359,
- "new_tests_smoothed": 13617.0,
- "new_tests_smoothed_per_thousand": 0.361,
- "tests_per_case": 25.734,
- "positive_rate": 0.039,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-03-29",
- "total_cases": 5386.0,
- "new_cases": 711.0,
- "new_cases_smoothed": 583.429,
- "total_deaths": 60.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 6.0,
- "total_cases_per_million": 142.705,
- "new_cases_per_million": 18.838,
- "new_cases_smoothed_per_million": 15.458,
- "total_deaths_per_million": 1.59,
- "new_deaths_per_million": 0.185,
- "new_deaths_smoothed_per_million": 0.159,
- "new_tests": 26234.0,
- "total_tests": 210435.0,
- "total_tests_per_thousand": 5.576,
- "new_tests_per_thousand": 0.695,
- "new_tests_smoothed": 15944.0,
- "new_tests_smoothed_per_thousand": 0.422,
- "tests_per_case": 27.328000000000003,
- "positive_rate": 0.037000000000000005,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-03-30",
- "total_cases": 6255.0,
- "new_cases": 869.0,
- "new_cases_smoothed": 689.286,
- "total_deaths": 61.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 5.857,
- "total_cases_per_million": 165.73,
- "new_cases_per_million": 23.025,
- "new_cases_smoothed_per_million": 18.263,
- "total_deaths_per_million": 1.616,
- "new_deaths_per_million": 0.026,
- "new_deaths_smoothed_per_million": 0.155,
- "new_tests": 30703.0,
- "total_tests": 241138.0,
- "total_tests_per_thousand": 6.389,
- "new_tests_per_thousand": 0.813,
- "new_tests_smoothed": 19142.0,
- "new_tests_smoothed_per_thousand": 0.507,
- "tests_per_case": 27.771,
- "positive_rate": 0.036000000000000004,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-03-31",
- "total_cases": 7424.0,
- "new_cases": 1169.0,
- "new_cases_smoothed": 825.429,
- "total_deaths": 89.0,
- "new_deaths": 28.0,
- "new_deaths_smoothed": 9.286,
- "total_cases_per_million": 196.703,
- "new_cases_per_million": 30.973,
- "new_cases_smoothed_per_million": 21.87,
- "total_deaths_per_million": 2.358,
- "new_deaths_per_million": 0.742,
- "new_deaths_smoothed_per_million": 0.246,
- "new_tests_smoothed": 17710.0,
- "new_tests_smoothed_per_thousand": 0.469,
- "tests_per_case": 21.456,
- "positive_rate": 0.047,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-04-01",
- "total_cases": 8536.0,
- "new_cases": 1112.0,
- "new_cases_smoothed": 939.571,
- "total_deaths": 96.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 9.857,
- "total_cases_per_million": 226.166,
- "new_cases_per_million": 29.463,
- "new_cases_smoothed_per_million": 24.894,
- "total_deaths_per_million": 2.544,
- "new_deaths_per_million": 0.185,
- "new_deaths_smoothed_per_million": 0.261,
- "total_tests": 256933.0,
- "total_tests_per_thousand": 6.808,
- "new_tests_smoothed": 16397.0,
- "new_tests_smoothed_per_thousand": 0.434,
- "tests_per_case": 17.452,
- "positive_rate": 0.057,
- "tests_units": "people tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-04-02",
- "total_cases": 9595.0,
- "new_cases": 1059.0,
- "new_cases_smoothed": 887.143,
- "total_deaths": 109.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 10.571,
- "total_cases_per_million": 254.225,
- "new_cases_per_million": 28.059,
- "new_cases_smoothed_per_million": 23.505,
- "total_deaths_per_million": 2.888,
- "new_deaths_per_million": 0.344,
- "new_deaths_smoothed_per_million": 0.28,
- "new_tests": 11221.0,
- "total_tests": 268154.0,
- "total_tests_per_thousand": 7.105,
- "new_tests_per_thousand": 0.297,
- "new_tests_smoothed": 15222.0,
- "new_tests_smoothed_per_thousand": 0.403,
- "tests_per_case": 17.158,
- "positive_rate": 0.057999999999999996,
- "tests_units": "people tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-04-03",
- "total_cases": 11268.0,
- "new_cases": 1673.0,
- "new_cases_smoothed": 1035.714,
- "total_deaths": 138.0,
- "new_deaths": 29.0,
- "new_deaths_smoothed": 14.143,
- "total_cases_per_million": 298.552,
- "new_cases_per_million": 44.327,
- "new_cases_smoothed_per_million": 27.442,
- "total_deaths_per_million": 3.656,
- "new_deaths_per_million": 0.768,
- "new_deaths_smoothed_per_million": 0.375,
- "new_tests": 26911.0,
- "total_tests": 295065.0,
- "total_tests_per_thousand": 7.818,
- "new_tests_per_thousand": 0.713,
- "new_tests_smoothed": 17774.0,
- "new_tests_smoothed_per_thousand": 0.471,
- "tests_per_case": 17.160999999999998,
- "positive_rate": 0.057999999999999996,
- "tests_units": "people tested",
- "stringency_index": 74.54
- },
- {
- "date": "2020-04-04",
- "total_cases": 12519.0,
- "new_cases": 1251.0,
- "new_cases_smoothed": 1120.571,
- "total_deaths": 187.0,
- "new_deaths": 49.0,
- "new_deaths_smoothed": 19.143,
- "total_cases_per_million": 331.698,
- "new_cases_per_million": 33.146,
- "new_cases_smoothed_per_million": 29.69,
- "total_deaths_per_million": 4.955,
- "new_deaths_per_million": 1.298,
- "new_deaths_smoothed_per_million": 0.507,
- "new_tests": 16906.0,
- "total_tests": 311971.0,
- "total_tests_per_thousand": 8.266,
- "new_tests_per_thousand": 0.448,
- "new_tests_smoothed": 18253.0,
- "new_tests_smoothed_per_thousand": 0.484,
- "tests_per_case": 16.289,
- "positive_rate": 0.061,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-04-05",
- "total_cases": 13882.0,
- "new_cases": 1363.0,
- "new_cases_smoothed": 1213.714,
- "total_deaths": 231.0,
- "new_deaths": 44.0,
- "new_deaths_smoothed": 24.429,
- "total_cases_per_million": 367.812,
- "new_cases_per_million": 36.113,
- "new_cases_smoothed_per_million": 32.158,
- "total_deaths_per_million": 6.12,
- "new_deaths_per_million": 1.166,
- "new_deaths_smoothed_per_million": 0.647,
- "new_tests": 22878.0,
- "total_tests": 334849.0,
- "total_tests_per_thousand": 8.872,
- "new_tests_per_thousand": 0.606,
- "new_tests_smoothed": 17773.0,
- "new_tests_smoothed_per_thousand": 0.471,
- "tests_per_case": 14.642999999999999,
- "positive_rate": 0.068,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-04-06",
- "total_cases": 15496.0,
- "new_cases": 1614.0,
- "new_cases_smoothed": 1320.143,
- "total_deaths": 280.0,
- "new_deaths": 49.0,
- "new_deaths_smoothed": 31.286,
- "total_cases_per_million": 410.575,
- "new_cases_per_million": 42.764,
- "new_cases_smoothed_per_million": 34.978,
- "total_deaths_per_million": 7.419,
- "new_deaths_per_million": 1.298,
- "new_deaths_smoothed_per_million": 0.829,
- "new_tests": 1957.0,
- "total_tests": 336806.0,
- "total_tests_per_thousand": 8.924,
- "new_tests_per_thousand": 0.052,
- "new_tests_smoothed": 13667.0,
- "new_tests_smoothed_per_thousand": 0.362,
- "tests_per_case": 10.353,
- "positive_rate": 0.09699999999999999,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-04-07",
- "total_cases": 16653.0,
- "new_cases": 1157.0,
- "new_cases_smoothed": 1318.429,
- "total_deaths": 323.0,
- "new_deaths": 43.0,
- "new_deaths_smoothed": 33.429,
- "total_cases_per_million": 441.231,
- "new_cases_per_million": 30.655,
- "new_cases_smoothed_per_million": 34.933,
- "total_deaths_per_million": 8.558,
- "new_deaths_per_million": 1.139,
- "new_deaths_smoothed_per_million": 0.886,
- "new_tests": 9701.0,
- "total_tests": 346507.0,
- "total_tests_per_thousand": 9.181,
- "new_tests_per_thousand": 0.257,
- "new_tests_smoothed": 13924.0,
- "new_tests_smoothed_per_thousand": 0.369,
- "tests_per_case": 10.561,
- "positive_rate": 0.095,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-04-08",
- "total_cases": 17883.0,
- "new_cases": 1230.0,
- "new_cases_smoothed": 1335.286,
- "total_deaths": 380.0,
- "new_deaths": 57.0,
- "new_deaths_smoothed": 40.571,
- "total_cases_per_million": 473.82,
- "new_cases_per_million": 32.59,
- "new_cases_smoothed_per_million": 35.379,
- "total_deaths_per_million": 10.068,
- "new_deaths_per_million": 1.51,
- "new_deaths_smoothed_per_million": 1.075,
- "new_tests": 12762.0,
- "total_tests": 359269.0,
- "total_tests_per_thousand": 9.519,
- "new_tests_per_thousand": 0.338,
- "new_tests_smoothed": 14619.0,
- "new_tests_smoothed_per_thousand": 0.387,
- "tests_per_case": 10.948,
- "positive_rate": 0.091,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-04-09",
- "total_cases": 19274.0,
- "new_cases": 1391.0,
- "new_cases_smoothed": 1382.714,
- "total_deaths": 435.0,
- "new_deaths": 55.0,
- "new_deaths_smoothed": 46.571,
- "total_cases_per_million": 510.676,
- "new_cases_per_million": 36.855,
- "new_cases_smoothed_per_million": 36.636,
- "total_deaths_per_million": 11.526,
- "new_deaths_per_million": 1.457,
- "new_deaths_smoothed_per_million": 1.234,
- "new_tests": 14312.0,
- "total_tests": 373581.0,
- "total_tests_per_thousand": 9.898,
- "new_tests_per_thousand": 0.379,
- "new_tests_smoothed": 15061.0,
- "new_tests_smoothed_per_thousand": 0.399,
- "tests_per_case": 10.892000000000001,
- "positive_rate": 0.092,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-04-10",
- "total_cases": 20748.0,
- "new_cases": 1474.0,
- "new_cases_smoothed": 1354.286,
- "total_deaths": 509.0,
- "new_deaths": 74.0,
- "new_deaths_smoothed": 53.0,
- "total_cases_per_million": 549.73,
- "new_cases_per_million": 39.054,
- "new_cases_smoothed_per_million": 35.883,
- "total_deaths_per_million": 13.486,
- "new_deaths_per_million": 1.961,
- "new_deaths_smoothed_per_million": 1.404,
- "new_tests": 9741.0,
- "total_tests": 383322.0,
- "total_tests_per_thousand": 10.156,
- "new_tests_per_thousand": 0.258,
- "new_tests_smoothed": 12608.0,
- "new_tests_smoothed_per_thousand": 0.334,
- "tests_per_case": 9.31,
- "positive_rate": 0.107,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-04-11",
- "total_cases": 22133.0,
- "new_cases": 1385.0,
- "new_cases_smoothed": 1373.429,
- "total_deaths": 569.0,
- "new_deaths": 60.0,
- "new_deaths_smoothed": 54.571,
- "total_cases_per_million": 586.426,
- "new_cases_per_million": 36.696,
- "new_cases_smoothed_per_million": 36.39,
- "total_deaths_per_million": 15.076,
- "new_deaths_per_million": 1.59,
- "new_deaths_smoothed_per_million": 1.446,
- "new_tests": 18230.0,
- "total_tests": 401552.0,
- "total_tests_per_thousand": 10.639,
- "new_tests_per_thousand": 0.483,
- "new_tests_smoothed": 12797.0,
- "new_tests_smoothed_per_thousand": 0.339,
- "tests_per_case": 9.318,
- "positive_rate": 0.107,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-04-12",
- "total_cases": 23301.0,
- "new_cases": 1168.0,
- "new_cases_smoothed": 1345.571,
- "total_deaths": 653.0,
- "new_deaths": 84.0,
- "new_deaths_smoothed": 60.286,
- "total_cases_per_million": 617.373,
- "new_cases_per_million": 30.947,
- "new_cases_smoothed_per_million": 35.652,
- "total_deaths_per_million": 17.302,
- "new_deaths_per_million": 2.226,
- "new_deaths_smoothed_per_million": 1.597,
- "new_tests": 3099.0,
- "total_tests": 404651.0,
- "total_tests_per_thousand": 10.721,
- "new_tests_per_thousand": 0.082,
- "new_tests_smoothed": 9972.0,
- "new_tests_smoothed_per_thousand": 0.264,
- "tests_per_case": 7.4110000000000005,
- "positive_rate": 0.135,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-04-13",
- "total_cases": 24365.0,
- "new_cases": 1064.0,
- "new_cases_smoothed": 1267.0,
- "total_deaths": 717.0,
- "new_deaths": 64.0,
- "new_deaths_smoothed": 62.429,
- "total_cases_per_million": 645.565,
- "new_cases_per_million": 28.191,
- "new_cases_smoothed_per_million": 33.57,
- "total_deaths_per_million": 18.997,
- "new_deaths_per_million": 1.696,
- "new_deaths_smoothed_per_million": 1.654,
- "new_tests": 24269.0,
- "total_tests": 428920.0,
- "total_tests_per_thousand": 11.364,
- "new_tests_per_thousand": 0.643,
- "new_tests_smoothed": 13159.0,
- "new_tests_smoothed_per_thousand": 0.349,
- "tests_per_case": 10.386,
- "positive_rate": 0.096,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-04-14",
- "total_cases": 25663.0,
- "new_cases": 1298.0,
- "new_cases_smoothed": 1287.143,
- "total_deaths": 780.0,
- "new_deaths": 63.0,
- "new_deaths_smoothed": 65.286,
- "total_cases_per_million": 679.956,
- "new_cases_per_million": 34.391,
- "new_cases_smoothed_per_million": 34.104,
- "total_deaths_per_million": 20.667,
- "new_deaths_per_million": 1.669,
- "new_deaths_smoothed_per_million": 1.73,
- "new_tests": 21797.0,
- "total_tests": 450717.0,
- "total_tests_per_thousand": 11.942,
- "new_tests_per_thousand": 0.578,
- "new_tests_smoothed": 14887.0,
- "new_tests_smoothed_per_thousand": 0.394,
- "tests_per_case": 11.565999999999999,
- "positive_rate": 0.086,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-04-15",
- "total_cases": 27046.0,
- "new_cases": 1383.0,
- "new_cases_smoothed": 1309.0,
- "total_deaths": 903.0,
- "new_deaths": 123.0,
- "new_deaths_smoothed": 74.714,
- "total_cases_per_million": 716.599,
- "new_cases_per_million": 36.643,
- "new_cases_smoothed_per_million": 34.683,
- "total_deaths_per_million": 23.926,
- "new_deaths_per_million": 3.259,
- "new_deaths_smoothed_per_million": 1.98,
- "new_tests": 11636.0,
- "total_tests": 462353.0,
- "total_tests_per_thousand": 12.25,
- "new_tests_per_thousand": 0.308,
- "new_tests_smoothed": 14726.0,
- "new_tests_smoothed_per_thousand": 0.39,
- "tests_per_case": 11.25,
- "positive_rate": 0.08900000000000001,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-04-16",
- "total_cases": 28364.0,
- "new_cases": 1318.0,
- "new_cases_smoothed": 1298.571,
- "total_deaths": 1010.0,
- "new_deaths": 107.0,
- "new_deaths_smoothed": 82.143,
- "total_cases_per_million": 751.52,
- "new_cases_per_million": 34.921,
- "new_cases_smoothed_per_million": 34.406,
- "total_deaths_per_million": 26.761,
- "new_deaths_per_million": 2.835,
- "new_deaths_smoothed_per_million": 2.176,
- "new_tests": 24707.0,
- "total_tests": 487060.0,
- "total_tests_per_thousand": 12.905,
- "new_tests_per_thousand": 0.655,
- "new_tests_smoothed": 16211.0,
- "new_tests_smoothed_per_thousand": 0.43,
- "tests_per_case": 12.484000000000002,
- "positive_rate": 0.08,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-04-17",
- "total_cases": 30081.0,
- "new_cases": 1717.0,
- "new_cases_smoothed": 1333.286,
- "total_deaths": 1193.0,
- "new_deaths": 183.0,
- "new_deaths_smoothed": 97.714,
- "total_cases_per_million": 797.013,
- "new_cases_per_million": 45.493,
- "new_cases_smoothed_per_million": 35.326,
- "total_deaths_per_million": 31.609,
- "new_deaths_per_million": 4.849,
- "new_deaths_smoothed_per_million": 2.589,
- "new_tests": 15943.0,
- "total_tests": 503003.0,
- "total_tests_per_thousand": 13.327,
- "new_tests_per_thousand": 0.422,
- "new_tests_smoothed": 17097.0,
- "new_tests_smoothed_per_thousand": 0.453,
- "tests_per_case": 12.823,
- "positive_rate": 0.078,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-04-18",
- "total_cases": 31872.0,
- "new_cases": 1791.0,
- "new_cases_smoothed": 1391.286,
- "total_deaths": 1309.0,
- "new_deaths": 116.0,
- "new_deaths_smoothed": 105.714,
- "total_cases_per_million": 844.467,
- "new_cases_per_million": 47.454,
- "new_cases_smoothed_per_million": 36.863,
- "total_deaths_per_million": 34.683,
- "new_deaths_per_million": 3.073,
- "new_deaths_smoothed_per_million": 2.801,
- "new_tests": 13213.0,
- "total_tests": 516216.0,
- "total_tests_per_thousand": 13.677,
- "new_tests_per_thousand": 0.35,
- "new_tests_smoothed": 16381.0,
- "new_tests_smoothed_per_thousand": 0.434,
- "tests_per_case": 11.774000000000001,
- "positive_rate": 0.085,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-04-19",
- "total_cases": 33341.0,
- "new_cases": 1469.0,
- "new_cases_smoothed": 1434.286,
- "total_deaths": 1467.0,
- "new_deaths": 158.0,
- "new_deaths_smoothed": 116.286,
- "total_cases_per_million": 883.389,
- "new_cases_per_million": 38.922,
- "new_cases_smoothed_per_million": 38.002,
- "total_deaths_per_million": 38.869,
- "new_deaths_per_million": 4.186,
- "new_deaths_smoothed_per_million": 3.081,
- "new_tests": 19846.0,
- "total_tests": 536062.0,
- "total_tests_per_thousand": 14.203,
- "new_tests_per_thousand": 0.526,
- "new_tests_smoothed": 18773.0,
- "new_tests_smoothed_per_thousand": 0.497,
- "tests_per_case": 13.089,
- "positive_rate": 0.076,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-04-20",
- "total_cases": 34777.0,
- "new_cases": 1436.0,
- "new_cases_smoothed": 1487.429,
- "total_deaths": 1580.0,
- "new_deaths": 113.0,
- "new_deaths_smoothed": 123.286,
- "total_cases_per_million": 921.436,
- "new_cases_per_million": 38.048,
- "new_cases_smoothed_per_million": 39.41,
- "total_deaths_per_million": 41.863,
- "new_deaths_per_million": 2.994,
- "new_deaths_smoothed_per_million": 3.267,
- "new_tests": 19489.0,
- "total_tests": 555551.0,
- "total_tests_per_thousand": 14.72,
- "new_tests_per_thousand": 0.516,
- "new_tests_smoothed": 18090.0,
- "new_tests_smoothed_per_thousand": 0.479,
- "tests_per_case": 12.162,
- "positive_rate": 0.08199999999999999,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-04-21",
- "total_cases": 36823.0,
- "new_cases": 2046.0,
- "new_cases_smoothed": 1594.286,
- "total_deaths": 1690.0,
- "new_deaths": 110.0,
- "new_deaths_smoothed": 130.0,
- "total_cases_per_million": 975.646,
- "new_cases_per_million": 54.21,
- "new_cases_smoothed_per_million": 42.242,
- "total_deaths_per_million": 44.778,
- "new_deaths_per_million": 2.915,
- "new_deaths_smoothed_per_million": 3.444,
- "new_tests": 10380.0,
- "total_tests": 565931.0,
- "total_tests_per_thousand": 14.995,
- "new_tests_per_thousand": 0.275,
- "new_tests_smoothed": 16459.0,
- "new_tests_smoothed_per_thousand": 0.436,
- "tests_per_case": 10.324000000000002,
- "positive_rate": 0.09699999999999999,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-04-22",
- "total_cases": 38413.0,
- "new_cases": 1590.0,
- "new_cases_smoothed": 1623.857,
- "total_deaths": 1834.0,
- "new_deaths": 144.0,
- "new_deaths_smoothed": 133.0,
- "total_cases_per_million": 1017.774,
- "new_cases_per_million": 42.128,
- "new_cases_smoothed_per_million": 43.025,
- "total_deaths_per_million": 48.593,
- "new_deaths_per_million": 3.815,
- "new_deaths_smoothed_per_million": 3.524,
- "new_tests": 10417.0,
- "total_tests": 576348.0,
- "total_tests_per_thousand": 15.271,
- "new_tests_per_thousand": 0.276,
- "new_tests_smoothed": 16285.0,
- "new_tests_smoothed_per_thousand": 0.431,
- "tests_per_case": 10.029,
- "positive_rate": 0.1,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-04-23",
- "total_cases": 40179.0,
- "new_cases": 1766.0,
- "new_cases_smoothed": 1687.857,
- "total_deaths": 1974.0,
- "new_deaths": 140.0,
- "new_deaths_smoothed": 137.714,
- "total_cases_per_million": 1064.566,
- "new_cases_per_million": 46.791,
- "new_cases_smoothed_per_million": 44.721,
- "total_deaths_per_million": 52.302,
- "new_deaths_per_million": 3.709,
- "new_deaths_smoothed_per_million": 3.649,
- "new_tests": 43753.0,
- "total_tests": 620101.0,
- "total_tests_per_thousand": 16.43,
- "new_tests_per_thousand": 1.159,
- "new_tests_smoothed": 19006.0,
- "new_tests_smoothed_per_thousand": 0.504,
- "tests_per_case": 11.26,
- "positive_rate": 0.08900000000000001,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-04-24",
- "total_cases": 42099.0,
- "new_cases": 1920.0,
- "new_cases_smoothed": 1716.857,
- "total_deaths": 2146.0,
- "new_deaths": 172.0,
- "new_deaths_smoothed": 136.143,
- "total_cases_per_million": 1115.437,
- "new_cases_per_million": 50.871,
- "new_cases_smoothed_per_million": 45.489,
- "total_deaths_per_million": 56.859,
- "new_deaths_per_million": 4.557,
- "new_deaths_smoothed_per_million": 3.607,
- "new_tests": 23297.0,
- "total_tests": 643398.0,
- "total_tests_per_thousand": 17.047,
- "new_tests_per_thousand": 0.617,
- "new_tests_smoothed": 20056.0,
- "new_tests_smoothed_per_thousand": 0.531,
- "tests_per_case": 11.682,
- "positive_rate": 0.086,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-04-25",
- "total_cases": 43877.0,
- "new_cases": 1778.0,
- "new_cases_smoothed": 1715.0,
- "total_deaths": 2302.0,
- "new_deaths": 156.0,
- "new_deaths_smoothed": 141.857,
- "total_cases_per_million": 1162.546,
- "new_cases_per_million": 47.109,
- "new_cases_smoothed_per_million": 45.44,
- "total_deaths_per_million": 60.993,
- "new_deaths_per_million": 4.133,
- "new_deaths_smoothed_per_million": 3.759,
- "new_tests": 26160.0,
- "total_tests": 669558.0,
- "total_tests_per_thousand": 17.74,
- "new_tests_per_thousand": 0.693,
- "new_tests_smoothed": 21906.0,
- "new_tests_smoothed_per_thousand": 0.58,
- "tests_per_case": 12.773,
- "positive_rate": 0.078,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-04-26",
- "total_cases": 45341.0,
- "new_cases": 1464.0,
- "new_cases_smoothed": 1714.286,
- "total_deaths": 2465.0,
- "new_deaths": 163.0,
- "new_deaths_smoothed": 142.571,
- "total_cases_per_million": 1201.336,
- "new_cases_per_million": 38.79,
- "new_cases_smoothed_per_million": 45.421,
- "total_deaths_per_million": 65.312,
- "new_deaths_per_million": 4.319,
- "new_deaths_smoothed_per_million": 3.778,
- "new_tests": 22105.0,
- "total_tests": 691663.0,
- "total_tests_per_thousand": 18.326,
- "new_tests_per_thousand": 0.586,
- "new_tests_smoothed": 22229.0,
- "new_tests_smoothed_per_thousand": 0.589,
- "tests_per_case": 12.967,
- "positive_rate": 0.077,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-04-27",
- "total_cases": 46884.0,
- "new_cases": 1543.0,
- "new_cases_smoothed": 1729.571,
- "total_deaths": 2560.0,
- "new_deaths": 95.0,
- "new_deaths_smoothed": 140.0,
- "total_cases_per_million": 1242.218,
- "new_cases_per_million": 40.883,
- "new_cases_smoothed_per_million": 45.826,
- "total_deaths_per_million": 67.829,
- "new_deaths_per_million": 2.517,
- "new_deaths_smoothed_per_million": 3.709,
- "new_tests": 25788.0,
- "total_tests": 717451.0,
- "total_tests_per_thousand": 19.009,
- "new_tests_per_thousand": 0.683,
- "new_tests_smoothed": 23129.0,
- "new_tests_smoothed_per_thousand": 0.613,
- "tests_per_case": 13.373,
- "positive_rate": 0.075,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-04-28",
- "total_cases": 48489.0,
- "new_cases": 1605.0,
- "new_cases_smoothed": 1666.571,
- "total_deaths": 2707.0,
- "new_deaths": 147.0,
- "new_deaths_smoothed": 145.286,
- "total_cases_per_million": 1284.744,
- "new_cases_per_million": 42.525,
- "new_cases_smoothed_per_million": 44.157,
- "total_deaths_per_million": 71.724,
- "new_deaths_per_million": 3.895,
- "new_deaths_smoothed_per_million": 3.849,
- "new_tests": 23408.0,
- "total_tests": 740859.0,
- "total_tests_per_thousand": 19.629,
- "new_tests_per_thousand": 0.62,
- "new_tests_smoothed": 24990.0,
- "new_tests_smoothed_per_thousand": 0.662,
- "tests_per_case": 14.995,
- "positive_rate": 0.067,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-04-29",
- "total_cases": 50015.0,
- "new_cases": 1526.0,
- "new_cases_smoothed": 1657.429,
- "total_deaths": 2859.0,
- "new_deaths": 152.0,
- "new_deaths_smoothed": 146.429,
- "total_cases_per_million": 1325.176,
- "new_cases_per_million": 40.432,
- "new_cases_smoothed_per_million": 43.915,
- "total_deaths_per_million": 75.751,
- "new_deaths_per_million": 4.027,
- "new_deaths_smoothed_per_million": 3.88,
- "new_tests": 17553.0,
- "total_tests": 758412.0,
- "total_tests_per_thousand": 20.095,
- "new_tests_per_thousand": 0.465,
- "new_tests_smoothed": 26009.0,
- "new_tests_smoothed_per_thousand": 0.689,
- "tests_per_case": 15.692,
- "positive_rate": 0.064,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-04-30",
- "total_cases": 51587.0,
- "new_cases": 1572.0,
- "new_cases_smoothed": 1629.714,
- "total_deaths": 2996.0,
- "new_deaths": 137.0,
- "new_deaths_smoothed": 146.0,
- "total_cases_per_million": 1366.827,
- "new_cases_per_million": 41.651,
- "new_cases_smoothed_per_million": 43.18,
- "total_deaths_per_million": 79.381,
- "new_deaths_per_million": 3.63,
- "new_deaths_smoothed_per_million": 3.868,
- "new_tests": 29871.0,
- "total_tests": 788283.0,
- "total_tests_per_thousand": 20.886,
- "new_tests_per_thousand": 0.791,
- "new_tests_smoothed": 24026.0,
- "new_tests_smoothed_per_thousand": 0.637,
- "tests_per_case": 14.742,
- "positive_rate": 0.068,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-05-01",
- "total_cases": 53236.0,
- "new_cases": 1649.0,
- "new_cases_smoothed": 1591.0,
- "total_deaths": 3184.0,
- "new_deaths": 188.0,
- "new_deaths_smoothed": 148.286,
- "total_cases_per_million": 1410.518,
- "new_cases_per_million": 43.691,
- "new_cases_smoothed_per_million": 42.154,
- "total_deaths_per_million": 84.362,
- "new_deaths_per_million": 4.981,
- "new_deaths_smoothed_per_million": 3.929,
- "new_tests": 43939.0,
- "total_tests": 832222.0,
- "total_tests_per_thousand": 22.05,
- "new_tests_per_thousand": 1.164,
- "new_tests_smoothed": 26975.0,
- "new_tests_smoothed_per_thousand": 0.715,
- "tests_per_case": 16.955,
- "positive_rate": 0.059000000000000004,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-05-02",
- "total_cases": 55061.0,
- "new_cases": 1825.0,
- "new_cases_smoothed": 1597.714,
- "total_deaths": 3391.0,
- "new_deaths": 207.0,
- "new_deaths_smoothed": 155.571,
- "total_cases_per_million": 1458.873,
- "new_cases_per_million": 48.354,
- "new_cases_smoothed_per_million": 42.332,
- "total_deaths_per_million": 89.846,
- "new_deaths_per_million": 5.485,
- "new_deaths_smoothed_per_million": 4.122,
- "new_tests_smoothed": 27614.0,
- "new_tests_smoothed_per_thousand": 0.732,
- "tests_per_case": 17.283,
- "positive_rate": 0.057999999999999996,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-05-03",
- "total_cases": 56714.0,
- "new_cases": 1653.0,
- "new_cases_smoothed": 1624.714,
- "total_deaths": 3566.0,
- "new_deaths": 175.0,
- "new_deaths_smoothed": 157.286,
- "total_cases_per_million": 1502.67,
- "new_cases_per_million": 43.797,
- "new_cases_smoothed_per_million": 43.048,
- "total_deaths_per_million": 94.483,
- "new_deaths_per_million": 4.637,
- "new_deaths_smoothed_per_million": 4.167,
- "total_tests": 893490.0,
- "total_tests_per_thousand": 23.674,
- "new_tests_smoothed": 28832.0,
- "new_tests_smoothed_per_thousand": 0.764,
- "tests_per_case": 17.746,
- "positive_rate": 0.055999999999999994,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-05-04",
- "total_cases": 59474.0,
- "new_cases": 2760.0,
- "new_cases_smoothed": 1798.571,
- "total_deaths": 3682.0,
- "new_deaths": 116.0,
- "new_deaths_smoothed": 160.286,
- "total_cases_per_million": 1575.798,
- "new_cases_per_million": 73.128,
- "new_cases_smoothed_per_million": 47.654,
- "total_deaths_per_million": 97.557,
- "new_deaths_per_million": 3.073,
- "new_deaths_smoothed_per_million": 4.247,
- "new_tests": 25878.0,
- "total_tests": 919368.0,
- "total_tests_per_thousand": 24.359,
- "new_tests_per_thousand": 0.686,
- "new_tests_smoothed": 28845.0,
- "new_tests_smoothed_per_thousand": 0.764,
- "tests_per_case": 16.038,
- "positive_rate": 0.062,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-05-05",
- "total_cases": 60772.0,
- "new_cases": 1298.0,
- "new_cases_smoothed": 1754.714,
- "total_deaths": 3854.0,
- "new_deaths": 172.0,
- "new_deaths_smoothed": 163.857,
- "total_cases_per_million": 1610.189,
- "new_cases_per_million": 34.391,
- "new_cases_smoothed_per_million": 46.492,
- "total_deaths_per_million": 102.114,
- "new_deaths_per_million": 4.557,
- "new_deaths_smoothed_per_million": 4.341,
- "new_tests": 21199.0,
- "total_tests": 940567.0,
- "total_tests_per_thousand": 24.921,
- "new_tests_per_thousand": 0.562,
- "new_tests_smoothed": 28530.0,
- "new_tests_smoothed_per_thousand": 0.756,
- "tests_per_case": 16.259,
- "positive_rate": 0.062,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-05-06",
- "total_cases": 62046.0,
- "new_cases": 1274.0,
- "new_cases_smoothed": 1718.714,
- "total_deaths": 4043.0,
- "new_deaths": 189.0,
- "new_deaths_smoothed": 169.143,
- "total_cases_per_million": 1643.944,
- "new_cases_per_million": 33.755,
- "new_cases_smoothed_per_million": 45.538,
- "total_deaths_per_million": 107.122,
- "new_deaths_per_million": 5.008,
- "new_deaths_smoothed_per_million": 4.482,
- "new_tests": 1959.0,
- "total_tests": 942526.0,
- "total_tests_per_thousand": 24.973,
- "new_tests_per_thousand": 0.052,
- "new_tests_smoothed": 26302.0,
- "new_tests_smoothed_per_thousand": 0.697,
- "tests_per_case": 15.302999999999999,
- "positive_rate": 0.065,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-05-07",
- "total_cases": 63496.0,
- "new_cases": 1450.0,
- "new_cases_smoothed": 1701.286,
- "total_deaths": 4232.0,
- "new_deaths": 189.0,
- "new_deaths_smoothed": 176.571,
- "total_cases_per_million": 1682.363,
- "new_cases_per_million": 38.419,
- "new_cases_smoothed_per_million": 45.077,
- "total_deaths_per_million": 112.129,
- "new_deaths_per_million": 5.008,
- "new_deaths_smoothed_per_million": 4.678,
- "new_tests": 59356.0,
- "total_tests": 1001882.0,
- "total_tests_per_thousand": 26.545,
- "new_tests_per_thousand": 1.573,
- "new_tests_smoothed": 30514.0,
- "new_tests_smoothed_per_thousand": 0.808,
- "tests_per_case": 17.936,
- "positive_rate": 0.055999999999999994,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-05-08",
- "total_cases": 64922.0,
- "new_cases": 1426.0,
- "new_cases_smoothed": 1669.429,
- "total_deaths": 4408.0,
- "new_deaths": 176.0,
- "new_deaths_smoothed": 174.857,
- "total_cases_per_million": 1720.145,
- "new_cases_per_million": 37.783,
- "new_cases_smoothed_per_million": 44.232,
- "total_deaths_per_million": 116.792,
- "new_deaths_per_million": 4.663,
- "new_deaths_smoothed_per_million": 4.633,
- "new_tests": 30130.0,
- "total_tests": 1032012.0,
- "total_tests_per_thousand": 27.344,
- "new_tests_per_thousand": 0.798,
- "new_tests_smoothed": 28541.0,
- "new_tests_smoothed_per_thousand": 0.756,
- "tests_per_case": 17.096,
- "positive_rate": 0.057999999999999996,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-05-09",
- "total_cases": 66434.0,
- "new_cases": 1512.0,
- "new_cases_smoothed": 1624.714,
- "total_deaths": 4569.0,
- "new_deaths": 161.0,
- "new_deaths_smoothed": 168.286,
- "total_cases_per_million": 1760.207,
- "new_cases_per_million": 40.061,
- "new_cases_smoothed_per_million": 43.048,
- "total_deaths_per_million": 121.058,
- "new_deaths_per_million": 4.266,
- "new_deaths_smoothed_per_million": 4.459,
- "new_tests": 35583.0,
- "total_tests": 1067595.0,
- "total_tests_per_thousand": 28.287,
- "new_tests_per_thousand": 0.943,
- "new_tests_smoothed": 29248.0,
- "new_tests_smoothed_per_thousand": 0.775,
- "tests_per_case": 18.002,
- "positive_rate": 0.055999999999999994,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-05-10",
- "total_cases": 67702.0,
- "new_cases": 1268.0,
- "new_cases_smoothed": 1569.714,
- "total_deaths": 4693.0,
- "new_deaths": 124.0,
- "new_deaths_smoothed": 161.0,
- "total_cases_per_million": 1793.803,
- "new_cases_per_million": 33.596,
- "new_cases_smoothed_per_million": 41.59,
- "total_deaths_per_million": 124.344,
- "new_deaths_per_million": 3.285,
- "new_deaths_smoothed_per_million": 4.266,
- "new_tests": 25633.0,
- "total_tests": 1093228.0,
- "total_tests_per_thousand": 28.966,
- "new_tests_per_thousand": 0.679,
- "new_tests_smoothed": 28534.0,
- "new_tests_smoothed_per_thousand": 0.756,
- "tests_per_case": 18.178,
- "positive_rate": 0.055,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-05-11",
- "total_cases": 68848.0,
- "new_cases": 1146.0,
- "new_cases_smoothed": 1339.143,
- "total_deaths": 4871.0,
- "new_deaths": 178.0,
- "new_deaths_smoothed": 169.857,
- "total_cases_per_million": 1824.167,
- "new_cases_per_million": 30.364,
- "new_cases_smoothed_per_million": 35.481,
- "total_deaths_per_million": 129.06,
- "new_deaths_per_million": 4.716,
- "new_deaths_smoothed_per_million": 4.5,
- "new_tests": 25722.0,
- "total_tests": 1118950.0,
- "total_tests_per_thousand": 29.647,
- "new_tests_per_thousand": 0.682,
- "new_tests_smoothed": 28512.0,
- "new_tests_smoothed_per_thousand": 0.755,
- "tests_per_case": 21.291,
- "positive_rate": 0.047,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-05-12",
- "total_cases": 69981.0,
- "new_cases": 1133.0,
- "new_cases_smoothed": 1315.571,
- "total_deaths": 4993.0,
- "new_deaths": 122.0,
- "new_deaths_smoothed": 162.714,
- "total_cases_per_million": 1854.187,
- "new_cases_per_million": 30.019,
- "new_cases_smoothed_per_million": 34.857,
- "total_deaths_per_million": 132.292,
- "new_deaths_per_million": 3.232,
- "new_deaths_smoothed_per_million": 4.311,
- "new_tests": 26733.0,
- "total_tests": 1145683.0,
- "total_tests_per_thousand": 30.356,
- "new_tests_per_thousand": 0.708,
- "new_tests_smoothed": 29302.0,
- "new_tests_smoothed_per_thousand": 0.776,
- "tests_per_case": 22.273000000000003,
- "positive_rate": 0.045,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-05-13",
- "total_cases": 71157.0,
- "new_cases": 1176.0,
- "new_cases_smoothed": 1301.571,
- "total_deaths": 5169.0,
- "new_deaths": 176.0,
- "new_deaths_smoothed": 160.857,
- "total_cases_per_million": 1885.345,
- "new_cases_per_million": 31.159,
- "new_cases_smoothed_per_million": 34.486,
- "total_deaths_per_million": 136.956,
- "new_deaths_per_million": 4.663,
- "new_deaths_smoothed_per_million": 4.262,
- "new_tests": 23697.0,
- "total_tests": 1169380.0,
- "total_tests_per_thousand": 30.983,
- "new_tests_per_thousand": 0.628,
- "new_tests_smoothed": 32408.0,
- "new_tests_smoothed_per_thousand": 0.859,
- "tests_per_case": 24.899,
- "positive_rate": 0.04,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-05-14",
- "total_cases": 72278.0,
- "new_cases": 1121.0,
- "new_cases_smoothed": 1254.571,
- "total_deaths": 5304.0,
- "new_deaths": 135.0,
- "new_deaths_smoothed": 153.143,
- "total_cases_per_million": 1915.047,
- "new_cases_per_million": 29.702,
- "new_cases_smoothed_per_million": 33.241,
- "total_deaths_per_million": 140.533,
- "new_deaths_per_million": 3.577,
- "new_deaths_smoothed_per_million": 4.058,
- "new_tests": 3416.0,
- "total_tests": 1172796.0,
- "total_tests_per_thousand": 31.074,
- "new_tests_per_thousand": 0.091,
- "new_tests_smoothed": 24416.0,
- "new_tests_smoothed_per_thousand": 0.647,
- "tests_per_case": 19.462,
- "positive_rate": 0.051,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-05-15",
- "total_cases": 73401.0,
- "new_cases": 1123.0,
- "new_cases_smoothed": 1211.286,
- "total_deaths": 5472.0,
- "new_deaths": 168.0,
- "new_deaths_smoothed": 152.0,
- "total_cases_per_million": 1944.801,
- "new_cases_per_million": 29.755,
- "new_cases_smoothed_per_million": 32.094,
- "total_deaths_per_million": 144.984,
- "new_deaths_per_million": 4.451,
- "new_deaths_smoothed_per_million": 4.027,
- "new_tests": 60116.0,
- "total_tests": 1232912.0,
- "total_tests_per_thousand": 32.667,
- "new_tests_per_thousand": 1.593,
- "new_tests_smoothed": 28700.0,
- "new_tests_smoothed_per_thousand": 0.76,
- "tests_per_case": 23.694000000000003,
- "positive_rate": 0.042,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-05-16",
- "total_cases": 74602.0,
- "new_cases": 1201.0,
- "new_cases_smoothed": 1166.857,
- "total_deaths": 5562.0,
- "new_deaths": 90.0,
- "new_deaths_smoothed": 141.857,
- "total_cases_per_million": 1976.623,
- "new_cases_per_million": 31.821,
- "new_cases_smoothed_per_million": 30.917,
- "total_deaths_per_million": 147.368,
- "new_deaths_per_million": 2.385,
- "new_deaths_smoothed_per_million": 3.759,
- "new_tests": 32590.0,
- "total_tests": 1265502.0,
- "total_tests_per_thousand": 33.53,
- "new_tests_per_thousand": 0.863,
- "new_tests_smoothed": 28272.0,
- "new_tests_smoothed_per_thousand": 0.749,
- "tests_per_case": 24.229,
- "positive_rate": 0.040999999999999995,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-05-17",
- "total_cases": 75853.0,
- "new_cases": 1251.0,
- "new_cases_smoothed": 1164.429,
- "total_deaths": 5679.0,
- "new_deaths": 117.0,
- "new_deaths_smoothed": 140.857,
- "total_cases_per_million": 2009.769,
- "new_cases_per_million": 33.146,
- "new_cases_smoothed_per_million": 30.852,
- "total_deaths_per_million": 150.468,
- "new_deaths_per_million": 3.1,
- "new_deaths_smoothed_per_million": 3.732,
- "new_tests": 31193.0,
- "total_tests": 1296695.0,
- "total_tests_per_thousand": 34.357,
- "new_tests_per_thousand": 0.826,
- "new_tests_smoothed": 29067.0,
- "new_tests_smoothed_per_thousand": 0.77,
- "tests_per_case": 24.962,
- "positive_rate": 0.04,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-05-18",
- "total_cases": 76991.0,
- "new_cases": 1138.0,
- "new_cases_smoothed": 1163.286,
- "total_deaths": 5782.0,
- "new_deaths": 103.0,
- "new_deaths_smoothed": 130.143,
- "total_cases_per_million": 2039.921,
- "new_cases_per_million": 30.152,
- "new_cases_smoothed_per_million": 30.822,
- "total_deaths_per_million": 153.197,
- "new_deaths_per_million": 2.729,
- "new_deaths_smoothed_per_million": 3.448,
- "new_tests": 23292.0,
- "total_tests": 1319987.0,
- "total_tests_per_thousand": 34.974,
- "new_tests_per_thousand": 0.617,
- "new_tests_smoothed": 28720.0,
- "new_tests_smoothed_per_thousand": 0.761,
- "tests_per_case": 24.689,
- "positive_rate": 0.040999999999999995,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-05-19",
- "total_cases": 78061.0,
- "new_cases": 1070.0,
- "new_cases_smoothed": 1154.286,
- "total_deaths": 5842.0,
- "new_deaths": 60.0,
- "new_deaths_smoothed": 121.286,
- "total_cases_per_million": 2068.271,
- "new_cases_per_million": 28.35,
- "new_cases_smoothed_per_million": 30.583,
- "total_deaths_per_million": 154.787,
- "new_deaths_per_million": 1.59,
- "new_deaths_smoothed_per_million": 3.214,
- "new_tests": 16980.0,
- "total_tests": 1336967.0,
- "total_tests_per_thousand": 35.424,
- "new_tests_per_thousand": 0.45,
- "new_tests_smoothed": 27326.0,
- "new_tests_smoothed_per_thousand": 0.724,
- "tests_per_case": 23.674,
- "positive_rate": 0.042,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-05-20",
- "total_cases": 79101.0,
- "new_cases": 1040.0,
- "new_cases_smoothed": 1134.857,
- "total_deaths": 5912.0,
- "new_deaths": 70.0,
- "new_deaths_smoothed": 106.143,
- "total_cases_per_million": 2095.826,
- "new_cases_per_million": 27.555,
- "new_cases_smoothed_per_million": 30.069,
- "total_deaths_per_million": 156.642,
- "new_deaths_per_million": 1.855,
- "new_deaths_smoothed_per_million": 2.812,
- "new_tests": 35962.0,
- "total_tests": 1372929.0,
- "total_tests_per_thousand": 36.377,
- "new_tests_per_thousand": 0.953,
- "new_tests_smoothed": 29078.0,
- "new_tests_smoothed_per_thousand": 0.77,
- "tests_per_case": 25.623,
- "positive_rate": 0.039,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-05-21",
- "total_cases": 80091.0,
- "new_cases": 990.0,
- "new_cases_smoothed": 1116.143,
- "total_deaths": 6030.0,
- "new_deaths": 118.0,
- "new_deaths_smoothed": 103.714,
- "total_cases_per_million": 2122.057,
- "new_cases_per_million": 26.231,
- "new_cases_smoothed_per_million": 29.573,
- "total_deaths_per_million": 159.768,
- "new_deaths_per_million": 3.126,
- "new_deaths_smoothed_per_million": 2.748,
- "new_tests": 2121.0,
- "total_tests": 1375050.0,
- "total_tests_per_thousand": 36.433,
- "new_tests_per_thousand": 0.056,
- "new_tests_smoothed": 28893.0,
- "new_tests_smoothed_per_thousand": 0.766,
- "tests_per_case": 25.886,
- "positive_rate": 0.039,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-05-22",
- "total_cases": 81313.0,
- "new_cases": 1222.0,
- "new_cases_smoothed": 1130.286,
- "total_deaths": 6152.0,
- "new_deaths": 122.0,
- "new_deaths_smoothed": 97.143,
- "total_cases_per_million": 2154.434,
- "new_cases_per_million": 32.378,
- "new_cases_smoothed_per_million": 29.948,
- "total_deaths_per_million": 163.001,
- "new_deaths_per_million": 3.232,
- "new_deaths_smoothed_per_million": 2.574,
- "new_tests": 26514.0,
- "total_tests": 1401564.0,
- "total_tests_per_thousand": 37.135,
- "new_tests_per_thousand": 0.703,
- "new_tests_smoothed": 24093.0,
- "new_tests_smoothed_per_thousand": 0.638,
- "tests_per_case": 21.316,
- "positive_rate": 0.047,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-05-23",
- "total_cases": 82469.0,
- "new_cases": 1156.0,
- "new_cases_smoothed": 1123.857,
- "total_deaths": 6250.0,
- "new_deaths": 98.0,
- "new_deaths_smoothed": 98.286,
- "total_cases_per_million": 2185.063,
- "new_cases_per_million": 30.629,
- "new_cases_smoothed_per_million": 29.777,
- "total_deaths_per_million": 165.597,
- "new_deaths_per_million": 2.597,
- "new_deaths_smoothed_per_million": 2.604,
- "new_tests": 30347.0,
- "total_tests": 1431911.0,
- "total_tests_per_thousand": 37.939,
- "new_tests_per_thousand": 0.804,
- "new_tests_smoothed": 23773.0,
- "new_tests_smoothed_per_thousand": 0.63,
- "tests_per_case": 21.153000000000002,
- "positive_rate": 0.047,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-05-24",
- "total_cases": 83610.0,
- "new_cases": 1141.0,
- "new_cases_smoothed": 1108.143,
- "total_deaths": 6355.0,
- "new_deaths": 105.0,
- "new_deaths_smoothed": 96.571,
- "total_cases_per_million": 2215.295,
- "new_cases_per_million": 30.231,
- "new_cases_smoothed_per_million": 29.361,
- "total_deaths_per_million": 168.379,
- "new_deaths_per_million": 2.782,
- "new_deaths_smoothed_per_million": 2.559,
- "new_tests": 22979.0,
- "total_tests": 1454890.0,
- "total_tests_per_thousand": 38.548,
- "new_tests_per_thousand": 0.609,
- "new_tests_smoothed": 22599.0,
- "new_tests_smoothed_per_thousand": 0.599,
- "tests_per_case": 20.394000000000002,
- "positive_rate": 0.049,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-05-25",
- "total_cases": 84688.0,
- "new_cases": 1078.0,
- "new_cases_smoothed": 1099.571,
- "total_deaths": 6424.0,
- "new_deaths": 69.0,
- "new_deaths_smoothed": 91.714,
- "total_cases_per_million": 2243.857,
- "new_cases_per_million": 28.562,
- "new_cases_smoothed_per_million": 29.134,
- "total_deaths_per_million": 170.208,
- "new_deaths_per_million": 1.828,
- "new_deaths_smoothed_per_million": 2.43,
- "new_tests": 24872.0,
- "total_tests": 1479762.0,
- "total_tests_per_thousand": 39.207,
- "new_tests_per_thousand": 0.659,
- "new_tests_smoothed": 22825.0,
- "new_tests_smoothed_per_thousand": 0.605,
- "tests_per_case": 20.758000000000003,
- "positive_rate": 0.048,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-05-26",
- "total_cases": 85700.0,
- "new_cases": 1012.0,
- "new_cases_smoothed": 1091.286,
- "total_deaths": 6545.0,
- "new_deaths": 121.0,
- "new_deaths_smoothed": 100.429,
- "total_cases_per_million": 2270.67,
- "new_cases_per_million": 26.814,
- "new_cases_smoothed_per_million": 28.914,
- "total_deaths_per_million": 173.414,
- "new_deaths_per_million": 3.206,
- "new_deaths_smoothed_per_million": 2.661,
- "new_tests": 20719.0,
- "total_tests": 1500481.0,
- "total_tests_per_thousand": 39.756,
- "new_tests_per_thousand": 0.549,
- "new_tests_smoothed": 23359.0,
- "new_tests_smoothed_per_thousand": 0.619,
- "tests_per_case": 21.405,
- "positive_rate": 0.047,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-05-27",
- "total_cases": 86636.0,
- "new_cases": 936.0,
- "new_cases_smoothed": 1076.429,
- "total_deaths": 6639.0,
- "new_deaths": 94.0,
- "new_deaths_smoothed": 103.857,
- "total_cases_per_million": 2295.47,
- "new_cases_per_million": 24.8,
- "new_cases_smoothed_per_million": 28.521,
- "total_deaths_per_million": 175.904,
- "new_deaths_per_million": 2.491,
- "new_deaths_smoothed_per_million": 2.752,
- "new_tests": 27758.0,
- "total_tests": 1528239.0,
- "total_tests_per_thousand": 40.492,
- "new_tests_per_thousand": 0.735,
- "new_tests_smoothed": 22187.0,
- "new_tests_smoothed_per_thousand": 0.588,
- "tests_per_case": 20.612,
- "positive_rate": 0.049,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-05-28",
- "total_cases": 87508.0,
- "new_cases": 872.0,
- "new_cases_smoothed": 1059.571,
- "total_deaths": 6765.0,
- "new_deaths": 126.0,
- "new_deaths_smoothed": 105.0,
- "total_cases_per_million": 2318.574,
- "new_cases_per_million": 23.104,
- "new_cases_smoothed_per_million": 28.074,
- "total_deaths_per_million": 179.243,
- "new_deaths_per_million": 3.338,
- "new_deaths_smoothed_per_million": 2.782,
- "new_tests": 30965.0,
- "total_tests": 1559204.0,
- "total_tests_per_thousand": 41.312,
- "new_tests_per_thousand": 0.82,
- "new_tests_smoothed": 26308.0,
- "new_tests_smoothed_per_thousand": 0.697,
- "tests_per_case": 24.829,
- "positive_rate": 0.04,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-05-29",
- "total_cases": 88501.0,
- "new_cases": 993.0,
- "new_cases_smoothed": 1026.857,
- "total_deaths": 6877.0,
- "new_deaths": 112.0,
- "new_deaths_smoothed": 103.571,
- "total_cases_per_million": 2344.885,
- "new_cases_per_million": 26.31,
- "new_cases_smoothed_per_million": 27.207,
- "total_deaths_per_million": 182.21,
- "new_deaths_per_million": 2.968,
- "new_deaths_smoothed_per_million": 2.744,
- "new_tests": 34173.0,
- "total_tests": 1593377.0,
- "total_tests_per_thousand": 42.217,
- "new_tests_per_thousand": 0.905,
- "new_tests_smoothed": 27402.0,
- "new_tests_smoothed_per_thousand": 0.726,
- "tests_per_case": 26.685,
- "positive_rate": 0.037000000000000005,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-05-30",
- "total_cases": 89407.0,
- "new_cases": 906.0,
- "new_cases_smoothed": 991.143,
- "total_deaths": 6979.0,
- "new_deaths": 102.0,
- "new_deaths_smoothed": 104.143,
- "total_cases_per_million": 2368.89,
- "new_cases_per_million": 24.005,
- "new_cases_smoothed_per_million": 26.261,
- "total_deaths_per_million": 184.913,
- "new_deaths_per_million": 2.703,
- "new_deaths_smoothed_per_million": 2.759,
- "new_tests": 37797.0,
- "total_tests": 1631174.0,
- "total_tests_per_thousand": 43.219,
- "new_tests_per_thousand": 1.001,
- "new_tests_smoothed": 28466.0,
- "new_tests_smoothed_per_thousand": 0.754,
- "tests_per_case": 28.72,
- "positive_rate": 0.035,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-05-31",
- "total_cases": 90179.0,
- "new_cases": 772.0,
- "new_cases_smoothed": 938.429,
- "total_deaths": 7073.0,
- "new_deaths": 94.0,
- "new_deaths_smoothed": 102.571,
- "total_cases_per_million": 2389.344,
- "new_cases_per_million": 20.455,
- "new_cases_smoothed_per_million": 24.864,
- "total_deaths_per_million": 187.403,
- "new_deaths_per_million": 2.491,
- "new_deaths_smoothed_per_million": 2.718,
- "new_tests": 31868.0,
- "total_tests": 1663042.0,
- "total_tests_per_thousand": 44.063,
- "new_tests_per_thousand": 0.844,
- "new_tests_smoothed": 29736.0,
- "new_tests_smoothed_per_thousand": 0.788,
- "tests_per_case": 31.686999999999998,
- "positive_rate": 0.032,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-06-01",
- "total_cases": 90936.0,
- "new_cases": 757.0,
- "new_cases_smoothed": 892.571,
- "total_deaths": 7295.0,
- "new_deaths": 222.0,
- "new_deaths_smoothed": 124.429,
- "total_cases_per_million": 2409.401,
- "new_cases_per_million": 20.057,
- "new_cases_smoothed_per_million": 23.649,
- "total_deaths_per_million": 193.285,
- "new_deaths_per_million": 5.882,
- "new_deaths_smoothed_per_million": 3.297,
- "new_tests": 28255.0,
- "total_tests": 1691297.0,
- "total_tests_per_thousand": 44.812,
- "new_tests_per_thousand": 0.749,
- "new_tests_smoothed": 30219.0,
- "new_tests_smoothed_per_thousand": 0.801,
- "tests_per_case": 33.856,
- "positive_rate": 0.03,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-06-02",
- "total_cases": 91694.0,
- "new_cases": 758.0,
- "new_cases_smoothed": 856.286,
- "total_deaths": 7326.0,
- "new_deaths": 31.0,
- "new_deaths_smoothed": 111.571,
- "total_cases_per_million": 2429.485,
- "new_cases_per_million": 20.084,
- "new_cases_smoothed_per_million": 22.688,
- "total_deaths_per_million": 194.107,
- "new_deaths_per_million": 0.821,
- "new_deaths_smoothed_per_million": 2.956,
- "new_tests": 30138.0,
- "total_tests": 1721435.0,
- "total_tests_per_thousand": 45.61,
- "new_tests_per_thousand": 0.799,
- "new_tests_smoothed": 31565.0,
- "new_tests_smoothed_per_thousand": 0.836,
- "tests_per_case": 36.863,
- "positive_rate": 0.027000000000000003,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-06-03",
- "total_cases": 92399.0,
- "new_cases": 705.0,
- "new_cases_smoothed": 823.286,
- "total_deaths": 7395.0,
- "new_deaths": 69.0,
- "new_deaths_smoothed": 108.0,
- "total_cases_per_million": 2448.164,
- "new_cases_per_million": 18.679,
- "new_cases_smoothed_per_million": 21.813,
- "total_deaths_per_million": 195.935,
- "new_deaths_per_million": 1.828,
- "new_deaths_smoothed_per_million": 2.862,
- "new_tests": 30112.0,
- "total_tests": 1751547.0,
- "total_tests_per_thousand": 46.408,
- "new_tests_per_thousand": 0.798,
- "new_tests_smoothed": 31901.0,
- "new_tests_smoothed_per_thousand": 0.845,
- "tests_per_case": 38.748000000000005,
- "positive_rate": 0.026000000000000002,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-06-04",
- "total_cases": 93074.0,
- "new_cases": 675.0,
- "new_cases_smoothed": 795.143,
- "total_deaths": 7498.0,
- "new_deaths": 103.0,
- "new_deaths_smoothed": 104.714,
- "total_cases_per_million": 2466.049,
- "new_cases_per_million": 17.885,
- "new_cases_smoothed_per_million": 21.068,
- "total_deaths_per_million": 198.664,
- "new_deaths_per_million": 2.729,
- "new_deaths_smoothed_per_million": 2.774,
- "new_tests": 35823.0,
- "total_tests": 1787370.0,
- "total_tests_per_thousand": 47.357,
- "new_tests_per_thousand": 0.949,
- "new_tests_smoothed": 32595.0,
- "new_tests_smoothed_per_thousand": 0.864,
- "tests_per_case": 40.993,
- "positive_rate": 0.024,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-06-05",
- "total_cases": 93715.0,
- "new_cases": 641.0,
- "new_cases_smoothed": 744.857,
- "total_deaths": 7637.0,
- "new_deaths": 139.0,
- "new_deaths_smoothed": 108.571,
- "total_cases_per_million": 2483.032,
- "new_cases_per_million": 16.984,
- "new_cases_smoothed_per_million": 19.735,
- "total_deaths_per_million": 202.347,
- "new_deaths_per_million": 3.683,
- "new_deaths_smoothed_per_million": 2.877,
- "new_tests": 37411.0,
- "total_tests": 1824781.0,
- "total_tests_per_thousand": 48.349,
- "new_tests_per_thousand": 0.991,
- "new_tests_smoothed": 33058.0,
- "new_tests_smoothed_per_thousand": 0.876,
- "tests_per_case": 44.382,
- "positive_rate": 0.023,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-06-06",
- "total_cases": 94324.0,
- "new_cases": 609.0,
- "new_cases_smoothed": 702.429,
- "total_deaths": 7703.0,
- "new_deaths": 66.0,
- "new_deaths_smoothed": 103.429,
- "total_cases_per_million": 2499.168,
- "new_cases_per_million": 16.136,
- "new_cases_smoothed_per_million": 18.611,
- "total_deaths_per_million": 204.095,
- "new_deaths_per_million": 1.749,
- "new_deaths_smoothed_per_million": 2.74,
- "new_tests": 5641.0,
- "total_tests": 1830422.0,
- "total_tests_per_thousand": 48.498,
- "new_tests_per_thousand": 0.149,
- "new_tests_smoothed": 28464.0,
- "new_tests_smoothed_per_thousand": 0.754,
- "tests_per_case": 40.522,
- "positive_rate": 0.025,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-06-07",
- "total_cases": 95046.0,
- "new_cases": 722.0,
- "new_cases_smoothed": 695.286,
- "total_deaths": 7773.0,
- "new_deaths": 70.0,
- "new_deaths_smoothed": 100.0,
- "total_cases_per_million": 2518.298,
- "new_cases_per_million": 19.13,
- "new_cases_smoothed_per_million": 18.422,
- "total_deaths_per_million": 205.95,
- "new_deaths_per_million": 1.855,
- "new_deaths_smoothed_per_million": 2.65,
- "new_tests": 37779.0,
- "total_tests": 1868201.0,
- "total_tests_per_thousand": 49.499,
- "new_tests_per_thousand": 1.001,
- "new_tests_smoothed": 29308.0,
- "new_tests_smoothed_per_thousand": 0.777,
- "tests_per_case": 42.152,
- "positive_rate": 0.024,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-06-08",
- "total_cases": 95688.0,
- "new_cases": 642.0,
- "new_cases_smoothed": 678.857,
- "total_deaths": 7800.0,
- "new_deaths": 27.0,
- "new_deaths_smoothed": 72.143,
- "total_cases_per_million": 2535.308,
- "new_cases_per_million": 17.01,
- "new_cases_smoothed_per_million": 17.987,
- "total_deaths_per_million": 206.665,
- "new_deaths_per_million": 0.715,
- "new_deaths_smoothed_per_million": 1.911,
- "new_tests": 28545.0,
- "total_tests": 1896746.0,
- "total_tests_per_thousand": 50.255,
- "new_tests_per_thousand": 0.756,
- "new_tests_smoothed": 29350.0,
- "new_tests_smoothed_per_thousand": 0.778,
- "tests_per_case": 43.233999999999995,
- "positive_rate": 0.023,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-06-09",
- "total_cases": 96233.0,
- "new_cases": 545.0,
- "new_cases_smoothed": 648.429,
- "total_deaths": 7835.0,
- "new_deaths": 35.0,
- "new_deaths_smoothed": 72.714,
- "total_cases_per_million": 2549.748,
- "new_cases_per_million": 14.44,
- "new_cases_smoothed_per_million": 17.18,
- "total_deaths_per_million": 207.593,
- "new_deaths_per_million": 0.927,
- "new_deaths_smoothed_per_million": 1.927,
- "new_tests": 33319.0,
- "total_tests": 1930065.0,
- "total_tests_per_thousand": 51.138,
- "new_tests_per_thousand": 0.883,
- "new_tests_smoothed": 29804.0,
- "new_tests_smoothed_per_thousand": 0.79,
- "tests_per_case": 45.963,
- "positive_rate": 0.022000000000000002,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-06-10",
- "total_cases": 96642.0,
- "new_cases": 409.0,
- "new_cases_smoothed": 606.143,
- "total_deaths": 7897.0,
- "new_deaths": 62.0,
- "new_deaths_smoothed": 71.714,
- "total_cases_per_million": 2560.585,
- "new_cases_per_million": 10.837,
- "new_cases_smoothed_per_million": 16.06,
- "total_deaths_per_million": 209.236,
- "new_deaths_per_million": 1.643,
- "new_deaths_smoothed_per_million": 1.9,
- "new_tests": 25578.0,
- "total_tests": 1955643.0,
- "total_tests_per_thousand": 51.816,
- "new_tests_per_thousand": 0.678,
- "new_tests_smoothed": 29157.0,
- "new_tests_smoothed_per_thousand": 0.773,
- "tests_per_case": 48.103,
- "positive_rate": 0.021,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-06-11",
- "total_cases": 97114.0,
- "new_cases": 472.0,
- "new_cases_smoothed": 577.143,
- "total_deaths": 7960.0,
- "new_deaths": 63.0,
- "new_deaths_smoothed": 66.0,
- "total_cases_per_million": 2573.091,
- "new_cases_per_million": 12.506,
- "new_cases_smoothed_per_million": 15.292,
- "total_deaths_per_million": 210.905,
- "new_deaths_per_million": 1.669,
- "new_deaths_smoothed_per_million": 1.749,
- "new_tests": 33536.0,
- "total_tests": 1989179.0,
- "total_tests_per_thousand": 52.704,
- "new_tests_per_thousand": 0.889,
- "new_tests_smoothed": 28830.0,
- "new_tests_smoothed_per_thousand": 0.764,
- "tests_per_case": 49.953,
- "positive_rate": 0.02,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-06-12",
- "total_cases": 97519.0,
- "new_cases": 405.0,
- "new_cases_smoothed": 543.429,
- "total_deaths": 7994.0,
- "new_deaths": 34.0,
- "new_deaths_smoothed": 51.0,
- "total_cases_per_million": 2583.822,
- "new_cases_per_million": 10.731,
- "new_cases_smoothed_per_million": 14.398,
- "total_deaths_per_million": 211.806,
- "new_deaths_per_million": 0.901,
- "new_deaths_smoothed_per_million": 1.351,
- "new_tests": 39241.0,
- "total_tests": 2028420.0,
- "total_tests_per_thousand": 53.744,
- "new_tests_per_thousand": 1.04,
- "new_tests_smoothed": 29091.0,
- "new_tests_smoothed_per_thousand": 0.771,
- "tests_per_case": 53.532,
- "positive_rate": 0.019,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-06-13",
- "total_cases": 97932.0,
- "new_cases": 413.0,
- "new_cases_smoothed": 515.429,
- "total_deaths": 8049.0,
- "new_deaths": 55.0,
- "new_deaths_smoothed": 49.429,
- "total_cases_per_million": 2594.764,
- "new_cases_per_million": 10.943,
- "new_cases_smoothed_per_million": 13.657,
- "total_deaths_per_million": 213.263,
- "new_deaths_per_million": 1.457,
- "new_deaths_smoothed_per_million": 1.31,
- "new_tests": 43600.0,
- "total_tests": 2072020.0,
- "total_tests_per_thousand": 54.899,
- "new_tests_per_thousand": 1.155,
- "new_tests_smoothed": 34514.0,
- "new_tests_smoothed_per_thousand": 0.914,
- "tests_per_case": 66.962,
- "positive_rate": 0.015,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-06-14",
- "total_cases": 98399.0,
- "new_cases": 467.0,
- "new_cases_smoothed": 479.0,
- "total_deaths": 8107.0,
- "new_deaths": 58.0,
- "new_deaths_smoothed": 47.714,
- "total_cases_per_million": 2607.138,
- "new_cases_per_million": 12.373,
- "new_cases_smoothed_per_million": 12.691,
- "total_deaths_per_million": 214.8,
- "new_deaths_per_million": 1.537,
- "new_deaths_smoothed_per_million": 1.264,
- "new_tests": 41828.0,
- "total_tests": 2113848.0,
- "total_tests_per_thousand": 56.008,
- "new_tests_per_thousand": 1.108,
- "new_tests_smoothed": 35092.0,
- "new_tests_smoothed_per_thousand": 0.93,
- "tests_per_case": 73.26100000000001,
- "positive_rate": 0.013999999999999999,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-06-15",
- "total_cases": 98776.0,
- "new_cases": 377.0,
- "new_cases_smoothed": 441.143,
- "total_deaths": 8146.0,
- "new_deaths": 39.0,
- "new_deaths_smoothed": 49.429,
- "total_cases_per_million": 2617.127,
- "new_cases_per_million": 9.989,
- "new_cases_smoothed_per_million": 11.688,
- "total_deaths_per_million": 215.833,
- "new_deaths_per_million": 1.033,
- "new_deaths_smoothed_per_million": 1.31,
- "new_tests": 38852.0,
- "total_tests": 2152700.0,
- "total_tests_per_thousand": 57.037,
- "new_tests_per_thousand": 1.029,
- "new_tests_smoothed": 36565.0,
- "new_tests_smoothed_per_thousand": 0.969,
- "tests_per_case": 82.887,
- "positive_rate": 0.012,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-06-16",
- "total_cases": 99136.0,
- "new_cases": 360.0,
- "new_cases_smoothed": 414.714,
- "total_deaths": 8175.0,
- "new_deaths": 29.0,
- "new_deaths_smoothed": 48.571,
- "total_cases_per_million": 2626.665,
- "new_cases_per_million": 9.538,
- "new_cases_smoothed_per_million": 10.988,
- "total_deaths_per_million": 216.601,
- "new_deaths_per_million": 0.768,
- "new_deaths_smoothed_per_million": 1.287,
- "new_tests": 30700.0,
- "total_tests": 2183400.0,
- "total_tests_per_thousand": 57.85,
- "new_tests_per_thousand": 0.813,
- "new_tests_smoothed": 36191.0,
- "new_tests_smoothed_per_thousand": 0.959,
- "tests_per_case": 87.26700000000001,
- "positive_rate": 0.011000000000000001,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-06-17",
- "total_cases": 99456.0,
- "new_cases": 320.0,
- "new_cases_smoothed": 402.0,
- "total_deaths": 8213.0,
- "new_deaths": 38.0,
- "new_deaths_smoothed": 45.143,
- "total_cases_per_million": 2635.144,
- "new_cases_per_million": 8.479,
- "new_cases_smoothed_per_million": 10.651,
- "total_deaths_per_million": 217.608,
- "new_deaths_per_million": 1.007,
- "new_deaths_smoothed_per_million": 1.196,
- "new_tests": 33254.0,
- "total_tests": 2216654.0,
- "total_tests_per_thousand": 58.732,
- "new_tests_per_thousand": 0.881,
- "new_tests_smoothed": 37287.0,
- "new_tests_smoothed_per_thousand": 0.988,
- "tests_per_case": 92.75399999999999,
- "positive_rate": 0.011000000000000001,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-06-18",
- "total_cases": 99842.0,
- "new_cases": 386.0,
- "new_cases_smoothed": 389.714,
- "total_deaths": 8254.0,
- "new_deaths": 41.0,
- "new_deaths_smoothed": 42.0,
- "total_cases_per_million": 2645.371,
- "new_cases_per_million": 10.227,
- "new_cases_smoothed_per_million": 10.326,
- "total_deaths_per_million": 218.694,
- "new_deaths_per_million": 1.086,
- "new_deaths_smoothed_per_million": 1.113,
- "new_tests": 37751.0,
- "total_tests": 2254405.0,
- "total_tests_per_thousand": 59.732,
- "new_tests_per_thousand": 1.0,
- "new_tests_smoothed": 37889.0,
- "new_tests_smoothed_per_thousand": 1.004,
- "tests_per_case": 97.223,
- "positive_rate": 0.01,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-06-19",
- "total_cases": 100209.0,
- "new_cases": 367.0,
- "new_cases_smoothed": 384.286,
- "total_deaths": 8300.0,
- "new_deaths": 46.0,
- "new_deaths_smoothed": 43.714,
- "total_cases_per_million": 2655.095,
- "new_cases_per_million": 9.724,
- "new_cases_smoothed_per_million": 10.182,
- "total_deaths_per_million": 219.913,
- "new_deaths_per_million": 1.219,
- "new_deaths_smoothed_per_million": 1.158,
- "new_tests": 40959.0,
- "total_tests": 2295364.0,
- "total_tests_per_thousand": 60.817,
- "new_tests_per_thousand": 1.085,
- "new_tests_smoothed": 38135.0,
- "new_tests_smoothed_per_thousand": 1.01,
- "tests_per_case": 99.236,
- "positive_rate": 0.01,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-06-20",
- "total_cases": 100618.0,
- "new_cases": 409.0,
- "new_cases_smoothed": 383.714,
- "total_deaths": 8346.0,
- "new_deaths": 46.0,
- "new_deaths_smoothed": 42.429,
- "total_cases_per_million": 2665.931,
- "new_cases_per_million": 10.837,
- "new_cases_smoothed_per_million": 10.167,
- "total_deaths_per_million": 221.132,
- "new_deaths_per_million": 1.219,
- "new_deaths_smoothed_per_million": 1.124,
- "new_tests": 44123.0,
- "total_tests": 2339487.0,
- "total_tests_per_thousand": 61.986,
- "new_tests_per_thousand": 1.169,
- "new_tests_smoothed": 38210.0,
- "new_tests_smoothed_per_thousand": 1.012,
- "tests_per_case": 99.579,
- "positive_rate": 0.01,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-06-21",
- "total_cases": 101008.0,
- "new_cases": 390.0,
- "new_cases_smoothed": 372.714,
- "total_deaths": 8410.0,
- "new_deaths": 64.0,
- "new_deaths_smoothed": 43.286,
- "total_cases_per_million": 2676.265,
- "new_cases_per_million": 10.333,
- "new_cases_smoothed_per_million": 9.875,
- "total_deaths_per_million": 222.828,
- "new_deaths_per_million": 1.696,
- "new_deaths_smoothed_per_million": 1.147,
- "new_tests": 43218.0,
- "total_tests": 2382705.0,
- "total_tests_per_thousand": 63.131,
- "new_tests_per_thousand": 1.145,
- "new_tests_smoothed": 38408.0,
- "new_tests_smoothed_per_thousand": 1.018,
- "tests_per_case": 103.04899999999999,
- "positive_rate": 0.01,
- "tests_units": "people tested",
- "stringency_index": 70.83
- },
- {
- "date": "2020-06-22",
- "total_cases": 101326.0,
- "new_cases": 318.0,
- "new_cases_smoothed": 364.286,
- "total_deaths": 8430.0,
- "new_deaths": 20.0,
- "new_deaths_smoothed": 40.571,
- "total_cases_per_million": 2684.69,
- "new_cases_per_million": 8.426,
- "new_cases_smoothed_per_million": 9.652,
- "total_deaths_per_million": 223.358,
- "new_deaths_per_million": 0.53,
- "new_deaths_smoothed_per_million": 1.075,
- "new_tests": 32660.0,
- "total_tests": 2415365.0,
- "total_tests_per_thousand": 63.996,
- "new_tests_per_thousand": 0.865,
- "new_tests_smoothed": 37524.0,
- "new_tests_smoothed_per_thousand": 0.994,
- "tests_per_case": 103.007,
- "positive_rate": 0.01,
- "tests_units": "people tested",
- "stringency_index": 68.98
- },
- {
- "date": "2020-06-23",
- "total_cases": 101637.0,
- "new_cases": 311.0,
- "new_cases_smoothed": 357.286,
- "total_deaths": 8436.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 37.286,
- "total_cases_per_million": 2692.93,
- "new_cases_per_million": 8.24,
- "new_cases_smoothed_per_million": 9.466,
- "total_deaths_per_million": 223.517,
- "new_deaths_per_million": 0.159,
- "new_deaths_smoothed_per_million": 0.988,
- "new_tests": 28677.0,
- "total_tests": 2444042.0,
- "total_tests_per_thousand": 64.756,
- "new_tests_per_thousand": 0.76,
- "new_tests_smoothed": 37235.0,
- "new_tests_smoothed_per_thousand": 0.987,
- "tests_per_case": 104.21600000000001,
- "positive_rate": 0.01,
- "tests_units": "people tested",
- "stringency_index": 68.98
- },
- {
- "date": "2020-06-24",
- "total_cases": 101963.0,
- "new_cases": 326.0,
- "new_cases_smoothed": 358.143,
- "total_deaths": 8454.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 34.429,
- "total_cases_per_million": 2701.568,
- "new_cases_per_million": 8.638,
- "new_cases_smoothed_per_million": 9.489,
- "total_deaths_per_million": 223.994,
- "new_deaths_per_million": 0.477,
- "new_deaths_smoothed_per_million": 0.912,
- "new_tests": 38751.0,
- "total_tests": 2482793.0,
- "total_tests_per_thousand": 65.783,
- "new_tests_per_thousand": 1.027,
- "new_tests_smoothed": 38020.0,
- "new_tests_smoothed_per_thousand": 1.007,
- "tests_per_case": 106.15899999999999,
- "positive_rate": 0.009000000000000001,
- "tests_units": "people tested",
- "stringency_index": 68.98
- },
- {
- "date": "2020-06-25",
- "total_cases": 102242.0,
- "new_cases": 279.0,
- "new_cases_smoothed": 342.857,
- "total_deaths": 8484.0,
- "new_deaths": 30.0,
- "new_deaths_smoothed": 32.857,
- "total_cases_per_million": 2708.96,
- "new_cases_per_million": 7.392,
- "new_cases_smoothed_per_million": 9.084,
- "total_deaths_per_million": 224.788,
- "new_deaths_per_million": 0.795,
- "new_deaths_smoothed_per_million": 0.871,
- "new_tests": 35781.0,
- "total_tests": 2518574.0,
- "total_tests_per_thousand": 66.731,
- "new_tests_per_thousand": 0.948,
- "new_tests_smoothed": 37738.0,
- "new_tests_smoothed_per_thousand": 1.0,
- "tests_per_case": 110.069,
- "positive_rate": 0.009000000000000001,
- "tests_units": "people tested",
- "stringency_index": 68.98
- },
- {
- "date": "2020-06-26",
- "total_cases": 102611.0,
- "new_cases": 369.0,
- "new_cases_smoothed": 343.143,
- "total_deaths": 8504.0,
- "new_deaths": 20.0,
- "new_deaths_smoothed": 29.143,
- "total_cases_per_million": 2718.737,
- "new_cases_per_million": 9.777,
- "new_cases_smoothed_per_million": 9.092,
- "total_deaths_per_million": 225.318,
- "new_deaths_per_million": 0.53,
- "new_deaths_smoothed_per_million": 0.772,
- "new_tests": 39713.0,
- "total_tests": 2558287.0,
- "total_tests_per_thousand": 67.783,
- "new_tests_per_thousand": 1.052,
- "new_tests_smoothed": 37560.0,
- "new_tests_smoothed_per_thousand": 0.995,
- "tests_per_case": 109.459,
- "positive_rate": 0.009000000000000001,
- "tests_units": "people tested",
- "stringency_index": 68.98
- },
- {
- "date": "2020-06-27",
- "total_cases": 102783.0,
- "new_cases": 172.0,
- "new_cases_smoothed": 309.286,
- "total_deaths": 8508.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 23.143,
- "total_cases_per_million": 2723.294,
- "new_cases_per_million": 4.557,
- "new_cases_smoothed_per_million": 8.195,
- "total_deaths_per_million": 225.424,
- "new_deaths_per_million": 0.106,
- "new_deaths_smoothed_per_million": 0.613,
- "new_tests": 39880.0,
- "total_tests": 2598167.0,
- "total_tests_per_thousand": 68.84,
- "new_tests_per_thousand": 1.057,
- "new_tests_smoothed": 36954.0,
- "new_tests_smoothed_per_thousand": 0.979,
- "tests_per_case": 119.48200000000001,
- "positive_rate": 0.008,
- "tests_units": "people tested",
- "stringency_index": 68.98
- },
- {
- "date": "2020-06-28",
- "total_cases": 103021.0,
- "new_cases": 238.0,
- "new_cases_smoothed": 287.571,
- "total_deaths": 8516.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 15.143,
- "total_cases_per_million": 2729.6,
- "new_cases_per_million": 6.306,
- "new_cases_smoothed_per_million": 7.619,
- "total_deaths_per_million": 225.636,
- "new_deaths_per_million": 0.212,
- "new_deaths_smoothed_per_million": 0.401,
- "new_tests": 42072.0,
- "total_tests": 2640239.0,
- "total_tests_per_thousand": 69.955,
- "new_tests_per_thousand": 1.115,
- "new_tests_smoothed": 36791.0,
- "new_tests_smoothed_per_thousand": 0.975,
- "tests_per_case": 127.93700000000001,
- "positive_rate": 0.008,
- "tests_units": "people tested",
- "stringency_index": 68.98
- },
- {
- "date": "2020-06-29",
- "total_cases": 103239.0,
- "new_cases": 218.0,
- "new_cases_smoothed": 273.286,
- "total_deaths": 8522.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 13.143,
- "total_cases_per_million": 2735.376,
- "new_cases_per_million": 5.776,
- "new_cases_smoothed_per_million": 7.241,
- "total_deaths_per_million": 225.795,
- "new_deaths_per_million": 0.159,
- "new_deaths_smoothed_per_million": 0.348,
- "new_tests": 36390.0,
- "total_tests": 2676629.0,
- "total_tests_per_thousand": 70.919,
- "new_tests_per_thousand": 0.964,
- "new_tests_smoothed": 37323.0,
- "new_tests_smoothed_per_thousand": 0.989,
- "tests_per_case": 136.571,
- "positive_rate": 0.006999999999999999,
- "tests_units": "people tested",
- "stringency_index": 68.98
- },
- {
- "date": "2020-06-30",
- "total_cases": 103907.0,
- "new_cases": 668.0,
- "new_cases_smoothed": 324.286,
- "total_deaths": 8566.0,
- "new_deaths": 44.0,
- "new_deaths_smoothed": 18.571,
- "total_cases_per_million": 2753.075,
- "new_cases_per_million": 17.699,
- "new_cases_smoothed_per_million": 8.592,
- "total_deaths_per_million": 226.961,
- "new_deaths_per_million": 1.166,
- "new_deaths_smoothed_per_million": 0.492,
- "new_tests": 44980.0,
- "total_tests": 2721609.0,
- "total_tests_per_thousand": 72.111,
- "new_tests_per_thousand": 1.192,
- "new_tests_smoothed": 39652.0,
- "new_tests_smoothed_per_thousand": 1.051,
- "tests_per_case": 122.275,
- "positive_rate": 0.008,
- "tests_units": "people tested",
- "stringency_index": 68.98
- },
- {
- "date": "2020-07-01",
- "total_cases": 104193.0,
- "new_cases": 286.0,
- "new_cases_smoothed": 318.571,
- "total_deaths": 8591.0,
- "new_deaths": 25.0,
- "new_deaths_smoothed": 19.571,
- "total_cases_per_million": 2760.653,
- "new_cases_per_million": 7.578,
- "new_cases_smoothed_per_million": 8.441,
- "total_deaths_per_million": 227.623,
- "new_deaths_per_million": 0.662,
- "new_deaths_smoothed_per_million": 0.519,
- "new_tests": 48468.0,
- "total_tests": 2770077.0,
- "total_tests_per_thousand": 73.395,
- "new_tests_per_thousand": 1.284,
- "new_tests_smoothed": 41041.0,
- "new_tests_smoothed_per_thousand": 1.087,
- "tests_per_case": 128.828,
- "positive_rate": 0.008,
- "tests_units": "people tested",
- "stringency_index": 68.98
- },
- {
- "date": "2020-07-02",
- "total_cases": 104193.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 278.714,
- "total_deaths": 8591.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 15.286,
- "total_cases_per_million": 2760.653,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.385,
- "total_deaths_per_million": 227.623,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.405,
- "new_tests_smoothed": 41507.0,
- "new_tests_smoothed_per_thousand": 1.1,
- "tests_per_case": 148.923,
- "positive_rate": 0.006999999999999999,
- "tests_units": "people tested",
- "stringency_index": 68.98
- },
- {
- "date": "2020-07-03",
- "total_cases": 104760.0,
- "new_cases": 567.0,
- "new_cases_smoothed": 307.0,
- "total_deaths": 8642.0,
- "new_deaths": 51.0,
- "new_deaths_smoothed": 19.714,
- "total_cases_per_million": 2775.676,
- "new_cases_per_million": 15.023,
- "new_cases_smoothed_per_million": 8.134,
- "total_deaths_per_million": 228.975,
- "new_deaths_per_million": 1.351,
- "new_deaths_smoothed_per_million": 0.522,
- "total_tests": 2848168.0,
- "total_tests_per_thousand": 75.464,
- "new_tests_smoothed": 41412.0,
- "new_tests_smoothed_per_thousand": 1.097,
- "tests_per_case": 134.893,
- "positive_rate": 0.006999999999999999,
- "tests_units": "people tested",
- "stringency_index": 68.98
- },
- {
- "date": "2020-07-04",
- "total_cases": 105079.0,
- "new_cases": 319.0,
- "new_cases_smoothed": 328.0,
- "total_deaths": 8663.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 22.143,
- "total_cases_per_million": 2784.128,
- "new_cases_per_million": 8.452,
- "new_cases_smoothed_per_million": 8.691,
- "total_deaths_per_million": 229.531,
- "new_deaths_per_million": 0.556,
- "new_deaths_smoothed_per_million": 0.587,
- "new_tests": 37502.0,
- "total_tests": 2885670.0,
- "total_tests_per_thousand": 76.457,
- "new_tests_per_thousand": 0.994,
- "new_tests_smoothed": 41072.0,
- "new_tests_smoothed_per_thousand": 1.088,
- "tests_per_case": 125.22,
- "positive_rate": 0.008,
- "tests_units": "people tested",
- "stringency_index": 68.98
- },
- {
- "date": "2020-07-05",
- "total_cases": 105305.0,
- "new_cases": 226.0,
- "new_cases_smoothed": 326.286,
- "total_deaths": 8674.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 22.571,
- "total_cases_per_million": 2790.116,
- "new_cases_per_million": 5.988,
- "new_cases_smoothed_per_million": 8.645,
- "total_deaths_per_million": 229.823,
- "new_deaths_per_million": 0.291,
- "new_deaths_smoothed_per_million": 0.598,
- "new_tests": 29208.0,
- "total_tests": 2914878.0,
- "total_tests_per_thousand": 77.231,
- "new_tests_per_thousand": 0.774,
- "new_tests_smoothed": 39234.0,
- "new_tests_smoothed_per_thousand": 1.04,
- "tests_per_case": 120.244,
- "positive_rate": 0.008,
- "tests_units": "people tested",
- "stringency_index": 68.98
- },
- {
- "date": "2020-07-06",
- "total_cases": 105524.0,
- "new_cases": 219.0,
- "new_cases_smoothed": 326.429,
- "total_deaths": 8684.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 23.143,
- "total_cases_per_million": 2795.919,
- "new_cases_per_million": 5.803,
- "new_cases_smoothed_per_million": 8.649,
- "total_deaths_per_million": 230.088,
- "new_deaths_per_million": 0.265,
- "new_deaths_smoothed_per_million": 0.613,
- "new_tests": 25971.0,
- "total_tests": 2940849.0,
- "total_tests_per_thousand": 77.919,
- "new_tests_per_thousand": 0.688,
- "new_tests_smoothed": 37746.0,
- "new_tests_smoothed_per_thousand": 1.0,
- "tests_per_case": 115.633,
- "positive_rate": 0.009000000000000001,
- "tests_units": "people tested",
- "stringency_index": 68.98
- },
- {
- "date": "2020-07-07",
- "total_cases": 105923.0,
- "new_cases": 399.0,
- "new_cases_smoothed": 288.0,
- "total_deaths": 8693.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 18.143,
- "total_cases_per_million": 2806.49,
- "new_cases_per_million": 10.572,
- "new_cases_smoothed_per_million": 7.631,
- "total_deaths_per_million": 230.326,
- "new_deaths_per_million": 0.238,
- "new_deaths_smoothed_per_million": 0.481,
- "new_tests": 34786.0,
- "total_tests": 2975635.0,
- "total_tests_per_thousand": 78.841,
- "new_tests_per_thousand": 0.922,
- "new_tests_smoothed": 36289.0,
- "new_tests_smoothed_per_thousand": 0.961,
- "tests_per_case": 126.00299999999999,
- "positive_rate": 0.008,
- "tests_units": "people tested",
- "stringency_index": 68.98
- },
- {
- "date": "2020-07-08",
- "total_cases": 106155.0,
- "new_cases": 232.0,
- "new_cases_smoothed": 280.286,
- "total_deaths": 8711.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 17.143,
- "total_cases_per_million": 2812.637,
- "new_cases_per_million": 6.147,
- "new_cases_smoothed_per_million": 7.426,
- "total_deaths_per_million": 230.803,
- "new_deaths_per_million": 0.477,
- "new_deaths_smoothed_per_million": 0.454,
- "new_tests": 44461.0,
- "total_tests": 3020096.0,
- "total_tests_per_thousand": 80.019,
- "new_tests_per_thousand": 1.178,
- "new_tests_smoothed": 35717.0,
- "new_tests_smoothed_per_thousand": 0.946,
- "tests_per_case": 127.431,
- "positive_rate": 0.008,
- "tests_units": "people tested",
- "stringency_index": 68.98
- },
- {
- "date": "2020-07-09",
- "total_cases": 106422.0,
- "new_cases": 267.0,
- "new_cases_smoothed": 318.429,
- "total_deaths": 8737.0,
- "new_deaths": 26.0,
- "new_deaths_smoothed": 20.857,
- "total_cases_per_million": 2819.712,
- "new_cases_per_million": 7.074,
- "new_cases_smoothed_per_million": 8.437,
- "total_deaths_per_million": 231.492,
- "new_deaths_per_million": 0.689,
- "new_deaths_smoothed_per_million": 0.553,
- "new_tests": 35169.0,
- "total_tests": 3055265.0,
- "total_tests_per_thousand": 80.951,
- "new_tests_per_thousand": 0.932,
- "new_tests_smoothed": 35163.0,
- "new_tests_smoothed_per_thousand": 0.932,
- "tests_per_case": 110.427,
- "positive_rate": 0.009000000000000001,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-07-10",
- "total_cases": 106793.0,
- "new_cases": 371.0,
- "new_cases_smoothed": 290.429,
- "total_deaths": 8749.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 15.286,
- "total_cases_per_million": 2829.542,
- "new_cases_per_million": 9.83,
- "new_cases_smoothed_per_million": 7.695,
- "total_deaths_per_million": 231.81,
- "new_deaths_per_million": 0.318,
- "new_deaths_smoothed_per_million": 0.405,
- "new_tests": 42852.0,
- "total_tests": 3098117.0,
- "total_tests_per_thousand": 82.086,
- "new_tests_per_thousand": 1.135,
- "new_tests_smoothed": 35707.0,
- "new_tests_smoothed_per_thousand": 0.946,
- "tests_per_case": 122.946,
- "positive_rate": 0.008,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-07-11",
- "total_cases": 107114.0,
- "new_cases": 321.0,
- "new_cases_smoothed": 290.714,
- "total_deaths": 8759.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 13.714,
- "total_cases_per_million": 2838.047,
- "new_cases_per_million": 8.505,
- "new_cases_smoothed_per_million": 7.703,
- "total_deaths_per_million": 232.075,
- "new_deaths_per_million": 0.265,
- "new_deaths_smoothed_per_million": 0.363,
- "new_tests": 44509.0,
- "total_tests": 3142626.0,
- "total_tests_per_thousand": 83.266,
- "new_tests_per_thousand": 1.179,
- "new_tests_smoothed": 36708.0,
- "new_tests_smoothed_per_thousand": 0.973,
- "tests_per_case": 126.26799999999999,
- "positive_rate": 0.008,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-07-12",
- "total_cases": 107335.0,
- "new_cases": 221.0,
- "new_cases_smoothed": 290.0,
- "total_deaths": 8773.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 14.143,
- "total_cases_per_million": 2843.902,
- "new_cases_per_million": 5.856,
- "new_cases_smoothed_per_million": 7.684,
- "total_deaths_per_million": 232.446,
- "new_deaths_per_million": 0.371,
- "new_deaths_smoothed_per_million": 0.375,
- "new_tests": 40814.0,
- "total_tests": 3183440.0,
- "total_tests_per_thousand": 84.347,
- "new_tests_per_thousand": 1.081,
- "new_tests_smoothed": 38366.0,
- "new_tests_smoothed_per_thousand": 1.017,
- "tests_per_case": 132.297,
- "positive_rate": 0.008,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-07-13",
- "total_cases": 107579.0,
- "new_cases": 244.0,
- "new_cases_smoothed": 293.571,
- "total_deaths": 8783.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 14.143,
- "total_cases_per_million": 2850.367,
- "new_cases_per_million": 6.465,
- "new_cases_smoothed_per_million": 7.778,
- "total_deaths_per_million": 232.711,
- "new_deaths_per_million": 0.265,
- "new_deaths_smoothed_per_million": 0.375,
- "new_tests": 29363.0,
- "total_tests": 3212803.0,
- "total_tests_per_thousand": 85.125,
- "new_tests_per_thousand": 0.778,
- "new_tests_smoothed": 38851.0,
- "new_tests_smoothed_per_thousand": 1.029,
- "tests_per_case": 132.339,
- "positive_rate": 0.008,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-07-14",
- "total_cases": 108144.0,
- "new_cases": 565.0,
- "new_cases_smoothed": 317.286,
- "total_deaths": 8790.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 13.857,
- "total_cases_per_million": 2865.337,
- "new_cases_per_million": 14.97,
- "new_cases_smoothed_per_million": 8.407,
- "total_deaths_per_million": 232.896,
- "new_deaths_per_million": 0.185,
- "new_deaths_smoothed_per_million": 0.367,
- "new_tests": 44729.0,
- "total_tests": 3257532.0,
- "total_tests_per_thousand": 86.31,
- "new_tests_per_thousand": 1.185,
- "new_tests_smoothed": 40271.0,
- "new_tests_smoothed_per_thousand": 1.067,
- "tests_per_case": 126.92299999999999,
- "positive_rate": 0.008,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-07-15",
- "total_cases": 108475.0,
- "new_cases": 331.0,
- "new_cases_smoothed": 331.429,
- "total_deaths": 8798.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 12.429,
- "total_cases_per_million": 2874.107,
- "new_cases_per_million": 8.77,
- "new_cases_smoothed_per_million": 8.781,
- "total_deaths_per_million": 233.108,
- "new_deaths_per_million": 0.212,
- "new_deaths_smoothed_per_million": 0.329,
- "new_tests": 44875.0,
- "total_tests": 3302407.0,
- "total_tests_per_thousand": 87.499,
- "new_tests_per_thousand": 1.189,
- "new_tests_smoothed": 40330.0,
- "new_tests_smoothed_per_thousand": 1.069,
- "tests_per_case": 121.685,
- "positive_rate": 0.008,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-07-16",
- "total_cases": 108816.0,
- "new_cases": 341.0,
- "new_cases_smoothed": 342.0,
- "total_deaths": 8810.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 10.429,
- "total_cases_per_million": 2883.142,
- "new_cases_per_million": 9.035,
- "new_cases_smoothed_per_million": 9.061,
- "total_deaths_per_million": 233.426,
- "new_deaths_per_million": 0.318,
- "new_deaths_smoothed_per_million": 0.276,
- "new_tests": 39410.0,
- "total_tests": 3341817.0,
- "total_tests_per_thousand": 88.543,
- "new_tests_per_thousand": 1.044,
- "new_tests_smoothed": 40936.0,
- "new_tests_smoothed_per_thousand": 1.085,
- "tests_per_case": 119.696,
- "positive_rate": 0.008,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-07-17",
- "total_cases": 109253.0,
- "new_cases": 437.0,
- "new_cases_smoothed": 351.429,
- "total_deaths": 8827.0,
- "new_deaths": 17.0,
- "new_deaths_smoothed": 11.143,
- "total_cases_per_million": 2894.721,
- "new_cases_per_million": 11.579,
- "new_cases_smoothed_per_million": 9.311,
- "total_deaths_per_million": 233.876,
- "new_deaths_per_million": 0.45,
- "new_deaths_smoothed_per_million": 0.295,
- "new_tests": 45862.0,
- "total_tests": 3387679.0,
- "total_tests_per_thousand": 89.758,
- "new_tests_per_thousand": 1.215,
- "new_tests_smoothed": 41366.0,
- "new_tests_smoothed_per_thousand": 1.096,
- "tests_per_case": 117.708,
- "positive_rate": 0.008,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-07-18",
- "total_cases": 109658.0,
- "new_cases": 405.0,
- "new_cases_smoothed": 363.429,
- "total_deaths": 8839.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 11.429,
- "total_cases_per_million": 2905.451,
- "new_cases_per_million": 10.731,
- "new_cases_smoothed_per_million": 9.629,
- "total_deaths_per_million": 234.194,
- "new_deaths_per_million": 0.318,
- "new_deaths_smoothed_per_million": 0.303,
- "new_tests": 50286.0,
- "total_tests": 3437965.0,
- "total_tests_per_thousand": 91.091,
- "new_tests_per_thousand": 1.332,
- "new_tests_smoothed": 42191.0,
- "new_tests_smoothed_per_thousand": 1.118,
- "tests_per_case": 116.09200000000001,
- "positive_rate": 0.009000000000000001,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-07-19",
- "total_cases": 109658.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 331.857,
- "total_deaths": 8839.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 9.429,
- "total_cases_per_million": 2905.451,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.793,
- "total_deaths_per_million": 234.194,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.25,
- "new_tests": 43763.0,
- "total_tests": 3481728.0,
- "total_tests_per_thousand": 92.25,
- "new_tests_per_thousand": 1.16,
- "new_tests_smoothed": 42613.0,
- "new_tests_smoothed_per_thousand": 1.129,
- "tests_per_case": 128.408,
- "positive_rate": 0.008,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-07-20",
- "total_cases": 110338.0,
- "new_cases": 680.0,
- "new_cases_smoothed": 394.143,
- "total_deaths": 8852.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 9.857,
- "total_cases_per_million": 2923.468,
- "new_cases_per_million": 18.017,
- "new_cases_smoothed_per_million": 10.443,
- "total_deaths_per_million": 234.539,
- "new_deaths_per_million": 0.344,
- "new_deaths_smoothed_per_million": 0.261,
- "new_tests": 38738.0,
- "total_tests": 3520466.0,
- "total_tests_per_thousand": 93.277,
- "new_tests_per_thousand": 1.026,
- "new_tests_smoothed": 43952.0,
- "new_tests_smoothed_per_thousand": 1.165,
- "tests_per_case": 111.51299999999999,
- "positive_rate": 0.009000000000000001,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-07-21",
- "total_cases": 111113.0,
- "new_cases": 775.0,
- "new_cases_smoothed": 424.143,
- "total_deaths": 8858.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 9.714,
- "total_cases_per_million": 2944.002,
- "new_cases_per_million": 20.534,
- "new_cases_smoothed_per_million": 11.238,
- "total_deaths_per_million": 234.698,
- "new_deaths_per_million": 0.159,
- "new_deaths_smoothed_per_million": 0.257,
- "new_tests": 53088.0,
- "total_tests": 3573554.0,
- "total_tests_per_thousand": 94.683,
- "new_tests_per_thousand": 1.407,
- "new_tests_smoothed": 45146.0,
- "new_tests_smoothed_per_thousand": 1.196,
- "tests_per_case": 106.441,
- "positive_rate": 0.009000000000000001,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-07-22",
- "total_cases": 111684.0,
- "new_cases": 571.0,
- "new_cases_smoothed": 458.429,
- "total_deaths": 8862.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 9.143,
- "total_cases_per_million": 2959.131,
- "new_cases_per_million": 15.129,
- "new_cases_smoothed_per_million": 12.146,
- "total_deaths_per_million": 234.804,
- "new_deaths_per_million": 0.106,
- "new_deaths_smoothed_per_million": 0.242,
- "new_tests": 43098.0,
- "total_tests": 3616652.0,
- "total_tests_per_thousand": 95.825,
- "new_tests_per_thousand": 1.142,
- "new_tests_smoothed": 44892.0,
- "new_tests_smoothed_per_thousand": 1.189,
- "tests_per_case": 97.926,
- "positive_rate": 0.01,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-07-23",
- "total_cases": 112227.0,
- "new_cases": 543.0,
- "new_cases_smoothed": 487.286,
- "total_deaths": 8870.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 2973.518,
- "new_cases_per_million": 14.387,
- "new_cases_smoothed_per_million": 12.911,
- "total_deaths_per_million": 235.016,
- "new_deaths_per_million": 0.212,
- "new_deaths_smoothed_per_million": 0.227,
- "new_tests": 43126.0,
- "total_tests": 3659778.0,
- "total_tests_per_thousand": 96.968,
- "new_tests_per_thousand": 1.143,
- "new_tests_smoothed": 45423.0,
- "new_tests_smoothed_per_thousand": 1.204,
- "tests_per_case": 93.21600000000001,
- "positive_rate": 0.011000000000000001,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-07-24",
- "total_cases": 112659.0,
- "new_cases": 432.0,
- "new_cases_smoothed": 486.571,
- "total_deaths": 8874.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 6.714,
- "total_cases_per_million": 2984.965,
- "new_cases_per_million": 11.446,
- "new_cases_smoothed_per_million": 12.892,
- "total_deaths_per_million": 235.122,
- "new_deaths_per_million": 0.106,
- "new_deaths_smoothed_per_million": 0.178,
- "new_tests": 37544.0,
- "total_tests": 3697322.0,
- "total_tests_per_thousand": 97.963,
- "new_tests_per_thousand": 0.995,
- "new_tests_smoothed": 44235.0,
- "new_tests_smoothed_per_thousand": 1.172,
- "tests_per_case": 90.912,
- "positive_rate": 0.011000000000000001,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-07-25",
- "total_cases": 113193.0,
- "new_cases": 534.0,
- "new_cases_smoothed": 505.0,
- "total_deaths": 8881.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 6.0,
- "total_cases_per_million": 2999.113,
- "new_cases_per_million": 14.149,
- "new_cases_smoothed_per_million": 13.38,
- "total_deaths_per_million": 235.307,
- "new_deaths_per_million": 0.185,
- "new_deaths_smoothed_per_million": 0.159,
- "new_tests": 20161.0,
- "total_tests": 3717483.0,
- "total_tests_per_thousand": 98.497,
- "new_tests_per_thousand": 0.534,
- "new_tests_smoothed": 39931.0,
- "new_tests_smoothed_per_thousand": 1.058,
- "tests_per_case": 79.071,
- "positive_rate": 0.013000000000000001,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-07-26",
- "total_cases": 113543.0,
- "new_cases": 350.0,
- "new_cases_smoothed": 555.0,
- "total_deaths": 8885.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 3008.387,
- "new_cases_per_million": 9.273,
- "new_cases_smoothed_per_million": 14.705,
- "total_deaths_per_million": 235.413,
- "new_deaths_per_million": 0.106,
- "new_deaths_smoothed_per_million": 0.174,
- "new_tests": 44444.0,
- "total_tests": 3761927.0,
- "total_tests_per_thousand": 99.674,
- "new_tests_per_thousand": 1.178,
- "new_tests_smoothed": 40028.0,
- "new_tests_smoothed_per_thousand": 1.061,
- "tests_per_case": 72.123,
- "positive_rate": 0.013999999999999999,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-07-27",
- "total_cases": 113898.0,
- "new_cases": 355.0,
- "new_cases_smoothed": 508.571,
- "total_deaths": 8890.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.429,
- "total_cases_per_million": 3017.793,
- "new_cases_per_million": 9.406,
- "new_cases_smoothed_per_million": 13.475,
- "total_deaths_per_million": 235.546,
- "new_deaths_per_million": 0.132,
- "new_deaths_smoothed_per_million": 0.144,
- "new_tests": 102003.0,
- "total_tests": 3863930.0,
- "total_tests_per_thousand": 102.377,
- "new_tests_per_thousand": 2.703,
- "new_tests_smoothed": 49066.0,
- "new_tests_smoothed_per_thousand": 1.3,
- "tests_per_case": 96.478,
- "positive_rate": 0.01,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-07-28",
- "total_cases": 114597.0,
- "new_cases": 699.0,
- "new_cases_smoothed": 497.714,
- "total_deaths": 8901.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 6.143,
- "total_cases_per_million": 3036.313,
- "new_cases_per_million": 18.52,
- "new_cases_smoothed_per_million": 13.187,
- "total_deaths_per_million": 235.837,
- "new_deaths_per_million": 0.291,
- "new_deaths_smoothed_per_million": 0.163,
- "new_tests": 35262.0,
- "total_tests": 3899192.0,
- "total_tests_per_thousand": 103.311,
- "new_tests_per_thousand": 0.934,
- "new_tests_smoothed": 46520.0,
- "new_tests_smoothed_per_thousand": 1.233,
- "tests_per_case": 93.46700000000001,
- "positive_rate": 0.011000000000000001,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-07-29",
- "total_cases": 114980.0,
- "new_cases": 383.0,
- "new_cases_smoothed": 470.857,
- "total_deaths": 8912.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 7.143,
- "total_cases_per_million": 3046.461,
- "new_cases_per_million": 10.148,
- "new_cases_smoothed_per_million": 12.476,
- "total_deaths_per_million": 236.129,
- "new_deaths_per_million": 0.291,
- "new_deaths_smoothed_per_million": 0.189,
- "new_tests": 47373.0,
- "total_tests": 3946565.0,
- "total_tests_per_thousand": 104.566,
- "new_tests_per_thousand": 1.255,
- "new_tests_smoothed": 47130.0,
- "new_tests_smoothed_per_thousand": 1.249,
- "tests_per_case": 100.094,
- "positive_rate": 0.01,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-07-30",
- "total_cases": 115456.0,
- "new_cases": 476.0,
- "new_cases_smoothed": 461.286,
- "total_deaths": 8917.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 6.714,
- "total_cases_per_million": 3059.073,
- "new_cases_per_million": 12.612,
- "new_cases_smoothed_per_million": 12.222,
- "total_deaths_per_million": 236.261,
- "new_deaths_per_million": 0.132,
- "new_deaths_smoothed_per_million": 0.178,
- "new_tests": 50060.0,
- "total_tests": 3996625.0,
- "total_tests_per_thousand": 105.893,
- "new_tests_per_thousand": 1.326,
- "new_tests_smoothed": 48121.0,
- "new_tests_smoothed_per_thousand": 1.275,
- "tests_per_case": 104.319,
- "positive_rate": 0.01,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-07-31",
- "total_cases": 115785.0,
- "new_cases": 329.0,
- "new_cases_smoothed": 446.571,
- "total_deaths": 8929.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 7.857,
- "total_cases_per_million": 3067.79,
- "new_cases_per_million": 8.717,
- "new_cases_smoothed_per_million": 11.832,
- "total_deaths_per_million": 236.579,
- "new_deaths_per_million": 0.318,
- "new_deaths_smoothed_per_million": 0.208,
- "new_tests": 53733.0,
- "total_tests": 4050358.0,
- "total_tests_per_thousand": 107.317,
- "new_tests_per_thousand": 1.424,
- "new_tests_smoothed": 50434.0,
- "new_tests_smoothed_per_thousand": 1.336,
- "tests_per_case": 112.936,
- "positive_rate": 0.009000000000000001,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-08-01",
- "total_cases": 116298.0,
- "new_cases": 513.0,
- "new_cases_smoothed": 443.571,
- "total_deaths": 8935.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 7.714,
- "total_cases_per_million": 3081.382,
- "new_cases_per_million": 13.592,
- "new_cases_smoothed_per_million": 11.753,
- "total_deaths_per_million": 236.738,
- "new_deaths_per_million": 0.159,
- "new_deaths_smoothed_per_million": 0.204,
- "new_tests": 48394.0,
- "total_tests": 4098752.0,
- "total_tests_per_thousand": 108.599,
- "new_tests_per_thousand": 1.282,
- "new_tests_smoothed": 54467.0,
- "new_tests_smoothed_per_thousand": 1.443,
- "tests_per_case": 122.792,
- "positive_rate": 0.008,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-08-02",
- "total_cases": 116585.0,
- "new_cases": 287.0,
- "new_cases_smoothed": 434.571,
- "total_deaths": 8941.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 8.0,
- "total_cases_per_million": 3088.986,
- "new_cases_per_million": 7.604,
- "new_cases_smoothed_per_million": 11.514,
- "total_deaths_per_million": 236.897,
- "new_deaths_per_million": 0.159,
- "new_deaths_smoothed_per_million": 0.212,
- "new_tests": 44707.0,
- "total_tests": 4143459.0,
- "total_tests_per_thousand": 109.783,
- "new_tests_per_thousand": 1.185,
- "new_tests_smoothed": 54505.0,
- "new_tests_smoothed_per_thousand": 1.444,
- "tests_per_case": 125.42200000000001,
- "positive_rate": 0.008,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-08-03",
- "total_cases": 116870.0,
- "new_cases": 285.0,
- "new_cases_smoothed": 424.571,
- "total_deaths": 8945.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 7.857,
- "total_cases_per_million": 3096.537,
- "new_cases_per_million": 7.551,
- "new_cases_smoothed_per_million": 11.249,
- "total_deaths_per_million": 237.003,
- "new_deaths_per_million": 0.106,
- "new_deaths_smoothed_per_million": 0.208,
- "new_tests": 34736.0,
- "total_tests": 4178195.0,
- "total_tests_per_thousand": 110.704,
- "new_tests_per_thousand": 0.92,
- "new_tests_smoothed": 44895.0,
- "new_tests_smoothed_per_thousand": 1.19,
- "tests_per_case": 105.742,
- "positive_rate": 0.009000000000000001,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-08-04",
- "total_cases": 117017.0,
- "new_cases": 147.0,
- "new_cases_smoothed": 345.714,
- "total_deaths": 8947.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 3100.432,
- "new_cases_per_million": 3.895,
- "new_cases_smoothed_per_million": 9.16,
- "total_deaths_per_million": 237.056,
- "new_deaths_per_million": 0.053,
- "new_deaths_smoothed_per_million": 0.174,
- "new_tests": 58326.0,
- "total_tests": 4236521.0,
- "total_tests_per_thousand": 112.249,
- "new_tests_per_thousand": 1.545,
- "new_tests_smoothed": 48190.0,
- "new_tests_smoothed_per_thousand": 1.277,
- "tests_per_case": 139.393,
- "positive_rate": 0.006999999999999999,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-08-05",
- "total_cases": 117777.0,
- "new_cases": 760.0,
- "new_cases_smoothed": 399.571,
- "total_deaths": 8958.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 3120.569,
- "new_cases_per_million": 20.137,
- "new_cases_smoothed_per_million": 10.587,
- "total_deaths_per_million": 237.347,
- "new_deaths_per_million": 0.291,
- "new_deaths_smoothed_per_million": 0.174,
- "new_tests_smoothed": 44000.0,
- "new_tests_smoothed_per_thousand": 1.166,
- "tests_per_case": 110.118,
- "positive_rate": 0.009000000000000001,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-08-06",
- "total_cases": 118172.0,
- "new_cases": 395.0,
- "new_cases_smoothed": 388.0,
- "total_deaths": 8962.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 6.429,
- "total_cases_per_million": 3131.035,
- "new_cases_per_million": 10.466,
- "new_cases_smoothed_per_million": 10.28,
- "total_deaths_per_million": 237.453,
- "new_deaths_per_million": 0.106,
- "new_deaths_smoothed_per_million": 0.17,
- "total_tests": 4272606.0,
- "total_tests_per_thousand": 113.205,
- "new_tests_smoothed": 39426.0,
- "new_tests_smoothed_per_thousand": 1.045,
- "tests_per_case": 101.613,
- "positive_rate": 0.01,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-08-07",
- "total_cases": 118546.0,
- "new_cases": 374.0,
- "new_cases_smoothed": 394.429,
- "total_deaths": 8966.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 5.286,
- "total_cases_per_million": 3140.944,
- "new_cases_per_million": 9.909,
- "new_cases_smoothed_per_million": 10.451,
- "total_deaths_per_million": 237.559,
- "new_deaths_per_million": 0.106,
- "new_deaths_smoothed_per_million": 0.14,
- "new_tests": 46566.0,
- "total_tests": 4319172.0,
- "total_tests_per_thousand": 114.439,
- "new_tests_per_thousand": 1.234,
- "new_tests_smoothed": 38402.0,
- "new_tests_smoothed_per_thousand": 1.017,
- "tests_per_case": 97.361,
- "positive_rate": 0.01,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-08-08",
- "total_cases": 118970.0,
- "new_cases": 424.0,
- "new_cases_smoothed": 381.714,
- "total_deaths": 8970.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 3152.178,
- "new_cases_per_million": 11.234,
- "new_cases_smoothed_per_million": 10.114,
- "total_deaths_per_million": 237.665,
- "new_deaths_per_million": 0.106,
- "new_deaths_smoothed_per_million": 0.132,
- "new_tests": 48036.0,
- "total_tests": 4367208.0,
- "total_tests_per_thousand": 115.712,
- "new_tests_per_thousand": 1.273,
- "new_tests_smoothed": 38351.0,
- "new_tests_smoothed_per_thousand": 1.016,
- "tests_per_case": 100.47,
- "positive_rate": 0.01,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-08-09",
- "total_cases": 119206.0,
- "new_cases": 236.0,
- "new_cases_smoothed": 374.429,
- "total_deaths": 8976.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 3158.431,
- "new_cases_per_million": 6.253,
- "new_cases_smoothed_per_million": 9.921,
- "total_deaths_per_million": 237.824,
- "new_deaths_per_million": 0.159,
- "new_deaths_smoothed_per_million": 0.132,
- "new_tests": 36830.0,
- "total_tests": 4404038.0,
- "total_tests_per_thousand": 116.688,
- "new_tests_per_thousand": 0.976,
- "new_tests_smoothed": 37226.0,
- "new_tests_smoothed_per_thousand": 0.986,
- "tests_per_case": 99.421,
- "positive_rate": 0.01,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-08-10",
- "total_cases": 119451.0,
- "new_cases": 245.0,
- "new_cases_smoothed": 368.714,
- "total_deaths": 8981.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 3164.922,
- "new_cases_per_million": 6.491,
- "new_cases_smoothed_per_million": 9.769,
- "total_deaths_per_million": 237.957,
- "new_deaths_per_million": 0.132,
- "new_deaths_smoothed_per_million": 0.136,
- "new_tests": 43772.0,
- "total_tests": 4447810.0,
- "total_tests_per_thousand": 117.847,
- "new_tests_per_thousand": 1.16,
- "new_tests_smoothed": 38516.0,
- "new_tests_smoothed_per_thousand": 1.021,
- "tests_per_case": 104.46,
- "positive_rate": 0.01,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-08-11",
- "total_cases": 120117.0,
- "new_cases": 666.0,
- "new_cases_smoothed": 442.857,
- "total_deaths": 8987.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.714,
- "total_cases_per_million": 3182.569,
- "new_cases_per_million": 17.646,
- "new_cases_smoothed_per_million": 11.734,
- "total_deaths_per_million": 238.116,
- "new_deaths_per_million": 0.159,
- "new_deaths_smoothed_per_million": 0.151,
- "new_tests": 57408.0,
- "total_tests": 4505218.0,
- "total_tests_per_thousand": 119.368,
- "new_tests_per_thousand": 1.521,
- "new_tests_smoothed": 38385.0,
- "new_tests_smoothed_per_thousand": 1.017,
- "tests_per_case": 86.676,
- "positive_rate": 0.012,
- "tests_units": "people tested",
- "stringency_index": 67.13
- },
- {
- "date": "2020-08-12",
- "total_cases": 120406.0,
- "new_cases": 289.0,
- "new_cases_smoothed": 375.571,
- "total_deaths": 8991.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 3190.226,
- "new_cases_per_million": 7.657,
- "new_cases_smoothed_per_million": 9.951,
- "total_deaths_per_million": 238.222,
- "new_deaths_per_million": 0.106,
- "new_deaths_smoothed_per_million": 0.125,
- "new_tests": 36529.0,
- "total_tests": 4541747.0,
- "total_tests_per_thousand": 120.336,
- "new_tests_per_thousand": 0.968,
- "new_tests_smoothed": 41026.0,
- "new_tests_smoothed_per_thousand": 1.087,
- "tests_per_case": 109.236,
- "positive_rate": 0.009000000000000001,
- "tests_units": "people tested",
- "stringency_index": 64.35
- },
- {
- "date": "2020-08-13",
- "total_cases": 120829.0,
- "new_cases": 423.0,
- "new_cases_smoothed": 379.571,
- "total_deaths": 9006.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 6.286,
- "total_cases_per_million": 3201.433,
- "new_cases_per_million": 11.208,
- "new_cases_smoothed_per_million": 10.057,
- "total_deaths_per_million": 238.619,
- "new_deaths_per_million": 0.397,
- "new_deaths_smoothed_per_million": 0.167,
- "new_tests": 39336.0,
- "total_tests": 4581083.0,
- "total_tests_per_thousand": 121.378,
- "new_tests_per_thousand": 1.042,
- "new_tests_smoothed": 44068.0,
- "new_tests_smoothed_per_thousand": 1.168,
- "tests_per_case": 116.09899999999999,
- "positive_rate": 0.009000000000000001,
- "tests_units": "people tested",
- "stringency_index": 64.35
- },
- {
- "date": "2020-08-14",
- "total_cases": 121234.0,
- "new_cases": 405.0,
- "new_cases_smoothed": 384.0,
- "total_deaths": 9015.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 7.0,
- "total_cases_per_million": 3212.164,
- "new_cases_per_million": 10.731,
- "new_cases_smoothed_per_million": 10.174,
- "total_deaths_per_million": 238.858,
- "new_deaths_per_million": 0.238,
- "new_deaths_smoothed_per_million": 0.185,
- "new_tests": 54022.0,
- "total_tests": 4635105.0,
- "total_tests_per_thousand": 122.81,
- "new_tests_per_thousand": 1.431,
- "new_tests_smoothed": 45133.0,
- "new_tests_smoothed_per_thousand": 1.196,
- "tests_per_case": 117.53399999999999,
- "positive_rate": 0.009000000000000001,
- "tests_units": "people tested",
- "stringency_index": 64.35
- },
- {
- "date": "2020-08-15",
- "total_cases": 121652.0,
- "new_cases": 418.0,
- "new_cases_smoothed": 383.143,
- "total_deaths": 9020.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 7.143,
- "total_cases_per_million": 3223.239,
- "new_cases_per_million": 11.075,
- "new_cases_smoothed_per_million": 10.152,
- "total_deaths_per_million": 238.99,
- "new_deaths_per_million": 0.132,
- "new_deaths_smoothed_per_million": 0.189,
- "new_tests": 50558.0,
- "total_tests": 4685663.0,
- "total_tests_per_thousand": 124.149,
- "new_tests_per_thousand": 1.34,
- "new_tests_smoothed": 45494.0,
- "new_tests_smoothed_per_thousand": 1.205,
- "tests_per_case": 118.73899999999999,
- "positive_rate": 0.008,
- "tests_units": "people tested",
- "stringency_index": 64.35
- },
- {
- "date": "2020-08-16",
- "total_cases": 121889.0,
- "new_cases": 237.0,
- "new_cases_smoothed": 383.286,
- "total_deaths": 9024.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 6.857,
- "total_cases_per_million": 3229.519,
- "new_cases_per_million": 6.279,
- "new_cases_smoothed_per_million": 10.155,
- "total_deaths_per_million": 239.096,
- "new_deaths_per_million": 0.106,
- "new_deaths_smoothed_per_million": 0.182,
- "new_tests": 55483.0,
- "total_tests": 4741146.0,
- "total_tests_per_thousand": 125.619,
- "new_tests_per_thousand": 1.47,
- "new_tests_smoothed": 48158.0,
- "new_tests_smoothed_per_thousand": 1.276,
- "tests_per_case": 125.645,
- "positive_rate": 0.008,
- "tests_units": "people tested",
- "stringency_index": 64.35
- },
- {
- "date": "2020-08-17",
- "total_cases": 122087.0,
- "new_cases": 198.0,
- "new_cases_smoothed": 376.571,
- "total_deaths": 9026.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 6.429,
- "total_cases_per_million": 3234.765,
- "new_cases_per_million": 5.246,
- "new_cases_smoothed_per_million": 9.977,
- "total_deaths_per_million": 239.149,
- "new_deaths_per_million": 0.053,
- "new_deaths_smoothed_per_million": 0.17,
- "new_tests": 37214.0,
- "total_tests": 4778360.0,
- "total_tests_per_thousand": 126.605,
- "new_tests_per_thousand": 0.986,
- "new_tests_smoothed": 47221.0,
- "new_tests_smoothed_per_thousand": 1.251,
- "tests_per_case": 125.397,
- "positive_rate": 0.008,
- "tests_units": "people tested",
- "stringency_index": 64.35
- },
- {
- "date": "2020-08-18",
- "total_cases": 122872.0,
- "new_cases": 785.0,
- "new_cases_smoothed": 393.571,
- "total_deaths": 9032.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 6.429,
- "total_cases_per_million": 3255.564,
- "new_cases_per_million": 20.799,
- "new_cases_smoothed_per_million": 10.428,
- "total_deaths_per_million": 239.308,
- "new_deaths_per_million": 0.159,
- "new_deaths_smoothed_per_million": 0.17,
- "new_tests": 61683.0,
- "total_tests": 4840043.0,
- "total_tests_per_thousand": 128.24,
- "new_tests_per_thousand": 1.634,
- "new_tests_smoothed": 47832.0,
- "new_tests_smoothed_per_thousand": 1.267,
- "tests_per_case": 121.53299999999999,
- "positive_rate": 0.008,
- "tests_units": "people tested",
- "stringency_index": 64.35
- },
- {
- "date": "2020-08-19",
- "total_cases": 123154.0,
- "new_cases": 282.0,
- "new_cases_smoothed": 392.571,
- "total_deaths": 9045.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 7.714,
- "total_cases_per_million": 3263.036,
- "new_cases_per_million": 7.472,
- "new_cases_smoothed_per_million": 10.401,
- "total_deaths_per_million": 239.652,
- "new_deaths_per_million": 0.344,
- "new_deaths_smoothed_per_million": 0.204,
- "new_tests": 40129.0,
- "total_tests": 4880172.0,
- "total_tests_per_thousand": 129.303,
- "new_tests_per_thousand": 1.063,
- "new_tests_smoothed": 48346.0,
- "new_tests_smoothed_per_thousand": 1.281,
- "tests_per_case": 123.152,
- "positive_rate": 0.008,
- "tests_units": "people tested",
- "stringency_index": 64.35
- },
- {
- "date": "2020-08-20",
- "total_cases": 123490.0,
- "new_cases": 336.0,
- "new_cases_smoothed": 380.143,
- "total_deaths": 9049.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 6.143,
- "total_cases_per_million": 3271.938,
- "new_cases_per_million": 8.903,
- "new_cases_smoothed_per_million": 10.072,
- "total_deaths_per_million": 239.758,
- "new_deaths_per_million": 0.106,
- "new_deaths_smoothed_per_million": 0.163,
- "new_tests": 45274.0,
- "total_tests": 4925446.0,
- "total_tests_per_thousand": 130.503,
- "new_tests_per_thousand": 1.2,
- "new_tests_smoothed": 49195.0,
- "new_tests_smoothed_per_thousand": 1.303,
- "tests_per_case": 129.412,
- "positive_rate": 0.008,
- "tests_units": "people tested",
- "stringency_index": 64.35
- },
- {
- "date": "2020-08-21",
- "total_cases": 123873.0,
- "new_cases": 383.0,
- "new_cases_smoothed": 377.0,
- "total_deaths": 9054.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 3282.086,
- "new_cases_per_million": 10.148,
- "new_cases_smoothed_per_million": 9.989,
- "total_deaths_per_million": 239.891,
- "new_deaths_per_million": 0.132,
- "new_deaths_smoothed_per_million": 0.148,
- "new_tests": 48769.0,
- "total_tests": 4974215.0,
- "total_tests_per_thousand": 131.795,
- "new_tests_per_thousand": 1.292,
- "new_tests_smoothed": 48444.0,
- "new_tests_smoothed_per_thousand": 1.284,
- "tests_per_case": 128.499,
- "positive_rate": 0.008,
- "tests_units": "people tested",
- "stringency_index": 64.35
- },
- {
- "date": "2020-08-22",
- "total_cases": 124372.0,
- "new_cases": 499.0,
- "new_cases_smoothed": 388.571,
- "total_deaths": 9064.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 6.286,
- "total_cases_per_million": 3295.307,
- "new_cases_per_million": 13.221,
- "new_cases_smoothed_per_million": 10.295,
- "total_deaths_per_million": 240.156,
- "new_deaths_per_million": 0.265,
- "new_deaths_smoothed_per_million": 0.167,
- "new_tests": 59844.0,
- "total_tests": 5034059.0,
- "total_tests_per_thousand": 133.38,
- "new_tests_per_thousand": 1.586,
- "new_tests_smoothed": 49771.0,
- "new_tests_smoothed_per_thousand": 1.319,
- "tests_per_case": 128.08700000000002,
- "positive_rate": 0.008,
- "tests_units": "people tested",
- "stringency_index": 64.35
- },
- {
- "date": "2020-08-23",
- "total_cases": 124629.0,
- "new_cases": 257.0,
- "new_cases_smoothed": 391.429,
- "total_deaths": 9071.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 6.714,
- "total_cases_per_million": 3302.117,
- "new_cases_per_million": 6.809,
- "new_cases_smoothed_per_million": 10.371,
- "total_deaths_per_million": 240.341,
- "new_deaths_per_million": 0.185,
- "new_deaths_smoothed_per_million": 0.178,
- "new_tests": 42675.0,
- "total_tests": 5076734.0,
- "total_tests_per_thousand": 134.511,
- "new_tests_per_thousand": 1.131,
- "new_tests_smoothed": 47941.0,
- "new_tests_smoothed_per_thousand": 1.27,
- "tests_per_case": 122.477,
- "positive_rate": 0.008,
- "tests_units": "people tested",
- "stringency_index": 64.35
- },
- {
- "date": "2020-08-24",
- "total_cases": 124896.0,
- "new_cases": 267.0,
- "new_cases_smoothed": 401.286,
- "total_deaths": 9073.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 6.714,
- "total_cases_per_million": 3309.191,
- "new_cases_per_million": 7.074,
- "new_cases_smoothed_per_million": 10.632,
- "total_deaths_per_million": 240.394,
- "new_deaths_per_million": 0.053,
- "new_deaths_smoothed_per_million": 0.178,
- "new_tests": 38756.0,
- "total_tests": 5115490.0,
- "total_tests_per_thousand": 135.538,
- "new_tests_per_thousand": 1.027,
- "new_tests_smoothed": 48161.0,
- "new_tests_smoothed_per_thousand": 1.276,
- "tests_per_case": 120.01700000000001,
- "positive_rate": 0.008,
- "tests_units": "people tested",
- "stringency_index": 64.35
- },
- {
- "date": "2020-08-25",
- "total_cases": 125647.0,
- "new_cases": 751.0,
- "new_cases_smoothed": 396.429,
- "total_deaths": 9083.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 7.286,
- "total_cases_per_million": 3329.089,
- "new_cases_per_million": 19.898,
- "new_cases_smoothed_per_million": 10.504,
- "total_deaths_per_million": 240.659,
- "new_deaths_per_million": 0.265,
- "new_deaths_smoothed_per_million": 0.193,
- "new_tests": 53676.0,
- "total_tests": 5169166.0,
- "total_tests_per_thousand": 136.96,
- "new_tests_per_thousand": 1.422,
- "new_tests_smoothed": 47018.0,
- "new_tests_smoothed_per_thousand": 1.246,
- "tests_per_case": 118.604,
- "positive_rate": 0.008,
- "tests_units": "people tested",
- "stringency_index": 61.57
- },
- {
- "date": "2020-08-26",
- "total_cases": 125969.0,
- "new_cases": 322.0,
- "new_cases_smoothed": 402.143,
- "total_deaths": 9090.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 6.429,
- "total_cases_per_million": 3337.621,
- "new_cases_per_million": 8.532,
- "new_cases_smoothed_per_million": 10.655,
- "total_deaths_per_million": 240.845,
- "new_deaths_per_million": 0.185,
- "new_deaths_smoothed_per_million": 0.17,
- "new_tests": 35844.0,
- "total_tests": 5205010.0,
- "total_tests_per_thousand": 137.91,
- "new_tests_per_thousand": 0.95,
- "new_tests_smoothed": 46405.0,
- "new_tests_smoothed_per_thousand": 1.23,
- "tests_per_case": 115.39399999999999,
- "positive_rate": 0.009000000000000001,
- "tests_units": "people tested",
- "stringency_index": 61.57
- },
- {
- "date": "2020-08-27",
- "total_cases": 126417.0,
- "new_cases": 448.0,
- "new_cases_smoothed": 418.143,
- "total_deaths": 9094.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 6.429,
- "total_cases_per_million": 3349.491,
- "new_cases_per_million": 11.87,
- "new_cases_smoothed_per_million": 11.079,
- "total_deaths_per_million": 240.951,
- "new_deaths_per_million": 0.106,
- "new_deaths_smoothed_per_million": 0.17,
- "new_tests": 41255.0,
- "total_tests": 5246265.0,
- "total_tests_per_thousand": 139.003,
- "new_tests_per_thousand": 1.093,
- "new_tests_smoothed": 45831.0,
- "new_tests_smoothed_per_thousand": 1.214,
- "tests_per_case": 109.60600000000001,
- "positive_rate": 0.009000000000000001,
- "tests_units": "people tested",
- "stringency_index": 61.57
- },
- {
- "date": "2020-08-28",
- "total_cases": 126848.0,
- "new_cases": 431.0,
- "new_cases_smoothed": 425.0,
- "total_deaths": 9102.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 6.857,
- "total_cases_per_million": 3360.91,
- "new_cases_per_million": 11.42,
- "new_cases_smoothed_per_million": 11.261,
- "total_deaths_per_million": 241.163,
- "new_deaths_per_million": 0.212,
- "new_deaths_smoothed_per_million": 0.182,
- "new_tests": 47671.0,
- "total_tests": 5293936.0,
- "total_tests_per_thousand": 140.266,
- "new_tests_per_thousand": 1.263,
- "new_tests_smoothed": 45674.0,
- "new_tests_smoothed_per_thousand": 1.21,
- "tests_per_case": 107.46799999999999,
- "positive_rate": 0.009000000000000001,
- "tests_units": "people tested",
- "stringency_index": 64.35
- },
- {
- "date": "2020-08-29",
- "total_cases": 127358.0,
- "new_cases": 510.0,
- "new_cases_smoothed": 426.571,
- "total_deaths": 9108.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 6.286,
- "total_cases_per_million": 3374.423,
- "new_cases_per_million": 13.513,
- "new_cases_smoothed_per_million": 11.302,
- "total_deaths_per_million": 241.322,
- "new_deaths_per_million": 0.159,
- "new_deaths_smoothed_per_million": 0.167,
- "new_tests": 61328.0,
- "total_tests": 5355264.0,
- "total_tests_per_thousand": 141.891,
- "new_tests_per_thousand": 1.625,
- "new_tests_smoothed": 45886.0,
- "new_tests_smoothed_per_thousand": 1.216,
- "tests_per_case": 107.569,
- "positive_rate": 0.009000000000000001,
- "tests_units": "people tested",
- "stringency_index": 64.35
- },
- {
- "date": "2020-08-30",
- "total_cases": 127673.0,
- "new_cases": 315.0,
- "new_cases_smoothed": 434.857,
- "total_deaths": 9113.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 6.0,
- "total_cases_per_million": 3382.769,
- "new_cases_per_million": 8.346,
- "new_cases_smoothed_per_million": 11.522,
- "total_deaths_per_million": 241.454,
- "new_deaths_per_million": 0.132,
- "new_deaths_smoothed_per_million": 0.159,
- "new_tests": 85107.0,
- "total_tests": 5440371.0,
- "total_tests_per_thousand": 144.146,
- "new_tests_per_thousand": 2.255,
- "new_tests_smoothed": 51948.0,
- "new_tests_smoothed_per_thousand": 1.376,
- "tests_per_case": 119.46,
- "positive_rate": 0.008,
- "tests_units": "people tested",
- "stringency_index": 64.35
- },
- {
- "date": "2020-08-31",
- "total_cases": 127940.0,
- "new_cases": 267.0,
- "new_cases_smoothed": 434.857,
- "total_deaths": 9117.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 6.286,
- "total_cases_per_million": 3389.843,
- "new_cases_per_million": 7.074,
- "new_cases_smoothed_per_million": 11.522,
- "total_deaths_per_million": 241.56,
- "new_deaths_per_million": 0.106,
- "new_deaths_smoothed_per_million": 0.167,
- "new_tests_smoothed": 50979.0,
- "new_tests_smoothed_per_thousand": 1.351,
- "tests_per_case": 117.23200000000001,
- "positive_rate": 0.009000000000000001,
- "tests_units": "people tested",
- "stringency_index": 64.35
- },
- {
- "date": "2020-09-01",
- "total_cases": 128948.0,
- "new_cases": 1008.0,
- "new_cases_smoothed": 471.571,
- "total_deaths": 9126.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 6.143,
- "total_cases_per_million": 3416.551,
- "new_cases_per_million": 26.708,
- "new_cases_smoothed_per_million": 12.495,
- "total_deaths_per_million": 241.799,
- "new_deaths_per_million": 0.238,
- "new_deaths_smoothed_per_million": 0.163,
- "total_tests": 5504316.0,
- "total_tests_per_thousand": 145.84,
- "new_tests_smoothed": 47879.0,
- "new_tests_smoothed_per_thousand": 1.269,
- "tests_per_case": 101.531,
- "positive_rate": 0.01,
- "tests_units": "people tested",
- "stringency_index": 64.35
- },
- {
- "date": "2020-09-02",
- "total_cases": 129425.0,
- "new_cases": 477.0,
- "new_cases_smoothed": 493.714,
- "total_deaths": 9132.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 6.0,
- "total_cases_per_million": 3429.189,
- "new_cases_per_million": 12.638,
- "new_cases_smoothed_per_million": 13.081,
- "total_deaths_per_million": 241.958,
- "new_deaths_per_million": 0.159,
- "new_deaths_smoothed_per_million": 0.159,
- "new_tests": 41157.0,
- "total_tests": 5545473.0,
- "total_tests_per_thousand": 146.93,
- "new_tests_per_thousand": 1.09,
- "new_tests_smoothed": 48638.0,
- "new_tests_smoothed_per_thousand": 1.289,
- "tests_per_case": 98.514,
- "positive_rate": 0.01,
- "tests_units": "people tested",
- "stringency_index": 64.35
- },
- {
- "date": "2020-09-03",
- "total_cases": 129923.0,
- "new_cases": 498.0,
- "new_cases_smoothed": 500.857,
- "total_deaths": 9135.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 5.857,
- "total_cases_per_million": 3442.384,
- "new_cases_per_million": 13.195,
- "new_cases_smoothed_per_million": 13.27,
- "total_deaths_per_million": 242.037,
- "new_deaths_per_million": 0.079,
- "new_deaths_smoothed_per_million": 0.155,
- "new_tests": 44595.0,
- "total_tests": 5590068.0,
- "total_tests_per_thousand": 148.112,
- "new_tests_per_thousand": 1.182,
- "new_tests_smoothed": 49115.0,
- "new_tests_smoothed_per_thousand": 1.301,
- "tests_per_case": 98.06200000000001,
- "positive_rate": 0.01,
- "tests_units": "people tested",
- "stringency_index": 64.35
- },
- {
- "date": "2020-09-04",
- "total_cases": 130493.0,
- "new_cases": 570.0,
- "new_cases_smoothed": 520.714,
- "total_deaths": 9141.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 3457.487,
- "new_cases_per_million": 15.102,
- "new_cases_smoothed_per_million": 13.797,
- "total_deaths_per_million": 242.196,
- "new_deaths_per_million": 0.159,
- "new_deaths_smoothed_per_million": 0.148,
- "new_tests": 48635.0,
- "total_tests": 5638703.0,
- "total_tests_per_thousand": 149.401,
- "new_tests_per_thousand": 1.289,
- "new_tests_smoothed": 49252.0,
- "new_tests_smoothed_per_thousand": 1.305,
- "tests_per_case": 94.585,
- "positive_rate": 0.011000000000000001,
- "tests_units": "people tested",
- "stringency_index": 64.35
- },
- {
- "date": "2020-09-05",
- "total_cases": 131124.0,
- "new_cases": 631.0,
- "new_cases_smoothed": 538.0,
- "total_deaths": 9141.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 3474.205,
- "new_cases_per_million": 16.719,
- "new_cases_smoothed_per_million": 14.255,
- "total_deaths_per_million": 242.196,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.125,
- "new_tests": 58677.0,
- "total_tests": 5697380.0,
- "total_tests_per_thousand": 150.955,
- "new_tests_per_thousand": 1.555,
- "new_tests_smoothed": 48874.0,
- "new_tests_smoothed_per_thousand": 1.295,
- "tests_per_case": 90.844,
- "positive_rate": 0.011000000000000001,
- "tests_units": "people tested",
- "stringency_index": 64.35
- },
- {
- "date": "2020-09-06",
- "total_cases": 131495.0,
- "new_cases": 371.0,
- "new_cases_smoothed": 546.0,
- "total_deaths": 9143.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 3484.035,
- "new_cases_per_million": 9.83,
- "new_cases_smoothed_per_million": 14.467,
- "total_deaths_per_million": 242.249,
- "new_deaths_per_million": 0.053,
- "new_deaths_smoothed_per_million": 0.114,
- "new_tests": 83647.0,
- "total_tests": 5781027.0,
- "total_tests_per_thousand": 153.172,
- "new_tests_per_thousand": 2.216,
- "new_tests_smoothed": 48665.0,
- "new_tests_smoothed_per_thousand": 1.289,
- "tests_per_case": 89.13,
- "positive_rate": 0.011000000000000001,
- "tests_units": "people tested",
- "stringency_index": 64.35
- },
- {
- "date": "2020-09-07",
- "total_cases": 131895.0,
- "new_cases": 400.0,
- "new_cases_smoothed": 565.0,
- "total_deaths": 9145.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 3494.633,
- "new_cases_per_million": 10.598,
- "new_cases_smoothed_per_million": 14.97,
- "total_deaths_per_million": 242.302,
- "new_deaths_per_million": 0.053,
- "new_deaths_smoothed_per_million": 0.106,
- "new_tests_smoothed": 48444.0,
- "new_tests_smoothed_per_thousand": 1.284,
- "tests_per_case": 85.742,
- "positive_rate": 0.012,
- "tests_units": "people tested",
- "stringency_index": 64.35
- },
- {
- "date": "2020-09-08",
- "total_cases": 132142.0,
- "new_cases": 247.0,
- "new_cases_smoothed": 456.286,
- "total_deaths": 9146.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 3501.178,
- "new_cases_per_million": 6.544,
- "new_cases_smoothed_per_million": 12.09,
- "total_deaths_per_million": 242.328,
- "new_deaths_per_million": 0.026,
- "new_deaths_smoothed_per_million": 0.076,
- "total_tests": 5841880.0,
- "total_tests_per_thousand": 154.784,
- "new_tests_smoothed": 48223.0,
- "new_tests_smoothed_per_thousand": 1.278,
- "tests_per_case": 105.686,
- "positive_rate": 0.009000000000000001,
- "tests_units": "people tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-09-09",
- "total_cases": 133748.0,
- "new_cases": 1606.0,
- "new_cases_smoothed": 617.571,
- "total_deaths": 9153.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 3543.73,
- "new_cases_per_million": 42.552,
- "new_cases_smoothed_per_million": 16.363,
- "total_deaths_per_million": 242.514,
- "new_deaths_per_million": 0.185,
- "new_deaths_smoothed_per_million": 0.079,
- "new_tests": 49241.0,
- "total_tests": 5891121.0,
- "total_tests_per_thousand": 156.089,
- "new_tests_per_thousand": 1.305,
- "new_tests_smoothed": 49378.0,
- "new_tests_smoothed_per_thousand": 1.308,
- "tests_per_case": 79.955,
- "positive_rate": 0.013000000000000001,
- "tests_units": "people tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-09-10",
- "total_cases": 134294.0,
- "new_cases": 546.0,
- "new_cases_smoothed": 624.429,
- "total_deaths": 9155.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 3558.196,
- "new_cases_per_million": 14.467,
- "new_cases_smoothed_per_million": 16.545,
- "total_deaths_per_million": 242.567,
- "new_deaths_per_million": 0.053,
- "new_deaths_smoothed_per_million": 0.076,
- "new_tests": 38727.0,
- "total_tests": 5929848.0,
- "total_tests_per_thousand": 157.115,
- "new_tests_per_thousand": 1.026,
- "new_tests_smoothed": 48540.0,
- "new_tests_smoothed_per_thousand": 1.286,
- "tests_per_case": 77.735,
- "positive_rate": 0.013000000000000001,
- "tests_units": "people tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-09-11",
- "total_cases": 134924.0,
- "new_cases": 630.0,
- "new_cases_smoothed": 633.0,
- "total_deaths": 9163.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 3574.888,
- "new_cases_per_million": 16.692,
- "new_cases_smoothed_per_million": 16.772,
- "total_deaths_per_million": 242.779,
- "new_deaths_per_million": 0.212,
- "new_deaths_smoothed_per_million": 0.083,
- "new_tests": 49718.0,
- "total_tests": 5979566.0,
- "total_tests_per_thousand": 158.432,
- "new_tests_per_thousand": 1.317,
- "new_tests_smoothed": 48695.0,
- "new_tests_smoothed_per_thousand": 1.29,
- "tests_per_case": 76.92699999999999,
- "positive_rate": 0.013000000000000001,
- "tests_units": "people tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-09-12",
- "total_cases": 135626.0,
- "new_cases": 702.0,
- "new_cases_smoothed": 643.143,
- "total_deaths": 9163.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 3593.488,
- "new_cases_per_million": 18.6,
- "new_cases_smoothed_per_million": 17.04,
- "total_deaths_per_million": 242.779,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.083,
- "new_tests": 89686.0,
- "total_tests": 6069252.0,
- "total_tests_per_thousand": 160.808,
- "new_tests_per_thousand": 2.376,
- "new_tests_smoothed": 53125.0,
- "new_tests_smoothed_per_thousand": 1.408,
- "tests_per_case": 82.602,
- "positive_rate": 0.012,
- "tests_units": "people tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-09-13",
- "total_cases": 136141.0,
- "new_cases": 515.0,
- "new_cases_smoothed": 663.714,
- "total_deaths": 9170.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 3607.134,
- "new_cases_per_million": 13.645,
- "new_cases_smoothed_per_million": 17.585,
- "total_deaths_per_million": 242.964,
- "new_deaths_per_million": 0.185,
- "new_deaths_smoothed_per_million": 0.102,
- "new_tests_smoothed": 47262.0,
- "new_tests_smoothed_per_thousand": 1.252,
- "tests_per_case": 71.208,
- "positive_rate": 0.013999999999999999,
- "tests_units": "people tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-09-14",
- "total_cases": 136659.0,
- "new_cases": 518.0,
- "new_cases_smoothed": 680.571,
- "total_deaths": 9171.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 3620.858,
- "new_cases_per_million": 13.725,
- "new_cases_smoothed_per_million": 18.032,
- "total_deaths_per_million": 242.991,
- "new_deaths_per_million": 0.026,
- "new_deaths_smoothed_per_million": 0.098,
- "total_tests": 6154468.0,
- "total_tests_per_thousand": 163.066,
- "new_tests_smoothed": 49002.0,
- "new_tests_smoothed_per_thousand": 1.298,
- "tests_per_case": 72.001,
- "positive_rate": 0.013999999999999999,
- "tests_units": "people tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-09-15",
- "total_cases": 138010.0,
- "new_cases": 1351.0,
- "new_cases_smoothed": 838.286,
- "total_deaths": 9179.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 3656.654,
- "new_cases_per_million": 35.796,
- "new_cases_smoothed_per_million": 22.211,
- "total_deaths_per_million": 243.203,
- "new_deaths_per_million": 0.212,
- "new_deaths_smoothed_per_million": 0.125,
- "new_tests": 80997.0,
- "total_tests": 6235465.0,
- "total_tests_per_thousand": 165.212,
- "new_tests_per_thousand": 2.146,
- "new_tests_smoothed": 56226.0,
- "new_tests_smoothed_per_thousand": 1.49,
- "tests_per_case": 67.07300000000001,
- "positive_rate": 0.015,
- "tests_units": "people tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-09-16",
- "total_cases": 138803.0,
- "new_cases": 793.0,
- "new_cases_smoothed": 722.143,
- "total_deaths": 9188.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 3677.665,
- "new_cases_per_million": 21.011,
- "new_cases_smoothed_per_million": 19.134,
- "total_deaths_per_million": 243.441,
- "new_deaths_per_million": 0.238,
- "new_deaths_smoothed_per_million": 0.132,
- "new_tests": 56695.0,
- "total_tests": 6292160.0,
- "total_tests_per_thousand": 166.714,
- "new_tests_per_thousand": 1.502,
- "new_tests_smoothed": 57291.0,
- "new_tests_smoothed_per_thousand": 1.518,
- "tests_per_case": 79.335,
- "positive_rate": 0.013000000000000001,
- "tests_units": "people tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-09-17",
- "total_cases": 139747.0,
- "new_cases": 944.0,
- "new_cases_smoothed": 779.0,
- "total_deaths": 9193.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.429,
- "total_cases_per_million": 3702.677,
- "new_cases_per_million": 25.012,
- "new_cases_smoothed_per_million": 20.64,
- "total_deaths_per_million": 243.574,
- "new_deaths_per_million": 0.132,
- "new_deaths_smoothed_per_million": 0.144,
- "new_tests": 62421.0,
- "total_tests": 6354581.0,
- "total_tests_per_thousand": 168.368,
- "new_tests_per_thousand": 1.654,
- "new_tests_smoothed": 60676.0,
- "new_tests_smoothed_per_thousand": 1.608,
- "tests_per_case": 77.89,
- "positive_rate": 0.013000000000000001,
- "tests_units": "people tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-09-18",
- "total_cases": 140867.0,
- "new_cases": 1120.0,
- "new_cases_smoothed": 849.0,
- "total_deaths": 9200.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 5.286,
- "total_cases_per_million": 3732.352,
- "new_cases_per_million": 29.675,
- "new_cases_smoothed_per_million": 22.495,
- "total_deaths_per_million": 243.759,
- "new_deaths_per_million": 0.185,
- "new_deaths_smoothed_per_million": 0.14,
- "new_tests": 67482.0,
- "total_tests": 6422063.0,
- "total_tests_per_thousand": 170.156,
- "new_tests_per_thousand": 1.788,
- "new_tests_smoothed": 63214.0,
- "new_tests_smoothed_per_thousand": 1.675,
- "tests_per_case": 74.457,
- "positive_rate": 0.013000000000000001,
- "tests_units": "people tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-09-19",
- "total_cases": 141911.0,
- "new_cases": 1044.0,
- "new_cases_smoothed": 897.857,
- "total_deaths": 9205.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 6.0,
- "total_cases_per_million": 3760.013,
- "new_cases_per_million": 27.661,
- "new_cases_smoothed_per_million": 23.789,
- "total_deaths_per_million": 243.892,
- "new_deaths_per_million": 0.132,
- "new_deaths_smoothed_per_million": 0.159,
- "new_tests": 132084.0,
- "total_tests": 6554147.0,
- "total_tests_per_thousand": 173.656,
- "new_tests_per_thousand": 3.5,
- "new_tests_smoothed": 69271.0,
- "new_tests_smoothed_per_thousand": 1.835,
- "tests_per_case": 77.15100000000001,
- "positive_rate": 0.013000000000000001,
- "tests_units": "people tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-09-20",
- "total_cases": 142774.0,
- "new_cases": 863.0,
- "new_cases_smoothed": 947.571,
- "total_deaths": 9211.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.857,
- "total_cases_per_million": 3782.879,
- "new_cases_per_million": 22.866,
- "new_cases_smoothed_per_million": 25.106,
- "total_deaths_per_million": 244.051,
- "new_deaths_per_million": 0.159,
- "new_deaths_smoothed_per_million": 0.155,
- "new_tests_smoothed": 67779.0,
- "new_tests_smoothed_per_thousand": 1.796,
- "tests_per_case": 71.529,
- "positive_rate": 0.013999999999999999,
- "tests_units": "people tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-09-21",
- "total_cases": 143649.0,
- "new_cases": 875.0,
- "new_cases_smoothed": 998.571,
- "total_deaths": 9217.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 3806.062,
- "new_cases_per_million": 23.184,
- "new_cases_smoothed_per_million": 26.458,
- "total_deaths_per_million": 244.21,
- "new_deaths_per_million": 0.159,
- "new_deaths_smoothed_per_million": 0.174,
- "total_tests": 6618481.0,
- "total_tests_per_thousand": 175.36,
- "new_tests_smoothed": 66288.0,
- "new_tests_smoothed_per_thousand": 1.756,
- "tests_per_case": 66.383,
- "positive_rate": 0.015,
- "tests_units": "people tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-09-22",
- "total_cases": 145415.0,
- "new_cases": 1766.0,
- "new_cases_smoothed": 1057.857,
- "total_deaths": 9228.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 7.0,
- "total_cases_per_million": 3852.853,
- "new_cases_per_million": 46.791,
- "new_cases_smoothed_per_million": 28.029,
- "total_deaths_per_million": 244.501,
- "new_deaths_per_million": 0.291,
- "new_deaths_smoothed_per_million": 0.185,
- "new_tests": 80063.0,
- "total_tests": 6698544.0,
- "total_tests_per_thousand": 177.482,
- "new_tests_per_thousand": 2.121,
- "new_tests_smoothed": 66154.0,
- "new_tests_smoothed_per_thousand": 1.753,
- "tests_per_case": 62.536,
- "positive_rate": 0.016,
- "tests_units": "people tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-09-23",
- "total_cases": 146663.0,
- "new_cases": 1248.0,
- "new_cases_smoothed": 1122.857,
- "total_deaths": 9234.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 3885.92,
- "new_cases_per_million": 33.066,
- "new_cases_smoothed_per_million": 29.751,
- "total_deaths_per_million": 244.66,
- "new_deaths_per_million": 0.159,
- "new_deaths_smoothed_per_million": 0.174,
- "new_tests": 68438.0,
- "total_tests": 6766982.0,
- "total_tests_per_thousand": 179.295,
- "new_tests_per_thousand": 1.813,
- "new_tests_smoothed": 67832.0,
- "new_tests_smoothed_per_thousand": 1.797,
- "tests_per_case": 60.41,
- "positive_rate": 0.017,
- "tests_units": "people tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-09-24",
- "total_cases": 147753.0,
- "new_cases": 1090.0,
- "new_cases_smoothed": 1143.714,
- "total_deaths": 9243.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 7.143,
- "total_cases_per_million": 3914.8,
- "new_cases_per_million": 28.88,
- "new_cases_smoothed_per_million": 30.303,
- "total_deaths_per_million": 244.899,
- "new_deaths_per_million": 0.238,
- "new_deaths_smoothed_per_million": 0.189,
- "new_tests": 66679.0,
- "total_tests": 6833661.0,
- "total_tests_per_thousand": 181.062,
- "new_tests_per_thousand": 1.767,
- "new_tests_smoothed": 68440.0,
- "new_tests_smoothed_per_thousand": 1.813,
- "tests_per_case": 59.84,
- "positive_rate": 0.017,
- "tests_units": "people tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-09-25",
- "total_cases": 149094.0,
- "new_cases": 1341.0,
- "new_cases_smoothed": 1175.286,
- "total_deaths": 9249.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 7.0,
- "total_cases_per_million": 3950.331,
- "new_cases_per_million": 35.531,
- "new_cases_smoothed_per_million": 31.14,
- "total_deaths_per_million": 245.058,
- "new_deaths_per_million": 0.159,
- "new_deaths_smoothed_per_million": 0.185,
- "new_tests": 67590.0,
- "total_tests": 6901251.0,
- "total_tests_per_thousand": 182.853,
- "new_tests_per_thousand": 1.791,
- "new_tests_smoothed": 68455.0,
- "new_tests_smoothed_per_thousand": 1.814,
- "tests_per_case": 58.245,
- "positive_rate": 0.017,
- "tests_units": "people tested"
- }
- ]
- },
- "CHE": {
- "continent": "Europe",
- "location": "Switzerland",
- "population": 8654618.0,
- "population_density": 214.243,
- "median_age": 43.1,
- "aged_65_older": 18.436,
- "aged_70_older": 12.644,
- "gdp_per_capita": 57410.166,
- "cardiovasc_death_rate": 99.739,
- "diabetes_prevalence": 5.59,
- "female_smokers": 22.6,
- "male_smokers": 28.9,
- "hospital_beds_per_thousand": 4.53,
- "life_expectancy": 83.78,
- "human_development_index": 0.944,
- "data": [
- {
- "date": "2019-12-31",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-01-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-02",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-03",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-04",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-05",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-06",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-07",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-08",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-09",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-10",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-11",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-12",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-13",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-14",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-15",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-16",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-17",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-18",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-19",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-20",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-21",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-22",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-23",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-24",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 3.0,
- "total_tests": 3.0,
- "total_tests_per_thousand": 0.0,
- "new_tests_per_thousand": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-25",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 4.0,
- "total_tests": 7.0,
- "total_tests_per_thousand": 0.001,
- "new_tests_per_thousand": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-26",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-27",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 13.0,
- "total_tests": 20.0,
- "total_tests_per_thousand": 0.002,
- "new_tests_per_thousand": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-28",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 16.0,
- "total_tests": 36.0,
- "total_tests_per_thousand": 0.004,
- "new_tests_per_thousand": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-29",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 29.0,
- "total_tests": 65.0,
- "total_tests_per_thousand": 0.008,
- "new_tests_per_thousand": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-30",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 40.0,
- "total_tests": 105.0,
- "total_tests_per_thousand": 0.012,
- "new_tests_per_thousand": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-31",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 32.0,
- "total_tests": 137.0,
- "total_tests_per_thousand": 0.016,
- "new_tests_per_thousand": 0.004,
- "new_tests_smoothed": 19.0,
- "new_tests_smoothed_per_thousand": 0.002,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 19.0,
- "total_tests": 156.0,
- "total_tests_per_thousand": 0.018,
- "new_tests_per_thousand": 0.002,
- "new_tests_smoothed": 21.0,
- "new_tests_smoothed_per_thousand": 0.002,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-02",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 11.0,
- "total_tests": 167.0,
- "total_tests_per_thousand": 0.019,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 22.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-03",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 14.0,
- "total_tests": 181.0,
- "total_tests_per_thousand": 0.021,
- "new_tests_per_thousand": 0.002,
- "new_tests_smoothed": 23.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-04",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 26.0,
- "total_tests": 207.0,
- "total_tests_per_thousand": 0.024,
- "new_tests_per_thousand": 0.003,
- "new_tests_smoothed": 24.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-05",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 28.0,
- "total_tests": 235.0,
- "total_tests_per_thousand": 0.027,
- "new_tests_per_thousand": 0.003,
- "new_tests_smoothed": 24.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-06",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 13.0,
- "total_tests": 248.0,
- "total_tests_per_thousand": 0.029,
- "new_tests_per_thousand": 0.002,
- "new_tests_smoothed": 20.0,
- "new_tests_smoothed_per_thousand": 0.002,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-07",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 15.0,
- "total_tests": 263.0,
- "total_tests_per_thousand": 0.03,
- "new_tests_per_thousand": 0.002,
- "new_tests_smoothed": 18.0,
- "new_tests_smoothed_per_thousand": 0.002,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-08",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 7.0,
- "total_tests": 270.0,
- "total_tests_per_thousand": 0.031,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 16.0,
- "new_tests_smoothed_per_thousand": 0.002,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-09",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 9.0,
- "total_tests": 279.0,
- "total_tests_per_thousand": 0.032,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 16.0,
- "new_tests_smoothed_per_thousand": 0.002,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-10",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 13.0,
- "total_tests": 292.0,
- "total_tests_per_thousand": 0.034,
- "new_tests_per_thousand": 0.002,
- "new_tests_smoothed": 16.0,
- "new_tests_smoothed_per_thousand": 0.002,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-11",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 22.0,
- "total_tests": 314.0,
- "total_tests_per_thousand": 0.036,
- "new_tests_per_thousand": 0.003,
- "new_tests_smoothed": 15.0,
- "new_tests_smoothed_per_thousand": 0.002,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-12",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 20.0,
- "total_tests": 334.0,
- "total_tests_per_thousand": 0.039,
- "new_tests_per_thousand": 0.002,
- "new_tests_smoothed": 14.0,
- "new_tests_smoothed_per_thousand": 0.002,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-13",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 7.0,
- "total_tests": 341.0,
- "total_tests_per_thousand": 0.039,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 13.0,
- "new_tests_smoothed_per_thousand": 0.002,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-14",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 9.0,
- "total_tests": 350.0,
- "total_tests_per_thousand": 0.04,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 12.0,
- "new_tests_smoothed_per_thousand": 0.001,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-15",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 5.0,
- "total_tests": 355.0,
- "total_tests_per_thousand": 0.041,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 12.0,
- "new_tests_smoothed_per_thousand": 0.001,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-16",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 5.0,
- "total_tests": 360.0,
- "total_tests_per_thousand": 0.042,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 12.0,
- "new_tests_smoothed_per_thousand": 0.001,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-17",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 10.0,
- "new_tests_smoothed_per_thousand": 0.001,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-18",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 9.0,
- "total_tests": 369.0,
- "total_tests_per_thousand": 0.043,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 8.0,
- "new_tests_smoothed_per_thousand": 0.001,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-19",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 14.0,
- "total_tests": 383.0,
- "total_tests_per_thousand": 0.044,
- "new_tests_per_thousand": 0.002,
- "new_tests_smoothed": 7.0,
- "new_tests_smoothed_per_thousand": 0.001,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-20",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 10.0,
- "total_tests": 393.0,
- "total_tests_per_thousand": 0.045,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 7.0,
- "new_tests_smoothed_per_thousand": 0.001,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-21",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 14.0,
- "total_tests": 407.0,
- "total_tests_per_thousand": 0.047,
- "new_tests_per_thousand": 0.002,
- "new_tests_smoothed": 8.0,
- "new_tests_smoothed_per_thousand": 0.001,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-22",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 2.0,
- "total_tests": 409.0,
- "total_tests_per_thousand": 0.047,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 8.0,
- "new_tests_smoothed_per_thousand": 0.001,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-23",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 5.0,
- "total_tests": 414.0,
- "total_tests_per_thousand": 0.048,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 8.0,
- "new_tests_smoothed_per_thousand": 0.001,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-24",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 48.0,
- "total_tests": 462.0,
- "total_tests_per_thousand": 0.053,
- "new_tests_per_thousand": 0.006,
- "new_tests_smoothed": 14.0,
- "new_tests_smoothed_per_thousand": 0.002,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-25",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 170.0,
- "total_tests": 632.0,
- "total_tests_per_thousand": 0.073,
- "new_tests_per_thousand": 0.02,
- "new_tests_smoothed": 38.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-02-26",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.116,
- "new_cases_per_million": 0.116,
- "new_cases_smoothed_per_million": 0.017,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 317.0,
- "total_tests": 949.0,
- "total_tests_per_thousand": 0.11,
- "new_tests_per_thousand": 0.037,
- "new_tests_smoothed": 81.0,
- "new_tests_smoothed_per_thousand": 0.009,
- "tests_per_case": 567.0,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 8.33
- },
- {
- "date": "2020-02-27",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.116,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.017,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 279.0,
- "total_tests": 1228.0,
- "total_tests_per_thousand": 0.142,
- "new_tests_per_thousand": 0.032,
- "new_tests_smoothed": 119.0,
- "new_tests_smoothed_per_thousand": 0.014,
- "tests_per_case": 833.0,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 13.89
- },
- {
- "date": "2020-02-28",
- "total_cases": 8.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.924,
- "new_cases_per_million": 0.809,
- "new_cases_smoothed_per_million": 0.132,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 450.0,
- "total_tests": 1678.0,
- "total_tests_per_thousand": 0.194,
- "new_tests_per_thousand": 0.052,
- "new_tests_smoothed": 182.0,
- "new_tests_smoothed_per_thousand": 0.021,
- "tests_per_case": 159.25,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-29",
- "total_cases": 12.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.387,
- "new_cases_per_million": 0.462,
- "new_cases_smoothed_per_million": 0.198,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 257.0,
- "total_tests": 1935.0,
- "total_tests_per_thousand": 0.224,
- "new_tests_per_thousand": 0.03,
- "new_tests_smoothed": 218.0,
- "new_tests_smoothed_per_thousand": 0.025,
- "tests_per_case": 127.167,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-01",
- "total_cases": 18.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.08,
- "new_cases_per_million": 0.693,
- "new_cases_smoothed_per_million": 0.297,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 373.0,
- "total_tests": 2308.0,
- "total_tests_per_thousand": 0.267,
- "new_tests_per_thousand": 0.043,
- "new_tests_smoothed": 271.0,
- "new_tests_smoothed_per_thousand": 0.031,
- "tests_per_case": 105.389,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-02",
- "total_cases": 24.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 3.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.773,
- "new_cases_per_million": 0.693,
- "new_cases_smoothed_per_million": 0.396,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 478.0,
- "total_tests": 2786.0,
- "total_tests_per_thousand": 0.322,
- "new_tests_per_thousand": 0.055,
- "new_tests_smoothed": 332.0,
- "new_tests_smoothed_per_thousand": 0.038,
- "tests_per_case": 96.833,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-03",
- "total_cases": 30.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 4.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.466,
- "new_cases_per_million": 0.693,
- "new_cases_smoothed_per_million": 0.495,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 716.0,
- "total_tests": 3502.0,
- "total_tests_per_thousand": 0.405,
- "new_tests_per_thousand": 0.083,
- "new_tests_smoothed": 410.0,
- "new_tests_smoothed_per_thousand": 0.047,
- "tests_per_case": 95.667,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 25.0
- },
- {
- "date": "2020-03-04",
- "total_cases": 37.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 4.275,
- "new_cases_per_million": 0.809,
- "new_cases_smoothed_per_million": 0.594,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 592.0,
- "total_tests": 4094.0,
- "total_tests_per_thousand": 0.473,
- "new_tests_per_thousand": 0.068,
- "new_tests_smoothed": 449.0,
- "new_tests_smoothed_per_thousand": 0.052,
- "tests_per_case": 87.306,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 25.0
- },
- {
- "date": "2020-03-05",
- "total_cases": 57.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 8.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.586,
- "new_cases_per_million": 2.311,
- "new_cases_smoothed_per_million": 0.924,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 587.0,
- "total_tests": 4681.0,
- "total_tests_per_thousand": 0.541,
- "new_tests_per_thousand": 0.068,
- "new_tests_smoothed": 493.0,
- "new_tests_smoothed_per_thousand": 0.057,
- "tests_per_case": 61.625,
- "positive_rate": 0.016,
- "tests_units": "tests performed",
- "stringency_index": 25.0
- },
- {
- "date": "2020-03-06",
- "total_cases": 87.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 11.286,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 10.052,
- "new_cases_per_million": 3.466,
- "new_cases_smoothed_per_million": 1.304,
- "total_deaths_per_million": 0.116,
- "new_deaths_per_million": 0.116,
- "new_deaths_smoothed_per_million": 0.017,
- "new_tests": 957.0,
- "total_tests": 5638.0,
- "total_tests_per_thousand": 0.651,
- "new_tests_per_thousand": 0.111,
- "new_tests_smoothed": 566.0,
- "new_tests_smoothed_per_thousand": 0.065,
- "tests_per_case": 50.152,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 25.0
- },
- {
- "date": "2020-03-07",
- "total_cases": 209.0,
- "new_cases": 122.0,
- "new_cases_smoothed": 28.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 24.149,
- "new_cases_per_million": 14.097,
- "new_cases_smoothed_per_million": 3.252,
- "total_deaths_per_million": 0.116,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.017,
- "new_tests": 727.0,
- "total_tests": 6365.0,
- "total_tests_per_thousand": 0.735,
- "new_tests_per_thousand": 0.084,
- "new_tests_smoothed": 633.0,
- "new_tests_smoothed_per_thousand": 0.073,
- "tests_per_case": 22.491999999999997,
- "positive_rate": 0.044000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 25.0
- },
- {
- "date": "2020-03-08",
- "total_cases": 264.0,
- "new_cases": 55.0,
- "new_cases_smoothed": 35.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 30.504,
- "new_cases_per_million": 6.355,
- "new_cases_smoothed_per_million": 4.061,
- "total_deaths_per_million": 0.116,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.017,
- "new_tests": 744.0,
- "total_tests": 7109.0,
- "total_tests_per_thousand": 0.821,
- "new_tests_per_thousand": 0.086,
- "new_tests_smoothed": 686.0,
- "new_tests_smoothed_per_thousand": 0.079,
- "tests_per_case": 19.52,
- "positive_rate": 0.051,
- "tests_units": "tests performed",
- "stringency_index": 25.0
- },
- {
- "date": "2020-03-09",
- "total_cases": 332.0,
- "new_cases": 68.0,
- "new_cases_smoothed": 44.0,
- "total_deaths": 2.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 38.361,
- "new_cases_per_million": 7.857,
- "new_cases_smoothed_per_million": 5.084,
- "total_deaths_per_million": 0.231,
- "new_deaths_per_million": 0.116,
- "new_deaths_smoothed_per_million": 0.033,
- "new_tests": 1631.0,
- "total_tests": 8740.0,
- "total_tests_per_thousand": 1.01,
- "new_tests_per_thousand": 0.188,
- "new_tests_smoothed": 851.0,
- "new_tests_smoothed_per_thousand": 0.098,
- "tests_per_case": 19.340999999999998,
- "positive_rate": 0.052000000000000005,
- "tests_units": "tests performed",
- "stringency_index": 25.0
- },
- {
- "date": "2020-03-10",
- "total_cases": 374.0,
- "new_cases": 42.0,
- "new_cases_smoothed": 49.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 43.214,
- "new_cases_per_million": 4.853,
- "new_cases_smoothed_per_million": 5.678,
- "total_deaths_per_million": 0.231,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.033,
- "new_tests": 2172.0,
- "total_tests": 10912.0,
- "total_tests_per_thousand": 1.261,
- "new_tests_per_thousand": 0.251,
- "new_tests_smoothed": 1059.0,
- "new_tests_smoothed_per_thousand": 0.122,
- "tests_per_case": 21.549,
- "positive_rate": 0.046,
- "tests_units": "tests performed",
- "stringency_index": 25.0
- },
- {
- "date": "2020-03-11",
- "total_cases": 490.0,
- "new_cases": 116.0,
- "new_cases_smoothed": 64.714,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 56.617,
- "new_cases_per_million": 13.403,
- "new_cases_smoothed_per_million": 7.477,
- "total_deaths_per_million": 0.347,
- "new_deaths_per_million": 0.116,
- "new_deaths_smoothed_per_million": 0.05,
- "new_tests": 2724.0,
- "total_tests": 13636.0,
- "total_tests_per_thousand": 1.576,
- "new_tests_per_thousand": 0.315,
- "new_tests_smoothed": 1363.0,
- "new_tests_smoothed_per_thousand": 0.157,
- "tests_per_case": 21.061999999999998,
- "positive_rate": 0.047,
- "tests_units": "tests performed",
- "stringency_index": 25.0
- },
- {
- "date": "2020-03-12",
- "total_cases": 642.0,
- "new_cases": 152.0,
- "new_cases_smoothed": 83.571,
- "total_deaths": 4.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 74.18,
- "new_cases_per_million": 17.563,
- "new_cases_smoothed_per_million": 9.656,
- "total_deaths_per_million": 0.462,
- "new_deaths_per_million": 0.116,
- "new_deaths_smoothed_per_million": 0.066,
- "new_tests": 4634.0,
- "total_tests": 18270.0,
- "total_tests_per_thousand": 2.111,
- "new_tests_per_thousand": 0.535,
- "new_tests_smoothed": 1941.0,
- "new_tests_smoothed_per_thousand": 0.224,
- "tests_per_case": 23.226,
- "positive_rate": 0.043,
- "tests_units": "tests performed",
- "stringency_index": 25.0
- },
- {
- "date": "2020-03-13",
- "total_cases": 854.0,
- "new_cases": 212.0,
- "new_cases_smoothed": 109.571,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 98.676,
- "new_cases_per_million": 24.496,
- "new_cases_smoothed_per_million": 12.66,
- "total_deaths_per_million": 0.462,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "new_tests": 4689.0,
- "total_tests": 22959.0,
- "total_tests_per_thousand": 2.653,
- "new_tests_per_thousand": 0.542,
- "new_tests_smoothed": 2474.0,
- "new_tests_smoothed_per_thousand": 0.286,
- "tests_per_case": 22.579,
- "positive_rate": 0.044000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 44.44
- },
- {
- "date": "2020-03-14",
- "total_cases": 1121.0,
- "new_cases": 267.0,
- "new_cases_smoothed": 130.286,
- "total_deaths": 7.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 129.526,
- "new_cases_per_million": 30.851,
- "new_cases_smoothed_per_million": 15.054,
- "total_deaths_per_million": 0.809,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.099,
- "new_tests": 5244.0,
- "total_tests": 28203.0,
- "total_tests_per_thousand": 3.259,
- "new_tests_per_thousand": 0.606,
- "new_tests_smoothed": 3120.0,
- "new_tests_smoothed_per_thousand": 0.361,
- "tests_per_case": 23.947,
- "positive_rate": 0.042,
- "tests_units": "tests performed",
- "stringency_index": 44.44
- },
- {
- "date": "2020-03-15",
- "total_cases": 1359.0,
- "new_cases": 238.0,
- "new_cases_smoothed": 156.429,
- "total_deaths": 11.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 157.026,
- "new_cases_per_million": 27.5,
- "new_cases_smoothed_per_million": 18.075,
- "total_deaths_per_million": 1.271,
- "new_deaths_per_million": 0.462,
- "new_deaths_smoothed_per_million": 0.165,
- "new_tests": 2523.0,
- "total_tests": 30726.0,
- "total_tests_per_thousand": 3.55,
- "new_tests_per_thousand": 0.292,
- "new_tests_smoothed": 3374.0,
- "new_tests_smoothed_per_thousand": 0.39,
- "tests_per_case": 21.569000000000003,
- "positive_rate": 0.046,
- "tests_units": "tests performed",
- "stringency_index": 44.44
- },
- {
- "date": "2020-03-16",
- "total_cases": 2200.0,
- "new_cases": 841.0,
- "new_cases_smoothed": 266.857,
- "total_deaths": 13.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 254.2,
- "new_cases_per_million": 97.174,
- "new_cases_smoothed_per_million": 30.834,
- "total_deaths_per_million": 1.502,
- "new_deaths_per_million": 0.231,
- "new_deaths_smoothed_per_million": 0.182,
- "new_tests": 5279.0,
- "total_tests": 36005.0,
- "total_tests_per_thousand": 4.16,
- "new_tests_per_thousand": 0.61,
- "new_tests_smoothed": 3895.0,
- "new_tests_smoothed_per_thousand": 0.45,
- "tests_per_case": 14.595999999999998,
- "positive_rate": 0.069,
- "tests_units": "tests performed",
- "stringency_index": 44.44
- },
- {
- "date": "2020-03-17",
- "total_cases": 2200.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 260.857,
- "total_deaths": 14.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 254.2,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 30.141,
- "total_deaths_per_million": 1.618,
- "new_deaths_per_million": 0.116,
- "new_deaths_smoothed_per_million": 0.198,
- "new_tests": 9353.0,
- "total_tests": 45358.0,
- "total_tests_per_thousand": 5.241,
- "new_tests_per_thousand": 1.081,
- "new_tests_smoothed": 4921.0,
- "new_tests_smoothed_per_thousand": 0.569,
- "tests_per_case": 18.865,
- "positive_rate": 0.053,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-18",
- "total_cases": 2650.0,
- "new_cases": 450.0,
- "new_cases_smoothed": 308.571,
- "total_deaths": 19.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 306.195,
- "new_cases_per_million": 51.995,
- "new_cases_smoothed_per_million": 35.654,
- "total_deaths_per_million": 2.195,
- "new_deaths_per_million": 0.578,
- "new_deaths_smoothed_per_million": 0.264,
- "new_tests": 10591.0,
- "total_tests": 55949.0,
- "total_tests_per_thousand": 6.465,
- "new_tests_per_thousand": 1.224,
- "new_tests_smoothed": 6045.0,
- "new_tests_smoothed_per_thousand": 0.698,
- "tests_per_case": 19.59,
- "positive_rate": 0.051,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-19",
- "total_cases": 3003.0,
- "new_cases": 353.0,
- "new_cases_smoothed": 337.286,
- "total_deaths": 25.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 346.982,
- "new_cases_per_million": 40.787,
- "new_cases_smoothed_per_million": 38.972,
- "total_deaths_per_million": 2.889,
- "new_deaths_per_million": 0.693,
- "new_deaths_smoothed_per_million": 0.347,
- "new_tests": 9681.0,
- "total_tests": 65630.0,
- "total_tests_per_thousand": 7.583,
- "new_tests_per_thousand": 1.119,
- "new_tests_smoothed": 6766.0,
- "new_tests_smoothed_per_thousand": 0.782,
- "tests_per_case": 20.06,
- "positive_rate": 0.05,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-20",
- "total_cases": 3863.0,
- "new_cases": 860.0,
- "new_cases_smoothed": 429.857,
- "total_deaths": 33.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 446.351,
- "new_cases_per_million": 99.369,
- "new_cases_smoothed_per_million": 49.668,
- "total_deaths_per_million": 3.813,
- "new_deaths_per_million": 0.924,
- "new_deaths_smoothed_per_million": 0.479,
- "new_tests": 8153.0,
- "total_tests": 73783.0,
- "total_tests_per_thousand": 8.525,
- "new_tests_per_thousand": 0.942,
- "new_tests_smoothed": 7261.0,
- "new_tests_smoothed_per_thousand": 0.839,
- "tests_per_case": 16.892,
- "positive_rate": 0.059000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-21",
- "total_cases": 4806.0,
- "new_cases": 943.0,
- "new_cases_smoothed": 526.429,
- "total_deaths": 43.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 555.31,
- "new_cases_per_million": 108.959,
- "new_cases_smoothed_per_million": 60.826,
- "total_deaths_per_million": 4.968,
- "new_deaths_per_million": 1.155,
- "new_deaths_smoothed_per_million": 0.594,
- "new_tests": 6429.0,
- "total_tests": 80212.0,
- "total_tests_per_thousand": 9.268,
- "new_tests_per_thousand": 0.743,
- "new_tests_smoothed": 7430.0,
- "new_tests_smoothed_per_thousand": 0.859,
- "tests_per_case": 14.114,
- "positive_rate": 0.071,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-22",
- "total_cases": 6077.0,
- "new_cases": 1271.0,
- "new_cases_smoothed": 674.0,
- "total_deaths": 56.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 6.429,
- "total_cases_per_million": 702.168,
- "new_cases_per_million": 146.858,
- "new_cases_smoothed_per_million": 77.877,
- "total_deaths_per_million": 6.471,
- "new_deaths_per_million": 1.502,
- "new_deaths_smoothed_per_million": 0.743,
- "new_tests": 3288.0,
- "total_tests": 83500.0,
- "total_tests_per_thousand": 9.648,
- "new_tests_per_thousand": 0.38,
- "new_tests_smoothed": 7539.0,
- "new_tests_smoothed_per_thousand": 0.871,
- "tests_per_case": 11.185,
- "positive_rate": 0.08900000000000001,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-23",
- "total_cases": 6971.0,
- "new_cases": 894.0,
- "new_cases_smoothed": 681.571,
- "total_deaths": 60.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 6.714,
- "total_cases_per_million": 805.466,
- "new_cases_per_million": 103.297,
- "new_cases_smoothed_per_million": 78.752,
- "total_deaths_per_million": 6.933,
- "new_deaths_per_million": 0.462,
- "new_deaths_smoothed_per_million": 0.776,
- "new_tests": 6640.0,
- "total_tests": 90140.0,
- "total_tests_per_thousand": 10.415,
- "new_tests_per_thousand": 0.767,
- "new_tests_smoothed": 7734.0,
- "new_tests_smoothed_per_thousand": 0.894,
- "tests_per_case": 11.347000000000001,
- "positive_rate": 0.08800000000000001,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-24",
- "total_cases": 8015.0,
- "new_cases": 1044.0,
- "new_cases_smoothed": 830.714,
- "total_deaths": 66.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 7.429,
- "total_cases_per_million": 926.095,
- "new_cases_per_million": 120.629,
- "new_cases_smoothed_per_million": 95.985,
- "total_deaths_per_million": 7.626,
- "new_deaths_per_million": 0.693,
- "new_deaths_smoothed_per_million": 0.858,
- "new_tests": 5813.0,
- "total_tests": 95953.0,
- "total_tests_per_thousand": 11.087,
- "new_tests_per_thousand": 0.672,
- "new_tests_smoothed": 7228.0,
- "new_tests_smoothed_per_thousand": 0.835,
- "tests_per_case": 8.701,
- "positive_rate": 0.115,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-25",
- "total_cases": 8789.0,
- "new_cases": 774.0,
- "new_cases_smoothed": 877.0,
- "total_deaths": 86.0,
- "new_deaths": 20.0,
- "new_deaths_smoothed": 9.571,
- "total_cases_per_million": 1015.527,
- "new_cases_per_million": 89.432,
- "new_cases_smoothed_per_million": 101.333,
- "total_deaths_per_million": 9.937,
- "new_deaths_per_million": 2.311,
- "new_deaths_smoothed_per_million": 1.106,
- "new_tests": 7692.0,
- "total_tests": 103645.0,
- "total_tests_per_thousand": 11.976,
- "new_tests_per_thousand": 0.889,
- "new_tests_smoothed": 6814.0,
- "new_tests_smoothed_per_thousand": 0.787,
- "tests_per_case": 7.77,
- "positive_rate": 0.129,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-26",
- "total_cases": 9714.0,
- "new_cases": 925.0,
- "new_cases_smoothed": 958.714,
- "total_deaths": 103.0,
- "new_deaths": 17.0,
- "new_deaths_smoothed": 11.143,
- "total_cases_per_million": 1122.407,
- "new_cases_per_million": 106.879,
- "new_cases_smoothed_per_million": 110.775,
- "total_deaths_per_million": 11.901,
- "new_deaths_per_million": 1.964,
- "new_deaths_smoothed_per_million": 1.288,
- "new_tests": 7861.0,
- "total_tests": 111506.0,
- "total_tests_per_thousand": 12.884,
- "new_tests_per_thousand": 0.908,
- "new_tests_smoothed": 6554.0,
- "new_tests_smoothed_per_thousand": 0.757,
- "tests_per_case": 6.836,
- "positive_rate": 0.146,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-27",
- "total_cases": 10714.0,
- "new_cases": 1000.0,
- "new_cases_smoothed": 978.714,
- "total_deaths": 161.0,
- "new_deaths": 58.0,
- "new_deaths_smoothed": 18.286,
- "total_cases_per_million": 1237.952,
- "new_cases_per_million": 115.545,
- "new_cases_smoothed_per_million": 113.086,
- "total_deaths_per_million": 18.603,
- "new_deaths_per_million": 6.702,
- "new_deaths_smoothed_per_million": 2.113,
- "new_tests": 7197.0,
- "total_tests": 118703.0,
- "total_tests_per_thousand": 13.716,
- "new_tests_per_thousand": 0.832,
- "new_tests_smoothed": 6417.0,
- "new_tests_smoothed_per_thousand": 0.741,
- "tests_per_case": 6.557,
- "positive_rate": 0.153,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-28",
- "total_cases": 12104.0,
- "new_cases": 1390.0,
- "new_cases_smoothed": 1042.571,
- "total_deaths": 197.0,
- "new_deaths": 36.0,
- "new_deaths_smoothed": 22.0,
- "total_cases_per_million": 1398.56,
- "new_cases_per_million": 160.608,
- "new_cases_smoothed_per_million": 120.464,
- "total_deaths_per_million": 22.762,
- "new_deaths_per_million": 4.16,
- "new_deaths_smoothed_per_million": 2.542,
- "new_tests": 5765.0,
- "total_tests": 124468.0,
- "total_tests_per_thousand": 14.382,
- "new_tests_per_thousand": 0.666,
- "new_tests_smoothed": 6322.0,
- "new_tests_smoothed_per_thousand": 0.73,
- "tests_per_case": 6.064,
- "positive_rate": 0.165,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-29",
- "total_cases": 13152.0,
- "new_cases": 1048.0,
- "new_cases_smoothed": 1010.714,
- "total_deaths": 235.0,
- "new_deaths": 38.0,
- "new_deaths_smoothed": 25.571,
- "total_cases_per_million": 1519.651,
- "new_cases_per_million": 121.091,
- "new_cases_smoothed_per_million": 116.783,
- "total_deaths_per_million": 27.153,
- "new_deaths_per_million": 4.391,
- "new_deaths_smoothed_per_million": 2.955,
- "new_tests": 2767.0,
- "total_tests": 127235.0,
- "total_tests_per_thousand": 14.701,
- "new_tests_per_thousand": 0.32,
- "new_tests_smoothed": 6248.0,
- "new_tests_smoothed_per_thousand": 0.722,
- "tests_per_case": 6.182,
- "positive_rate": 0.162,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-30",
- "total_cases": 14274.0,
- "new_cases": 1122.0,
- "new_cases_smoothed": 1043.286,
- "total_deaths": 257.0,
- "new_deaths": 22.0,
- "new_deaths_smoothed": 28.143,
- "total_cases_per_million": 1649.293,
- "new_cases_per_million": 129.642,
- "new_cases_smoothed_per_million": 120.547,
- "total_deaths_per_million": 29.695,
- "new_deaths_per_million": 2.542,
- "new_deaths_smoothed_per_million": 3.252,
- "new_tests": 4489.0,
- "total_tests": 131724.0,
- "total_tests_per_thousand": 15.22,
- "new_tests_per_thousand": 0.519,
- "new_tests_smoothed": 5941.0,
- "new_tests_smoothed_per_thousand": 0.686,
- "tests_per_case": 5.695,
- "positive_rate": 0.17600000000000002,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-31",
- "total_cases": 15412.0,
- "new_cases": 1138.0,
- "new_cases_smoothed": 1056.714,
- "total_deaths": 295.0,
- "new_deaths": 38.0,
- "new_deaths_smoothed": 32.714,
- "total_cases_per_million": 1780.783,
- "new_cases_per_million": 131.49,
- "new_cases_smoothed_per_million": 122.098,
- "total_deaths_per_million": 34.086,
- "new_deaths_per_million": 4.391,
- "new_deaths_smoothed_per_million": 3.78,
- "new_tests": 7160.0,
- "total_tests": 138884.0,
- "total_tests_per_thousand": 16.047,
- "new_tests_per_thousand": 0.827,
- "new_tests_smoothed": 6133.0,
- "new_tests_smoothed_per_thousand": 0.709,
- "tests_per_case": 5.803999999999999,
- "positive_rate": 0.172,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-01",
- "total_cases": 16108.0,
- "new_cases": 696.0,
- "new_cases_smoothed": 1045.571,
- "total_deaths": 373.0,
- "new_deaths": 78.0,
- "new_deaths_smoothed": 41.0,
- "total_cases_per_million": 1861.203,
- "new_cases_per_million": 80.419,
- "new_cases_smoothed_per_million": 120.811,
- "total_deaths_per_million": 43.098,
- "new_deaths_per_million": 9.013,
- "new_deaths_smoothed_per_million": 4.737,
- "new_tests": 6702.0,
- "total_tests": 145586.0,
- "total_tests_per_thousand": 16.822,
- "new_tests_per_thousand": 0.774,
- "new_tests_smoothed": 5992.0,
- "new_tests_smoothed_per_thousand": 0.692,
- "tests_per_case": 5.731,
- "positive_rate": 0.174,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-02",
- "total_cases": 17070.0,
- "new_cases": 962.0,
- "new_cases_smoothed": 1050.857,
- "total_deaths": 378.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 39.286,
- "total_cases_per_million": 1972.357,
- "new_cases_per_million": 111.155,
- "new_cases_smoothed_per_million": 121.422,
- "total_deaths_per_million": 43.676,
- "new_deaths_per_million": 0.578,
- "new_deaths_smoothed_per_million": 4.539,
- "new_tests": 7021.0,
- "total_tests": 152607.0,
- "total_tests_per_thousand": 17.633,
- "new_tests_per_thousand": 0.811,
- "new_tests_smoothed": 5872.0,
- "new_tests_smoothed_per_thousand": 0.678,
- "tests_per_case": 5.587999999999999,
- "positive_rate": 0.179,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-03",
- "total_cases": 18194.0,
- "new_cases": 1124.0,
- "new_cases_smoothed": 1068.571,
- "total_deaths": 432.0,
- "new_deaths": 54.0,
- "new_deaths_smoothed": 38.714,
- "total_cases_per_million": 2102.23,
- "new_cases_per_million": 129.873,
- "new_cases_smoothed_per_million": 123.468,
- "total_deaths_per_million": 49.916,
- "new_deaths_per_million": 6.239,
- "new_deaths_smoothed_per_million": 4.473,
- "new_tests": 6517.0,
- "total_tests": 159124.0,
- "total_tests_per_thousand": 18.386,
- "new_tests_per_thousand": 0.753,
- "new_tests_smoothed": 5774.0,
- "new_tests_smoothed_per_thousand": 0.667,
- "tests_per_case": 5.403,
- "positive_rate": 0.185,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-04",
- "total_cases": 19227.0,
- "new_cases": 1033.0,
- "new_cases_smoothed": 1017.571,
- "total_deaths": 484.0,
- "new_deaths": 52.0,
- "new_deaths_smoothed": 41.0,
- "total_cases_per_million": 2221.589,
- "new_cases_per_million": 119.358,
- "new_cases_smoothed_per_million": 117.576,
- "total_deaths_per_million": 55.924,
- "new_deaths_per_million": 6.008,
- "new_deaths_smoothed_per_million": 4.737,
- "new_tests": 5204.0,
- "total_tests": 164328.0,
- "total_tests_per_thousand": 18.987,
- "new_tests_per_thousand": 0.601,
- "new_tests_smoothed": 5694.0,
- "new_tests_smoothed_per_thousand": 0.658,
- "tests_per_case": 5.596,
- "positive_rate": 0.179,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-05",
- "total_cases": 20201.0,
- "new_cases": 974.0,
- "new_cases_smoothed": 1007.0,
- "total_deaths": 540.0,
- "new_deaths": 56.0,
- "new_deaths_smoothed": 43.571,
- "total_cases_per_million": 2334.13,
- "new_cases_per_million": 112.541,
- "new_cases_smoothed_per_million": 116.354,
- "total_deaths_per_million": 62.394,
- "new_deaths_per_million": 6.471,
- "new_deaths_smoothed_per_million": 5.034,
- "new_tests": 3305.0,
- "total_tests": 167633.0,
- "total_tests_per_thousand": 19.369,
- "new_tests_per_thousand": 0.382,
- "new_tests_smoothed": 5771.0,
- "new_tests_smoothed_per_thousand": 0.667,
- "tests_per_case": 5.731,
- "positive_rate": 0.174,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-06",
- "total_cases": 21022.0,
- "new_cases": 821.0,
- "new_cases_smoothed": 964.0,
- "total_deaths": 559.0,
- "new_deaths": 19.0,
- "new_deaths_smoothed": 43.143,
- "total_cases_per_million": 2428.992,
- "new_cases_per_million": 94.863,
- "new_cases_smoothed_per_million": 111.386,
- "total_deaths_per_million": 64.59,
- "new_deaths_per_million": 2.195,
- "new_deaths_smoothed_per_million": 4.985,
- "new_tests": 4112.0,
- "total_tests": 171745.0,
- "total_tests_per_thousand": 19.844,
- "new_tests_per_thousand": 0.475,
- "new_tests_smoothed": 5717.0,
- "new_tests_smoothed_per_thousand": 0.661,
- "tests_per_case": 5.93,
- "positive_rate": 0.16899999999999998,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-07",
- "total_cases": 21574.0,
- "new_cases": 552.0,
- "new_cases_smoothed": 880.286,
- "total_deaths": 584.0,
- "new_deaths": 25.0,
- "new_deaths_smoothed": 41.286,
- "total_cases_per_million": 2492.773,
- "new_cases_per_million": 63.781,
- "new_cases_smoothed_per_million": 101.713,
- "total_deaths_per_million": 67.478,
- "new_deaths_per_million": 2.889,
- "new_deaths_smoothed_per_million": 4.77,
- "new_tests": 6870.0,
- "total_tests": 178615.0,
- "total_tests_per_thousand": 20.638,
- "new_tests_per_thousand": 0.794,
- "new_tests_smoothed": 5676.0,
- "new_tests_smoothed_per_thousand": 0.656,
- "tests_per_case": 6.4479999999999995,
- "positive_rate": 0.155,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-08",
- "total_cases": 22164.0,
- "new_cases": 590.0,
- "new_cases_smoothed": 865.143,
- "total_deaths": 641.0,
- "new_deaths": 57.0,
- "new_deaths_smoothed": 38.286,
- "total_cases_per_million": 2560.945,
- "new_cases_per_million": 68.172,
- "new_cases_smoothed_per_million": 99.963,
- "total_deaths_per_million": 74.065,
- "new_deaths_per_million": 6.586,
- "new_deaths_smoothed_per_million": 4.424,
- "new_tests": 6561.0,
- "total_tests": 185176.0,
- "total_tests_per_thousand": 21.396,
- "new_tests_per_thousand": 0.758,
- "new_tests_smoothed": 5656.0,
- "new_tests_smoothed_per_thousand": 0.654,
- "tests_per_case": 6.537999999999999,
- "positive_rate": 0.153,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-09",
- "total_cases": 22710.0,
- "new_cases": 546.0,
- "new_cases_smoothed": 805.714,
- "total_deaths": 705.0,
- "new_deaths": 64.0,
- "new_deaths_smoothed": 46.714,
- "total_cases_per_million": 2624.033,
- "new_cases_per_million": 63.088,
- "new_cases_smoothed_per_million": 93.096,
- "total_deaths_per_million": 81.459,
- "new_deaths_per_million": 7.395,
- "new_deaths_smoothed_per_million": 5.398,
- "new_tests": 6016.0,
- "total_tests": 191192.0,
- "total_tests_per_thousand": 22.091,
- "new_tests_per_thousand": 0.695,
- "new_tests_smoothed": 5512.0,
- "new_tests_smoothed_per_thousand": 0.637,
- "tests_per_case": 6.841,
- "positive_rate": 0.146,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-10",
- "total_cases": 23495.0,
- "new_cases": 785.0,
- "new_cases_smoothed": 757.286,
- "total_deaths": 756.0,
- "new_deaths": 51.0,
- "new_deaths_smoothed": 46.286,
- "total_cases_per_million": 2714.736,
- "new_cases_per_million": 90.703,
- "new_cases_smoothed_per_million": 87.501,
- "total_deaths_per_million": 87.352,
- "new_deaths_per_million": 5.893,
- "new_deaths_smoothed_per_million": 5.348,
- "new_tests": 3981.0,
- "total_tests": 195173.0,
- "total_tests_per_thousand": 22.551,
- "new_tests_per_thousand": 0.46,
- "new_tests_smoothed": 5150.0,
- "new_tests_smoothed_per_thousand": 0.595,
- "tests_per_case": 6.801,
- "positive_rate": 0.147,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-11",
- "total_cases": 24228.0,
- "new_cases": 733.0,
- "new_cases_smoothed": 714.429,
- "total_deaths": 805.0,
- "new_deaths": 49.0,
- "new_deaths_smoothed": 45.857,
- "total_cases_per_million": 2799.43,
- "new_cases_per_million": 84.695,
- "new_cases_smoothed_per_million": 82.549,
- "total_deaths_per_million": 93.014,
- "new_deaths_per_million": 5.662,
- "new_deaths_smoothed_per_million": 5.299,
- "new_tests": 2798.0,
- "total_tests": 197971.0,
- "total_tests_per_thousand": 22.875,
- "new_tests_per_thousand": 0.323,
- "new_tests_smoothed": 4806.0,
- "new_tests_smoothed_per_thousand": 0.555,
- "tests_per_case": 6.727,
- "positive_rate": 0.149,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-12",
- "total_cases": 24820.0,
- "new_cases": 592.0,
- "new_cases_smoothed": 659.857,
- "total_deaths": 831.0,
- "new_deaths": 26.0,
- "new_deaths_smoothed": 41.571,
- "total_cases_per_million": 2867.833,
- "new_cases_per_million": 68.403,
- "new_cases_smoothed_per_million": 76.243,
- "total_deaths_per_million": 96.018,
- "new_deaths_per_million": 3.004,
- "new_deaths_smoothed_per_million": 4.803,
- "new_tests": 2300.0,
- "total_tests": 200271.0,
- "total_tests_per_thousand": 23.14,
- "new_tests_per_thousand": 0.266,
- "new_tests_smoothed": 4663.0,
- "new_tests_smoothed_per_thousand": 0.539,
- "tests_per_case": 7.067,
- "positive_rate": 0.142,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-13",
- "total_cases": 25220.0,
- "new_cases": 400.0,
- "new_cases_smoothed": 599.714,
- "total_deaths": 858.0,
- "new_deaths": 27.0,
- "new_deaths_smoothed": 42.714,
- "total_cases_per_million": 2914.051,
- "new_cases_per_million": 46.218,
- "new_cases_smoothed_per_million": 69.294,
- "total_deaths_per_million": 99.138,
- "new_deaths_per_million": 3.12,
- "new_deaths_smoothed_per_million": 4.935,
- "new_tests": 2197.0,
- "total_tests": 202468.0,
- "total_tests_per_thousand": 23.394,
- "new_tests_per_thousand": 0.254,
- "new_tests_smoothed": 4389.0,
- "new_tests_smoothed_per_thousand": 0.507,
- "tests_per_case": 7.318,
- "positive_rate": 0.13699999999999998,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-14",
- "total_cases": 25499.0,
- "new_cases": 279.0,
- "new_cases_smoothed": 560.714,
- "total_deaths": 858.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 39.143,
- "total_cases_per_million": 2946.288,
- "new_cases_per_million": 32.237,
- "new_cases_smoothed_per_million": 64.788,
- "total_deaths_per_million": 99.138,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 4.523,
- "new_tests": 3923.0,
- "total_tests": 206391.0,
- "total_tests_per_thousand": 23.847,
- "new_tests_per_thousand": 0.453,
- "new_tests_smoothed": 3968.0,
- "new_tests_smoothed_per_thousand": 0.458,
- "tests_per_case": 7.077000000000001,
- "positive_rate": 0.141,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-15",
- "total_cases": 25753.0,
- "new_cases": 254.0,
- "new_cases_smoothed": 512.714,
- "total_deaths": 900.0,
- "new_deaths": 42.0,
- "new_deaths_smoothed": 37.0,
- "total_cases_per_million": 2975.637,
- "new_cases_per_million": 29.348,
- "new_cases_smoothed_per_million": 59.242,
- "total_deaths_per_million": 103.991,
- "new_deaths_per_million": 4.853,
- "new_deaths_smoothed_per_million": 4.275,
- "new_tests": 5590.0,
- "total_tests": 211981.0,
- "total_tests_per_thousand": 24.493,
- "new_tests_per_thousand": 0.646,
- "new_tests_smoothed": 3829.0,
- "new_tests_smoothed_per_thousand": 0.442,
- "tests_per_case": 7.468,
- "positive_rate": 0.134,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-16",
- "total_cases": 26336.0,
- "new_cases": 583.0,
- "new_cases_smoothed": 518.0,
- "total_deaths": 973.0,
- "new_deaths": 73.0,
- "new_deaths_smoothed": 38.286,
- "total_cases_per_million": 3043.0,
- "new_cases_per_million": 67.363,
- "new_cases_smoothed_per_million": 59.852,
- "total_deaths_per_million": 112.426,
- "new_deaths_per_million": 8.435,
- "new_deaths_smoothed_per_million": 4.424,
- "new_tests": 5137.0,
- "total_tests": 217118.0,
- "total_tests_per_thousand": 25.087,
- "new_tests_per_thousand": 0.594,
- "new_tests_smoothed": 3704.0,
- "new_tests_smoothed_per_thousand": 0.428,
- "tests_per_case": 7.151,
- "positive_rate": 0.14,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-17",
- "total_cases": 26651.0,
- "new_cases": 315.0,
- "new_cases_smoothed": 450.857,
- "total_deaths": 1016.0,
- "new_deaths": 43.0,
- "new_deaths_smoothed": 37.143,
- "total_cases_per_million": 3079.396,
- "new_cases_per_million": 36.397,
- "new_cases_smoothed_per_million": 52.094,
- "total_deaths_per_million": 117.394,
- "new_deaths_per_million": 4.968,
- "new_deaths_smoothed_per_million": 4.292,
- "new_tests": 4598.0,
- "total_tests": 221716.0,
- "total_tests_per_thousand": 25.618,
- "new_tests_per_thousand": 0.531,
- "new_tests_smoothed": 3792.0,
- "new_tests_smoothed_per_thousand": 0.438,
- "tests_per_case": 8.411,
- "positive_rate": 0.11900000000000001,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-18",
- "total_cases": 26997.0,
- "new_cases": 346.0,
- "new_cases_smoothed": 395.571,
- "total_deaths": 1058.0,
- "new_deaths": 42.0,
- "new_deaths_smoothed": 36.143,
- "total_cases_per_million": 3119.375,
- "new_cases_per_million": 39.979,
- "new_cases_smoothed_per_million": 45.706,
- "total_deaths_per_million": 122.247,
- "new_deaths_per_million": 4.853,
- "new_deaths_smoothed_per_million": 4.176,
- "new_tests": 3649.0,
- "total_tests": 225365.0,
- "total_tests_per_thousand": 26.04,
- "new_tests_per_thousand": 0.422,
- "new_tests_smoothed": 3913.0,
- "new_tests_smoothed_per_thousand": 0.452,
- "tests_per_case": 9.892000000000001,
- "positive_rate": 0.10099999999999999,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-19",
- "total_cases": 27322.0,
- "new_cases": 325.0,
- "new_cases_smoothed": 357.429,
- "total_deaths": 1110.0,
- "new_deaths": 52.0,
- "new_deaths_smoothed": 39.857,
- "total_cases_per_million": 3156.927,
- "new_cases_per_million": 37.552,
- "new_cases_smoothed_per_million": 41.299,
- "total_deaths_per_million": 128.255,
- "new_deaths_per_million": 6.008,
- "new_deaths_smoothed_per_million": 4.605,
- "new_tests": 2119.0,
- "total_tests": 227484.0,
- "total_tests_per_thousand": 26.285,
- "new_tests_per_thousand": 0.245,
- "new_tests_smoothed": 3888.0,
- "new_tests_smoothed_per_thousand": 0.449,
- "tests_per_case": 10.878,
- "positive_rate": 0.092,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-20",
- "total_cases": 27658.0,
- "new_cases": 336.0,
- "new_cases_smoothed": 348.286,
- "total_deaths": 1134.0,
- "new_deaths": 24.0,
- "new_deaths_smoothed": 39.429,
- "total_cases_per_million": 3195.751,
- "new_cases_per_million": 38.823,
- "new_cases_smoothed_per_million": 40.243,
- "total_deaths_per_million": 131.028,
- "new_deaths_per_million": 2.773,
- "new_deaths_smoothed_per_million": 4.556,
- "new_tests": 3427.0,
- "total_tests": 230911.0,
- "total_tests_per_thousand": 26.681,
- "new_tests_per_thousand": 0.396,
- "new_tests_smoothed": 4063.0,
- "new_tests_smoothed_per_thousand": 0.469,
- "tests_per_case": 11.665999999999999,
- "positive_rate": 0.086,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-21",
- "total_cases": 27826.0,
- "new_cases": 168.0,
- "new_cases_smoothed": 332.429,
- "total_deaths": 1141.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 40.429,
- "total_cases_per_million": 3215.162,
- "new_cases_per_million": 19.412,
- "new_cases_smoothed_per_million": 38.411,
- "total_deaths_per_million": 131.837,
- "new_deaths_per_million": 0.809,
- "new_deaths_smoothed_per_million": 4.671,
- "new_tests": 4973.0,
- "total_tests": 235884.0,
- "total_tests_per_thousand": 27.255,
- "new_tests_per_thousand": 0.575,
- "new_tests_smoothed": 4213.0,
- "new_tests_smoothed_per_thousand": 0.487,
- "tests_per_case": 12.673,
- "positive_rate": 0.079,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-22",
- "total_cases": 27981.0,
- "new_cases": 155.0,
- "new_cases_smoothed": 318.286,
- "total_deaths": 1186.0,
- "new_deaths": 45.0,
- "new_deaths_smoothed": 40.857,
- "total_cases_per_million": 3233.072,
- "new_cases_per_million": 17.91,
- "new_cases_smoothed_per_million": 36.776,
- "total_deaths_per_million": 137.037,
- "new_deaths_per_million": 5.2,
- "new_deaths_smoothed_per_million": 4.721,
- "new_tests": 4653.0,
- "total_tests": 240537.0,
- "total_tests_per_thousand": 27.793,
- "new_tests_per_thousand": 0.538,
- "new_tests_smoothed": 4079.0,
- "new_tests_smoothed_per_thousand": 0.471,
- "tests_per_case": 12.815999999999999,
- "positive_rate": 0.078,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-23",
- "total_cases": 28186.0,
- "new_cases": 205.0,
- "new_cases_smoothed": 264.286,
- "total_deaths": 1216.0,
- "new_deaths": 30.0,
- "new_deaths_smoothed": 34.714,
- "total_cases_per_million": 3256.758,
- "new_cases_per_million": 23.687,
- "new_cases_smoothed_per_million": 30.537,
- "total_deaths_per_million": 140.503,
- "new_deaths_per_million": 3.466,
- "new_deaths_smoothed_per_million": 4.011,
- "new_tests": 4562.0,
- "total_tests": 245099.0,
- "total_tests_per_thousand": 28.32,
- "new_tests_per_thousand": 0.527,
- "new_tests_smoothed": 3997.0,
- "new_tests_smoothed_per_thousand": 0.462,
- "tests_per_case": 15.124,
- "positive_rate": 0.066,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-24",
- "total_cases": 28414.0,
- "new_cases": 228.0,
- "new_cases_smoothed": 251.857,
- "total_deaths": 1267.0,
- "new_deaths": 51.0,
- "new_deaths_smoothed": 35.857,
- "total_cases_per_million": 3283.103,
- "new_cases_per_million": 26.344,
- "new_cases_smoothed_per_million": 29.101,
- "total_deaths_per_million": 146.396,
- "new_deaths_per_million": 5.893,
- "new_deaths_smoothed_per_million": 4.143,
- "new_tests": 4793.0,
- "total_tests": 249892.0,
- "total_tests_per_thousand": 28.874,
- "new_tests_per_thousand": 0.554,
- "new_tests_smoothed": 4025.0,
- "new_tests_smoothed_per_thousand": 0.465,
- "tests_per_case": 15.981,
- "positive_rate": 0.063,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-25",
- "total_cases": 28595.0,
- "new_cases": 181.0,
- "new_cases_smoothed": 228.286,
- "total_deaths": 1308.0,
- "new_deaths": 41.0,
- "new_deaths_smoothed": 35.714,
- "total_cases_per_million": 3304.016,
- "new_cases_per_million": 20.914,
- "new_cases_smoothed_per_million": 26.377,
- "total_deaths_per_million": 151.133,
- "new_deaths_per_million": 4.737,
- "new_deaths_smoothed_per_million": 4.127,
- "new_tests": 4033.0,
- "total_tests": 253925.0,
- "total_tests_per_thousand": 29.34,
- "new_tests_per_thousand": 0.466,
- "new_tests_smoothed": 4080.0,
- "new_tests_smoothed_per_thousand": 0.471,
- "tests_per_case": 17.872,
- "positive_rate": 0.055999999999999994,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-26",
- "total_cases": 28811.0,
- "new_cases": 216.0,
- "new_cases_smoothed": 212.714,
- "total_deaths": 1328.0,
- "new_deaths": 20.0,
- "new_deaths_smoothed": 31.143,
- "total_cases_per_million": 3328.974,
- "new_cases_per_million": 24.958,
- "new_cases_smoothed_per_million": 24.578,
- "total_deaths_per_million": 153.444,
- "new_deaths_per_million": 2.311,
- "new_deaths_smoothed_per_million": 3.598,
- "new_tests": 2363.0,
- "total_tests": 256288.0,
- "total_tests_per_thousand": 29.613,
- "new_tests_per_thousand": 0.273,
- "new_tests_smoothed": 4115.0,
- "new_tests_smoothed_per_thousand": 0.475,
- "tests_per_case": 19.345,
- "positive_rate": 0.052000000000000005,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-27",
- "total_cases": 28978.0,
- "new_cases": 167.0,
- "new_cases_smoothed": 188.571,
- "total_deaths": 1336.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 28.857,
- "total_cases_per_million": 3348.27,
- "new_cases_per_million": 19.296,
- "new_cases_smoothed_per_million": 21.789,
- "total_deaths_per_million": 154.368,
- "new_deaths_per_million": 0.924,
- "new_deaths_smoothed_per_million": 3.334,
- "new_tests": 3749.0,
- "total_tests": 260037.0,
- "total_tests_per_thousand": 30.046,
- "new_tests_per_thousand": 0.433,
- "new_tests_smoothed": 4161.0,
- "new_tests_smoothed_per_thousand": 0.481,
- "tests_per_case": 22.066,
- "positive_rate": 0.045,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-04-28",
- "total_cases": 29081.0,
- "new_cases": 103.0,
- "new_cases_smoothed": 179.286,
- "total_deaths": 1352.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 30.143,
- "total_cases_per_million": 3360.171,
- "new_cases_per_million": 11.901,
- "new_cases_smoothed_per_million": 20.716,
- "total_deaths_per_million": 156.217,
- "new_deaths_per_million": 1.849,
- "new_deaths_smoothed_per_million": 3.483,
- "new_tests": 5594.0,
- "total_tests": 265631.0,
- "total_tests_per_thousand": 30.692,
- "new_tests_per_thousand": 0.646,
- "new_tests_smoothed": 4250.0,
- "new_tests_smoothed_per_thousand": 0.491,
- "tests_per_case": 23.705,
- "positive_rate": 0.042,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-04-29",
- "total_cases": 29181.0,
- "new_cases": 100.0,
- "new_cases_smoothed": 171.429,
- "total_deaths": 1379.0,
- "new_deaths": 27.0,
- "new_deaths_smoothed": 27.571,
- "total_cases_per_million": 3371.726,
- "new_cases_per_million": 11.555,
- "new_cases_smoothed_per_million": 19.808,
- "total_deaths_per_million": 159.337,
- "new_deaths_per_million": 3.12,
- "new_deaths_smoothed_per_million": 3.186,
- "new_tests": 5810.0,
- "total_tests": 271441.0,
- "total_tests_per_thousand": 31.364,
- "new_tests_per_thousand": 0.671,
- "new_tests_smoothed": 4415.0,
- "new_tests_smoothed_per_thousand": 0.51,
- "tests_per_case": 25.754,
- "positive_rate": 0.039,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-04-30",
- "total_cases": 29324.0,
- "new_cases": 143.0,
- "new_cases_smoothed": 162.571,
- "total_deaths": 1407.0,
- "new_deaths": 28.0,
- "new_deaths_smoothed": 27.286,
- "total_cases_per_million": 3388.249,
- "new_cases_per_million": 16.523,
- "new_cases_smoothed_per_million": 18.784,
- "total_deaths_per_million": 162.572,
- "new_deaths_per_million": 3.235,
- "new_deaths_smoothed_per_million": 3.153,
- "new_tests": 4850.0,
- "total_tests": 276291.0,
- "total_tests_per_thousand": 31.924,
- "new_tests_per_thousand": 0.56,
- "new_tests_smoothed": 4456.0,
- "new_tests_smoothed_per_thousand": 0.515,
- "tests_per_case": 27.409000000000002,
- "positive_rate": 0.036000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-05-01",
- "total_cases": 29503.0,
- "new_cases": 179.0,
- "new_cases_smoothed": 155.571,
- "total_deaths": 1422.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 22.143,
- "total_cases_per_million": 3408.932,
- "new_cases_per_million": 20.683,
- "new_cases_smoothed_per_million": 17.976,
- "total_deaths_per_million": 164.305,
- "new_deaths_per_million": 1.733,
- "new_deaths_smoothed_per_million": 2.559,
- "new_tests": 4451.0,
- "total_tests": 280742.0,
- "total_tests_per_thousand": 32.438,
- "new_tests_per_thousand": 0.514,
- "new_tests_smoothed": 4407.0,
- "new_tests_smoothed_per_thousand": 0.509,
- "tests_per_case": 28.328000000000003,
- "positive_rate": 0.035,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-05-02",
- "total_cases": 29622.0,
- "new_cases": 119.0,
- "new_cases_smoothed": 146.714,
- "total_deaths": 1434.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 18.0,
- "total_cases_per_million": 3422.681,
- "new_cases_per_million": 13.75,
- "new_cases_smoothed_per_million": 16.952,
- "total_deaths_per_million": 165.692,
- "new_deaths_per_million": 1.387,
- "new_deaths_smoothed_per_million": 2.08,
- "new_tests": 3120.0,
- "total_tests": 283862.0,
- "total_tests_per_thousand": 32.799,
- "new_tests_per_thousand": 0.361,
- "new_tests_smoothed": 4277.0,
- "new_tests_smoothed_per_thousand": 0.494,
- "tests_per_case": 29.151999999999997,
- "positive_rate": 0.034,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-05-03",
- "total_cases": 29734.0,
- "new_cases": 112.0,
- "new_cases_smoothed": 131.857,
- "total_deaths": 1466.0,
- "new_deaths": 32.0,
- "new_deaths_smoothed": 19.714,
- "total_cases_per_million": 3435.622,
- "new_cases_per_million": 12.941,
- "new_cases_smoothed_per_million": 15.235,
- "total_deaths_per_million": 169.389,
- "new_deaths_per_million": 3.697,
- "new_deaths_smoothed_per_million": 2.278,
- "new_tests": 2519.0,
- "total_tests": 286381.0,
- "total_tests_per_thousand": 33.09,
- "new_tests_per_thousand": 0.291,
- "new_tests_smoothed": 4299.0,
- "new_tests_smoothed_per_thousand": 0.497,
- "tests_per_case": 32.603,
- "positive_rate": 0.031,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-05-04",
- "total_cases": 29822.0,
- "new_cases": 88.0,
- "new_cases_smoothed": 120.571,
- "total_deaths": 1472.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 19.429,
- "total_cases_per_million": 3445.79,
- "new_cases_per_million": 10.168,
- "new_cases_smoothed_per_million": 13.931,
- "total_deaths_per_million": 170.083,
- "new_deaths_per_million": 0.693,
- "new_deaths_smoothed_per_million": 2.245,
- "new_tests": 3862.0,
- "total_tests": 290243.0,
- "total_tests_per_thousand": 33.536,
- "new_tests_per_thousand": 0.446,
- "new_tests_smoothed": 4315.0,
- "new_tests_smoothed_per_thousand": 0.499,
- "tests_per_case": 35.788000000000004,
- "positive_rate": 0.027999999999999997,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-05-05",
- "total_cases": 29898.0,
- "new_cases": 76.0,
- "new_cases_smoothed": 116.714,
- "total_deaths": 1476.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 17.714,
- "total_cases_per_million": 3454.572,
- "new_cases_per_million": 8.781,
- "new_cases_smoothed_per_million": 13.486,
- "total_deaths_per_million": 170.545,
- "new_deaths_per_million": 0.462,
- "new_deaths_smoothed_per_million": 2.047,
- "new_tests": 5890.0,
- "total_tests": 296133.0,
- "total_tests_per_thousand": 34.217,
- "new_tests_per_thousand": 0.681,
- "new_tests_smoothed": 4357.0,
- "new_tests_smoothed_per_thousand": 0.503,
- "tests_per_case": 37.33,
- "positive_rate": 0.027000000000000003,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-05-06",
- "total_cases": 29926.0,
- "new_cases": 28.0,
- "new_cases_smoothed": 106.429,
- "total_deaths": 1482.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 14.714,
- "total_cases_per_million": 3457.807,
- "new_cases_per_million": 3.235,
- "new_cases_smoothed_per_million": 12.297,
- "total_deaths_per_million": 171.238,
- "new_deaths_per_million": 0.693,
- "new_deaths_smoothed_per_million": 1.7,
- "new_tests": 5376.0,
- "total_tests": 301509.0,
- "total_tests_per_thousand": 34.838,
- "new_tests_per_thousand": 0.621,
- "new_tests_smoothed": 4295.0,
- "new_tests_smoothed_per_thousand": 0.496,
- "tests_per_case": 40.356,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-05-07",
- "total_cases": 29977.0,
- "new_cases": 51.0,
- "new_cases_smoothed": 93.286,
- "total_deaths": 1504.0,
- "new_deaths": 22.0,
- "new_deaths_smoothed": 13.857,
- "total_cases_per_million": 3463.7,
- "new_cases_per_million": 5.893,
- "new_cases_smoothed_per_million": 10.779,
- "total_deaths_per_million": 173.78,
- "new_deaths_per_million": 2.542,
- "new_deaths_smoothed_per_million": 1.601,
- "new_tests": 4664.0,
- "total_tests": 306173.0,
- "total_tests_per_thousand": 35.377,
- "new_tests_per_thousand": 0.539,
- "new_tests_smoothed": 4269.0,
- "new_tests_smoothed_per_thousand": 0.493,
- "tests_per_case": 45.763000000000005,
- "positive_rate": 0.022000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-05-08",
- "total_cases": 30043.0,
- "new_cases": 66.0,
- "new_cases_smoothed": 77.143,
- "total_deaths": 1517.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 13.571,
- "total_cases_per_million": 3471.326,
- "new_cases_per_million": 7.626,
- "new_cases_smoothed_per_million": 8.913,
- "total_deaths_per_million": 175.282,
- "new_deaths_per_million": 1.502,
- "new_deaths_smoothed_per_million": 1.568,
- "new_tests": 4356.0,
- "total_tests": 310529.0,
- "total_tests_per_thousand": 35.88,
- "new_tests_per_thousand": 0.503,
- "new_tests_smoothed": 4255.0,
- "new_tests_smoothed_per_thousand": 0.492,
- "tests_per_case": 55.157,
- "positive_rate": 0.018000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-05-09",
- "total_cases": 30124.0,
- "new_cases": 81.0,
- "new_cases_smoothed": 71.714,
- "total_deaths": 1525.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 13.0,
- "total_cases_per_million": 3480.685,
- "new_cases_per_million": 9.359,
- "new_cases_smoothed_per_million": 8.286,
- "total_deaths_per_million": 176.207,
- "new_deaths_per_million": 0.924,
- "new_deaths_smoothed_per_million": 1.502,
- "new_tests": 3136.0,
- "total_tests": 313665.0,
- "total_tests_per_thousand": 36.243,
- "new_tests_per_thousand": 0.362,
- "new_tests_smoothed": 4258.0,
- "new_tests_smoothed_per_thousand": 0.492,
- "tests_per_case": 59.375,
- "positive_rate": 0.017,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-05-10",
- "total_cases": 30168.0,
- "new_cases": 44.0,
- "new_cases_smoothed": 62.0,
- "total_deaths": 1531.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 9.286,
- "total_cases_per_million": 3485.769,
- "new_cases_per_million": 5.084,
- "new_cases_smoothed_per_million": 7.164,
- "total_deaths_per_million": 176.9,
- "new_deaths_per_million": 0.693,
- "new_deaths_smoothed_per_million": 1.073,
- "new_tests": 1431.0,
- "total_tests": 315096.0,
- "total_tests_per_thousand": 36.408,
- "new_tests_per_thousand": 0.165,
- "new_tests_smoothed": 4102.0,
- "new_tests_smoothed_per_thousand": 0.474,
- "tests_per_case": 66.161,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 69.44
- },
- {
- "date": "2020-05-11",
- "total_cases": 30222.0,
- "new_cases": 54.0,
- "new_cases_smoothed": 57.143,
- "total_deaths": 1537.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 9.286,
- "total_cases_per_million": 3492.009,
- "new_cases_per_million": 6.239,
- "new_cases_smoothed_per_million": 6.603,
- "total_deaths_per_million": 177.593,
- "new_deaths_per_million": 0.693,
- "new_deaths_smoothed_per_million": 1.073,
- "new_tests": 5076.0,
- "total_tests": 320172.0,
- "total_tests_per_thousand": 36.994,
- "new_tests_per_thousand": 0.587,
- "new_tests_smoothed": 4276.0,
- "new_tests_smoothed_per_thousand": 0.494,
- "tests_per_case": 74.83,
- "positive_rate": 0.013000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-12",
- "total_cases": 30261.0,
- "new_cases": 39.0,
- "new_cases_smoothed": 51.857,
- "total_deaths": 1542.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 9.429,
- "total_cases_per_million": 3496.515,
- "new_cases_per_million": 4.506,
- "new_cases_smoothed_per_million": 5.992,
- "total_deaths_per_million": 178.171,
- "new_deaths_per_million": 0.578,
- "new_deaths_smoothed_per_million": 1.089,
- "new_tests": 5567.0,
- "total_tests": 325739.0,
- "total_tests_per_thousand": 37.638,
- "new_tests_per_thousand": 0.643,
- "new_tests_smoothed": 4229.0,
- "new_tests_smoothed_per_thousand": 0.489,
- "tests_per_case": 81.551,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-13",
- "total_cases": 30297.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 53.0,
- "total_deaths": 1560.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 11.143,
- "total_cases_per_million": 3500.674,
- "new_cases_per_million": 4.16,
- "new_cases_smoothed_per_million": 6.124,
- "total_deaths_per_million": 180.251,
- "new_deaths_per_million": 2.08,
- "new_deaths_smoothed_per_million": 1.288,
- "new_tests": 6231.0,
- "total_tests": 331970.0,
- "total_tests_per_thousand": 38.358,
- "new_tests_per_thousand": 0.72,
- "new_tests_smoothed": 4352.0,
- "new_tests_smoothed_per_thousand": 0.503,
- "tests_per_case": 82.113,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-14",
- "total_cases": 30330.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 50.429,
- "total_deaths": 1563.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 8.429,
- "total_cases_per_million": 3504.487,
- "new_cases_per_million": 3.813,
- "new_cases_smoothed_per_million": 5.827,
- "total_deaths_per_million": 180.597,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.974,
- "new_tests": 5706.0,
- "total_tests": 337676.0,
- "total_tests_per_thousand": 39.017,
- "new_tests_per_thousand": 0.659,
- "new_tests_smoothed": 4500.0,
- "new_tests_smoothed_per_thousand": 0.52,
- "tests_per_case": 89.235,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-15",
- "total_cases": 30380.0,
- "new_cases": 50.0,
- "new_cases_smoothed": 48.143,
- "total_deaths": 1588.0,
- "new_deaths": 25.0,
- "new_deaths_smoothed": 10.143,
- "total_cases_per_million": 3510.265,
- "new_cases_per_million": 5.777,
- "new_cases_smoothed_per_million": 5.563,
- "total_deaths_per_million": 183.486,
- "new_deaths_per_million": 2.889,
- "new_deaths_smoothed_per_million": 1.172,
- "new_tests": 5598.0,
- "total_tests": 343274.0,
- "total_tests_per_thousand": 39.664,
- "new_tests_per_thousand": 0.647,
- "new_tests_smoothed": 4678.0,
- "new_tests_smoothed_per_thousand": 0.541,
- "tests_per_case": 97.169,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-16",
- "total_cases": 30431.0,
- "new_cases": 51.0,
- "new_cases_smoothed": 43.857,
- "total_deaths": 1594.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 9.857,
- "total_cases_per_million": 3516.158,
- "new_cases_per_million": 5.893,
- "new_cases_smoothed_per_million": 5.067,
- "total_deaths_per_million": 184.179,
- "new_deaths_per_million": 0.693,
- "new_deaths_smoothed_per_million": 1.139,
- "new_tests": 3270.0,
- "total_tests": 346544.0,
- "total_tests_per_thousand": 40.042,
- "new_tests_per_thousand": 0.378,
- "new_tests_smoothed": 4697.0,
- "new_tests_smoothed_per_thousand": 0.543,
- "tests_per_case": 107.098,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-17",
- "total_cases": 30489.0,
- "new_cases": 58.0,
- "new_cases_smoothed": 45.857,
- "total_deaths": 1601.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 10.0,
- "total_cases_per_million": 3522.859,
- "new_cases_per_million": 6.702,
- "new_cases_smoothed_per_million": 5.299,
- "total_deaths_per_million": 184.988,
- "new_deaths_per_million": 0.809,
- "new_deaths_smoothed_per_million": 1.155,
- "new_tests": 1744.0,
- "total_tests": 348288.0,
- "total_tests_per_thousand": 40.243,
- "new_tests_per_thousand": 0.202,
- "new_tests_smoothed": 4742.0,
- "new_tests_smoothed_per_thousand": 0.548,
- "tests_per_case": 103.40799999999999,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-18",
- "total_cases": 30504.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 40.286,
- "total_deaths": 1602.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 9.286,
- "total_cases_per_million": 3524.592,
- "new_cases_per_million": 1.733,
- "new_cases_smoothed_per_million": 4.655,
- "total_deaths_per_million": 185.103,
- "new_deaths_per_million": 0.116,
- "new_deaths_smoothed_per_million": 1.073,
- "new_tests": 4414.0,
- "total_tests": 352702.0,
- "total_tests_per_thousand": 40.753,
- "new_tests_per_thousand": 0.51,
- "new_tests_smoothed": 4647.0,
- "new_tests_smoothed_per_thousand": 0.537,
- "tests_per_case": 115.351,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-19",
- "total_cases": 30514.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 36.143,
- "total_deaths": 1602.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 3525.748,
- "new_cases_per_million": 1.155,
- "new_cases_smoothed_per_million": 4.176,
- "total_deaths_per_million": 185.103,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.99,
- "new_tests": 5999.0,
- "total_tests": 358701.0,
- "total_tests_per_thousand": 41.446,
- "new_tests_per_thousand": 0.693,
- "new_tests_smoothed": 4709.0,
- "new_tests_smoothed_per_thousand": 0.544,
- "tests_per_case": 130.289,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-20",
- "total_cases": 30535.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 34.0,
- "total_deaths": 1613.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 7.571,
- "total_cases_per_million": 3528.174,
- "new_cases_per_million": 2.426,
- "new_cases_smoothed_per_million": 3.929,
- "total_deaths_per_million": 186.374,
- "new_deaths_per_million": 1.271,
- "new_deaths_smoothed_per_million": 0.875,
- "new_tests": 4864.0,
- "total_tests": 363565.0,
- "total_tests_per_thousand": 42.008,
- "new_tests_per_thousand": 0.562,
- "new_tests_smoothed": 4514.0,
- "new_tests_smoothed_per_thousand": 0.522,
- "tests_per_case": 132.765,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-21",
- "total_cases": 30575.0,
- "new_cases": 40.0,
- "new_cases_smoothed": 35.0,
- "total_deaths": 1629.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 9.429,
- "total_cases_per_million": 3532.796,
- "new_cases_per_million": 4.622,
- "new_cases_smoothed_per_million": 4.044,
- "total_deaths_per_million": 188.223,
- "new_deaths_per_million": 1.849,
- "new_deaths_smoothed_per_million": 1.089,
- "new_tests": 2117.0,
- "total_tests": 365682.0,
- "total_tests_per_thousand": 42.253,
- "new_tests_per_thousand": 0.245,
- "new_tests_smoothed": 4001.0,
- "new_tests_smoothed_per_thousand": 0.462,
- "tests_per_case": 114.314,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-22",
- "total_cases": 30611.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 33.0,
- "total_deaths": 1637.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 7.0,
- "total_cases_per_million": 3536.956,
- "new_cases_per_million": 4.16,
- "new_cases_smoothed_per_million": 3.813,
- "total_deaths_per_million": 189.148,
- "new_deaths_per_million": 0.924,
- "new_deaths_smoothed_per_million": 0.809,
- "new_tests": 3565.0,
- "total_tests": 369247.0,
- "total_tests_per_thousand": 42.665,
- "new_tests_per_thousand": 0.412,
- "new_tests_smoothed": 3710.0,
- "new_tests_smoothed_per_thousand": 0.429,
- "tests_per_case": 112.42399999999999,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-23",
- "total_cases": 30624.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 27.571,
- "total_deaths": 1637.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 6.143,
- "total_cases_per_million": 3538.458,
- "new_cases_per_million": 1.502,
- "new_cases_smoothed_per_million": 3.186,
- "total_deaths_per_million": 189.148,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.71,
- "new_tests": 2528.0,
- "total_tests": 371775.0,
- "total_tests_per_thousand": 42.957,
- "new_tests_per_thousand": 0.292,
- "new_tests_smoothed": 3604.0,
- "new_tests_smoothed_per_thousand": 0.416,
- "tests_per_case": 130.715,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-24",
- "total_cases": 30642.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 21.857,
- "total_deaths": 1641.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 5.714,
- "total_cases_per_million": 3540.538,
- "new_cases_per_million": 2.08,
- "new_cases_smoothed_per_million": 2.525,
- "total_deaths_per_million": 189.61,
- "new_deaths_per_million": 0.462,
- "new_deaths_smoothed_per_million": 0.66,
- "new_tests": 1660.0,
- "total_tests": 373435.0,
- "total_tests_per_thousand": 43.149,
- "new_tests_per_thousand": 0.192,
- "new_tests_smoothed": 3592.0,
- "new_tests_smoothed_per_thousand": 0.415,
- "tests_per_case": 164.34,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-25",
- "total_cases": 30653.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 21.286,
- "total_deaths": 1641.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 3541.809,
- "new_cases_per_million": 1.271,
- "new_cases_smoothed_per_million": 2.459,
- "total_deaths_per_million": 189.61,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.644,
- "new_tests": 4004.0,
- "total_tests": 377439.0,
- "total_tests_per_thousand": 43.611,
- "new_tests_per_thousand": 0.463,
- "new_tests_smoothed": 3534.0,
- "new_tests_smoothed_per_thousand": 0.408,
- "tests_per_case": 166.02700000000002,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-26",
- "total_cases": 30663.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 21.286,
- "total_deaths": 1641.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 3542.964,
- "new_cases_per_million": 1.155,
- "new_cases_smoothed_per_million": 2.459,
- "total_deaths_per_million": 189.61,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.644,
- "new_tests": 5695.0,
- "total_tests": 383134.0,
- "total_tests_per_thousand": 44.269,
- "new_tests_per_thousand": 0.658,
- "new_tests_smoothed": 3490.0,
- "new_tests_smoothed_per_thousand": 0.403,
- "tests_per_case": 163.96,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-27",
- "total_cases": 30678.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 20.429,
- "total_deaths": 1647.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 3544.697,
- "new_cases_per_million": 1.733,
- "new_cases_smoothed_per_million": 2.36,
- "total_deaths_per_million": 190.303,
- "new_deaths_per_million": 0.693,
- "new_deaths_smoothed_per_million": 0.561,
- "new_tests": 5001.0,
- "total_tests": 388135.0,
- "total_tests_per_thousand": 44.847,
- "new_tests_per_thousand": 0.578,
- "new_tests_smoothed": 3510.0,
- "new_tests_smoothed_per_thousand": 0.406,
- "tests_per_case": 171.81799999999998,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-28",
- "total_cases": 30678.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 14.714,
- "total_deaths": 1647.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 3544.697,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.7,
- "total_deaths_per_million": 190.303,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.297,
- "new_tests": 4193.0,
- "total_tests": 392328.0,
- "total_tests_per_thousand": 45.332,
- "new_tests_per_thousand": 0.484,
- "new_tests_smoothed": 3807.0,
- "new_tests_smoothed_per_thousand": 0.44,
- "tests_per_case": 258.728,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-29",
- "total_cases": 30713.0,
- "new_cases": 35.0,
- "new_cases_smoothed": 14.571,
- "total_deaths": 1654.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 3548.741,
- "new_cases_per_million": 4.044,
- "new_cases_smoothed_per_million": 1.684,
- "total_deaths_per_million": 191.112,
- "new_deaths_per_million": 0.809,
- "new_deaths_smoothed_per_million": 0.281,
- "new_tests": 3712.0,
- "total_tests": 396040.0,
- "total_tests_per_thousand": 45.761,
- "new_tests_per_thousand": 0.429,
- "new_tests_smoothed": 3828.0,
- "new_tests_smoothed_per_thousand": 0.442,
- "tests_per_case": 262.70599999999996,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-30",
- "total_cases": 30745.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 17.286,
- "total_deaths": 1656.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 3552.439,
- "new_cases_per_million": 3.697,
- "new_cases_smoothed_per_million": 1.997,
- "total_deaths_per_million": 191.343,
- "new_deaths_per_million": 0.231,
- "new_deaths_smoothed_per_million": 0.314,
- "new_tests": 2588.0,
- "total_tests": 398628.0,
- "total_tests_per_thousand": 46.06,
- "new_tests_per_thousand": 0.299,
- "new_tests_smoothed": 3836.0,
- "new_tests_smoothed_per_thousand": 0.443,
- "tests_per_case": 221.917,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-05-31",
- "total_cases": 30762.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 17.143,
- "total_deaths": 1656.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 3554.403,
- "new_cases_per_million": 1.964,
- "new_cases_smoothed_per_million": 1.981,
- "total_deaths_per_million": 191.343,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.248,
- "new_tests": 1572.0,
- "total_tests": 400200.0,
- "total_tests_per_thousand": 46.241,
- "new_tests_per_thousand": 0.182,
- "new_tests_smoothed": 3824.0,
- "new_tests_smoothed_per_thousand": 0.442,
- "tests_per_case": 223.067,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-01",
- "total_cases": 30779.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 18.0,
- "total_deaths": 1656.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 3556.367,
- "new_cases_per_million": 1.964,
- "new_cases_smoothed_per_million": 2.08,
- "total_deaths_per_million": 191.343,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.248,
- "new_tests": 1782.0,
- "total_tests": 401982.0,
- "total_tests_per_thousand": 46.447,
- "new_tests_per_thousand": 0.206,
- "new_tests_smoothed": 3506.0,
- "new_tests_smoothed_per_thousand": 0.405,
- "tests_per_case": 194.778,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-02",
- "total_cases": 30788.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 17.857,
- "total_deaths": 1656.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 3557.407,
- "new_cases_per_million": 1.04,
- "new_cases_smoothed_per_million": 2.063,
- "total_deaths_per_million": 191.343,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.248,
- "new_tests": 4282.0,
- "total_tests": 406264.0,
- "total_tests_per_thousand": 46.942,
- "new_tests_per_thousand": 0.495,
- "new_tests_smoothed": 3304.0,
- "new_tests_smoothed_per_thousand": 0.382,
- "tests_per_case": 185.024,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-03",
- "total_cases": 30791.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 16.143,
- "total_deaths": 1656.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 3557.754,
- "new_cases_per_million": 0.347,
- "new_cases_smoothed_per_million": 1.865,
- "total_deaths_per_million": 191.343,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.149,
- "new_tests": 5267.0,
- "total_tests": 411531.0,
- "total_tests_per_thousand": 47.55,
- "new_tests_per_thousand": 0.609,
- "new_tests_smoothed": 3342.0,
- "new_tests_smoothed_per_thousand": 0.386,
- "tests_per_case": 207.02700000000002,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-04",
- "total_cases": 30810.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 18.857,
- "total_deaths": 1659.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 3559.949,
- "new_cases_per_million": 2.195,
- "new_cases_smoothed_per_million": 2.179,
- "total_deaths_per_million": 191.69,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.198,
- "new_tests": 5217.0,
- "total_tests": 416748.0,
- "total_tests_per_thousand": 48.153,
- "new_tests_per_thousand": 0.603,
- "new_tests_smoothed": 3489.0,
- "new_tests_smoothed_per_thousand": 0.403,
- "tests_per_case": 185.023,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-05",
- "total_cases": 30830.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 16.714,
- "total_deaths": 1659.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 3562.26,
- "new_cases_per_million": 2.311,
- "new_cases_smoothed_per_million": 1.931,
- "total_deaths_per_million": 191.69,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.083,
- "new_tests": 4821.0,
- "total_tests": 421569.0,
- "total_tests_per_thousand": 48.71,
- "new_tests_per_thousand": 0.557,
- "new_tests_smoothed": 3647.0,
- "new_tests_smoothed_per_thousand": 0.421,
- "tests_per_case": 218.197,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-06",
- "total_cases": 30853.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 15.429,
- "total_deaths": 1659.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 3564.918,
- "new_cases_per_million": 2.658,
- "new_cases_smoothed_per_million": 1.783,
- "total_deaths_per_million": 191.69,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "new_tests": 3121.0,
- "total_tests": 424690.0,
- "total_tests_per_thousand": 49.071,
- "new_tests_per_thousand": 0.361,
- "new_tests_smoothed": 3723.0,
- "new_tests_smoothed_per_thousand": 0.43,
- "tests_per_case": 241.30599999999998,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 50.0
- },
- {
- "date": "2020-06-07",
- "total_cases": 30873.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 15.857,
- "total_deaths": 1660.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 3567.229,
- "new_cases_per_million": 2.311,
- "new_cases_smoothed_per_million": 1.832,
- "total_deaths_per_million": 191.805,
- "new_deaths_per_million": 0.116,
- "new_deaths_smoothed_per_million": 0.066,
- "new_tests": 1542.0,
- "total_tests": 426232.0,
- "total_tests_per_thousand": 49.249,
- "new_tests_per_thousand": 0.178,
- "new_tests_smoothed": 3719.0,
- "new_tests_smoothed_per_thousand": 0.43,
- "tests_per_case": 234.532,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 50.0
- },
- {
- "date": "2020-06-08",
- "total_cases": 30882.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 14.714,
- "total_deaths": 1660.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 3568.268,
- "new_cases_per_million": 1.04,
- "new_cases_smoothed_per_million": 1.7,
- "total_deaths_per_million": 191.805,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.066,
- "new_tests": 4713.0,
- "total_tests": 430945.0,
- "total_tests_per_thousand": 49.794,
- "new_tests_per_thousand": 0.545,
- "new_tests_smoothed": 4138.0,
- "new_tests_smoothed_per_thousand": 0.478,
- "tests_per_case": 281.223,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-06-09",
- "total_cases": 30889.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 14.429,
- "total_deaths": 1660.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 3569.077,
- "new_cases_per_million": 0.809,
- "new_cases_smoothed_per_million": 1.667,
- "total_deaths_per_million": 191.805,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.066,
- "new_tests": 6493.0,
- "total_tests": 437438.0,
- "total_tests_per_thousand": 50.544,
- "new_tests_per_thousand": 0.75,
- "new_tests_smoothed": 4453.0,
- "new_tests_smoothed_per_thousand": 0.515,
- "tests_per_case": 308.624,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-06-10",
- "total_cases": 30905.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 16.286,
- "total_deaths": 1662.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 3570.926,
- "new_cases_per_million": 1.849,
- "new_cases_smoothed_per_million": 1.882,
- "total_deaths_per_million": 192.036,
- "new_deaths_per_million": 0.231,
- "new_deaths_smoothed_per_million": 0.099,
- "new_tests": 6600.0,
- "total_tests": 444038.0,
- "total_tests_per_thousand": 51.306,
- "new_tests_per_thousand": 0.763,
- "new_tests_smoothed": 4644.0,
- "new_tests_smoothed_per_thousand": 0.537,
- "tests_per_case": 285.158,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-06-11",
- "total_cases": 30928.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 16.857,
- "total_deaths": 1674.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 3573.583,
- "new_cases_per_million": 2.658,
- "new_cases_smoothed_per_million": 1.948,
- "total_deaths_per_million": 193.423,
- "new_deaths_per_million": 1.387,
- "new_deaths_smoothed_per_million": 0.248,
- "new_tests": 5610.0,
- "total_tests": 449648.0,
- "total_tests_per_thousand": 51.955,
- "new_tests_per_thousand": 0.648,
- "new_tests_smoothed": 4700.0,
- "new_tests_smoothed_per_thousand": 0.543,
- "tests_per_case": 278.814,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-06-12",
- "total_cases": 30961.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 18.714,
- "total_deaths": 1674.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 3577.396,
- "new_cases_per_million": 3.813,
- "new_cases_smoothed_per_million": 2.162,
- "total_deaths_per_million": 193.423,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.248,
- "new_tests": 6456.0,
- "total_tests": 456104.0,
- "total_tests_per_thousand": 52.701,
- "new_tests_per_thousand": 0.746,
- "new_tests_smoothed": 4934.0,
- "new_tests_smoothed_per_thousand": 0.57,
- "tests_per_case": 263.649,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-06-13",
- "total_cases": 30980.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 18.143,
- "total_deaths": 1676.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 3579.592,
- "new_cases_per_million": 2.195,
- "new_cases_smoothed_per_million": 2.096,
- "total_deaths_per_million": 193.654,
- "new_deaths_per_million": 0.231,
- "new_deaths_smoothed_per_million": 0.281,
- "new_tests": 4358.0,
- "total_tests": 460462.0,
- "total_tests_per_thousand": 53.204,
- "new_tests_per_thousand": 0.504,
- "new_tests_smoothed": 5110.0,
- "new_tests_smoothed_per_thousand": 0.59,
- "tests_per_case": 281.654,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-06-14",
- "total_cases": 31011.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 19.714,
- "total_deaths": 1676.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 3583.174,
- "new_cases_per_million": 3.582,
- "new_cases_smoothed_per_million": 2.278,
- "total_deaths_per_million": 193.654,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.264,
- "new_tests": 1795.0,
- "total_tests": 462257.0,
- "total_tests_per_thousand": 53.412,
- "new_tests_per_thousand": 0.207,
- "new_tests_smoothed": 5146.0,
- "new_tests_smoothed_per_thousand": 0.595,
- "tests_per_case": 261.029,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-06-15",
- "total_cases": 31034.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 21.714,
- "total_deaths": 1676.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 3585.831,
- "new_cases_per_million": 2.658,
- "new_cases_smoothed_per_million": 2.509,
- "total_deaths_per_million": 193.654,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.264,
- "new_tests": 6506.0,
- "total_tests": 468763.0,
- "total_tests_per_thousand": 54.163,
- "new_tests_per_thousand": 0.752,
- "new_tests_smoothed": 5403.0,
- "new_tests_smoothed_per_thousand": 0.624,
- "tests_per_case": 248.822,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-06-16",
- "total_cases": 31048.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 22.714,
- "total_deaths": 1676.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 3587.449,
- "new_cases_per_million": 1.618,
- "new_cases_smoothed_per_million": 2.625,
- "total_deaths_per_million": 193.654,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.264,
- "new_tests": 10045.0,
- "total_tests": 478808.0,
- "total_tests_per_thousand": 55.324,
- "new_tests_per_thousand": 1.161,
- "new_tests_smoothed": 5910.0,
- "new_tests_smoothed_per_thousand": 0.683,
- "tests_per_case": 260.189,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-06-17",
- "total_cases": 31063.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 22.571,
- "total_deaths": 1677.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 3589.182,
- "new_cases_per_million": 1.733,
- "new_cases_smoothed_per_million": 2.608,
- "total_deaths_per_million": 193.769,
- "new_deaths_per_million": 0.116,
- "new_deaths_smoothed_per_million": 0.248,
- "new_tests": 9617.0,
- "total_tests": 488425.0,
- "total_tests_per_thousand": 56.435,
- "new_tests_per_thousand": 1.111,
- "new_tests_smoothed": 6341.0,
- "new_tests_smoothed_per_thousand": 0.733,
- "tests_per_case": 280.93,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-06-18",
- "total_cases": 31100.0,
- "new_cases": 37.0,
- "new_cases_smoothed": 24.571,
- "total_deaths": 1677.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 3593.457,
- "new_cases_per_million": 4.275,
- "new_cases_smoothed_per_million": 2.839,
- "total_deaths_per_million": 193.769,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "new_tests": 8433.0,
- "total_tests": 496858.0,
- "total_tests_per_thousand": 57.41,
- "new_tests_per_thousand": 0.974,
- "new_tests_smoothed": 6744.0,
- "new_tests_smoothed_per_thousand": 0.779,
- "tests_per_case": 274.465,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-06-19",
- "total_cases": 31117.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 22.286,
- "total_deaths": 1677.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 3595.422,
- "new_cases_per_million": 1.964,
- "new_cases_smoothed_per_million": 2.575,
- "total_deaths_per_million": 193.769,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "new_tests": 7586.0,
- "total_tests": 504444.0,
- "total_tests_per_thousand": 58.286,
- "new_tests_per_thousand": 0.877,
- "new_tests_smoothed": 6906.0,
- "new_tests_smoothed_per_thousand": 0.798,
- "tests_per_case": 309.885,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-06-20",
- "total_cases": 31209.0,
- "new_cases": 92.0,
- "new_cases_smoothed": 32.714,
- "total_deaths": 1677.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 3606.052,
- "new_cases_per_million": 10.63,
- "new_cases_smoothed_per_million": 3.78,
- "total_deaths_per_million": 193.769,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.017,
- "new_tests": 4698.0,
- "total_tests": 509142.0,
- "total_tests_per_thousand": 58.829,
- "new_tests_per_thousand": 0.543,
- "new_tests_smoothed": 6954.0,
- "new_tests_smoothed_per_thousand": 0.804,
- "tests_per_case": 212.56799999999998,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-06-21",
- "total_cases": 31209.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 28.286,
- "total_deaths": 1677.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 3606.052,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.268,
- "total_deaths_per_million": 193.769,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.017,
- "new_tests": 1779.0,
- "total_tests": 510921.0,
- "total_tests_per_thousand": 59.034,
- "new_tests_per_thousand": 0.206,
- "new_tests_smoothed": 6952.0,
- "new_tests_smoothed_per_thousand": 0.803,
- "tests_per_case": 245.778,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 48.15
- },
- {
- "date": "2020-06-22",
- "total_cases": 31209.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 25.0,
- "total_deaths": 1679.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 3606.052,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.889,
- "total_deaths_per_million": 194.0,
- "new_deaths_per_million": 0.231,
- "new_deaths_smoothed_per_million": 0.05,
- "new_tests": 8204.0,
- "total_tests": 519125.0,
- "total_tests_per_thousand": 59.982,
- "new_tests_per_thousand": 0.948,
- "new_tests_smoothed": 7195.0,
- "new_tests_smoothed_per_thousand": 0.831,
- "tests_per_case": 287.8,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 37.04
- },
- {
- "date": "2020-06-23",
- "total_cases": 31227.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 25.571,
- "total_deaths": 1679.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 3608.132,
- "new_cases_per_million": 2.08,
- "new_cases_smoothed_per_million": 2.955,
- "total_deaths_per_million": 194.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "new_tests": 11674.0,
- "total_tests": 530799.0,
- "total_tests_per_thousand": 61.331,
- "new_tests_per_thousand": 1.349,
- "new_tests_smoothed": 7427.0,
- "new_tests_smoothed_per_thousand": 0.858,
- "tests_per_case": 290.441,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 37.04
- },
- {
- "date": "2020-06-24",
- "total_cases": 31249.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 26.571,
- "total_deaths": 1679.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3610.674,
- "new_cases_per_million": 2.542,
- "new_cases_smoothed_per_million": 3.07,
- "total_deaths_per_million": 194.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.033,
- "new_tests": 9151.0,
- "total_tests": 539950.0,
- "total_tests_per_thousand": 62.389,
- "new_tests_per_thousand": 1.057,
- "new_tests_smoothed": 7361.0,
- "new_tests_smoothed_per_thousand": 0.851,
- "tests_per_case": 277.027,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 37.04
- },
- {
- "date": "2020-06-25",
- "total_cases": 31293.0,
- "new_cases": 44.0,
- "new_cases_smoothed": 27.571,
- "total_deaths": 1681.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 3615.758,
- "new_cases_per_million": 5.084,
- "new_cases_smoothed_per_million": 3.186,
- "total_deaths_per_million": 194.232,
- "new_deaths_per_million": 0.231,
- "new_deaths_smoothed_per_million": 0.066,
- "new_tests": 9263.0,
- "total_tests": 549213.0,
- "total_tests_per_thousand": 63.459,
- "new_tests_per_thousand": 1.07,
- "new_tests_smoothed": 7479.0,
- "new_tests_smoothed_per_thousand": 0.864,
- "tests_per_case": 271.259,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 37.04
- },
- {
- "date": "2020-06-26",
- "total_cases": 31345.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 32.571,
- "total_deaths": 1681.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 3621.766,
- "new_cases_per_million": 6.008,
- "new_cases_smoothed_per_million": 3.763,
- "total_deaths_per_million": 194.232,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.066,
- "new_tests": 10193.0,
- "total_tests": 559406.0,
- "total_tests_per_thousand": 64.637,
- "new_tests_per_thousand": 1.178,
- "new_tests_smoothed": 7852.0,
- "new_tests_smoothed_per_thousand": 0.907,
- "tests_per_case": 241.07,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 37.04
- },
- {
- "date": "2020-06-27",
- "total_cases": 31403.0,
- "new_cases": 58.0,
- "new_cases_smoothed": 27.714,
- "total_deaths": 1681.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 3628.467,
- "new_cases_per_million": 6.702,
- "new_cases_smoothed_per_million": 3.202,
- "total_deaths_per_million": 194.232,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.066,
- "new_tests": 6447.0,
- "total_tests": 565853.0,
- "total_tests_per_thousand": 65.382,
- "new_tests_per_thousand": 0.745,
- "new_tests_smoothed": 8102.0,
- "new_tests_smoothed_per_thousand": 0.936,
- "tests_per_case": 292.34,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 37.04
- },
- {
- "date": "2020-06-28",
- "total_cases": 31472.0,
- "new_cases": 69.0,
- "new_cases_smoothed": 37.571,
- "total_deaths": 1681.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 3636.44,
- "new_cases_per_million": 7.973,
- "new_cases_smoothed_per_million": 4.341,
- "total_deaths_per_million": 194.232,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.066,
- "new_tests": 2536.0,
- "total_tests": 568389.0,
- "total_tests_per_thousand": 65.675,
- "new_tests_per_thousand": 0.293,
- "new_tests_smoothed": 8210.0,
- "new_tests_smoothed_per_thousand": 0.949,
- "tests_per_case": 218.517,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 37.04
- },
- {
- "date": "2020-06-29",
- "total_cases": 31534.0,
- "new_cases": 62.0,
- "new_cases_smoothed": 46.429,
- "total_deaths": 1681.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3643.604,
- "new_cases_per_million": 7.164,
- "new_cases_smoothed_per_million": 5.365,
- "total_deaths_per_million": 194.232,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.033,
- "new_tests": 14089.0,
- "total_tests": 582478.0,
- "total_tests_per_thousand": 67.303,
- "new_tests_per_thousand": 1.628,
- "new_tests_smoothed": 9050.0,
- "new_tests_smoothed_per_thousand": 1.046,
- "tests_per_case": 194.923,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 37.04
- },
- {
- "date": "2020-06-30",
- "total_cases": 31569.0,
- "new_cases": 35.0,
- "new_cases_smoothed": 48.857,
- "total_deaths": 1681.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3647.648,
- "new_cases_per_million": 4.044,
- "new_cases_smoothed_per_million": 5.645,
- "total_deaths_per_million": 194.232,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.033,
- "new_tests": 15034.0,
- "total_tests": 597512.0,
- "total_tests_per_thousand": 69.04,
- "new_tests_per_thousand": 1.737,
- "new_tests_smoothed": 9530.0,
- "new_tests_smoothed_per_thousand": 1.101,
- "tests_per_case": 195.058,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 37.04
- },
- {
- "date": "2020-07-01",
- "total_cases": 31631.0,
- "new_cases": 62.0,
- "new_cases_smoothed": 54.571,
- "total_deaths": 1683.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 3654.812,
- "new_cases_per_million": 7.164,
- "new_cases_smoothed_per_million": 6.305,
- "total_deaths_per_million": 194.463,
- "new_deaths_per_million": 0.231,
- "new_deaths_smoothed_per_million": 0.066,
- "new_tests": 11242.0,
- "total_tests": 608754.0,
- "total_tests_per_thousand": 70.339,
- "new_tests_per_thousand": 1.299,
- "new_tests_smoothed": 9829.0,
- "new_tests_smoothed_per_thousand": 1.136,
- "tests_per_case": 180.113,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 37.04
- },
- {
- "date": "2020-07-02",
- "total_cases": 31851.0,
- "new_cases": 220.0,
- "new_cases_smoothed": 79.714,
- "total_deaths": 1684.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 3680.232,
- "new_cases_per_million": 25.42,
- "new_cases_smoothed_per_million": 9.211,
- "total_deaths_per_million": 194.578,
- "new_deaths_per_million": 0.116,
- "new_deaths_smoothed_per_million": 0.05,
- "new_tests": 10892.0,
- "total_tests": 619646.0,
- "total_tests_per_thousand": 71.597,
- "new_tests_per_thousand": 1.259,
- "new_tests_smoothed": 10062.0,
- "new_tests_smoothed_per_thousand": 1.163,
- "tests_per_case": 126.226,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 37.04
- },
- {
- "date": "2020-07-03",
- "total_cases": 31884.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 77.0,
- "total_deaths": 1685.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 3684.045,
- "new_cases_per_million": 3.813,
- "new_cases_smoothed_per_million": 8.897,
- "total_deaths_per_million": 194.694,
- "new_deaths_per_million": 0.116,
- "new_deaths_smoothed_per_million": 0.066,
- "new_tests": 10380.0,
- "total_tests": 630026.0,
- "total_tests_per_thousand": 72.797,
- "new_tests_per_thousand": 1.199,
- "new_tests_smoothed": 10089.0,
- "new_tests_smoothed_per_thousand": 1.166,
- "tests_per_case": 131.026,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 41.2
- },
- {
- "date": "2020-07-04",
- "total_cases": 32017.0,
- "new_cases": 133.0,
- "new_cases_smoothed": 87.714,
- "total_deaths": 1685.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 3699.412,
- "new_cases_per_million": 15.368,
- "new_cases_smoothed_per_million": 10.135,
- "total_deaths_per_million": 194.694,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.066,
- "new_tests": 6216.0,
- "total_tests": 636242.0,
- "total_tests_per_thousand": 73.515,
- "new_tests_per_thousand": 0.718,
- "new_tests_smoothed": 10056.0,
- "new_tests_smoothed_per_thousand": 1.162,
- "tests_per_case": 114.645,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 41.2
- },
- {
- "date": "2020-07-05",
- "total_cases": 32114.0,
- "new_cases": 97.0,
- "new_cases_smoothed": 91.714,
- "total_deaths": 1685.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 3710.62,
- "new_cases_per_million": 11.208,
- "new_cases_smoothed_per_million": 10.597,
- "total_deaths_per_million": 194.694,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.066,
- "new_tests": 2521.0,
- "total_tests": 638763.0,
- "total_tests_per_thousand": 73.806,
- "new_tests_per_thousand": 0.291,
- "new_tests_smoothed": 10053.0,
- "new_tests_smoothed_per_thousand": 1.162,
- "tests_per_case": 109.61200000000001,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 41.2
- },
- {
- "date": "2020-07-06",
- "total_cases": 32184.0,
- "new_cases": 70.0,
- "new_cases_smoothed": 92.857,
- "total_deaths": 1685.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 3718.708,
- "new_cases_per_million": 8.088,
- "new_cases_smoothed_per_million": 10.729,
- "total_deaths_per_million": 194.694,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.066,
- "new_tests": 7826.0,
- "total_tests": 646589.0,
- "total_tests_per_thousand": 74.71,
- "new_tests_per_thousand": 0.904,
- "new_tests_smoothed": 9159.0,
- "new_tests_smoothed_per_thousand": 1.058,
- "tests_per_case": 98.635,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 41.2
- },
- {
- "date": "2020-07-07",
- "total_cases": 32230.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 94.429,
- "total_deaths": 1685.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 3724.023,
- "new_cases_per_million": 5.315,
- "new_cases_smoothed_per_million": 10.911,
- "total_deaths_per_million": 194.694,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.066,
- "new_tests": 9998.0,
- "total_tests": 656587.0,
- "total_tests_per_thousand": 75.866,
- "new_tests_per_thousand": 1.155,
- "new_tests_smoothed": 8439.0,
- "new_tests_smoothed_per_thousand": 0.975,
- "tests_per_case": 89.369,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 41.2
- },
- {
- "date": "2020-07-08",
- "total_cases": 32284.0,
- "new_cases": 54.0,
- "new_cases_smoothed": 93.286,
- "total_deaths": 1685.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3730.263,
- "new_cases_per_million": 6.239,
- "new_cases_smoothed_per_million": 10.779,
- "total_deaths_per_million": 194.694,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.033,
- "new_tests": 8869.0,
- "total_tests": 665456.0,
- "total_tests_per_thousand": 76.89,
- "new_tests_per_thousand": 1.025,
- "new_tests_smoothed": 8100.0,
- "new_tests_smoothed_per_thousand": 0.936,
- "tests_per_case": 86.83,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 41.2
- },
- {
- "date": "2020-07-09",
- "total_cases": 32413.0,
- "new_cases": 129.0,
- "new_cases_smoothed": 80.286,
- "total_deaths": 1685.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 3745.168,
- "new_cases_per_million": 14.905,
- "new_cases_smoothed_per_million": 9.277,
- "total_deaths_per_million": 194.694,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.017,
- "new_tests": 8533.0,
- "total_tests": 673989.0,
- "total_tests_per_thousand": 77.876,
- "new_tests_per_thousand": 0.986,
- "new_tests_smoothed": 7763.0,
- "new_tests_smoothed_per_thousand": 0.897,
- "tests_per_case": 96.69200000000001,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 41.2
- },
- {
- "date": "2020-07-10",
- "total_cases": 32501.0,
- "new_cases": 88.0,
- "new_cases_smoothed": 88.143,
- "total_deaths": 1685.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3755.336,
- "new_cases_per_million": 10.168,
- "new_cases_smoothed_per_million": 10.184,
- "total_deaths_per_million": 194.694,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 7698.0,
- "total_tests": 681687.0,
- "total_tests_per_thousand": 78.766,
- "new_tests_per_thousand": 0.889,
- "new_tests_smoothed": 7380.0,
- "new_tests_smoothed_per_thousand": 0.853,
- "tests_per_case": 83.728,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 41.2
- },
- {
- "date": "2020-07-11",
- "total_cases": 32605.0,
- "new_cases": 104.0,
- "new_cases_smoothed": 84.0,
- "total_deaths": 1685.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3767.353,
- "new_cases_per_million": 12.017,
- "new_cases_smoothed_per_million": 9.706,
- "total_deaths_per_million": 194.694,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 4745.0,
- "total_tests": 686432.0,
- "total_tests_per_thousand": 79.314,
- "new_tests_per_thousand": 0.548,
- "new_tests_smoothed": 7170.0,
- "new_tests_smoothed_per_thousand": 0.828,
- "tests_per_case": 85.35700000000001,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 41.2
- },
- {
- "date": "2020-07-12",
- "total_cases": 32713.0,
- "new_cases": 108.0,
- "new_cases_smoothed": 85.571,
- "total_deaths": 1685.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3779.832,
- "new_cases_per_million": 12.479,
- "new_cases_smoothed_per_million": 9.887,
- "total_deaths_per_million": 194.694,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1946.0,
- "total_tests": 688378.0,
- "total_tests_per_thousand": 79.539,
- "new_tests_per_thousand": 0.225,
- "new_tests_smoothed": 7088.0,
- "new_tests_smoothed_per_thousand": 0.819,
- "tests_per_case": 82.831,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 41.2
- },
- {
- "date": "2020-07-13",
- "total_cases": 32798.0,
- "new_cases": 85.0,
- "new_cases_smoothed": 87.714,
- "total_deaths": 1685.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3789.653,
- "new_cases_per_million": 9.821,
- "new_cases_smoothed_per_million": 10.135,
- "total_deaths_per_million": 194.694,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 6846.0,
- "total_tests": 695224.0,
- "total_tests_per_thousand": 80.33,
- "new_tests_per_thousand": 0.791,
- "new_tests_smoothed": 6948.0,
- "new_tests_smoothed_per_thousand": 0.803,
- "tests_per_case": 79.212,
- "positive_rate": 0.013000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 41.2
- },
- {
- "date": "2020-07-14",
- "total_cases": 32861.0,
- "new_cases": 63.0,
- "new_cases_smoothed": 90.143,
- "total_deaths": 1685.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3796.932,
- "new_cases_per_million": 7.279,
- "new_cases_smoothed_per_million": 10.416,
- "total_deaths_per_million": 194.694,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 8812.0,
- "total_tests": 704036.0,
- "total_tests_per_thousand": 81.348,
- "new_tests_per_thousand": 1.018,
- "new_tests_smoothed": 6778.0,
- "new_tests_smoothed_per_thousand": 0.783,
- "tests_per_case": 75.192,
- "positive_rate": 0.013000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 41.2
- },
- {
- "date": "2020-07-15",
- "total_cases": 32931.0,
- "new_cases": 70.0,
- "new_cases_smoothed": 92.429,
- "total_deaths": 1687.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3805.021,
- "new_cases_per_million": 8.088,
- "new_cases_smoothed_per_million": 10.68,
- "total_deaths_per_million": 194.925,
- "new_deaths_per_million": 0.231,
- "new_deaths_smoothed_per_million": 0.033,
- "new_tests": 7751.0,
- "total_tests": 711787.0,
- "total_tests_per_thousand": 82.244,
- "new_tests_per_thousand": 0.896,
- "new_tests_smoothed": 6619.0,
- "new_tests_smoothed_per_thousand": 0.765,
- "tests_per_case": 71.612,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 41.2
- },
- {
- "date": "2020-07-16",
- "total_cases": 33063.0,
- "new_cases": 132.0,
- "new_cases_smoothed": 92.857,
- "total_deaths": 1687.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3820.273,
- "new_cases_per_million": 15.252,
- "new_cases_smoothed_per_million": 10.729,
- "total_deaths_per_million": 194.925,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.033,
- "new_tests": 7285.0,
- "total_tests": 719072.0,
- "total_tests_per_thousand": 83.085,
- "new_tests_per_thousand": 0.842,
- "new_tests_smoothed": 6440.0,
- "new_tests_smoothed_per_thousand": 0.744,
- "tests_per_case": 69.354,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 41.2
- },
- {
- "date": "2020-07-17",
- "total_cases": 33205.0,
- "new_cases": 142.0,
- "new_cases_smoothed": 100.571,
- "total_deaths": 1687.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3836.68,
- "new_cases_per_million": 16.407,
- "new_cases_smoothed_per_million": 11.621,
- "total_deaths_per_million": 194.925,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.033,
- "new_tests": 6723.0,
- "total_tests": 725795.0,
- "total_tests_per_thousand": 83.862,
- "new_tests_per_thousand": 0.777,
- "new_tests_smoothed": 6301.0,
- "new_tests_smoothed_per_thousand": 0.728,
- "tests_per_case": 62.652,
- "positive_rate": 0.016,
- "tests_units": "tests performed",
- "stringency_index": 41.2
- },
- {
- "date": "2020-07-18",
- "total_cases": 33296.0,
- "new_cases": 91.0,
- "new_cases_smoothed": 98.714,
- "total_deaths": 1687.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3847.195,
- "new_cases_per_million": 10.515,
- "new_cases_smoothed_per_million": 11.406,
- "total_deaths_per_million": 194.925,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.033,
- "new_tests": 3769.0,
- "total_tests": 729564.0,
- "total_tests_per_thousand": 84.298,
- "new_tests_per_thousand": 0.435,
- "new_tests_smoothed": 6162.0,
- "new_tests_smoothed_per_thousand": 0.712,
- "tests_per_case": 62.423,
- "positive_rate": 0.016,
- "tests_units": "tests performed",
- "stringency_index": 41.2
- },
- {
- "date": "2020-07-19",
- "total_cases": 33406.0,
- "new_cases": 110.0,
- "new_cases_smoothed": 99.0,
- "total_deaths": 1687.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3859.905,
- "new_cases_per_million": 12.71,
- "new_cases_smoothed_per_million": 11.439,
- "total_deaths_per_million": 194.925,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.033,
- "new_tests": 1776.0,
- "total_tests": 731340.0,
- "total_tests_per_thousand": 84.503,
- "new_tests_per_thousand": 0.205,
- "new_tests_smoothed": 6137.0,
- "new_tests_smoothed_per_thousand": 0.709,
- "tests_per_case": 61.99,
- "positive_rate": 0.016,
- "tests_units": "tests performed",
- "stringency_index": 41.2
- },
- {
- "date": "2020-07-20",
- "total_cases": 33504.0,
- "new_cases": 98.0,
- "new_cases_smoothed": 100.857,
- "total_deaths": 1687.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3871.228,
- "new_cases_per_million": 11.323,
- "new_cases_smoothed_per_million": 11.654,
- "total_deaths_per_million": 194.925,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.033,
- "new_tests": 5686.0,
- "total_tests": 737026.0,
- "total_tests_per_thousand": 85.16,
- "new_tests_per_thousand": 0.657,
- "new_tests_smoothed": 5972.0,
- "new_tests_smoothed_per_thousand": 0.69,
- "tests_per_case": 59.211999999999996,
- "positive_rate": 0.017,
- "tests_units": "tests performed",
- "stringency_index": 41.2
- },
- {
- "date": "2020-07-21",
- "total_cases": 33547.0,
- "new_cases": 43.0,
- "new_cases_smoothed": 98.0,
- "total_deaths": 1687.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3876.196,
- "new_cases_per_million": 4.968,
- "new_cases_smoothed_per_million": 11.323,
- "total_deaths_per_million": 194.925,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.033,
- "new_tests": 6832.0,
- "total_tests": 743858.0,
- "total_tests_per_thousand": 85.949,
- "new_tests_per_thousand": 0.789,
- "new_tests_smoothed": 5689.0,
- "new_tests_smoothed_per_thousand": 0.657,
- "tests_per_case": 58.051,
- "positive_rate": 0.017,
- "tests_units": "tests performed",
- "stringency_index": 41.2
- },
- {
- "date": "2020-07-22",
- "total_cases": 33655.0,
- "new_cases": 108.0,
- "new_cases_smoothed": 103.429,
- "total_deaths": 1690.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 3888.675,
- "new_cases_per_million": 12.479,
- "new_cases_smoothed_per_million": 11.951,
- "total_deaths_per_million": 195.271,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.05,
- "new_tests": 6723.0,
- "total_tests": 750581.0,
- "total_tests_per_thousand": 86.726,
- "new_tests_per_thousand": 0.777,
- "new_tests_smoothed": 5542.0,
- "new_tests_smoothed_per_thousand": 0.64,
- "tests_per_case": 53.583,
- "positive_rate": 0.019,
- "tests_units": "tests performed",
- "stringency_index": 41.2
- },
- {
- "date": "2020-07-23",
- "total_cases": 33796.0,
- "new_cases": 141.0,
- "new_cases_smoothed": 104.714,
- "total_deaths": 1692.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 3904.967,
- "new_cases_per_million": 16.292,
- "new_cases_smoothed_per_million": 12.099,
- "total_deaths_per_million": 195.503,
- "new_deaths_per_million": 0.231,
- "new_deaths_smoothed_per_million": 0.083,
- "new_tests": 5514.0,
- "total_tests": 756095.0,
- "total_tests_per_thousand": 87.363,
- "new_tests_per_thousand": 0.637,
- "new_tests_smoothed": 5289.0,
- "new_tests_smoothed_per_thousand": 0.611,
- "tests_per_case": 50.50899999999999,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 41.2
- },
- {
- "date": "2020-07-24",
- "total_cases": 33913.0,
- "new_cases": 117.0,
- "new_cases_smoothed": 101.143,
- "total_deaths": 1693.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 3918.486,
- "new_cases_per_million": 13.519,
- "new_cases_smoothed_per_million": 11.687,
- "total_deaths_per_million": 195.618,
- "new_deaths_per_million": 0.116,
- "new_deaths_smoothed_per_million": 0.099,
- "new_tests": 5544.0,
- "total_tests": 761639.0,
- "total_tests_per_thousand": 88.004,
- "new_tests_per_thousand": 0.641,
- "new_tests_smoothed": 5121.0,
- "new_tests_smoothed_per_thousand": 0.592,
- "tests_per_case": 50.631,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 41.2
- },
- {
- "date": "2020-07-25",
- "total_cases": 34067.0,
- "new_cases": 154.0,
- "new_cases_smoothed": 110.143,
- "total_deaths": 1699.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 3936.28,
- "new_cases_per_million": 17.794,
- "new_cases_smoothed_per_million": 12.726,
- "total_deaths_per_million": 196.311,
- "new_deaths_per_million": 0.693,
- "new_deaths_smoothed_per_million": 0.198,
- "new_tests": 3632.0,
- "total_tests": 765271.0,
- "total_tests_per_thousand": 88.423,
- "new_tests_per_thousand": 0.42,
- "new_tests_smoothed": 5101.0,
- "new_tests_smoothed_per_thousand": 0.589,
- "tests_per_case": 46.313,
- "positive_rate": 0.022000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 41.2
- },
- {
- "date": "2020-07-26",
- "total_cases": 34215.0,
- "new_cases": 148.0,
- "new_cases_smoothed": 115.571,
- "total_deaths": 1699.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 3953.381,
- "new_cases_per_million": 17.101,
- "new_cases_smoothed_per_million": 13.354,
- "total_deaths_per_million": 196.311,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.198,
- "new_tests": 1789.0,
- "total_tests": 767060.0,
- "total_tests_per_thousand": 88.63,
- "new_tests_per_thousand": 0.207,
- "new_tests_smoothed": 5103.0,
- "new_tests_smoothed_per_thousand": 0.59,
- "tests_per_case": 44.155,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 41.2
- },
- {
- "date": "2020-07-27",
- "total_cases": 34325.0,
- "new_cases": 110.0,
- "new_cases_smoothed": 117.286,
- "total_deaths": 1700.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 3966.091,
- "new_cases_per_million": 12.71,
- "new_cases_smoothed_per_million": 13.552,
- "total_deaths_per_million": 196.427,
- "new_deaths_per_million": 0.116,
- "new_deaths_smoothed_per_million": 0.215,
- "new_tests": 5536.0,
- "total_tests": 772596.0,
- "total_tests_per_thousand": 89.27,
- "new_tests_per_thousand": 0.64,
- "new_tests_smoothed": 5081.0,
- "new_tests_smoothed_per_thousand": 0.587,
- "tests_per_case": 43.321999999999996,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 41.2
- },
- {
- "date": "2020-07-28",
- "total_cases": 34390.0,
- "new_cases": 65.0,
- "new_cases_smoothed": 120.429,
- "total_deaths": 1700.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 3973.601,
- "new_cases_per_million": 7.51,
- "new_cases_smoothed_per_million": 13.915,
- "total_deaths_per_million": 196.427,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.215,
- "new_tests": 7339.0,
- "total_tests": 779935.0,
- "total_tests_per_thousand": 90.118,
- "new_tests_per_thousand": 0.848,
- "new_tests_smoothed": 5154.0,
- "new_tests_smoothed_per_thousand": 0.596,
- "tests_per_case": 42.797,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 41.2
- },
- {
- "date": "2020-07-29",
- "total_cases": 34522.0,
- "new_cases": 132.0,
- "new_cases_smoothed": 123.857,
- "total_deaths": 1702.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 3988.853,
- "new_cases_per_million": 15.252,
- "new_cases_smoothed_per_million": 14.311,
- "total_deaths_per_million": 196.658,
- "new_deaths_per_million": 0.231,
- "new_deaths_smoothed_per_million": 0.198,
- "new_tests": 6852.0,
- "total_tests": 786787.0,
- "total_tests_per_thousand": 90.91,
- "new_tests_per_thousand": 0.792,
- "new_tests_smoothed": 5172.0,
- "new_tests_smoothed_per_thousand": 0.598,
- "tests_per_case": 41.758,
- "positive_rate": 0.024,
- "tests_units": "tests performed",
- "stringency_index": 41.2
- },
- {
- "date": "2020-07-30",
- "total_cases": 34714.0,
- "new_cases": 192.0,
- "new_cases_smoothed": 131.143,
- "total_deaths": 1702.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 4011.038,
- "new_cases_per_million": 22.185,
- "new_cases_smoothed_per_million": 15.153,
- "total_deaths_per_million": 196.658,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.165,
- "new_tests": 7088.0,
- "total_tests": 793875.0,
- "total_tests_per_thousand": 91.728,
- "new_tests_per_thousand": 0.819,
- "new_tests_smoothed": 5397.0,
- "new_tests_smoothed_per_thousand": 0.624,
- "tests_per_case": 41.153999999999996,
- "positive_rate": 0.024,
- "tests_units": "tests performed",
- "stringency_index": 41.2
- },
- {
- "date": "2020-07-31",
- "total_cases": 34933.0,
- "new_cases": 219.0,
- "new_cases_smoothed": 145.714,
- "total_deaths": 1703.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 4036.342,
- "new_cases_per_million": 25.304,
- "new_cases_smoothed_per_million": 16.837,
- "total_deaths_per_million": 196.774,
- "new_deaths_per_million": 0.116,
- "new_deaths_smoothed_per_million": 0.165,
- "new_tests": 5711.0,
- "total_tests": 799586.0,
- "total_tests_per_thousand": 92.388,
- "new_tests_per_thousand": 0.66,
- "new_tests_smoothed": 5421.0,
- "new_tests_smoothed_per_thousand": 0.626,
- "tests_per_case": 37.203,
- "positive_rate": 0.027000000000000003,
- "tests_units": "tests performed",
- "stringency_index": 44.91
- },
- {
- "date": "2020-08-01",
- "total_cases": 35070.0,
- "new_cases": 137.0,
- "new_cases_smoothed": 143.286,
- "total_deaths": 1703.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 4052.172,
- "new_cases_per_million": 15.83,
- "new_cases_smoothed_per_million": 16.556,
- "total_deaths_per_million": 196.774,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.066,
- "new_tests": 3056.0,
- "total_tests": 802642.0,
- "total_tests_per_thousand": 92.741,
- "new_tests_per_thousand": 0.353,
- "new_tests_smoothed": 5339.0,
- "new_tests_smoothed_per_thousand": 0.617,
- "tests_per_case": 37.260999999999996,
- "positive_rate": 0.027000000000000003,
- "tests_units": "tests performed",
- "stringency_index": 44.91
- },
- {
- "date": "2020-08-02",
- "total_cases": 35412.0,
- "new_cases": 342.0,
- "new_cases_smoothed": 171.0,
- "total_deaths": 1705.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 4091.688,
- "new_cases_per_million": 39.516,
- "new_cases_smoothed_per_million": 19.758,
- "total_deaths_per_million": 197.005,
- "new_deaths_per_million": 0.231,
- "new_deaths_smoothed_per_million": 0.099,
- "new_tests": 2132.0,
- "total_tests": 804774.0,
- "total_tests_per_thousand": 92.988,
- "new_tests_per_thousand": 0.246,
- "new_tests_smoothed": 5388.0,
- "new_tests_smoothed_per_thousand": 0.623,
- "tests_per_case": 31.509,
- "positive_rate": 0.032,
- "tests_units": "tests performed",
- "stringency_index": 44.91
- },
- {
- "date": "2020-08-03",
- "total_cases": 35461.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 162.286,
- "total_deaths": 1705.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 4097.35,
- "new_cases_per_million": 5.662,
- "new_cases_smoothed_per_million": 18.751,
- "total_deaths_per_million": 197.005,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.083,
- "new_tests": 6237.0,
- "total_tests": 811011.0,
- "total_tests_per_thousand": 93.708,
- "new_tests_per_thousand": 0.721,
- "new_tests_smoothed": 5488.0,
- "new_tests_smoothed_per_thousand": 0.634,
- "tests_per_case": 33.817,
- "positive_rate": 0.03,
- "tests_units": "tests performed",
- "stringency_index": 44.91
- },
- {
- "date": "2020-08-04",
- "total_cases": 35527.0,
- "new_cases": 66.0,
- "new_cases_smoothed": 162.429,
- "total_deaths": 1705.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 4104.976,
- "new_cases_per_million": 7.626,
- "new_cases_smoothed_per_million": 18.768,
- "total_deaths_per_million": 197.005,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.083,
- "new_tests": 7326.0,
- "total_tests": 818337.0,
- "total_tests_per_thousand": 94.555,
- "new_tests_per_thousand": 0.846,
- "new_tests_smoothed": 5486.0,
- "new_tests_smoothed_per_thousand": 0.634,
- "tests_per_case": 33.775,
- "positive_rate": 0.03,
- "tests_units": "tests performed",
- "stringency_index": 44.91
- },
- {
- "date": "2020-08-05",
- "total_cases": 35657.0,
- "new_cases": 130.0,
- "new_cases_smoothed": 162.143,
- "total_deaths": 1705.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 4119.997,
- "new_cases_per_million": 15.021,
- "new_cases_smoothed_per_million": 18.735,
- "total_deaths_per_million": 197.005,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "new_tests": 6795.0,
- "total_tests": 825132.0,
- "total_tests_per_thousand": 95.34,
- "new_tests_per_thousand": 0.785,
- "new_tests_smoothed": 5478.0,
- "new_tests_smoothed_per_thousand": 0.633,
- "tests_per_case": 33.785,
- "positive_rate": 0.03,
- "tests_units": "tests performed",
- "stringency_index": 44.91
- },
- {
- "date": "2020-08-06",
- "total_cases": 35838.0,
- "new_cases": 181.0,
- "new_cases_smoothed": 160.571,
- "total_deaths": 1705.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 4140.911,
- "new_cases_per_million": 20.914,
- "new_cases_smoothed_per_million": 18.553,
- "total_deaths_per_million": 197.005,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "new_tests": 6622.0,
- "total_tests": 831754.0,
- "total_tests_per_thousand": 96.105,
- "new_tests_per_thousand": 0.765,
- "new_tests_smoothed": 5411.0,
- "new_tests_smoothed_per_thousand": 0.625,
- "tests_per_case": 33.698,
- "positive_rate": 0.03,
- "tests_units": "tests performed",
- "stringency_index": 44.91
- },
- {
- "date": "2020-08-07",
- "total_cases": 36019.0,
- "new_cases": 181.0,
- "new_cases_smoothed": 155.143,
- "total_deaths": 1708.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 4161.824,
- "new_cases_per_million": 20.914,
- "new_cases_smoothed_per_million": 17.926,
- "total_deaths_per_million": 197.351,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.083,
- "new_tests": 6169.0,
- "total_tests": 837923.0,
- "total_tests_per_thousand": 96.818,
- "new_tests_per_thousand": 0.713,
- "new_tests_smoothed": 5477.0,
- "new_tests_smoothed_per_thousand": 0.633,
- "tests_per_case": 35.303000000000004,
- "positive_rate": 0.027999999999999997,
- "tests_units": "tests performed",
- "stringency_index": 44.91
- },
- {
- "date": "2020-08-08",
- "total_cases": 36180.0,
- "new_cases": 161.0,
- "new_cases_smoothed": 158.571,
- "total_deaths": 1711.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 4180.427,
- "new_cases_per_million": 18.603,
- "new_cases_smoothed_per_million": 18.322,
- "total_deaths_per_million": 197.698,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.132,
- "new_tests": 3728.0,
- "total_tests": 841651.0,
- "total_tests_per_thousand": 97.249,
- "new_tests_per_thousand": 0.431,
- "new_tests_smoothed": 5573.0,
- "new_tests_smoothed_per_thousand": 0.644,
- "tests_per_case": 35.145,
- "positive_rate": 0.027999999999999997,
- "tests_units": "tests performed",
- "stringency_index": 44.91
- },
- {
- "date": "2020-08-09",
- "total_cases": 36362.0,
- "new_cases": 182.0,
- "new_cases_smoothed": 135.714,
- "total_deaths": 1711.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 4201.456,
- "new_cases_per_million": 21.029,
- "new_cases_smoothed_per_million": 15.681,
- "total_deaths_per_million": 197.698,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.099,
- "new_tests": 2035.0,
- "total_tests": 843686.0,
- "total_tests_per_thousand": 97.484,
- "new_tests_per_thousand": 0.235,
- "new_tests_smoothed": 5559.0,
- "new_tests_smoothed_per_thousand": 0.642,
- "tests_per_case": 40.961000000000006,
- "positive_rate": 0.024,
- "tests_units": "tests performed",
- "stringency_index": 44.91
- },
- {
- "date": "2020-08-10",
- "total_cases": 36514.0,
- "new_cases": 152.0,
- "new_cases_smoothed": 150.429,
- "total_deaths": 1711.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 4219.019,
- "new_cases_per_million": 17.563,
- "new_cases_smoothed_per_million": 17.381,
- "total_deaths_per_million": 197.698,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.099,
- "new_tests": 6059.0,
- "total_tests": 849745.0,
- "total_tests_per_thousand": 98.184,
- "new_tests_per_thousand": 0.7,
- "new_tests_smoothed": 5533.0,
- "new_tests_smoothed_per_thousand": 0.639,
- "tests_per_case": 36.782,
- "positive_rate": 0.027000000000000003,
- "tests_units": "tests performed",
- "stringency_index": 44.91
- },
- {
- "date": "2020-08-11",
- "total_cases": 36619.0,
- "new_cases": 105.0,
- "new_cases_smoothed": 156.0,
- "total_deaths": 1711.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 4231.152,
- "new_cases_per_million": 12.132,
- "new_cases_smoothed_per_million": 18.025,
- "total_deaths_per_million": 197.698,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.099,
- "new_tests": 7377.0,
- "total_tests": 857122.0,
- "total_tests_per_thousand": 99.036,
- "new_tests_per_thousand": 0.852,
- "new_tests_smoothed": 5541.0,
- "new_tests_smoothed_per_thousand": 0.64,
- "tests_per_case": 35.519,
- "positive_rate": 0.027999999999999997,
- "tests_units": "tests performed",
- "stringency_index": 44.91
- },
- {
- "date": "2020-08-12",
- "total_cases": 36806.0,
- "new_cases": 187.0,
- "new_cases_smoothed": 164.143,
- "total_deaths": 1712.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 4252.758,
- "new_cases_per_million": 21.607,
- "new_cases_smoothed_per_million": 18.966,
- "total_deaths_per_million": 197.813,
- "new_deaths_per_million": 0.116,
- "new_deaths_smoothed_per_million": 0.116,
- "new_tests": 6730.0,
- "total_tests": 863852.0,
- "total_tests_per_thousand": 99.814,
- "new_tests_per_thousand": 0.778,
- "new_tests_smoothed": 5531.0,
- "new_tests_smoothed_per_thousand": 0.639,
- "tests_per_case": 33.696,
- "positive_rate": 0.03,
- "tests_units": "tests performed",
- "stringency_index": 44.91
- },
- {
- "date": "2020-08-13",
- "total_cases": 37079.0,
- "new_cases": 273.0,
- "new_cases_smoothed": 177.286,
- "total_deaths": 1713.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 4284.302,
- "new_cases_per_million": 31.544,
- "new_cases_smoothed_per_million": 20.485,
- "total_deaths_per_million": 197.929,
- "new_deaths_per_million": 0.116,
- "new_deaths_smoothed_per_million": 0.132,
- "new_tests": 7361.0,
- "total_tests": 871213.0,
- "total_tests_per_thousand": 100.665,
- "new_tests_per_thousand": 0.851,
- "new_tests_smoothed": 5637.0,
- "new_tests_smoothed_per_thousand": 0.651,
- "tests_per_case": 31.796,
- "positive_rate": 0.031,
- "tests_units": "tests performed",
- "stringency_index": 44.91
- },
- {
- "date": "2020-08-14",
- "total_cases": 37312.0,
- "new_cases": 233.0,
- "new_cases_smoothed": 184.714,
- "total_deaths": 1714.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 4311.224,
- "new_cases_per_million": 26.922,
- "new_cases_smoothed_per_million": 21.343,
- "total_deaths_per_million": 198.045,
- "new_deaths_per_million": 0.116,
- "new_deaths_smoothed_per_million": 0.099,
- "new_tests": 7349.0,
- "total_tests": 878562.0,
- "total_tests_per_thousand": 101.514,
- "new_tests_per_thousand": 0.849,
- "new_tests_smoothed": 5806.0,
- "new_tests_smoothed_per_thousand": 0.671,
- "tests_per_case": 31.432,
- "positive_rate": 0.032,
- "tests_units": "tests performed",
- "stringency_index": 44.91
- },
- {
- "date": "2020-08-15",
- "total_cases": 37580.0,
- "new_cases": 268.0,
- "new_cases_smoothed": 200.0,
- "total_deaths": 1714.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 4342.19,
- "new_cases_per_million": 30.966,
- "new_cases_smoothed_per_million": 23.109,
- "total_deaths_per_million": 198.045,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "new_tests": 4862.0,
- "total_tests": 883424.0,
- "total_tests_per_thousand": 102.075,
- "new_tests_per_thousand": 0.562,
- "new_tests_smoothed": 5968.0,
- "new_tests_smoothed_per_thousand": 0.69,
- "tests_per_case": 29.84,
- "positive_rate": 0.034,
- "tests_units": "tests performed",
- "stringency_index": 44.91
- },
- {
- "date": "2020-08-16",
- "total_cases": 37831.0,
- "new_cases": 251.0,
- "new_cases_smoothed": 209.857,
- "total_deaths": 1714.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 4371.192,
- "new_cases_per_million": 29.002,
- "new_cases_smoothed_per_million": 24.248,
- "total_deaths_per_million": 198.045,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "new_tests": 2449.0,
- "total_tests": 885873.0,
- "total_tests_per_thousand": 102.358,
- "new_tests_per_thousand": 0.283,
- "new_tests_smoothed": 6027.0,
- "new_tests_smoothed_per_thousand": 0.696,
- "tests_per_case": 28.72,
- "positive_rate": 0.035,
- "tests_units": "tests performed",
- "stringency_index": 44.91
- },
- {
- "date": "2020-08-17",
- "total_cases": 38031.0,
- "new_cases": 200.0,
- "new_cases_smoothed": 216.714,
- "total_deaths": 1715.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 4394.301,
- "new_cases_per_million": 23.109,
- "new_cases_smoothed_per_million": 25.04,
- "total_deaths_per_million": 198.16,
- "new_deaths_per_million": 0.116,
- "new_deaths_smoothed_per_million": 0.066,
- "new_tests": 8249.0,
- "total_tests": 894122.0,
- "total_tests_per_thousand": 103.312,
- "new_tests_per_thousand": 0.953,
- "new_tests_smoothed": 6340.0,
- "new_tests_smoothed_per_thousand": 0.733,
- "tests_per_case": 29.255,
- "positive_rate": 0.034,
- "tests_units": "tests performed",
- "stringency_index": 44.91
- },
- {
- "date": "2020-08-18",
- "total_cases": 38156.0,
- "new_cases": 125.0,
- "new_cases_smoothed": 219.571,
- "total_deaths": 1715.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 4408.745,
- "new_cases_per_million": 14.443,
- "new_cases_smoothed_per_million": 25.37,
- "total_deaths_per_million": 198.16,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.066,
- "new_tests": 10582.0,
- "total_tests": 904704.0,
- "total_tests_per_thousand": 104.534,
- "new_tests_per_thousand": 1.223,
- "new_tests_smoothed": 6797.0,
- "new_tests_smoothed_per_thousand": 0.785,
- "tests_per_case": 30.956,
- "positive_rate": 0.032,
- "tests_units": "tests performed",
- "stringency_index": 44.91
- },
- {
- "date": "2020-08-19",
- "total_cases": 38352.0,
- "new_cases": 196.0,
- "new_cases_smoothed": 220.857,
- "total_deaths": 1716.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 4431.391,
- "new_cases_per_million": 22.647,
- "new_cases_smoothed_per_million": 25.519,
- "total_deaths_per_million": 198.276,
- "new_deaths_per_million": 0.116,
- "new_deaths_smoothed_per_million": 0.066,
- "new_tests": 9444.0,
- "total_tests": 914148.0,
- "total_tests_per_thousand": 105.625,
- "new_tests_per_thousand": 1.091,
- "new_tests_smoothed": 7185.0,
- "new_tests_smoothed_per_thousand": 0.83,
- "tests_per_case": 32.532,
- "positive_rate": 0.031,
- "tests_units": "tests performed",
- "stringency_index": 44.91
- },
- {
- "date": "2020-08-20",
- "total_cases": 38662.0,
- "new_cases": 310.0,
- "new_cases_smoothed": 226.143,
- "total_deaths": 1718.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 4467.21,
- "new_cases_per_million": 35.819,
- "new_cases_smoothed_per_million": 26.13,
- "total_deaths_per_million": 198.507,
- "new_deaths_per_million": 0.231,
- "new_deaths_smoothed_per_million": 0.083,
- "new_tests": 10141.0,
- "total_tests": 924289.0,
- "total_tests_per_thousand": 106.797,
- "new_tests_per_thousand": 1.172,
- "new_tests_smoothed": 7582.0,
- "new_tests_smoothed_per_thousand": 0.876,
- "tests_per_case": 33.527,
- "positive_rate": 0.03,
- "tests_units": "tests performed",
- "stringency_index": 44.91
- },
- {
- "date": "2020-08-21",
- "total_cases": 38926.0,
- "new_cases": 264.0,
- "new_cases_smoothed": 230.571,
- "total_deaths": 1718.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 4497.714,
- "new_cases_per_million": 30.504,
- "new_cases_smoothed_per_million": 26.641,
- "total_deaths_per_million": 198.507,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.066,
- "new_tests": 9995.0,
- "total_tests": 934284.0,
- "total_tests_per_thousand": 107.952,
- "new_tests_per_thousand": 1.155,
- "new_tests_smoothed": 7960.0,
- "new_tests_smoothed_per_thousand": 0.92,
- "tests_per_case": 34.523,
- "positive_rate": 0.028999999999999998,
- "tests_units": "tests performed",
- "stringency_index": 44.91
- },
- {
- "date": "2020-08-22",
- "total_cases": 39232.0,
- "new_cases": 306.0,
- "new_cases_smoothed": 236.0,
- "total_deaths": 1718.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 4533.071,
- "new_cases_per_million": 35.357,
- "new_cases_smoothed_per_million": 27.269,
- "total_deaths_per_million": 198.507,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.066,
- "new_tests": 6155.0,
- "total_tests": 940439.0,
- "total_tests_per_thousand": 108.663,
- "new_tests_per_thousand": 0.711,
- "new_tests_smoothed": 8145.0,
- "new_tests_smoothed_per_thousand": 0.941,
- "tests_per_case": 34.513000000000005,
- "positive_rate": 0.028999999999999998,
- "tests_units": "tests performed",
- "stringency_index": 44.91
- },
- {
- "date": "2020-08-23",
- "total_cases": 39526.0,
- "new_cases": 294.0,
- "new_cases_smoothed": 242.143,
- "total_deaths": 1719.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 4567.042,
- "new_cases_per_million": 33.97,
- "new_cases_smoothed_per_million": 27.978,
- "total_deaths_per_million": 198.622,
- "new_deaths_per_million": 0.116,
- "new_deaths_smoothed_per_million": 0.083,
- "new_tests": 3315.0,
- "total_tests": 943754.0,
- "total_tests_per_thousand": 109.046,
- "new_tests_per_thousand": 0.383,
- "new_tests_smoothed": 8269.0,
- "new_tests_smoothed_per_thousand": 0.955,
- "tests_per_case": 34.149,
- "positive_rate": 0.028999999999999998,
- "tests_units": "tests performed",
- "stringency_index": 44.91
- },
- {
- "date": "2020-08-24",
- "total_cases": 39802.0,
- "new_cases": 276.0,
- "new_cases_smoothed": 253.0,
- "total_deaths": 1719.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 4598.932,
- "new_cases_per_million": 31.89,
- "new_cases_smoothed_per_million": 29.233,
- "total_deaths_per_million": 198.622,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.066,
- "new_tests": 9990.0,
- "total_tests": 953744.0,
- "total_tests_per_thousand": 110.201,
- "new_tests_per_thousand": 1.154,
- "new_tests_smoothed": 8517.0,
- "new_tests_smoothed_per_thousand": 0.984,
- "tests_per_case": 33.664,
- "positive_rate": 0.03,
- "tests_units": "tests performed",
- "stringency_index": 44.91
- },
- {
- "date": "2020-08-25",
- "total_cases": 39959.0,
- "new_cases": 157.0,
- "new_cases_smoothed": 257.571,
- "total_deaths": 1720.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 4617.073,
- "new_cases_per_million": 18.141,
- "new_cases_smoothed_per_million": 29.761,
- "total_deaths_per_million": 198.738,
- "new_deaths_per_million": 0.116,
- "new_deaths_smoothed_per_million": 0.083,
- "new_tests": 13209.0,
- "total_tests": 966953.0,
- "total_tests_per_thousand": 111.727,
- "new_tests_per_thousand": 1.526,
- "new_tests_smoothed": 8893.0,
- "new_tests_smoothed_per_thousand": 1.028,
- "tests_per_case": 34.525999999999996,
- "positive_rate": 0.028999999999999998,
- "tests_units": "tests performed",
- "stringency_index": 44.91
- },
- {
- "date": "2020-08-26",
- "total_cases": 40161.0,
- "new_cases": 202.0,
- "new_cases_smoothed": 258.429,
- "total_deaths": 1722.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 4640.413,
- "new_cases_per_million": 23.34,
- "new_cases_smoothed_per_million": 29.86,
- "total_deaths_per_million": 198.969,
- "new_deaths_per_million": 0.231,
- "new_deaths_smoothed_per_million": 0.099,
- "new_tests": 12880.0,
- "total_tests": 979833.0,
- "total_tests_per_thousand": 113.215,
- "new_tests_per_thousand": 1.488,
- "new_tests_smoothed": 9384.0,
- "new_tests_smoothed_per_thousand": 1.084,
- "tests_per_case": 36.312,
- "positive_rate": 0.027999999999999997,
- "tests_units": "tests performed",
- "stringency_index": 44.91
- },
- {
- "date": "2020-08-27",
- "total_cases": 40540.0,
- "new_cases": 379.0,
- "new_cases_smoothed": 268.286,
- "total_deaths": 1722.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 4684.204,
- "new_cases_per_million": 43.792,
- "new_cases_smoothed_per_million": 30.999,
- "total_deaths_per_million": 198.969,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.066,
- "new_tests": 13158.0,
- "total_tests": 992991.0,
- "total_tests_per_thousand": 114.735,
- "new_tests_per_thousand": 1.52,
- "new_tests_smoothed": 9815.0,
- "new_tests_smoothed_per_thousand": 1.134,
- "tests_per_case": 36.584,
- "positive_rate": 0.027000000000000003,
- "tests_units": "tests performed",
- "stringency_index": 44.91
- },
- {
- "date": "2020-08-28",
- "total_cases": 40900.0,
- "new_cases": 360.0,
- "new_cases_smoothed": 282.0,
- "total_deaths": 1723.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 4725.801,
- "new_cases_per_million": 41.596,
- "new_cases_smoothed_per_million": 32.584,
- "total_deaths_per_million": 199.084,
- "new_deaths_per_million": 0.116,
- "new_deaths_smoothed_per_million": 0.083,
- "new_tests": 12576.0,
- "total_tests": 1005567.0,
- "total_tests_per_thousand": 116.188,
- "new_tests_per_thousand": 1.453,
- "new_tests_smoothed": 10183.0,
- "new_tests_smoothed_per_thousand": 1.177,
- "tests_per_case": 36.11,
- "positive_rate": 0.027999999999999997,
- "tests_units": "tests performed",
- "stringency_index": 44.91
- },
- {
- "date": "2020-08-29",
- "total_cases": 41240.0,
- "new_cases": 340.0,
- "new_cases_smoothed": 286.857,
- "total_deaths": 1724.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 4765.086,
- "new_cases_per_million": 39.285,
- "new_cases_smoothed_per_million": 33.145,
- "total_deaths_per_million": 199.2,
- "new_deaths_per_million": 0.116,
- "new_deaths_smoothed_per_million": 0.099,
- "new_tests": 8407.0,
- "total_tests": 1013974.0,
- "total_tests_per_thousand": 117.16,
- "new_tests_per_thousand": 0.971,
- "new_tests_smoothed": 10505.0,
- "new_tests_smoothed_per_thousand": 1.214,
- "tests_per_case": 36.621,
- "positive_rate": 0.027000000000000003,
- "tests_units": "tests performed",
- "stringency_index": 44.91
- },
- {
- "date": "2020-08-30",
- "total_cases": 41615.0,
- "new_cases": 375.0,
- "new_cases_smoothed": 298.429,
- "total_deaths": 1724.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 4808.416,
- "new_cases_per_million": 43.329,
- "new_cases_smoothed_per_million": 34.482,
- "total_deaths_per_million": 199.2,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.083,
- "new_tests": 3861.0,
- "total_tests": 1017835.0,
- "total_tests_per_thousand": 117.606,
- "new_tests_per_thousand": 0.446,
- "new_tests_smoothed": 10583.0,
- "new_tests_smoothed_per_thousand": 1.223,
- "tests_per_case": 35.461999999999996,
- "positive_rate": 0.027999999999999997,
- "tests_units": "tests performed",
- "stringency_index": 44.91
- },
- {
- "date": "2020-08-31",
- "total_cases": 41906.0,
- "new_cases": 291.0,
- "new_cases_smoothed": 300.571,
- "total_deaths": 1724.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 4842.039,
- "new_cases_per_million": 33.624,
- "new_cases_smoothed_per_million": 34.73,
- "total_deaths_per_million": 199.2,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.083,
- "new_tests": 11413.0,
- "total_tests": 1029248.0,
- "total_tests_per_thousand": 118.925,
- "new_tests_per_thousand": 1.319,
- "new_tests_smoothed": 10786.0,
- "new_tests_smoothed_per_thousand": 1.246,
- "tests_per_case": 35.885,
- "positive_rate": 0.027999999999999997,
- "tests_units": "tests performed",
- "stringency_index": 44.91
- },
- {
- "date": "2020-09-01",
- "total_cases": 42069.0,
- "new_cases": 163.0,
- "new_cases_smoothed": 301.429,
- "total_deaths": 1725.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 4860.873,
- "new_cases_per_million": 18.834,
- "new_cases_smoothed_per_million": 34.829,
- "total_deaths_per_million": 199.316,
- "new_deaths_per_million": 0.116,
- "new_deaths_smoothed_per_million": 0.083,
- "new_tests": 16452.0,
- "total_tests": 1045700.0,
- "total_tests_per_thousand": 120.826,
- "new_tests_per_thousand": 1.901,
- "new_tests_smoothed": 11250.0,
- "new_tests_smoothed_per_thousand": 1.3,
- "tests_per_case": 37.321999999999996,
- "positive_rate": 0.027000000000000003,
- "tests_units": "tests performed",
- "stringency_index": 43.06
- },
- {
- "date": "2020-09-02",
- "total_cases": 42285.0,
- "new_cases": 216.0,
- "new_cases_smoothed": 303.429,
- "total_deaths": 1726.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 4885.831,
- "new_cases_per_million": 24.958,
- "new_cases_smoothed_per_million": 35.06,
- "total_deaths_per_million": 199.431,
- "new_deaths_per_million": 0.116,
- "new_deaths_smoothed_per_million": 0.066,
- "new_tests": 16059.0,
- "total_tests": 1061759.0,
- "total_tests_per_thousand": 122.681,
- "new_tests_per_thousand": 1.856,
- "new_tests_smoothed": 11704.0,
- "new_tests_smoothed_per_thousand": 1.352,
- "tests_per_case": 38.573,
- "positive_rate": 0.026000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 43.06
- },
- {
- "date": "2020-09-03",
- "total_cases": 42655.0,
- "new_cases": 370.0,
- "new_cases_smoothed": 302.143,
- "total_deaths": 1726.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 4928.583,
- "new_cases_per_million": 42.752,
- "new_cases_smoothed_per_million": 34.911,
- "total_deaths_per_million": 199.431,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.066,
- "new_tests": 15543.0,
- "total_tests": 1077302.0,
- "total_tests_per_thousand": 124.477,
- "new_tests_per_thousand": 1.796,
- "new_tests_smoothed": 12044.0,
- "new_tests_smoothed_per_thousand": 1.392,
- "tests_per_case": 39.861999999999995,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 43.06
- },
- {
- "date": "2020-09-04",
- "total_cases": 43127.0,
- "new_cases": 472.0,
- "new_cases_smoothed": 318.143,
- "total_deaths": 1730.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 4983.12,
- "new_cases_per_million": 54.537,
- "new_cases_smoothed_per_million": 36.76,
- "total_deaths_per_million": 199.893,
- "new_deaths_per_million": 0.462,
- "new_deaths_smoothed_per_million": 0.116,
- "new_tests": 14504.0,
- "total_tests": 1091806.0,
- "total_tests_per_thousand": 126.153,
- "new_tests_per_thousand": 1.676,
- "new_tests_smoothed": 12320.0,
- "new_tests_smoothed_per_thousand": 1.424,
- "tests_per_case": 38.725,
- "positive_rate": 0.026000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 43.06
- },
- {
- "date": "2020-09-05",
- "total_cases": 43424.0,
- "new_cases": 297.0,
- "new_cases_smoothed": 312.0,
- "total_deaths": 1731.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 5017.437,
- "new_cases_per_million": 34.317,
- "new_cases_smoothed_per_million": 36.05,
- "total_deaths_per_million": 200.009,
- "new_deaths_per_million": 0.116,
- "new_deaths_smoothed_per_million": 0.116,
- "new_tests": 9532.0,
- "total_tests": 1101338.0,
- "total_tests_per_thousand": 127.254,
- "new_tests_per_thousand": 1.101,
- "new_tests_smoothed": 12481.0,
- "new_tests_smoothed_per_thousand": 1.442,
- "tests_per_case": 40.003,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 43.06
- },
- {
- "date": "2020-09-06",
- "total_cases": 43849.0,
- "new_cases": 425.0,
- "new_cases_smoothed": 319.143,
- "total_deaths": 1731.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 5066.544,
- "new_cases_per_million": 49.107,
- "new_cases_smoothed_per_million": 36.875,
- "total_deaths_per_million": 200.009,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.116,
- "new_tests": 4340.0,
- "total_tests": 1105678.0,
- "total_tests_per_thousand": 127.756,
- "new_tests_per_thousand": 0.501,
- "new_tests_smoothed": 12549.0,
- "new_tests_smoothed_per_thousand": 1.45,
- "tests_per_case": 39.321,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 43.06
- },
- {
- "date": "2020-09-07",
- "total_cases": 44293.0,
- "new_cases": 444.0,
- "new_cases_smoothed": 341.0,
- "total_deaths": 1732.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 5117.846,
- "new_cases_per_million": 51.302,
- "new_cases_smoothed_per_million": 39.401,
- "total_deaths_per_million": 200.124,
- "new_deaths_per_million": 0.116,
- "new_deaths_smoothed_per_million": 0.132,
- "new_tests": 13428.0,
- "total_tests": 1119106.0,
- "total_tests_per_thousand": 129.307,
- "new_tests_per_thousand": 1.552,
- "new_tests_smoothed": 12837.0,
- "new_tests_smoothed_per_thousand": 1.483,
- "tests_per_case": 37.645,
- "positive_rate": 0.027000000000000003,
- "tests_units": "tests performed",
- "stringency_index": 43.06
- },
- {
- "date": "2020-09-08",
- "total_cases": 44484.0,
- "new_cases": 191.0,
- "new_cases_smoothed": 345.0,
- "total_deaths": 1734.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 5139.915,
- "new_cases_per_million": 22.069,
- "new_cases_smoothed_per_million": 39.863,
- "total_deaths_per_million": 200.355,
- "new_deaths_per_million": 0.231,
- "new_deaths_smoothed_per_million": 0.149,
- "new_tests": 17566.0,
- "total_tests": 1136672.0,
- "total_tests_per_thousand": 131.337,
- "new_tests_per_thousand": 2.03,
- "new_tests_smoothed": 12996.0,
- "new_tests_smoothed_per_thousand": 1.502,
- "tests_per_case": 37.67,
- "positive_rate": 0.027000000000000003,
- "tests_units": "tests performed",
- "stringency_index": 43.06
- },
- {
- "date": "2020-09-09",
- "total_cases": 44729.0,
- "new_cases": 245.0,
- "new_cases_smoothed": 349.143,
- "total_deaths": 1734.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 5168.223,
- "new_cases_per_million": 28.309,
- "new_cases_smoothed_per_million": 40.342,
- "total_deaths_per_million": 200.355,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.132,
- "new_tests": 16447.0,
- "total_tests": 1153119.0,
- "total_tests_per_thousand": 133.237,
- "new_tests_per_thousand": 1.9,
- "new_tests_smoothed": 13051.0,
- "new_tests_smoothed_per_thousand": 1.508,
- "tests_per_case": 37.38,
- "positive_rate": 0.027000000000000003,
- "tests_units": "tests performed",
- "stringency_index": 43.06
- },
- {
- "date": "2020-09-10",
- "total_cases": 45197.0,
- "new_cases": 468.0,
- "new_cases_smoothed": 363.143,
- "total_deaths": 1734.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 5222.299,
- "new_cases_per_million": 54.075,
- "new_cases_smoothed_per_million": 41.959,
- "total_deaths_per_million": 200.355,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.132,
- "new_tests": 15722.0,
- "total_tests": 1168841.0,
- "total_tests_per_thousand": 135.054,
- "new_tests_per_thousand": 1.817,
- "new_tests_smoothed": 13077.0,
- "new_tests_smoothed_per_thousand": 1.511,
- "tests_per_case": 36.010999999999996,
- "positive_rate": 0.027999999999999997,
- "tests_units": "tests performed",
- "stringency_index": 43.06
- },
- {
- "date": "2020-09-11",
- "total_cases": 45602.0,
- "new_cases": 405.0,
- "new_cases_smoothed": 353.571,
- "total_deaths": 1736.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 5269.094,
- "new_cases_per_million": 46.796,
- "new_cases_smoothed_per_million": 40.853,
- "total_deaths_per_million": 200.587,
- "new_deaths_per_million": 0.231,
- "new_deaths_smoothed_per_million": 0.099,
- "new_tests": 14197.0,
- "total_tests": 1183038.0,
- "total_tests_per_thousand": 136.694,
- "new_tests_per_thousand": 1.64,
- "new_tests_smoothed": 13033.0,
- "new_tests_smoothed_per_thousand": 1.506,
- "tests_per_case": 36.861,
- "positive_rate": 0.027000000000000003,
- "tests_units": "tests performed",
- "stringency_index": 43.06
- },
- {
- "date": "2020-09-12",
- "total_cases": 46130.0,
- "new_cases": 528.0,
- "new_cases_smoothed": 386.571,
- "total_deaths": 1739.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 5330.102,
- "new_cases_per_million": 61.008,
- "new_cases_smoothed_per_million": 44.666,
- "total_deaths_per_million": 200.933,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.132,
- "new_tests": 9873.0,
- "total_tests": 1192911.0,
- "total_tests_per_thousand": 137.835,
- "new_tests_per_thousand": 1.141,
- "new_tests_smoothed": 13082.0,
- "new_tests_smoothed_per_thousand": 1.512,
- "tests_per_case": 33.841,
- "positive_rate": 0.03,
- "tests_units": "tests performed",
- "stringency_index": 43.06
- },
- {
- "date": "2020-09-13",
- "total_cases": 46595.0,
- "new_cases": 465.0,
- "new_cases_smoothed": 392.286,
- "total_deaths": 1742.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 5383.831,
- "new_cases_per_million": 53.729,
- "new_cases_smoothed_per_million": 45.327,
- "total_deaths_per_million": 201.28,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.182,
- "new_tests": 4169.0,
- "total_tests": 1197080.0,
- "total_tests_per_thousand": 138.317,
- "new_tests_per_thousand": 0.482,
- "new_tests_smoothed": 13057.0,
- "new_tests_smoothed_per_thousand": 1.509,
- "tests_per_case": 33.284,
- "positive_rate": 0.03,
- "tests_units": "tests performed",
- "stringency_index": 43.06
- },
- {
- "date": "2020-09-14",
- "total_cases": 47068.0,
- "new_cases": 473.0,
- "new_cases_smoothed": 396.429,
- "total_deaths": 1746.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 5438.484,
- "new_cases_per_million": 54.653,
- "new_cases_smoothed_per_million": 45.805,
- "total_deaths_per_million": 201.742,
- "new_deaths_per_million": 0.462,
- "new_deaths_smoothed_per_million": 0.231,
- "new_tests": 12851.0,
- "total_tests": 1209931.0,
- "total_tests_per_thousand": 139.802,
- "new_tests_per_thousand": 1.485,
- "new_tests_smoothed": 12975.0,
- "new_tests_smoothed_per_thousand": 1.499,
- "tests_per_case": 32.73,
- "positive_rate": 0.031,
- "tests_units": "tests performed",
- "stringency_index": 43.06
- },
- {
- "date": "2020-09-15",
- "total_cases": 47325.0,
- "new_cases": 257.0,
- "new_cases_smoothed": 405.857,
- "total_deaths": 1746.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 5468.179,
- "new_cases_per_million": 29.695,
- "new_cases_smoothed_per_million": 46.895,
- "total_deaths_per_million": 201.742,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.198,
- "new_tests": 16821.0,
- "total_tests": 1226752.0,
- "total_tests_per_thousand": 141.745,
- "new_tests_per_thousand": 1.944,
- "new_tests_smoothed": 12869.0,
- "new_tests_smoothed_per_thousand": 1.487,
- "tests_per_case": 31.708000000000002,
- "positive_rate": 0.032,
- "tests_units": "tests performed",
- "stringency_index": 43.06
- },
- {
- "date": "2020-09-16",
- "total_cases": 47640.0,
- "new_cases": 315.0,
- "new_cases_smoothed": 415.857,
- "total_deaths": 1747.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 5504.576,
- "new_cases_per_million": 36.397,
- "new_cases_smoothed_per_million": 48.05,
- "total_deaths_per_million": 201.858,
- "new_deaths_per_million": 0.116,
- "new_deaths_smoothed_per_million": 0.215,
- "new_tests": 15458.0,
- "total_tests": 1242210.0,
- "total_tests_per_thousand": 143.531,
- "new_tests_per_thousand": 1.786,
- "new_tests_smoothed": 12727.0,
- "new_tests_smoothed_per_thousand": 1.471,
- "tests_per_case": 30.604,
- "positive_rate": 0.033,
- "tests_units": "tests performed",
- "stringency_index": 43.06
- },
- {
- "date": "2020-09-17",
- "total_cases": 48154.0,
- "new_cases": 514.0,
- "new_cases_smoothed": 422.429,
- "total_deaths": 1754.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 5563.966,
- "new_cases_per_million": 59.39,
- "new_cases_smoothed_per_million": 48.81,
- "total_deaths_per_million": 202.666,
- "new_deaths_per_million": 0.809,
- "new_deaths_smoothed_per_million": 0.33,
- "new_tests": 15173.0,
- "total_tests": 1257383.0,
- "total_tests_per_thousand": 145.285,
- "new_tests_per_thousand": 1.753,
- "new_tests_smoothed": 12649.0,
- "new_tests_smoothed_per_thousand": 1.462,
- "tests_per_case": 29.944000000000003,
- "positive_rate": 0.033,
- "tests_units": "tests performed",
- "stringency_index": 43.06
- },
- {
- "date": "2020-09-18",
- "total_cases": 48684.0,
- "new_cases": 530.0,
- "new_cases_smoothed": 440.286,
- "total_deaths": 1762.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 5625.205,
- "new_cases_per_million": 61.239,
- "new_cases_smoothed_per_million": 50.873,
- "total_deaths_per_million": 203.591,
- "new_deaths_per_million": 0.924,
- "new_deaths_smoothed_per_million": 0.429,
- "new_tests": 13388.0,
- "total_tests": 1270771.0,
- "total_tests_per_thousand": 146.832,
- "new_tests_per_thousand": 1.547,
- "new_tests_smoothed": 12533.0,
- "new_tests_smoothed_per_thousand": 1.448,
- "tests_per_case": 28.465999999999998,
- "positive_rate": 0.035,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-19",
- "total_cases": 49171.0,
- "new_cases": 487.0,
- "new_cases_smoothed": 434.429,
- "total_deaths": 1764.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 5681.475,
- "new_cases_per_million": 56.271,
- "new_cases_smoothed_per_million": 50.196,
- "total_deaths_per_million": 203.822,
- "new_deaths_per_million": 0.231,
- "new_deaths_smoothed_per_million": 0.413,
- "new_tests": 7810.0,
- "total_tests": 1278581.0,
- "total_tests_per_thousand": 147.734,
- "new_tests_per_thousand": 0.902,
- "new_tests_smoothed": 12239.0,
- "new_tests_smoothed_per_thousand": 1.414,
- "tests_per_case": 28.173000000000002,
- "positive_rate": 0.035,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-20",
- "total_cases": 49171.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 368.0,
- "total_deaths": 1764.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 5681.475,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 42.521,
- "total_deaths_per_million": 203.822,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.363,
- "new_tests": 3582.0,
- "total_tests": 1282163.0,
- "total_tests_per_thousand": 148.148,
- "new_tests_per_thousand": 0.414,
- "new_tests_smoothed": 12155.0,
- "new_tests_smoothed_per_thousand": 1.404,
- "tests_per_case": 33.03,
- "positive_rate": 0.03,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-21",
- "total_cases": 49171.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 300.429,
- "total_deaths": 1764.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 5681.475,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 34.713,
- "total_deaths_per_million": 203.822,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.297,
- "new_tests": 10362.0,
- "total_tests": 1292525.0,
- "total_tests_per_thousand": 149.345,
- "new_tests_per_thousand": 1.197,
- "new_tests_smoothed": 11799.0,
- "new_tests_smoothed_per_thousand": 1.363,
- "tests_per_case": 39.274,
- "positive_rate": 0.025,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-22",
- "total_cases": 50264.0,
- "new_cases": 1093.0,
- "new_cases_smoothed": 419.857,
- "total_deaths": 1769.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 5807.766,
- "new_cases_per_million": 126.291,
- "new_cases_smoothed_per_million": 48.512,
- "total_deaths_per_million": 204.4,
- "new_deaths_per_million": 0.578,
- "new_deaths_smoothed_per_million": 0.38,
- "new_tests": 13331.0,
- "total_tests": 1305856.0,
- "total_tests_per_thousand": 150.885,
- "new_tests_per_thousand": 1.54,
- "new_tests_smoothed": 11301.0,
- "new_tests_smoothed_per_thousand": 1.306,
- "tests_per_case": 26.916,
- "positive_rate": 0.037000000000000005,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-23",
- "total_cases": 50548.0,
- "new_cases": 284.0,
- "new_cases_smoothed": 415.429,
- "total_deaths": 1772.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 5840.581,
- "new_cases_per_million": 32.815,
- "new_cases_smoothed_per_million": 48.001,
- "total_deaths_per_million": 204.746,
- "new_deaths_per_million": 0.347,
- "new_deaths_smoothed_per_million": 0.413,
- "new_tests": 8088.0,
- "total_tests": 1313944.0,
- "total_tests_per_thousand": 151.82,
- "new_tests_per_thousand": 0.935,
- "new_tests_smoothed": 10248.0,
- "new_tests_smoothed_per_thousand": 1.184,
- "tests_per_case": 24.669,
- "positive_rate": 0.040999999999999995,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-24",
- "total_cases": 50984.0,
- "new_cases": 436.0,
- "new_cases_smoothed": 404.286,
- "total_deaths": 1772.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 5890.959,
- "new_cases_per_million": 50.378,
- "new_cases_smoothed_per_million": 46.713,
- "total_deaths_per_million": 204.746,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.297
- },
- {
- "date": "2020-09-25",
- "total_cases": 51492.0,
- "new_cases": 508.0,
- "new_cases_smoothed": 401.143,
- "total_deaths": 1776.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 5949.656,
- "new_cases_per_million": 58.697,
- "new_cases_smoothed_per_million": 46.35,
- "total_deaths_per_million": 205.208,
- "new_deaths_per_million": 0.462,
- "new_deaths_smoothed_per_million": 0.231
- }
- ]
- },
- "CHL": {
- "continent": "South America",
- "location": "Chile",
- "population": 19116209.0,
- "population_density": 24.282,
- "median_age": 35.4,
- "aged_65_older": 11.087,
- "aged_70_older": 6.938,
- "gdp_per_capita": 22767.037,
- "extreme_poverty": 1.3,
- "cardiovasc_death_rate": 127.993,
- "diabetes_prevalence": 8.46,
- "female_smokers": 34.2,
- "male_smokers": 41.5,
- "hospital_beds_per_thousand": 2.11,
- "life_expectancy": 80.18,
- "human_development_index": 0.843,
- "data": [
- {
- "date": "2020-03-04",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.052,
- "new_cases_per_million": 0.052,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-05",
- "total_cases": 3.0,
- "new_cases": 2.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.157,
- "new_cases_per_million": 0.105,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-06",
- "total_cases": 4.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.209,
- "new_cases_per_million": 0.052,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-07",
- "total_cases": 5.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.262,
- "new_cases_per_million": 0.052,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-09",
- "total_cases": 10.0,
- "new_cases": 5.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.523,
- "new_cases_per_million": 0.262,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-10",
- "total_cases": 13.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.68,
- "new_cases_per_million": 0.157,
- "new_cases_smoothed_per_million": 0.097,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-11",
- "total_cases": 17.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.889,
- "new_cases_per_million": 0.209,
- "new_cases_smoothed_per_million": 0.12,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-12",
- "total_cases": 23.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.203,
- "new_cases_per_million": 0.314,
- "new_cases_smoothed_per_million": 0.149,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-13",
- "total_cases": 33.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.726,
- "new_cases_per_million": 0.523,
- "new_cases_smoothed_per_million": 0.217,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-14",
- "total_cases": 43.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.249,
- "new_cases_per_million": 0.523,
- "new_cases_smoothed_per_million": 0.284,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-15",
- "total_cases": 61.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 8.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.191,
- "new_cases_per_million": 0.942,
- "new_cases_smoothed_per_million": 0.418,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 22.22
- },
- {
- "date": "2020-03-16",
- "total_cases": 75.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 9.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.923,
- "new_cases_per_million": 0.732,
- "new_cases_smoothed_per_million": 0.486,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-03-17",
- "total_cases": 156.0,
- "new_cases": 81.0,
- "new_cases_smoothed": 20.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 8.161,
- "new_cases_per_million": 4.237,
- "new_cases_smoothed_per_million": 1.069,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-03-18",
- "total_cases": 201.0,
- "new_cases": 45.0,
- "new_cases_smoothed": 26.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.515,
- "new_cases_per_million": 2.354,
- "new_cases_smoothed_per_million": 1.375,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 55.56
- },
- {
- "date": "2020-03-19",
- "total_cases": 238.0,
- "new_cases": 37.0,
- "new_cases_smoothed": 30.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.45,
- "new_cases_per_million": 1.936,
- "new_cases_smoothed_per_million": 1.607,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 55.56
- },
- {
- "date": "2020-03-20",
- "total_cases": 342.0,
- "new_cases": 104.0,
- "new_cases_smoothed": 44.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 17.891,
- "new_cases_per_million": 5.44,
- "new_cases_smoothed_per_million": 2.309,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 55.56
- },
- {
- "date": "2020-03-21",
- "total_cases": 434.0,
- "new_cases": 92.0,
- "new_cases_smoothed": 55.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 22.703,
- "new_cases_per_million": 4.813,
- "new_cases_smoothed_per_million": 2.922,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 51.85
- },
- {
- "date": "2020-03-22",
- "total_cases": 537.0,
- "new_cases": 103.0,
- "new_cases_smoothed": 68.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 28.091,
- "new_cases_per_million": 5.388,
- "new_cases_smoothed_per_million": 3.557,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 51.85
- },
- {
- "date": "2020-03-23",
- "total_cases": 632.0,
- "new_cases": 95.0,
- "new_cases_smoothed": 79.571,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 33.061,
- "new_cases_per_million": 4.97,
- "new_cases_smoothed_per_million": 4.163,
- "total_deaths_per_million": 0.052,
- "new_deaths_per_million": 0.052,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 51.85
- },
- {
- "date": "2020-03-24",
- "total_cases": 746.0,
- "new_cases": 114.0,
- "new_cases_smoothed": 84.286,
- "total_deaths": 2.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 39.024,
- "new_cases_per_million": 5.964,
- "new_cases_smoothed_per_million": 4.409,
- "total_deaths_per_million": 0.105,
- "new_deaths_per_million": 0.052,
- "new_deaths_smoothed_per_million": 0.015,
- "stringency_index": 51.85
- },
- {
- "date": "2020-03-25",
- "total_cases": 922.0,
- "new_cases": 176.0,
- "new_cases_smoothed": 103.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 48.231,
- "new_cases_per_million": 9.207,
- "new_cases_smoothed_per_million": 5.388,
- "total_deaths_per_million": 0.105,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.015,
- "new_tests": 3290.0,
- "total_tests": 3290.0,
- "total_tests_per_thousand": 0.172,
- "new_tests_per_thousand": 0.172,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-26",
- "total_cases": 1142.0,
- "new_cases": 220.0,
- "new_cases_smoothed": 129.143,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 59.74,
- "new_cases_per_million": 11.509,
- "new_cases_smoothed_per_million": 6.756,
- "total_deaths_per_million": 0.157,
- "new_deaths_per_million": 0.052,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 4886.0,
- "total_tests": 8176.0,
- "total_tests_per_thousand": 0.428,
- "new_tests_per_thousand": 0.256,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-27",
- "total_cases": 1306.0,
- "new_cases": 164.0,
- "new_cases_smoothed": 137.714,
- "total_deaths": 4.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 68.319,
- "new_cases_per_million": 8.579,
- "new_cases_smoothed_per_million": 7.204,
- "total_deaths_per_million": 0.209,
- "new_deaths_per_million": 0.052,
- "new_deaths_smoothed_per_million": 0.03,
- "new_tests": 7387.0,
- "total_tests": 15563.0,
- "total_tests_per_thousand": 0.814,
- "new_tests_per_thousand": 0.386,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-28",
- "total_cases": 1610.0,
- "new_cases": 304.0,
- "new_cases_smoothed": 168.0,
- "total_deaths": 5.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 84.222,
- "new_cases_per_million": 15.903,
- "new_cases_smoothed_per_million": 8.788,
- "total_deaths_per_million": 0.262,
- "new_deaths_per_million": 0.052,
- "new_deaths_smoothed_per_million": 0.037,
- "new_tests": 3534.0,
- "total_tests": 19097.0,
- "total_tests_per_thousand": 0.999,
- "new_tests_per_thousand": 0.185,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-29",
- "total_cases": 1909.0,
- "new_cases": 299.0,
- "new_cases_smoothed": 196.0,
- "total_deaths": 6.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 99.863,
- "new_cases_per_million": 15.641,
- "new_cases_smoothed_per_million": 10.253,
- "total_deaths_per_million": 0.314,
- "new_deaths_per_million": 0.052,
- "new_deaths_smoothed_per_million": 0.045,
- "new_tests": 1777.0,
- "total_tests": 20874.0,
- "total_tests_per_thousand": 1.092,
- "new_tests_per_thousand": 0.093,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-30",
- "total_cases": 2139.0,
- "new_cases": 230.0,
- "new_cases_smoothed": 215.286,
- "total_deaths": 7.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 111.895,
- "new_cases_per_million": 12.032,
- "new_cases_smoothed_per_million": 11.262,
- "total_deaths_per_million": 0.366,
- "new_deaths_per_million": 0.052,
- "new_deaths_smoothed_per_million": 0.045,
- "new_tests": 3680.0,
- "total_tests": 24554.0,
- "total_tests_per_thousand": 1.284,
- "new_tests_per_thousand": 0.193,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-03-31",
- "total_cases": 2449.0,
- "new_cases": 310.0,
- "new_cases_smoothed": 243.286,
- "total_deaths": 8.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 128.111,
- "new_cases_per_million": 16.217,
- "new_cases_smoothed_per_million": 12.727,
- "total_deaths_per_million": 0.418,
- "new_deaths_per_million": 0.052,
- "new_deaths_smoothed_per_million": 0.045,
- "new_tests": 3046.0,
- "total_tests": 27600.0,
- "total_tests_per_thousand": 1.444,
- "new_tests_per_thousand": 0.159,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-01",
- "total_cases": 2738.0,
- "new_cases": 289.0,
- "new_cases_smoothed": 259.429,
- "total_deaths": 12.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 143.229,
- "new_cases_per_million": 15.118,
- "new_cases_smoothed_per_million": 13.571,
- "total_deaths_per_million": 0.628,
- "new_deaths_per_million": 0.209,
- "new_deaths_smoothed_per_million": 0.075,
- "new_tests": 2898.0,
- "total_tests": 30498.0,
- "total_tests_per_thousand": 1.595,
- "new_tests_per_thousand": 0.152,
- "new_tests_smoothed": 3887.0,
- "new_tests_smoothed_per_thousand": 0.203,
- "tests_per_case": 14.982999999999999,
- "positive_rate": 0.067,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-02",
- "total_cases": 3031.0,
- "new_cases": 293.0,
- "new_cases_smoothed": 269.857,
- "total_deaths": 16.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 158.557,
- "new_cases_per_million": 15.327,
- "new_cases_smoothed_per_million": 14.117,
- "total_deaths_per_million": 0.837,
- "new_deaths_per_million": 0.209,
- "new_deaths_smoothed_per_million": 0.097,
- "new_tests": 2685.0,
- "total_tests": 33183.0,
- "total_tests_per_thousand": 1.736,
- "new_tests_per_thousand": 0.14,
- "new_tests_smoothed": 3572.0,
- "new_tests_smoothed_per_thousand": 0.187,
- "tests_per_case": 13.237,
- "positive_rate": 0.076,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-03",
- "total_cases": 3404.0,
- "new_cases": 373.0,
- "new_cases_smoothed": 299.714,
- "total_deaths": 18.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 178.069,
- "new_cases_per_million": 19.512,
- "new_cases_smoothed_per_million": 15.679,
- "total_deaths_per_million": 0.942,
- "new_deaths_per_million": 0.105,
- "new_deaths_smoothed_per_million": 0.105,
- "new_tests": 3405.0,
- "total_tests": 36588.0,
- "total_tests_per_thousand": 1.914,
- "new_tests_per_thousand": 0.178,
- "new_tests_smoothed": 3004.0,
- "new_tests_smoothed_per_thousand": 0.157,
- "tests_per_case": 10.023,
- "positive_rate": 0.1,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-04",
- "total_cases": 3737.0,
- "new_cases": 333.0,
- "new_cases_smoothed": 303.857,
- "total_deaths": 22.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 195.489,
- "new_cases_per_million": 17.42,
- "new_cases_smoothed_per_million": 15.895,
- "total_deaths_per_million": 1.151,
- "new_deaths_per_million": 0.209,
- "new_deaths_smoothed_per_million": 0.127,
- "new_tests": 4483.0,
- "total_tests": 41071.0,
- "total_tests_per_thousand": 2.148,
- "new_tests_per_thousand": 0.235,
- "new_tests_smoothed": 3139.0,
- "new_tests_smoothed_per_thousand": 0.164,
- "tests_per_case": 10.331,
- "positive_rate": 0.09699999999999999,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-05",
- "total_cases": 4161.0,
- "new_cases": 424.0,
- "new_cases_smoothed": 321.714,
- "total_deaths": 27.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 217.669,
- "new_cases_per_million": 22.18,
- "new_cases_smoothed_per_million": 16.829,
- "total_deaths_per_million": 1.412,
- "new_deaths_per_million": 0.262,
- "new_deaths_smoothed_per_million": 0.157,
- "new_tests": 3343.0,
- "total_tests": 44414.0,
- "total_tests_per_thousand": 2.323,
- "new_tests_per_thousand": 0.175,
- "new_tests_smoothed": 3363.0,
- "new_tests_smoothed_per_thousand": 0.176,
- "tests_per_case": 10.453,
- "positive_rate": 0.096,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-06",
- "total_cases": 4471.0,
- "new_cases": 310.0,
- "new_cases_smoothed": 333.143,
- "total_deaths": 34.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 233.885,
- "new_cases_per_million": 16.217,
- "new_cases_smoothed_per_million": 17.427,
- "total_deaths_per_million": 1.779,
- "new_deaths_per_million": 0.366,
- "new_deaths_smoothed_per_million": 0.202,
- "new_tests": 2908.0,
- "total_tests": 47322.0,
- "total_tests_per_thousand": 2.475,
- "new_tests_per_thousand": 0.152,
- "new_tests_smoothed": 3253.0,
- "new_tests_smoothed_per_thousand": 0.17,
- "tests_per_case": 9.765,
- "positive_rate": 0.102,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-07",
- "total_cases": 4815.0,
- "new_cases": 344.0,
- "new_cases_smoothed": 338.0,
- "total_deaths": 37.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 251.88,
- "new_cases_per_million": 17.995,
- "new_cases_smoothed_per_million": 17.681,
- "total_deaths_per_million": 1.936,
- "new_deaths_per_million": 0.157,
- "new_deaths_smoothed_per_million": 0.217,
- "new_tests": 2258.0,
- "total_tests": 49580.0,
- "total_tests_per_thousand": 2.594,
- "new_tests_per_thousand": 0.118,
- "new_tests_smoothed": 3140.0,
- "new_tests_smoothed_per_thousand": 0.164,
- "tests_per_case": 9.29,
- "positive_rate": 0.10800000000000001,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-08",
- "total_cases": 5116.0,
- "new_cases": 301.0,
- "new_cases_smoothed": 339.714,
- "total_deaths": 43.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 267.626,
- "new_cases_per_million": 15.746,
- "new_cases_smoothed_per_million": 17.771,
- "total_deaths_per_million": 2.249,
- "new_deaths_per_million": 0.314,
- "new_deaths_smoothed_per_million": 0.232,
- "new_tests": 3269.0,
- "total_tests": 52849.0,
- "total_tests_per_thousand": 2.765,
- "new_tests_per_thousand": 0.171,
- "new_tests_smoothed": 3193.0,
- "new_tests_smoothed_per_thousand": 0.167,
- "tests_per_case": 9.399,
- "positive_rate": 0.106,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-09",
- "total_cases": 5546.0,
- "new_cases": 430.0,
- "new_cases_smoothed": 359.286,
- "total_deaths": 48.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 290.12,
- "new_cases_per_million": 22.494,
- "new_cases_smoothed_per_million": 18.795,
- "total_deaths_per_million": 2.511,
- "new_deaths_per_million": 0.262,
- "new_deaths_smoothed_per_million": 0.239,
- "new_tests": 7962.0,
- "total_tests": 60811.0,
- "total_tests_per_thousand": 3.181,
- "new_tests_per_thousand": 0.417,
- "new_tests_smoothed": 3947.0,
- "new_tests_smoothed_per_thousand": 0.206,
- "tests_per_case": 10.985999999999999,
- "positive_rate": 0.091,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-10",
- "total_cases": 5972.0,
- "new_cases": 426.0,
- "new_cases_smoothed": 366.857,
- "total_deaths": 57.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 312.405,
- "new_cases_per_million": 22.285,
- "new_cases_smoothed_per_million": 19.191,
- "total_deaths_per_million": 2.982,
- "new_deaths_per_million": 0.471,
- "new_deaths_smoothed_per_million": 0.291,
- "new_tests": 4444.0,
- "total_tests": 65255.0,
- "total_tests_per_thousand": 3.414,
- "new_tests_per_thousand": 0.232,
- "new_tests_smoothed": 4095.0,
- "new_tests_smoothed_per_thousand": 0.214,
- "tests_per_case": 11.162,
- "positive_rate": 0.09,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-11",
- "total_cases": 6501.0,
- "new_cases": 529.0,
- "new_cases_smoothed": 394.857,
- "total_deaths": 65.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 6.143,
- "total_cases_per_million": 340.078,
- "new_cases_per_million": 27.673,
- "new_cases_smoothed_per_million": 20.656,
- "total_deaths_per_million": 3.4,
- "new_deaths_per_million": 0.418,
- "new_deaths_smoothed_per_million": 0.321,
- "new_tests": 3577.0,
- "total_tests": 68832.0,
- "total_tests_per_thousand": 3.601,
- "new_tests_per_thousand": 0.187,
- "new_tests_smoothed": 3966.0,
- "new_tests_smoothed_per_thousand": 0.207,
- "tests_per_case": 10.044,
- "positive_rate": 0.1,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-12",
- "total_cases": 6927.0,
- "new_cases": 426.0,
- "new_cases_smoothed": 395.143,
- "total_deaths": 73.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 362.363,
- "new_cases_per_million": 22.285,
- "new_cases_smoothed_per_million": 20.671,
- "total_deaths_per_million": 3.819,
- "new_deaths_per_million": 0.418,
- "new_deaths_smoothed_per_million": 0.344,
- "new_tests": 5897.0,
- "total_tests": 74729.0,
- "total_tests_per_thousand": 3.909,
- "new_tests_per_thousand": 0.308,
- "new_tests_smoothed": 4331.0,
- "new_tests_smoothed_per_thousand": 0.227,
- "tests_per_case": 10.960999999999999,
- "positive_rate": 0.091,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-13",
- "total_cases": 7213.0,
- "new_cases": 286.0,
- "new_cases_smoothed": 391.714,
- "total_deaths": 80.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 377.324,
- "new_cases_per_million": 14.961,
- "new_cases_smoothed_per_million": 20.491,
- "total_deaths_per_million": 4.185,
- "new_deaths_per_million": 0.366,
- "new_deaths_smoothed_per_million": 0.344,
- "new_tests": 2764.0,
- "total_tests": 77493.0,
- "total_tests_per_thousand": 4.054,
- "new_tests_per_thousand": 0.145,
- "new_tests_smoothed": 4310.0,
- "new_tests_smoothed_per_thousand": 0.225,
- "tests_per_case": 11.003,
- "positive_rate": 0.091,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-14",
- "total_cases": 7525.0,
- "new_cases": 312.0,
- "new_cases_smoothed": 387.143,
- "total_deaths": 82.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 6.429,
- "total_cases_per_million": 393.645,
- "new_cases_per_million": 16.321,
- "new_cases_smoothed_per_million": 20.252,
- "total_deaths_per_million": 4.29,
- "new_deaths_per_million": 0.105,
- "new_deaths_smoothed_per_million": 0.336,
- "new_tests": 2759.0,
- "total_tests": 80252.0,
- "total_tests_per_thousand": 4.198,
- "new_tests_per_thousand": 0.144,
- "new_tests_smoothed": 4382.0,
- "new_tests_smoothed_per_thousand": 0.229,
- "tests_per_case": 11.319,
- "positive_rate": 0.08800000000000001,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-15",
- "total_cases": 7917.0,
- "new_cases": 392.0,
- "new_cases_smoothed": 400.143,
- "total_deaths": 92.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 7.0,
- "total_cases_per_million": 414.151,
- "new_cases_per_million": 20.506,
- "new_cases_smoothed_per_million": 20.932,
- "total_deaths_per_million": 4.813,
- "new_deaths_per_million": 0.523,
- "new_deaths_smoothed_per_million": 0.366,
- "new_tests": 4079.0,
- "total_tests": 84331.0,
- "total_tests_per_thousand": 4.411,
- "new_tests_per_thousand": 0.213,
- "new_tests_smoothed": 4497.0,
- "new_tests_smoothed_per_thousand": 0.235,
- "tests_per_case": 11.238,
- "positive_rate": 0.08900000000000001,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-16",
- "total_cases": 8273.0,
- "new_cases": 356.0,
- "new_cases_smoothed": 389.571,
- "total_deaths": 94.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 432.774,
- "new_cases_per_million": 18.623,
- "new_cases_smoothed_per_million": 20.379,
- "total_deaths_per_million": 4.917,
- "new_deaths_per_million": 0.105,
- "new_deaths_smoothed_per_million": 0.344,
- "new_tests": 6551.0,
- "total_tests": 90882.0,
- "total_tests_per_thousand": 4.754,
- "new_tests_per_thousand": 0.343,
- "new_tests_smoothed": 4296.0,
- "new_tests_smoothed_per_thousand": 0.225,
- "tests_per_case": 11.027999999999999,
- "positive_rate": 0.091,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-17",
- "total_cases": 8807.0,
- "new_cases": 534.0,
- "new_cases_smoothed": 405.0,
- "total_deaths": 105.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 6.857,
- "total_cases_per_million": 460.709,
- "new_cases_per_million": 27.934,
- "new_cases_smoothed_per_million": 21.186,
- "total_deaths_per_million": 5.493,
- "new_deaths_per_million": 0.575,
- "new_deaths_smoothed_per_million": 0.359,
- "new_tests": 5449.0,
- "total_tests": 96331.0,
- "total_tests_per_thousand": 5.039,
- "new_tests_per_thousand": 0.285,
- "new_tests_smoothed": 4439.0,
- "new_tests_smoothed_per_thousand": 0.232,
- "tests_per_case": 10.96,
- "positive_rate": 0.091,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-18",
- "total_cases": 9252.0,
- "new_cases": 445.0,
- "new_cases_smoothed": 393.0,
- "total_deaths": 116.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 7.286,
- "total_cases_per_million": 483.987,
- "new_cases_per_million": 23.279,
- "new_cases_smoothed_per_million": 20.558,
- "total_deaths_per_million": 6.068,
- "new_deaths_per_million": 0.575,
- "new_deaths_smoothed_per_million": 0.381,
- "new_tests": 5018.0,
- "total_tests": 101349.0,
- "total_tests_per_thousand": 5.302,
- "new_tests_per_thousand": 0.262,
- "new_tests_smoothed": 4645.0,
- "new_tests_smoothed_per_thousand": 0.243,
- "tests_per_case": 11.819,
- "positive_rate": 0.085,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-19",
- "total_cases": 9730.0,
- "new_cases": 478.0,
- "new_cases_smoothed": 400.429,
- "total_deaths": 126.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 7.571,
- "total_cases_per_million": 508.992,
- "new_cases_per_million": 25.005,
- "new_cases_smoothed_per_million": 20.947,
- "total_deaths_per_million": 6.591,
- "new_deaths_per_million": 0.523,
- "new_deaths_smoothed_per_million": 0.396,
- "new_tests": 4758.0,
- "total_tests": 106107.0,
- "total_tests_per_thousand": 5.551,
- "new_tests_per_thousand": 0.249,
- "new_tests_smoothed": 4483.0,
- "new_tests_smoothed_per_thousand": 0.235,
- "tests_per_case": 11.196,
- "positive_rate": 0.08900000000000001,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-20",
- "total_cases": 10088.0,
- "new_cases": 358.0,
- "new_cases_smoothed": 410.714,
- "total_deaths": 133.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 7.571,
- "total_cases_per_million": 527.72,
- "new_cases_per_million": 18.728,
- "new_cases_smoothed_per_million": 21.485,
- "total_deaths_per_million": 6.957,
- "new_deaths_per_million": 0.366,
- "new_deaths_smoothed_per_million": 0.396,
- "new_tests": 5178.0,
- "total_tests": 111285.0,
- "total_tests_per_thousand": 5.821,
- "new_tests_per_thousand": 0.271,
- "new_tests_smoothed": 4827.0,
- "new_tests_smoothed_per_thousand": 0.253,
- "tests_per_case": 11.753,
- "positive_rate": 0.085,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-21",
- "total_cases": 10507.0,
- "new_cases": 419.0,
- "new_cases_smoothed": 426.0,
- "total_deaths": 139.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 549.638,
- "new_cases_per_million": 21.919,
- "new_cases_smoothed_per_million": 22.285,
- "total_deaths_per_million": 7.271,
- "new_deaths_per_million": 0.314,
- "new_deaths_smoothed_per_million": 0.426,
- "new_tests": 3530.0,
- "total_tests": 114815.0,
- "total_tests_per_thousand": 6.006,
- "new_tests_per_thousand": 0.185,
- "new_tests_smoothed": 4938.0,
- "new_tests_smoothed_per_thousand": 0.258,
- "tests_per_case": 11.592,
- "positive_rate": 0.086,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-22",
- "total_cases": 10832.0,
- "new_cases": 325.0,
- "new_cases_smoothed": 416.429,
- "total_deaths": 147.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 7.857,
- "total_cases_per_million": 566.64,
- "new_cases_per_million": 17.001,
- "new_cases_smoothed_per_million": 21.784,
- "total_deaths_per_million": 7.69,
- "new_deaths_per_million": 0.418,
- "new_deaths_smoothed_per_million": 0.411,
- "new_tests": 6365.0,
- "total_tests": 121180.0,
- "total_tests_per_thousand": 6.339,
- "new_tests_per_thousand": 0.333,
- "new_tests_smoothed": 5264.0,
- "new_tests_smoothed_per_thousand": 0.275,
- "tests_per_case": 12.640999999999998,
- "positive_rate": 0.079,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-23",
- "total_cases": 11296.0,
- "new_cases": 464.0,
- "new_cases_smoothed": 431.857,
- "total_deaths": 160.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 9.429,
- "total_cases_per_million": 590.912,
- "new_cases_per_million": 24.273,
- "new_cases_smoothed_per_million": 22.591,
- "total_deaths_per_million": 8.37,
- "new_deaths_per_million": 0.68,
- "new_deaths_smoothed_per_million": 0.493,
- "new_tests": 6425.0,
- "total_tests": 127605.0,
- "total_tests_per_thousand": 6.675,
- "new_tests_per_thousand": 0.336,
- "new_tests_smoothed": 5246.0,
- "new_tests_smoothed_per_thousand": 0.274,
- "tests_per_case": 12.148,
- "positive_rate": 0.08199999999999999,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-24",
- "total_cases": 11812.0,
- "new_cases": 516.0,
- "new_cases_smoothed": 429.286,
- "total_deaths": 168.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 9.0,
- "total_cases_per_million": 617.905,
- "new_cases_per_million": 26.993,
- "new_cases_smoothed_per_million": 22.457,
- "total_deaths_per_million": 8.788,
- "new_deaths_per_million": 0.418,
- "new_deaths_smoothed_per_million": 0.471,
- "new_tests": 7120.0,
- "total_tests": 134725.0,
- "total_tests_per_thousand": 7.048,
- "new_tests_per_thousand": 0.372,
- "new_tests_smoothed": 5485.0,
- "new_tests_smoothed_per_thousand": 0.287,
- "tests_per_case": 12.777000000000001,
- "positive_rate": 0.078,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-25",
- "total_cases": 12306.0,
- "new_cases": 494.0,
- "new_cases_smoothed": 436.286,
- "total_deaths": 174.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 8.286,
- "total_cases_per_million": 643.747,
- "new_cases_per_million": 25.842,
- "new_cases_smoothed_per_million": 22.823,
- "total_deaths_per_million": 9.102,
- "new_deaths_per_million": 0.314,
- "new_deaths_smoothed_per_million": 0.433,
- "new_tests": 6945.0,
- "total_tests": 141670.0,
- "total_tests_per_thousand": 7.411,
- "new_tests_per_thousand": 0.363,
- "new_tests_smoothed": 5760.0,
- "new_tests_smoothed_per_thousand": 0.301,
- "tests_per_case": 13.202,
- "positive_rate": 0.076,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-26",
- "total_cases": 12858.0,
- "new_cases": 552.0,
- "new_cases_smoothed": 446.857,
- "total_deaths": 181.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 7.857,
- "total_cases_per_million": 672.623,
- "new_cases_per_million": 28.876,
- "new_cases_smoothed_per_million": 23.376,
- "total_deaths_per_million": 9.468,
- "new_deaths_per_million": 0.366,
- "new_deaths_smoothed_per_million": 0.411,
- "new_tests": 6763.0,
- "total_tests": 148433.0,
- "total_tests_per_thousand": 7.765,
- "new_tests_per_thousand": 0.354,
- "new_tests_smoothed": 6047.0,
- "new_tests_smoothed_per_thousand": 0.316,
- "tests_per_case": 13.532,
- "positive_rate": 0.07400000000000001,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-27",
- "total_cases": 13331.0,
- "new_cases": 473.0,
- "new_cases_smoothed": 463.286,
- "total_deaths": 189.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 8.0,
- "total_cases_per_million": 697.366,
- "new_cases_per_million": 24.743,
- "new_cases_smoothed_per_million": 24.235,
- "total_deaths_per_million": 9.887,
- "new_deaths_per_million": 0.418,
- "new_deaths_smoothed_per_million": 0.418,
- "new_tests": 5260.0,
- "total_tests": 153693.0,
- "total_tests_per_thousand": 8.04,
- "new_tests_per_thousand": 0.275,
- "new_tests_smoothed": 6058.0,
- "new_tests_smoothed_per_thousand": 0.317,
- "tests_per_case": 13.075999999999999,
- "positive_rate": 0.076,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-28",
- "total_cases": 13813.0,
- "new_cases": 482.0,
- "new_cases_smoothed": 472.286,
- "total_deaths": 198.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 8.429,
- "total_cases_per_million": 722.581,
- "new_cases_per_million": 25.214,
- "new_cases_smoothed_per_million": 24.706,
- "total_deaths_per_million": 10.358,
- "new_deaths_per_million": 0.471,
- "new_deaths_smoothed_per_million": 0.441,
- "new_tests": 4930.0,
- "total_tests": 158623.0,
- "total_tests_per_thousand": 8.298,
- "new_tests_per_thousand": 0.258,
- "new_tests_smoothed": 6258.0,
- "new_tests_smoothed_per_thousand": 0.327,
- "tests_per_case": 13.25,
- "positive_rate": 0.075,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-29",
- "total_cases": 14365.0,
- "new_cases": 552.0,
- "new_cases_smoothed": 504.714,
- "total_deaths": 207.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 751.457,
- "new_cases_per_million": 28.876,
- "new_cases_smoothed_per_million": 26.402,
- "total_deaths_per_million": 10.829,
- "new_deaths_per_million": 0.471,
- "new_deaths_smoothed_per_million": 0.448,
- "new_tests": 6454.0,
- "total_tests": 165077.0,
- "total_tests_per_thousand": 8.635,
- "new_tests_per_thousand": 0.338,
- "new_tests_smoothed": 6271.0,
- "new_tests_smoothed_per_thousand": 0.328,
- "tests_per_case": 12.425,
- "positive_rate": 0.08,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-30",
- "total_cases": 14885.0,
- "new_cases": 520.0,
- "new_cases_smoothed": 512.714,
- "total_deaths": 216.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 8.0,
- "total_cases_per_million": 778.659,
- "new_cases_per_million": 27.202,
- "new_cases_smoothed_per_million": 26.821,
- "total_deaths_per_million": 11.299,
- "new_deaths_per_million": 0.471,
- "new_deaths_smoothed_per_million": 0.418,
- "new_tests": 7898.0,
- "total_tests": 172975.0,
- "total_tests_per_thousand": 9.049,
- "new_tests_per_thousand": 0.413,
- "new_tests_smoothed": 6481.0,
- "new_tests_smoothed_per_thousand": 0.339,
- "tests_per_case": 12.640999999999998,
- "positive_rate": 0.079,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-05-01",
- "total_cases": 16023.0,
- "new_cases": 1138.0,
- "new_cases_smoothed": 601.571,
- "total_deaths": 227.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 8.429,
- "total_cases_per_million": 838.189,
- "new_cases_per_million": 59.531,
- "new_cases_smoothed_per_million": 31.469,
- "total_deaths_per_million": 11.875,
- "new_deaths_per_million": 0.575,
- "new_deaths_smoothed_per_million": 0.441,
- "new_tests": 8916.0,
- "total_tests": 181891.0,
- "total_tests_per_thousand": 9.515,
- "new_tests_per_thousand": 0.466,
- "new_tests_smoothed": 6738.0,
- "new_tests_smoothed_per_thousand": 0.352,
- "tests_per_case": 11.200999999999999,
- "positive_rate": 0.08900000000000001,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-05-02",
- "total_cases": 17008.0,
- "new_cases": 985.0,
- "new_cases_smoothed": 671.714,
- "total_deaths": 234.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 889.716,
- "new_cases_per_million": 51.527,
- "new_cases_smoothed_per_million": 35.138,
- "total_deaths_per_million": 12.241,
- "new_deaths_per_million": 0.366,
- "new_deaths_smoothed_per_million": 0.448,
- "new_tests": 9967.0,
- "total_tests": 191858.0,
- "total_tests_per_thousand": 10.036,
- "new_tests_per_thousand": 0.521,
- "new_tests_smoothed": 7170.0,
- "new_tests_smoothed_per_thousand": 0.375,
- "tests_per_case": 10.674000000000001,
- "positive_rate": 0.094,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-05-03",
- "total_cases": 18435.0,
- "new_cases": 1427.0,
- "new_cases_smoothed": 796.714,
- "total_deaths": 247.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 9.429,
- "total_cases_per_million": 964.365,
- "new_cases_per_million": 74.649,
- "new_cases_smoothed_per_million": 41.677,
- "total_deaths_per_million": 12.921,
- "new_deaths_per_million": 0.68,
- "new_deaths_smoothed_per_million": 0.493,
- "new_tests": 6818.0,
- "total_tests": 198676.0,
- "total_tests_per_thousand": 10.393,
- "new_tests_per_thousand": 0.357,
- "new_tests_smoothed": 7178.0,
- "new_tests_smoothed_per_thousand": 0.375,
- "tests_per_case": 9.01,
- "positive_rate": 0.111,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-05-04",
- "total_cases": 19663.0,
- "new_cases": 1228.0,
- "new_cases_smoothed": 904.571,
- "total_deaths": 260.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 10.143,
- "total_cases_per_million": 1028.604,
- "new_cases_per_million": 64.239,
- "new_cases_smoothed_per_million": 47.32,
- "total_deaths_per_million": 13.601,
- "new_deaths_per_million": 0.68,
- "new_deaths_smoothed_per_million": 0.531,
- "new_tests": 7913.0,
- "total_tests": 206589.0,
- "total_tests_per_thousand": 10.807,
- "new_tests_per_thousand": 0.414,
- "new_tests_smoothed": 7557.0,
- "new_tests_smoothed_per_thousand": 0.395,
- "tests_per_case": 8.354,
- "positive_rate": 0.12,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-05-05",
- "total_cases": 20643.0,
- "new_cases": 980.0,
- "new_cases_smoothed": 975.714,
- "total_deaths": 270.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 10.286,
- "total_cases_per_million": 1079.869,
- "new_cases_per_million": 51.265,
- "new_cases_smoothed_per_million": 51.041,
- "total_deaths_per_million": 14.124,
- "new_deaths_per_million": 0.523,
- "new_deaths_smoothed_per_million": 0.538,
- "new_tests": 7964.0,
- "total_tests": 214553.0,
- "total_tests_per_thousand": 11.224,
- "new_tests_per_thousand": 0.417,
- "new_tests_smoothed": 7990.0,
- "new_tests_smoothed_per_thousand": 0.418,
- "tests_per_case": 8.189,
- "positive_rate": 0.122,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-05-06",
- "total_cases": 22016.0,
- "new_cases": 1373.0,
- "new_cases_smoothed": 1093.0,
- "total_deaths": 275.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 9.714,
- "total_cases_per_million": 1151.693,
- "new_cases_per_million": 71.824,
- "new_cases_smoothed_per_million": 57.177,
- "total_deaths_per_million": 14.386,
- "new_deaths_per_million": 0.262,
- "new_deaths_smoothed_per_million": 0.508,
- "new_tests": 10013.0,
- "total_tests": 224566.0,
- "total_tests_per_thousand": 11.747,
- "new_tests_per_thousand": 0.524,
- "new_tests_smoothed": 8498.0,
- "new_tests_smoothed_per_thousand": 0.445,
- "tests_per_case": 7.775,
- "positive_rate": 0.129,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-05-07",
- "total_cases": 23048.0,
- "new_cases": 1032.0,
- "new_cases_smoothed": 1166.143,
- "total_deaths": 281.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 9.286,
- "total_cases_per_million": 1205.678,
- "new_cases_per_million": 53.986,
- "new_cases_smoothed_per_million": 61.003,
- "total_deaths_per_million": 14.7,
- "new_deaths_per_million": 0.314,
- "new_deaths_smoothed_per_million": 0.486,
- "new_tests": 12118.0,
- "total_tests": 236684.0,
- "total_tests_per_thousand": 12.381,
- "new_tests_per_thousand": 0.634,
- "new_tests_smoothed": 9101.0,
- "new_tests_smoothed_per_thousand": 0.476,
- "tests_per_case": 7.803999999999999,
- "positive_rate": 0.128,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-05-08",
- "total_cases": 24581.0,
- "new_cases": 1533.0,
- "new_cases_smoothed": 1222.571,
- "total_deaths": 285.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 8.286,
- "total_cases_per_million": 1285.872,
- "new_cases_per_million": 80.194,
- "new_cases_smoothed_per_million": 63.955,
- "total_deaths_per_million": 14.909,
- "new_deaths_per_million": 0.209,
- "new_deaths_smoothed_per_million": 0.433,
- "new_tests": 11735.0,
- "total_tests": 248419.0,
- "total_tests_per_thousand": 12.995,
- "new_tests_per_thousand": 0.614,
- "new_tests_smoothed": 9504.0,
- "new_tests_smoothed_per_thousand": 0.497,
- "tests_per_case": 7.774,
- "positive_rate": 0.129,
- "tests_units": "tests performed",
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-09",
- "total_cases": 25972.0,
- "new_cases": 1391.0,
- "new_cases_smoothed": 1280.571,
- "total_deaths": 294.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 1358.638,
- "new_cases_per_million": 72.765,
- "new_cases_smoothed_per_million": 66.989,
- "total_deaths_per_million": 15.38,
- "new_deaths_per_million": 0.471,
- "new_deaths_smoothed_per_million": 0.448,
- "new_tests": 11943.0,
- "total_tests": 260362.0,
- "total_tests_per_thousand": 13.62,
- "new_tests_per_thousand": 0.625,
- "new_tests_smoothed": 9786.0,
- "new_tests_smoothed_per_thousand": 0.512,
- "tests_per_case": 7.642,
- "positive_rate": 0.131,
- "tests_units": "tests performed",
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-10",
- "total_cases": 27219.0,
- "new_cases": 1247.0,
- "new_cases_smoothed": 1254.857,
- "total_deaths": 304.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 1423.87,
- "new_cases_per_million": 65.233,
- "new_cases_smoothed_per_million": 65.644,
- "total_deaths_per_million": 15.903,
- "new_deaths_per_million": 0.523,
- "new_deaths_smoothed_per_million": 0.426,
- "new_tests": 12780.0,
- "total_tests": 273142.0,
- "total_tests_per_thousand": 14.289,
- "new_tests_per_thousand": 0.669,
- "new_tests_smoothed": 10638.0,
- "new_tests_smoothed_per_thousand": 0.556,
- "tests_per_case": 8.477,
- "positive_rate": 0.11800000000000001,
- "tests_units": "tests performed",
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-11",
- "total_cases": 28866.0,
- "new_cases": 1647.0,
- "new_cases_smoothed": 1314.714,
- "total_deaths": 312.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 7.429,
- "total_cases_per_million": 1510.027,
- "new_cases_per_million": 86.157,
- "new_cases_smoothed_per_million": 68.775,
- "total_deaths_per_million": 16.321,
- "new_deaths_per_million": 0.418,
- "new_deaths_smoothed_per_million": 0.389,
- "new_tests": 13373.0,
- "total_tests": 286515.0,
- "total_tests_per_thousand": 14.988,
- "new_tests_per_thousand": 0.7,
- "new_tests_smoothed": 11418.0,
- "new_tests_smoothed_per_thousand": 0.597,
- "tests_per_case": 8.685,
- "positive_rate": 0.115,
- "tests_units": "tests performed",
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-12",
- "total_cases": 30063.0,
- "new_cases": 1197.0,
- "new_cases_smoothed": 1345.714,
- "total_deaths": 323.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 7.571,
- "total_cases_per_million": 1572.644,
- "new_cases_per_million": 62.617,
- "new_cases_smoothed_per_million": 70.397,
- "total_deaths_per_million": 16.897,
- "new_deaths_per_million": 0.575,
- "new_deaths_smoothed_per_million": 0.396,
- "new_tests": 9283.0,
- "total_tests": 295798.0,
- "total_tests_per_thousand": 15.474,
- "new_tests_per_thousand": 0.486,
- "new_tests_smoothed": 11606.0,
- "new_tests_smoothed_per_thousand": 0.607,
- "tests_per_case": 8.624,
- "positive_rate": 0.11599999999999999,
- "tests_units": "tests performed",
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-13",
- "total_cases": 31721.0,
- "new_cases": 1658.0,
- "new_cases_smoothed": 1386.429,
- "total_deaths": 335.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 1659.377,
- "new_cases_per_million": 86.733,
- "new_cases_smoothed_per_million": 72.526,
- "total_deaths_per_million": 17.524,
- "new_deaths_per_million": 0.628,
- "new_deaths_smoothed_per_million": 0.448,
- "new_tests": 10410.0,
- "total_tests": 306208.0,
- "total_tests_per_thousand": 16.018,
- "new_tests_per_thousand": 0.545,
- "new_tests_smoothed": 11663.0,
- "new_tests_smoothed_per_thousand": 0.61,
- "tests_per_case": 8.412,
- "positive_rate": 0.11900000000000001,
- "tests_units": "tests performed",
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-14",
- "total_cases": 34381.0,
- "new_cases": 2660.0,
- "new_cases_smoothed": 1619.0,
- "total_deaths": 346.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 9.286,
- "total_cases_per_million": 1798.526,
- "new_cases_per_million": 139.149,
- "new_cases_smoothed_per_million": 84.693,
- "total_deaths_per_million": 18.1,
- "new_deaths_per_million": 0.575,
- "new_deaths_smoothed_per_million": 0.486,
- "new_tests": 11502.0,
- "total_tests": 317710.0,
- "total_tests_per_thousand": 16.62,
- "new_tests_per_thousand": 0.602,
- "new_tests_smoothed": 11575.0,
- "new_tests_smoothed_per_thousand": 0.606,
- "tests_per_case": 7.149,
- "positive_rate": 0.14,
- "tests_units": "tests performed",
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-15",
- "total_cases": 37040.0,
- "new_cases": 2659.0,
- "new_cases_smoothed": 1779.857,
- "total_deaths": 358.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 10.429,
- "total_cases_per_million": 1937.623,
- "new_cases_per_million": 139.097,
- "new_cases_smoothed_per_million": 93.107,
- "total_deaths_per_million": 18.728,
- "new_deaths_per_million": 0.628,
- "new_deaths_smoothed_per_million": 0.546,
- "new_tests": 16095.0,
- "total_tests": 333805.0,
- "total_tests_per_thousand": 17.462,
- "new_tests_per_thousand": 0.842,
- "new_tests_smoothed": 12198.0,
- "new_tests_smoothed_per_thousand": 0.638,
- "tests_per_case": 6.853,
- "positive_rate": 0.146,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-05-16",
- "total_cases": 39542.0,
- "new_cases": 2502.0,
- "new_cases_smoothed": 1938.571,
- "total_deaths": 394.0,
- "new_deaths": 36.0,
- "new_deaths_smoothed": 14.286,
- "total_cases_per_million": 2068.506,
- "new_cases_per_million": 130.884,
- "new_cases_smoothed_per_million": 101.41,
- "total_deaths_per_million": 20.611,
- "new_deaths_per_million": 1.883,
- "new_deaths_smoothed_per_million": 0.747,
- "new_tests": 8813.0,
- "total_tests": 342618.0,
- "total_tests_per_thousand": 17.923,
- "new_tests_per_thousand": 0.461,
- "new_tests_smoothed": 11751.0,
- "new_tests_smoothed_per_thousand": 0.615,
- "tests_per_case": 6.062,
- "positive_rate": 0.165,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-05-17",
- "total_cases": 41428.0,
- "new_cases": 1886.0,
- "new_cases_smoothed": 2029.857,
- "total_deaths": 421.0,
- "new_deaths": 27.0,
- "new_deaths_smoothed": 16.714,
- "total_cases_per_million": 2167.166,
- "new_cases_per_million": 98.66,
- "new_cases_smoothed_per_million": 106.185,
- "total_deaths_per_million": 22.023,
- "new_deaths_per_million": 1.412,
- "new_deaths_smoothed_per_million": 0.874,
- "new_tests": 13171.0,
- "total_tests": 355789.0,
- "total_tests_per_thousand": 18.612,
- "new_tests_per_thousand": 0.689,
- "new_tests_smoothed": 11807.0,
- "new_tests_smoothed_per_thousand": 0.618,
- "tests_per_case": 5.817,
- "positive_rate": 0.172,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-05-18",
- "total_cases": 43781.0,
- "new_cases": 2353.0,
- "new_cases_smoothed": 2130.714,
- "total_deaths": 450.0,
- "new_deaths": 29.0,
- "new_deaths_smoothed": 19.714,
- "total_cases_per_million": 2290.255,
- "new_cases_per_million": 123.089,
- "new_cases_smoothed_per_million": 111.461,
- "total_deaths_per_million": 23.54,
- "new_deaths_per_million": 1.517,
- "new_deaths_smoothed_per_million": 1.031,
- "new_tests": 17515.0,
- "total_tests": 373304.0,
- "total_tests_per_thousand": 19.528,
- "new_tests_per_thousand": 0.916,
- "new_tests_smoothed": 12398.0,
- "new_tests_smoothed_per_thousand": 0.649,
- "tests_per_case": 5.819,
- "positive_rate": 0.172,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-05-19",
- "total_cases": 46059.0,
- "new_cases": 2278.0,
- "new_cases_smoothed": 2285.143,
- "total_deaths": 478.0,
- "new_deaths": 28.0,
- "new_deaths_smoothed": 22.143,
- "total_cases_per_million": 2409.421,
- "new_cases_per_million": 119.166,
- "new_cases_smoothed_per_million": 119.54,
- "total_deaths_per_million": 25.005,
- "new_deaths_per_million": 1.465,
- "new_deaths_smoothed_per_million": 1.158,
- "new_tests": 16189.0,
- "total_tests": 389493.0,
- "total_tests_per_thousand": 20.375,
- "new_tests_per_thousand": 0.847,
- "new_tests_smoothed": 13385.0,
- "new_tests_smoothed_per_thousand": 0.7,
- "tests_per_case": 5.857,
- "positive_rate": 0.171,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-05-20",
- "total_cases": 49579.0,
- "new_cases": 3520.0,
- "new_cases_smoothed": 2551.143,
- "total_deaths": 509.0,
- "new_deaths": 31.0,
- "new_deaths_smoothed": 24.857,
- "total_cases_per_million": 2593.558,
- "new_cases_per_million": 184.137,
- "new_cases_smoothed_per_million": 133.454,
- "total_deaths_per_million": 26.627,
- "new_deaths_per_million": 1.622,
- "new_deaths_smoothed_per_million": 1.3,
- "new_tests": 12469.0,
- "total_tests": 401962.0,
- "total_tests_per_thousand": 21.027,
- "new_tests_per_thousand": 0.652,
- "new_tests_smoothed": 13679.0,
- "new_tests_smoothed_per_thousand": 0.716,
- "tests_per_case": 5.362,
- "positive_rate": 0.187,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-05-21",
- "total_cases": 53617.0,
- "new_cases": 4038.0,
- "new_cases_smoothed": 2748.0,
- "total_deaths": 544.0,
- "new_deaths": 35.0,
- "new_deaths_smoothed": 28.286,
- "total_cases_per_million": 2804.793,
- "new_cases_per_million": 211.234,
- "new_cases_smoothed_per_million": 143.752,
- "total_deaths_per_million": 28.458,
- "new_deaths_per_million": 1.831,
- "new_deaths_smoothed_per_million": 1.48,
- "new_tests": 16334.0,
- "total_tests": 418296.0,
- "total_tests_per_thousand": 21.882,
- "new_tests_per_thousand": 0.854,
- "new_tests_smoothed": 14369.0,
- "new_tests_smoothed_per_thousand": 0.752,
- "tests_per_case": 5.229,
- "positive_rate": 0.191,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-05-22",
- "total_cases": 57581.0,
- "new_cases": 3964.0,
- "new_cases_smoothed": 2934.429,
- "total_deaths": 589.0,
- "new_deaths": 45.0,
- "new_deaths_smoothed": 33.0,
- "total_cases_per_million": 3012.156,
- "new_cases_per_million": 207.363,
- "new_cases_smoothed_per_million": 153.505,
- "total_deaths_per_million": 30.812,
- "new_deaths_per_million": 2.354,
- "new_deaths_smoothed_per_million": 1.726,
- "new_tests": 16090.0,
- "total_tests": 434386.0,
- "total_tests_per_thousand": 22.723,
- "new_tests_per_thousand": 0.842,
- "new_tests_smoothed": 14369.0,
- "new_tests_smoothed_per_thousand": 0.752,
- "tests_per_case": 4.897,
- "positive_rate": 0.204,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-05-23",
- "total_cases": 61857.0,
- "new_cases": 4276.0,
- "new_cases_smoothed": 3187.857,
- "total_deaths": 630.0,
- "new_deaths": 41.0,
- "new_deaths_smoothed": 33.714,
- "total_cases_per_million": 3235.84,
- "new_cases_per_million": 223.685,
- "new_cases_smoothed_per_million": 166.762,
- "total_deaths_per_million": 32.956,
- "new_deaths_per_million": 2.145,
- "new_deaths_smoothed_per_million": 1.764,
- "new_tests": 15239.0,
- "total_tests": 449625.0,
- "total_tests_per_thousand": 23.521,
- "new_tests_per_thousand": 0.797,
- "new_tests_smoothed": 15287.0,
- "new_tests_smoothed_per_thousand": 0.8,
- "tests_per_case": 4.795,
- "positive_rate": 0.209,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-05-24",
- "total_cases": 65393.0,
- "new_cases": 3536.0,
- "new_cases_smoothed": 3423.571,
- "total_deaths": 673.0,
- "new_deaths": 43.0,
- "new_deaths_smoothed": 36.0,
- "total_cases_per_million": 3420.814,
- "new_cases_per_million": 184.974,
- "new_cases_smoothed_per_million": 179.093,
- "total_deaths_per_million": 35.206,
- "new_deaths_per_million": 2.249,
- "new_deaths_smoothed_per_million": 1.883,
- "new_tests": 14426.0,
- "total_tests": 464051.0,
- "total_tests_per_thousand": 24.275,
- "new_tests_per_thousand": 0.755,
- "new_tests_smoothed": 15466.0,
- "new_tests_smoothed_per_thousand": 0.809,
- "tests_per_case": 4.518,
- "positive_rate": 0.221,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-05-25",
- "total_cases": 69102.0,
- "new_cases": 3709.0,
- "new_cases_smoothed": 3617.286,
- "total_deaths": 718.0,
- "new_deaths": 45.0,
- "new_deaths_smoothed": 38.286,
- "total_cases_per_million": 3614.838,
- "new_cases_per_million": 194.024,
- "new_cases_smoothed_per_million": 189.226,
- "total_deaths_per_million": 37.56,
- "new_deaths_per_million": 2.354,
- "new_deaths_smoothed_per_million": 2.003,
- "new_tests": 16283.0,
- "total_tests": 480334.0,
- "total_tests_per_thousand": 25.127,
- "new_tests_per_thousand": 0.852,
- "new_tests_smoothed": 15290.0,
- "new_tests_smoothed_per_thousand": 0.8,
- "tests_per_case": 4.227,
- "positive_rate": 0.237,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-05-26",
- "total_cases": 73997.0,
- "new_cases": 4895.0,
- "new_cases_smoothed": 3991.143,
- "total_deaths": 761.0,
- "new_deaths": 43.0,
- "new_deaths_smoothed": 40.429,
- "total_cases_per_million": 3870.903,
- "new_cases_per_million": 256.065,
- "new_cases_smoothed_per_million": 208.783,
- "total_deaths_per_million": 39.809,
- "new_deaths_per_million": 2.249,
- "new_deaths_smoothed_per_million": 2.115,
- "new_tests": 13084.0,
- "total_tests": 493418.0,
- "total_tests_per_thousand": 25.811,
- "new_tests_per_thousand": 0.684,
- "new_tests_smoothed": 14846.0,
- "new_tests_smoothed_per_thousand": 0.777,
- "tests_per_case": 3.72,
- "positive_rate": 0.26899999999999996,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-05-27",
- "total_cases": 77961.0,
- "new_cases": 3964.0,
- "new_cases_smoothed": 4054.571,
- "total_deaths": 806.0,
- "new_deaths": 45.0,
- "new_deaths_smoothed": 42.429,
- "total_cases_per_million": 4078.267,
- "new_cases_per_million": 207.363,
- "new_cases_smoothed_per_million": 212.101,
- "total_deaths_per_million": 42.163,
- "new_deaths_per_million": 2.354,
- "new_deaths_smoothed_per_million": 2.22,
- "new_tests": 13398.0,
- "total_tests": 506816.0,
- "total_tests_per_thousand": 26.512,
- "new_tests_per_thousand": 0.701,
- "new_tests_smoothed": 14979.0,
- "new_tests_smoothed_per_thousand": 0.784,
- "tests_per_case": 3.694,
- "positive_rate": 0.271,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-05-28",
- "total_cases": 82289.0,
- "new_cases": 4328.0,
- "new_cases_smoothed": 4096.0,
- "total_deaths": 841.0,
- "new_deaths": 35.0,
- "new_deaths_smoothed": 42.429,
- "total_cases_per_million": 4304.671,
- "new_cases_per_million": 226.405,
- "new_cases_smoothed_per_million": 214.268,
- "total_deaths_per_million": 43.994,
- "new_deaths_per_million": 1.831,
- "new_deaths_smoothed_per_million": 2.22,
- "new_tests": 15650.0,
- "total_tests": 522466.0,
- "total_tests_per_thousand": 27.331,
- "new_tests_per_thousand": 0.819,
- "new_tests_smoothed": 14881.0,
- "new_tests_smoothed_per_thousand": 0.778,
- "tests_per_case": 3.633,
- "positive_rate": 0.275,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-05-29",
- "total_cases": 86943.0,
- "new_cases": 4654.0,
- "new_cases_smoothed": 4194.571,
- "total_deaths": 890.0,
- "new_deaths": 49.0,
- "new_deaths_smoothed": 43.0,
- "total_cases_per_million": 4548.13,
- "new_cases_per_million": 243.458,
- "new_cases_smoothed_per_million": 219.425,
- "total_deaths_per_million": 46.557,
- "new_deaths_per_million": 2.563,
- "new_deaths_smoothed_per_million": 2.249,
- "new_tests": 16333.0,
- "total_tests": 538799.0,
- "total_tests_per_thousand": 28.185,
- "new_tests_per_thousand": 0.854,
- "new_tests_smoothed": 14916.0,
- "new_tests_smoothed_per_thousand": 0.78,
- "tests_per_case": 3.556,
- "positive_rate": 0.281,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-05-30",
- "total_cases": 90638.0,
- "new_cases": 3695.0,
- "new_cases_smoothed": 4111.571,
- "total_deaths": 944.0,
- "new_deaths": 54.0,
- "new_deaths_smoothed": 44.857,
- "total_cases_per_million": 4741.421,
- "new_cases_per_million": 193.291,
- "new_cases_smoothed_per_million": 215.083,
- "total_deaths_per_million": 49.382,
- "new_deaths_per_million": 2.825,
- "new_deaths_smoothed_per_million": 2.347,
- "new_tests": 16814.0,
- "total_tests": 555613.0,
- "total_tests_per_thousand": 29.065,
- "new_tests_per_thousand": 0.88,
- "new_tests_smoothed": 15141.0,
- "new_tests_smoothed_per_thousand": 0.792,
- "tests_per_case": 3.6830000000000003,
- "positive_rate": 0.272,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-05-31",
- "total_cases": 94858.0,
- "new_cases": 4220.0,
- "new_cases_smoothed": 4209.286,
- "total_deaths": 997.0,
- "new_deaths": 53.0,
- "new_deaths_smoothed": 46.286,
- "total_cases_per_million": 4962.176,
- "new_cases_per_million": 220.755,
- "new_cases_smoothed_per_million": 220.195,
- "total_deaths_per_million": 52.155,
- "new_deaths_per_million": 2.773,
- "new_deaths_smoothed_per_million": 2.421,
- "new_tests": 19120.0,
- "total_tests": 574733.0,
- "total_tests_per_thousand": 30.065,
- "new_tests_per_thousand": 1.0,
- "new_tests_smoothed": 15812.0,
- "new_tests_smoothed_per_thousand": 0.827,
- "tests_per_case": 3.7560000000000002,
- "positive_rate": 0.266,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-01",
- "total_cases": 99688.0,
- "new_cases": 4830.0,
- "new_cases_smoothed": 4369.429,
- "total_deaths": 1054.0,
- "new_deaths": 57.0,
- "new_deaths_smoothed": 48.0,
- "total_cases_per_million": 5214.841,
- "new_cases_per_million": 252.665,
- "new_cases_smoothed_per_million": 228.572,
- "total_deaths_per_million": 55.136,
- "new_deaths_per_million": 2.982,
- "new_deaths_smoothed_per_million": 2.511,
- "new_tests": 16890.0,
- "total_tests": 591623.0,
- "total_tests_per_thousand": 30.949,
- "new_tests_per_thousand": 0.884,
- "new_tests_smoothed": 15898.0,
- "new_tests_smoothed_per_thousand": 0.832,
- "tests_per_case": 3.638,
- "positive_rate": 0.275,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-02",
- "total_cases": 105159.0,
- "new_cases": 5471.0,
- "new_cases_smoothed": 4451.714,
- "total_deaths": 1113.0,
- "new_deaths": 59.0,
- "new_deaths_smoothed": 50.286,
- "total_cases_per_million": 5501.038,
- "new_cases_per_million": 286.197,
- "new_cases_smoothed_per_million": 232.876,
- "total_deaths_per_million": 58.223,
- "new_deaths_per_million": 3.086,
- "new_deaths_smoothed_per_million": 2.631,
- "new_tests": 13442.0,
- "total_tests": 605065.0,
- "total_tests_per_thousand": 31.652,
- "new_tests_per_thousand": 0.703,
- "new_tests_smoothed": 15950.0,
- "new_tests_smoothed_per_thousand": 0.834,
- "tests_per_case": 3.583,
- "positive_rate": 0.27899999999999997,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-03",
- "total_cases": 108686.0,
- "new_cases": 3527.0,
- "new_cases_smoothed": 4389.286,
- "total_deaths": 1188.0,
- "new_deaths": 75.0,
- "new_deaths_smoothed": 54.571,
- "total_cases_per_million": 5685.542,
- "new_cases_per_million": 184.503,
- "new_cases_smoothed_per_million": 229.611,
- "total_deaths_per_million": 62.146,
- "new_deaths_per_million": 3.923,
- "new_deaths_smoothed_per_million": 2.855,
- "new_tests": 15546.0,
- "total_tests": 620611.0,
- "total_tests_per_thousand": 32.465,
- "new_tests_per_thousand": 0.813,
- "new_tests_smoothed": 16256.0,
- "new_tests_smoothed_per_thousand": 0.85,
- "tests_per_case": 3.7039999999999997,
- "positive_rate": 0.27,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-04",
- "total_cases": 113628.0,
- "new_cases": 4942.0,
- "new_cases_smoothed": 4477.0,
- "total_deaths": 1275.0,
- "new_deaths": 87.0,
- "new_deaths_smoothed": 62.0,
- "total_cases_per_million": 5944.066,
- "new_cases_per_million": 258.524,
- "new_cases_smoothed_per_million": 234.199,
- "total_deaths_per_million": 66.697,
- "new_deaths_per_million": 4.551,
- "new_deaths_smoothed_per_million": 3.243,
- "new_tests": 18140.0,
- "total_tests": 638751.0,
- "total_tests_per_thousand": 33.414,
- "new_tests_per_thousand": 0.949,
- "new_tests_smoothed": 16612.0,
- "new_tests_smoothed_per_thousand": 0.869,
- "tests_per_case": 3.7110000000000003,
- "positive_rate": 0.27,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-05",
- "total_cases": 118292.0,
- "new_cases": 4664.0,
- "new_cases_smoothed": 4478.429,
- "total_deaths": 1356.0,
- "new_deaths": 81.0,
- "new_deaths_smoothed": 66.571,
- "total_cases_per_million": 6188.047,
- "new_cases_per_million": 243.981,
- "new_cases_smoothed_per_million": 234.274,
- "total_deaths_per_million": 70.935,
- "new_deaths_per_million": 4.237,
- "new_deaths_smoothed_per_million": 3.482,
- "new_tests": 21780.0,
- "total_tests": 660531.0,
- "total_tests_per_thousand": 34.553,
- "new_tests_per_thousand": 1.139,
- "new_tests_smoothed": 17390.0,
- "new_tests_smoothed_per_thousand": 0.91,
- "tests_per_case": 3.883,
- "positive_rate": 0.258,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-06",
- "total_cases": 122499.0,
- "new_cases": 4207.0,
- "new_cases_smoothed": 4551.571,
- "total_deaths": 1448.0,
- "new_deaths": 92.0,
- "new_deaths_smoothed": 72.0,
- "total_cases_per_million": 6408.122,
- "new_cases_per_million": 220.075,
- "new_cases_smoothed_per_million": 238.1,
- "total_deaths_per_million": 75.747,
- "new_deaths_per_million": 4.813,
- "new_deaths_smoothed_per_million": 3.766,
- "new_tests": 18954.0,
- "total_tests": 679485.0,
- "total_tests_per_thousand": 35.545,
- "new_tests_per_thousand": 0.992,
- "new_tests_smoothed": 17696.0,
- "new_tests_smoothed_per_thousand": 0.926,
- "tests_per_case": 3.888,
- "positive_rate": 0.257,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-07",
- "total_cases": 127745.0,
- "new_cases": 5246.0,
- "new_cases_smoothed": 4698.143,
- "total_deaths": 1541.0,
- "new_deaths": 93.0,
- "new_deaths_smoothed": 77.714,
- "total_cases_per_million": 6682.549,
- "new_cases_per_million": 274.427,
- "new_cases_smoothed_per_million": 245.767,
- "total_deaths_per_million": 80.612,
- "new_deaths_per_million": 4.865,
- "new_deaths_smoothed_per_million": 4.065,
- "new_tests": 21265.0,
- "total_tests": 700750.0,
- "total_tests_per_thousand": 36.657,
- "new_tests_per_thousand": 1.112,
- "new_tests_smoothed": 18002.0,
- "new_tests_smoothed_per_thousand": 0.942,
- "tests_per_case": 3.832,
- "positive_rate": 0.261,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-08",
- "total_cases": 134150.0,
- "new_cases": 6405.0,
- "new_cases_smoothed": 4923.143,
- "total_deaths": 2190.0,
- "new_deaths": 649.0,
- "new_deaths_smoothed": 162.286,
- "total_cases_per_million": 7017.605,
- "new_cases_per_million": 335.056,
- "new_cases_smoothed_per_million": 257.538,
- "total_deaths_per_million": 114.562,
- "new_deaths_per_million": 33.95,
- "new_deaths_smoothed_per_million": 8.489,
- "new_tests": 20040.0,
- "total_tests": 720790.0,
- "total_tests_per_thousand": 37.706,
- "new_tests_per_thousand": 1.048,
- "new_tests_smoothed": 18452.0,
- "new_tests_smoothed_per_thousand": 0.965,
- "tests_per_case": 3.748,
- "positive_rate": 0.267,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-09",
- "total_cases": 138846.0,
- "new_cases": 4696.0,
- "new_cases_smoothed": 4812.429,
- "total_deaths": 2264.0,
- "new_deaths": 74.0,
- "new_deaths_smoothed": 164.429,
- "total_cases_per_million": 7263.26,
- "new_cases_per_million": 245.655,
- "new_cases_smoothed_per_million": 251.746,
- "total_deaths_per_million": 118.434,
- "new_deaths_per_million": 3.871,
- "new_deaths_smoothed_per_million": 8.602,
- "new_tests": 17777.0,
- "total_tests": 738567.0,
- "total_tests_per_thousand": 38.636,
- "new_tests_per_thousand": 0.93,
- "new_tests_smoothed": 19072.0,
- "new_tests_smoothed_per_thousand": 0.998,
- "tests_per_case": 3.963,
- "positive_rate": 0.252,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-10",
- "total_cases": 142759.0,
- "new_cases": 3913.0,
- "new_cases_smoothed": 4867.571,
- "total_deaths": 2283.0,
- "new_deaths": 19.0,
- "new_deaths_smoothed": 156.429,
- "total_cases_per_million": 7467.956,
- "new_cases_per_million": 204.695,
- "new_cases_smoothed_per_million": 254.631,
- "total_deaths_per_million": 119.427,
- "new_deaths_per_million": 0.994,
- "new_deaths_smoothed_per_million": 8.183,
- "new_tests": 14477.0,
- "total_tests": 753044.0,
- "total_tests_per_thousand": 39.393,
- "new_tests_per_thousand": 0.757,
- "new_tests_smoothed": 18919.0,
- "new_tests_smoothed_per_thousand": 0.99,
- "tests_per_case": 3.887,
- "positive_rate": 0.257,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-11",
- "total_cases": 148496.0,
- "new_cases": 5737.0,
- "new_cases_smoothed": 4981.143,
- "total_deaths": 2475.0,
- "new_deaths": 192.0,
- "new_deaths_smoothed": 171.429,
- "total_cases_per_million": 7768.067,
- "new_cases_per_million": 300.112,
- "new_cases_smoothed_per_million": 260.572,
- "total_deaths_per_million": 129.471,
- "new_deaths_per_million": 10.044,
- "new_deaths_smoothed_per_million": 8.968,
- "new_tests": 19976.0,
- "total_tests": 773020.0,
- "total_tests_per_thousand": 40.438,
- "new_tests_per_thousand": 1.045,
- "new_tests_smoothed": 19181.0,
- "new_tests_smoothed_per_thousand": 1.003,
- "tests_per_case": 3.8510000000000004,
- "positive_rate": 0.26,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-12",
- "total_cases": 154092.0,
- "new_cases": 5596.0,
- "new_cases_smoothed": 5114.286,
- "total_deaths": 2648.0,
- "new_deaths": 173.0,
- "new_deaths_smoothed": 184.571,
- "total_cases_per_million": 8060.803,
- "new_cases_per_million": 292.736,
- "new_cases_smoothed_per_million": 267.537,
- "total_deaths_per_million": 138.521,
- "new_deaths_per_million": 9.05,
- "new_deaths_smoothed_per_million": 9.655,
- "new_tests": 18733.0,
- "total_tests": 791753.0,
- "total_tests_per_thousand": 41.418,
- "new_tests_per_thousand": 0.98,
- "new_tests_smoothed": 18746.0,
- "new_tests_smoothed_per_thousand": 0.981,
- "tests_per_case": 3.665,
- "positive_rate": 0.273,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-13",
- "total_cases": 160846.0,
- "new_cases": 6754.0,
- "new_cases_smoothed": 5478.143,
- "total_deaths": 2870.0,
- "new_deaths": 222.0,
- "new_deaths_smoothed": 203.143,
- "total_cases_per_million": 8414.116,
- "new_cases_per_million": 353.313,
- "new_cases_smoothed_per_million": 286.571,
- "total_deaths_per_million": 150.134,
- "new_deaths_per_million": 11.613,
- "new_deaths_smoothed_per_million": 10.627,
- "new_tests": 20223.0,
- "total_tests": 811976.0,
- "total_tests_per_thousand": 42.476,
- "new_tests_per_thousand": 1.058,
- "new_tests_smoothed": 18927.0,
- "new_tests_smoothed_per_thousand": 0.99,
- "tests_per_case": 3.455,
- "positive_rate": 0.289,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-14",
- "total_cases": 167355.0,
- "new_cases": 6509.0,
- "new_cases_smoothed": 5658.571,
- "total_deaths": 3101.0,
- "new_deaths": 231.0,
- "new_deaths_smoothed": 222.857,
- "total_cases_per_million": 8754.612,
- "new_cases_per_million": 340.496,
- "new_cases_smoothed_per_million": 296.009,
- "total_deaths_per_million": 162.218,
- "new_deaths_per_million": 12.084,
- "new_deaths_smoothed_per_million": 11.658,
- "new_tests": 20151.0,
- "total_tests": 832127.0,
- "total_tests_per_thousand": 43.53,
- "new_tests_per_thousand": 1.054,
- "new_tests_smoothed": 18768.0,
- "new_tests_smoothed_per_thousand": 0.982,
- "tests_per_case": 3.3169999999999997,
- "positive_rate": 0.302,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-15",
- "total_cases": 174293.0,
- "new_cases": 6938.0,
- "new_cases_smoothed": 5734.714,
- "total_deaths": 3323.0,
- "new_deaths": 222.0,
- "new_deaths_smoothed": 161.857,
- "total_cases_per_million": 9117.55,
- "new_cases_per_million": 362.938,
- "new_cases_smoothed_per_million": 299.992,
- "total_deaths_per_million": 173.832,
- "new_deaths_per_million": 11.613,
- "new_deaths_smoothed_per_million": 8.467,
- "new_tests": 18808.0,
- "total_tests": 850935.0,
- "total_tests_per_thousand": 44.514,
- "new_tests_per_thousand": 0.984,
- "new_tests_smoothed": 18592.0,
- "new_tests_smoothed_per_thousand": 0.973,
- "tests_per_case": 3.242,
- "positive_rate": 0.308,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-16",
- "total_cases": 179436.0,
- "new_cases": 5143.0,
- "new_cases_smoothed": 5798.571,
- "total_deaths": 3362.0,
- "new_deaths": 39.0,
- "new_deaths_smoothed": 156.857,
- "total_cases_per_million": 9386.589,
- "new_cases_per_million": 269.039,
- "new_cases_smoothed_per_million": 303.333,
- "total_deaths_per_million": 175.872,
- "new_deaths_per_million": 2.04,
- "new_deaths_smoothed_per_million": 8.205,
- "new_tests": 14575.0,
- "total_tests": 865510.0,
- "total_tests_per_thousand": 45.276,
- "new_tests_per_thousand": 0.762,
- "new_tests_smoothed": 18135.0,
- "new_tests_smoothed_per_thousand": 0.949,
- "tests_per_case": 3.127,
- "positive_rate": 0.32,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-17",
- "total_cases": 184449.0,
- "new_cases": 5013.0,
- "new_cases_smoothed": 5955.714,
- "total_deaths": 3383.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 157.143,
- "total_cases_per_million": 9648.827,
- "new_cases_per_million": 262.238,
- "new_cases_smoothed_per_million": 311.553,
- "total_deaths_per_million": 176.97,
- "new_deaths_per_million": 1.099,
- "new_deaths_smoothed_per_million": 8.22,
- "new_tests": 12636.0,
- "total_tests": 878146.0,
- "total_tests_per_thousand": 45.937,
- "new_tests_per_thousand": 0.661,
- "new_tests_smoothed": 17872.0,
- "new_tests_smoothed_per_thousand": 0.935,
- "tests_per_case": 3.0010000000000003,
- "positive_rate": 0.33299999999999996,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-18",
- "total_cases": 220628.0,
- "new_cases": 36179.0,
- "new_cases_smoothed": 10304.571,
- "total_deaths": 3615.0,
- "new_deaths": 232.0,
- "new_deaths_smoothed": 162.857,
- "total_cases_per_million": 11541.41,
- "new_cases_per_million": 1892.582,
- "new_cases_smoothed_per_million": 539.049,
- "total_deaths_per_million": 189.107,
- "new_deaths_per_million": 12.136,
- "new_deaths_smoothed_per_million": 8.519,
- "new_tests": 16997.0,
- "total_tests": 895143.0,
- "total_tests_per_thousand": 46.826,
- "new_tests_per_thousand": 0.889,
- "new_tests_smoothed": 17446.0,
- "new_tests_smoothed_per_thousand": 0.913,
- "tests_per_case": 1.693,
- "positive_rate": 0.591,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-19",
- "total_cases": 225103.0,
- "new_cases": 4475.0,
- "new_cases_smoothed": 10144.429,
- "total_deaths": 3841.0,
- "new_deaths": 226.0,
- "new_deaths_smoothed": 170.429,
- "total_cases_per_million": 11775.504,
- "new_cases_per_million": 234.095,
- "new_cases_smoothed_per_million": 530.672,
- "total_deaths_per_million": 200.929,
- "new_deaths_per_million": 11.822,
- "new_deaths_smoothed_per_million": 8.915,
- "new_tests": 20347.0,
- "total_tests": 915490.0,
- "total_tests_per_thousand": 47.891,
- "new_tests_per_thousand": 1.064,
- "new_tests_smoothed": 17677.0,
- "new_tests_smoothed_per_thousand": 0.925,
- "tests_per_case": 1.743,
- "positive_rate": 0.574,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-20",
- "total_cases": 231393.0,
- "new_cases": 6290.0,
- "new_cases_smoothed": 10078.143,
- "total_deaths": 4093.0,
- "new_deaths": 252.0,
- "new_deaths_smoothed": 174.714,
- "total_cases_per_million": 12104.544,
- "new_cases_per_million": 329.04,
- "new_cases_smoothed_per_million": 527.204,
- "total_deaths_per_million": 214.111,
- "new_deaths_per_million": 13.183,
- "new_deaths_smoothed_per_million": 9.14,
- "new_tests": 20080.0,
- "total_tests": 935570.0,
- "total_tests_per_thousand": 48.941,
- "new_tests_per_thousand": 1.05,
- "new_tests_smoothed": 17656.0,
- "new_tests_smoothed_per_thousand": 0.924,
- "tests_per_case": 1.7519999999999998,
- "positive_rate": 0.5710000000000001,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-21",
- "total_cases": 236748.0,
- "new_cases": 5355.0,
- "new_cases_smoothed": 9913.286,
- "total_deaths": 4295.0,
- "new_deaths": 202.0,
- "new_deaths_smoothed": 170.571,
- "total_cases_per_million": 12384.673,
- "new_cases_per_million": 280.129,
- "new_cases_smoothed_per_million": 518.58,
- "total_deaths_per_million": 224.678,
- "new_deaths_per_million": 10.567,
- "new_deaths_smoothed_per_million": 8.923,
- "new_tests": 20115.0,
- "total_tests": 955685.0,
- "total_tests_per_thousand": 49.993,
- "new_tests_per_thousand": 1.052,
- "new_tests_smoothed": 17651.0,
- "new_tests_smoothed_per_thousand": 0.923,
- "tests_per_case": 1.781,
- "positive_rate": 0.562,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-22",
- "total_cases": 242355.0,
- "new_cases": 5607.0,
- "new_cases_smoothed": 9723.143,
- "total_deaths": 4479.0,
- "new_deaths": 184.0,
- "new_deaths_smoothed": 165.143,
- "total_cases_per_million": 12677.984,
- "new_cases_per_million": 293.311,
- "new_cases_smoothed_per_million": 508.633,
- "total_deaths_per_million": 234.304,
- "new_deaths_per_million": 9.625,
- "new_deaths_smoothed_per_million": 8.639,
- "new_tests": 18645.0,
- "total_tests": 974330.0,
- "total_tests_per_thousand": 50.969,
- "new_tests_per_thousand": 0.975,
- "new_tests_smoothed": 17628.0,
- "new_tests_smoothed_per_thousand": 0.922,
- "tests_per_case": 1.8130000000000002,
- "positive_rate": 0.552,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-23",
- "total_cases": 246963.0,
- "new_cases": 4608.0,
- "new_cases_smoothed": 9646.714,
- "total_deaths": 4502.0,
- "new_deaths": 23.0,
- "new_deaths_smoothed": 162.857,
- "total_cases_per_million": 12919.036,
- "new_cases_per_million": 241.052,
- "new_cases_smoothed_per_million": 504.635,
- "total_deaths_per_million": 235.507,
- "new_deaths_per_million": 1.203,
- "new_deaths_smoothed_per_million": 8.519,
- "new_tests": 12707.0,
- "total_tests": 987037.0,
- "total_tests_per_thousand": 51.634,
- "new_tests_per_thousand": 0.665,
- "new_tests_smoothed": 17361.0,
- "new_tests_smoothed_per_thousand": 0.908,
- "tests_per_case": 1.8,
- "positive_rate": 0.556,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-24",
- "total_cases": 250767.0,
- "new_cases": 3804.0,
- "new_cases_smoothed": 9474.0,
- "total_deaths": 4505.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 160.286,
- "total_cases_per_million": 13118.03,
- "new_cases_per_million": 198.993,
- "new_cases_smoothed_per_million": 495.6,
- "total_deaths_per_million": 235.664,
- "new_deaths_per_million": 0.157,
- "new_deaths_smoothed_per_million": 8.385,
- "new_tests": 12575.0,
- "total_tests": 999612.0,
- "total_tests_per_thousand": 52.291,
- "new_tests_per_thousand": 0.658,
- "new_tests_smoothed": 17352.0,
- "new_tests_smoothed_per_thousand": 0.908,
- "tests_per_case": 1.8319999999999999,
- "positive_rate": 0.546,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-25",
- "total_cases": 254416.0,
- "new_cases": 3649.0,
- "new_cases_smoothed": 4826.857,
- "total_deaths": 4731.0,
- "new_deaths": 226.0,
- "new_deaths_smoothed": 159.429,
- "total_cases_per_million": 13308.915,
- "new_cases_per_million": 190.885,
- "new_cases_smoothed_per_million": 252.501,
- "total_deaths_per_million": 247.486,
- "new_deaths_per_million": 11.822,
- "new_deaths_smoothed_per_million": 8.34,
- "new_tests": 17446.0,
- "total_tests": 1017058.0,
- "total_tests_per_thousand": 53.204,
- "new_tests_per_thousand": 0.913,
- "new_tests_smoothed": 17416.0,
- "new_tests_smoothed_per_thousand": 0.911,
- "tests_per_case": 3.608,
- "positive_rate": 0.27699999999999997,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-26",
- "total_cases": 259064.0,
- "new_cases": 4648.0,
- "new_cases_smoothed": 4851.571,
- "total_deaths": 4903.0,
- "new_deaths": 172.0,
- "new_deaths_smoothed": 151.714,
- "total_cases_per_million": 13552.059,
- "new_cases_per_million": 243.144,
- "new_cases_smoothed_per_million": 253.794,
- "total_deaths_per_million": 256.484,
- "new_deaths_per_million": 8.998,
- "new_deaths_smoothed_per_million": 7.936,
- "new_tests": 18249.0,
- "total_tests": 1035307.0,
- "total_tests_per_thousand": 54.159,
- "new_tests_per_thousand": 0.955,
- "new_tests_smoothed": 17117.0,
- "new_tests_smoothed_per_thousand": 0.895,
- "tests_per_case": 3.528,
- "positive_rate": 0.28300000000000003,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-27",
- "total_cases": 263360.0,
- "new_cases": 4296.0,
- "new_cases_smoothed": 4566.714,
- "total_deaths": 5068.0,
- "new_deaths": 165.0,
- "new_deaths_smoothed": 139.286,
- "total_cases_per_million": 13776.79,
- "new_cases_per_million": 224.731,
- "new_cases_smoothed_per_million": 238.892,
- "total_deaths_per_million": 265.115,
- "new_deaths_per_million": 8.631,
- "new_deaths_smoothed_per_million": 7.286,
- "new_tests": 17944.0,
- "total_tests": 1053251.0,
- "total_tests_per_thousand": 55.097,
- "new_tests_per_thousand": 0.939,
- "new_tests_smoothed": 16812.0,
- "new_tests_smoothed_per_thousand": 0.879,
- "tests_per_case": 3.681,
- "positive_rate": 0.272,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-28",
- "total_cases": 267766.0,
- "new_cases": 4406.0,
- "new_cases_smoothed": 4431.143,
- "total_deaths": 5347.0,
- "new_deaths": 279.0,
- "new_deaths_smoothed": 150.286,
- "total_cases_per_million": 14007.275,
- "new_cases_per_million": 230.485,
- "new_cases_smoothed_per_million": 231.8,
- "total_deaths_per_million": 279.71,
- "new_deaths_per_million": 14.595,
- "new_deaths_smoothed_per_million": 7.862,
- "new_tests": 18370.0,
- "total_tests": 1071621.0,
- "total_tests_per_thousand": 56.058,
- "new_tests_per_thousand": 0.961,
- "new_tests_smoothed": 16562.0,
- "new_tests_smoothed_per_thousand": 0.866,
- "tests_per_case": 3.738,
- "positive_rate": 0.268,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-29",
- "total_cases": 271982.0,
- "new_cases": 4216.0,
- "new_cases_smoothed": 4232.429,
- "total_deaths": 5509.0,
- "new_deaths": 162.0,
- "new_deaths_smoothed": 147.143,
- "total_cases_per_million": 14227.821,
- "new_cases_per_million": 220.546,
- "new_cases_smoothed_per_million": 221.405,
- "total_deaths_per_million": 288.185,
- "new_deaths_per_million": 8.474,
- "new_deaths_smoothed_per_million": 7.697,
- "new_tests": 16799.0,
- "total_tests": 1088420.0,
- "total_tests_per_thousand": 56.937,
- "new_tests_per_thousand": 0.879,
- "new_tests_smoothed": 16299.0,
- "new_tests_smoothed_per_thousand": 0.853,
- "tests_per_case": 3.8510000000000004,
- "positive_rate": 0.26,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-30",
- "total_cases": 275999.0,
- "new_cases": 4017.0,
- "new_cases_smoothed": 4148.0,
- "total_deaths": 5575.0,
- "new_deaths": 66.0,
- "new_deaths_smoothed": 153.286,
- "total_cases_per_million": 14437.957,
- "new_cases_per_million": 210.136,
- "new_cases_smoothed_per_million": 216.989,
- "total_deaths_per_million": 291.637,
- "new_deaths_per_million": 3.453,
- "new_deaths_smoothed_per_million": 8.019,
- "new_tests": 13349.0,
- "total_tests": 1101769.0,
- "total_tests_per_thousand": 57.635,
- "new_tests_per_thousand": 0.698,
- "new_tests_smoothed": 16390.0,
- "new_tests_smoothed_per_thousand": 0.857,
- "tests_per_case": 3.951,
- "positive_rate": 0.253,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-07-01",
- "total_cases": 279393.0,
- "new_cases": 3394.0,
- "new_cases_smoothed": 4089.429,
- "total_deaths": 5688.0,
- "new_deaths": 113.0,
- "new_deaths_smoothed": 169.0,
- "total_cases_per_million": 14615.502,
- "new_cases_per_million": 177.546,
- "new_cases_smoothed_per_million": 213.925,
- "total_deaths_per_million": 297.549,
- "new_deaths_per_million": 5.911,
- "new_deaths_smoothed_per_million": 8.841,
- "new_tests": 10385.0,
- "total_tests": 1112154.0,
- "total_tests_per_thousand": 58.179,
- "new_tests_per_thousand": 0.543,
- "new_tests_smoothed": 16077.0,
- "new_tests_smoothed_per_thousand": 0.841,
- "tests_per_case": 3.931,
- "positive_rate": 0.254,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-07-02",
- "total_cases": 282043.0,
- "new_cases": 2650.0,
- "new_cases_smoothed": 3946.714,
- "total_deaths": 5753.0,
- "new_deaths": 65.0,
- "new_deaths_smoothed": 146.0,
- "total_cases_per_million": 14754.128,
- "new_cases_per_million": 138.626,
- "new_cases_smoothed_per_million": 206.459,
- "total_deaths_per_million": 300.949,
- "new_deaths_per_million": 3.4,
- "new_deaths_smoothed_per_million": 7.637,
- "new_tests": 10831.0,
- "total_tests": 1122985.0,
- "total_tests_per_thousand": 58.745,
- "new_tests_per_thousand": 0.567,
- "new_tests_smoothed": 15132.0,
- "new_tests_smoothed_per_thousand": 0.792,
- "tests_per_case": 3.8339999999999996,
- "positive_rate": 0.261,
- "tests_units": "tests performed",
- "stringency_index": 78.24
- },
- {
- "date": "2020-07-03",
- "total_cases": 284541.0,
- "new_cases": 2498.0,
- "new_cases_smoothed": 3639.571,
- "total_deaths": 5920.0,
- "new_deaths": 167.0,
- "new_deaths_smoothed": 145.286,
- "total_cases_per_million": 14884.803,
- "new_cases_per_million": 130.674,
- "new_cases_smoothed_per_million": 190.392,
- "total_deaths_per_million": 309.685,
- "new_deaths_per_million": 8.736,
- "new_deaths_smoothed_per_million": 7.6,
- "new_tests": 15585.0,
- "total_tests": 1138570.0,
- "total_tests_per_thousand": 59.56,
- "new_tests_per_thousand": 0.815,
- "new_tests_smoothed": 14752.0,
- "new_tests_smoothed_per_thousand": 0.772,
- "tests_per_case": 4.053,
- "positive_rate": 0.247,
- "tests_units": "tests performed",
- "stringency_index": 89.35
- },
- {
- "date": "2020-07-04",
- "total_cases": 288089.0,
- "new_cases": 3548.0,
- "new_cases_smoothed": 3532.714,
- "total_deaths": 6051.0,
- "new_deaths": 131.0,
- "new_deaths_smoothed": 140.429,
- "total_cases_per_million": 15070.404,
- "new_cases_per_million": 185.602,
- "new_cases_smoothed_per_million": 184.802,
- "total_deaths_per_million": 316.538,
- "new_deaths_per_million": 6.853,
- "new_deaths_smoothed_per_million": 7.346,
- "new_tests": 17287.0,
- "total_tests": 1155857.0,
- "total_tests_per_thousand": 60.465,
- "new_tests_per_thousand": 0.904,
- "new_tests_smoothed": 14658.0,
- "new_tests_smoothed_per_thousand": 0.767,
- "tests_per_case": 4.149,
- "positive_rate": 0.24100000000000002,
- "tests_units": "tests performed",
- "stringency_index": 89.35
- },
- {
- "date": "2020-07-05",
- "total_cases": 291847.0,
- "new_cases": 3758.0,
- "new_cases_smoothed": 3440.143,
- "total_deaths": 6192.0,
- "new_deaths": 141.0,
- "new_deaths_smoothed": 120.714,
- "total_cases_per_million": 15266.991,
- "new_cases_per_million": 196.587,
- "new_cases_smoothed_per_million": 179.959,
- "total_deaths_per_million": 323.914,
- "new_deaths_per_million": 7.376,
- "new_deaths_smoothed_per_million": 6.315,
- "new_tests": 18004.0,
- "total_tests": 1173861.0,
- "total_tests_per_thousand": 61.407,
- "new_tests_per_thousand": 0.942,
- "new_tests_smoothed": 14606.0,
- "new_tests_smoothed_per_thousand": 0.764,
- "tests_per_case": 4.246,
- "positive_rate": 0.23600000000000002,
- "tests_units": "tests performed",
- "stringency_index": 89.35
- },
- {
- "date": "2020-07-06",
- "total_cases": 295532.0,
- "new_cases": 3685.0,
- "new_cases_smoothed": 3364.286,
- "total_deaths": 6308.0,
- "new_deaths": 116.0,
- "new_deaths_smoothed": 114.143,
- "total_cases_per_million": 15459.76,
- "new_cases_per_million": 192.768,
- "new_cases_smoothed_per_million": 175.991,
- "total_deaths_per_million": 329.982,
- "new_deaths_per_million": 6.068,
- "new_deaths_smoothed_per_million": 5.971,
- "new_tests": 16377.0,
- "total_tests": 1190238.0,
- "total_tests_per_thousand": 62.263,
- "new_tests_per_thousand": 0.857,
- "new_tests_smoothed": 14545.0,
- "new_tests_smoothed_per_thousand": 0.761,
- "tests_per_case": 4.323,
- "positive_rate": 0.231,
- "tests_units": "tests performed",
- "stringency_index": 89.35
- },
- {
- "date": "2020-07-07",
- "total_cases": 298557.0,
- "new_cases": 3025.0,
- "new_cases_smoothed": 3222.571,
- "total_deaths": 6384.0,
- "new_deaths": 76.0,
- "new_deaths_smoothed": 115.571,
- "total_cases_per_million": 15618.003,
- "new_cases_per_million": 158.243,
- "new_cases_smoothed_per_million": 168.578,
- "total_deaths_per_million": 333.957,
- "new_deaths_per_million": 3.976,
- "new_deaths_smoothed_per_million": 6.046,
- "new_tests": 12065.0,
- "total_tests": 1202303.0,
- "total_tests_per_thousand": 62.894,
- "new_tests_per_thousand": 0.631,
- "new_tests_smoothed": 14362.0,
- "new_tests_smoothed_per_thousand": 0.751,
- "tests_per_case": 4.457,
- "positive_rate": 0.22399999999999998,
- "tests_units": "tests performed",
- "stringency_index": 89.35
- },
- {
- "date": "2020-07-08",
- "total_cases": 301019.0,
- "new_cases": 2462.0,
- "new_cases_smoothed": 3089.429,
- "total_deaths": 6434.0,
- "new_deaths": 50.0,
- "new_deaths_smoothed": 106.571,
- "total_cases_per_million": 15746.794,
- "new_cases_per_million": 128.791,
- "new_cases_smoothed_per_million": 161.613,
- "total_deaths_per_million": 336.573,
- "new_deaths_per_million": 2.616,
- "new_deaths_smoothed_per_million": 5.575,
- "new_tests": 10464.0,
- "total_tests": 1212767.0,
- "total_tests_per_thousand": 63.442,
- "new_tests_per_thousand": 0.547,
- "new_tests_smoothed": 14373.0,
- "new_tests_smoothed_per_thousand": 0.752,
- "tests_per_case": 4.652,
- "positive_rate": 0.215,
- "tests_units": "tests performed",
- "stringency_index": 89.35
- },
- {
- "date": "2020-07-09",
- "total_cases": 303083.0,
- "new_cases": 2064.0,
- "new_cases_smoothed": 3005.714,
- "total_deaths": 6573.0,
- "new_deaths": 139.0,
- "new_deaths_smoothed": 117.143,
- "total_cases_per_million": 15854.765,
- "new_cases_per_million": 107.971,
- "new_cases_smoothed_per_million": 157.234,
- "total_deaths_per_million": 343.844,
- "new_deaths_per_million": 7.271,
- "new_deaths_smoothed_per_million": 6.128,
- "new_tests": 16842.0,
- "total_tests": 1229609.0,
- "total_tests_per_thousand": 64.323,
- "new_tests_per_thousand": 0.881,
- "new_tests_smoothed": 15232.0,
- "new_tests_smoothed_per_thousand": 0.797,
- "tests_per_case": 5.0680000000000005,
- "positive_rate": 0.19699999999999998,
- "tests_units": "tests performed",
- "stringency_index": 89.35
- },
- {
- "date": "2020-07-10",
- "total_cases": 306216.0,
- "new_cases": 3133.0,
- "new_cases_smoothed": 3096.429,
- "total_deaths": 6682.0,
- "new_deaths": 109.0,
- "new_deaths_smoothed": 108.857,
- "total_cases_per_million": 16018.657,
- "new_cases_per_million": 163.892,
- "new_cases_smoothed_per_million": 161.979,
- "total_deaths_per_million": 349.546,
- "new_deaths_per_million": 5.702,
- "new_deaths_smoothed_per_million": 5.694,
- "new_tests": 17727.0,
- "total_tests": 1247336.0,
- "total_tests_per_thousand": 65.25,
- "new_tests_per_thousand": 0.927,
- "new_tests_smoothed": 15538.0,
- "new_tests_smoothed_per_thousand": 0.813,
- "tests_per_case": 5.018,
- "positive_rate": 0.19899999999999998,
- "tests_units": "tests performed",
- "stringency_index": 89.35
- },
- {
- "date": "2020-07-11",
- "total_cases": 309274.0,
- "new_cases": 3058.0,
- "new_cases_smoothed": 3026.429,
- "total_deaths": 6781.0,
- "new_deaths": 99.0,
- "new_deaths_smoothed": 104.286,
- "total_cases_per_million": 16178.626,
- "new_cases_per_million": 159.969,
- "new_cases_smoothed_per_million": 158.317,
- "total_deaths_per_million": 354.725,
- "new_deaths_per_million": 5.179,
- "new_deaths_smoothed_per_million": 5.455,
- "new_tests": 18268.0,
- "total_tests": 1265604.0,
- "total_tests_per_thousand": 66.206,
- "new_tests_per_thousand": 0.956,
- "new_tests_smoothed": 15678.0,
- "new_tests_smoothed_per_thousand": 0.82,
- "tests_per_case": 5.18,
- "positive_rate": 0.193,
- "tests_units": "tests performed",
- "stringency_index": 89.35
- },
- {
- "date": "2020-07-12",
- "total_cases": 312029.0,
- "new_cases": 2755.0,
- "new_cases_smoothed": 2883.143,
- "total_deaths": 6881.0,
- "new_deaths": 100.0,
- "new_deaths_smoothed": 98.429,
- "total_cases_per_million": 16322.745,
- "new_cases_per_million": 144.119,
- "new_cases_smoothed_per_million": 150.822,
- "total_deaths_per_million": 359.956,
- "new_deaths_per_million": 5.231,
- "new_deaths_smoothed_per_million": 5.149,
- "new_tests": 19171.0,
- "total_tests": 1284775.0,
- "total_tests_per_thousand": 67.209,
- "new_tests_per_thousand": 1.003,
- "new_tests_smoothed": 15845.0,
- "new_tests_smoothed_per_thousand": 0.829,
- "tests_per_case": 5.496,
- "positive_rate": 0.182,
- "tests_units": "tests performed",
- "stringency_index": 89.35
- },
- {
- "date": "2020-07-13",
- "total_cases": 315041.0,
- "new_cases": 3012.0,
- "new_cases_smoothed": 2787.0,
- "total_deaths": 6979.0,
- "new_deaths": 98.0,
- "new_deaths_smoothed": 95.857,
- "total_cases_per_million": 16480.307,
- "new_cases_per_million": 157.563,
- "new_cases_smoothed_per_million": 145.793,
- "total_deaths_per_million": 365.083,
- "new_deaths_per_million": 5.127,
- "new_deaths_smoothed_per_million": 5.014,
- "new_tests": 17467.0,
- "total_tests": 1302242.0,
- "total_tests_per_thousand": 68.122,
- "new_tests_per_thousand": 0.914,
- "new_tests_smoothed": 16001.0,
- "new_tests_smoothed_per_thousand": 0.837,
- "tests_per_case": 5.7410000000000005,
- "positive_rate": 0.174,
- "tests_units": "tests performed",
- "stringency_index": 89.35
- },
- {
- "date": "2020-07-14",
- "total_cases": 317657.0,
- "new_cases": 2616.0,
- "new_cases_smoothed": 2728.571,
- "total_deaths": 7024.0,
- "new_deaths": 45.0,
- "new_deaths_smoothed": 91.429,
- "total_cases_per_million": 16617.155,
- "new_cases_per_million": 136.847,
- "new_cases_smoothed_per_million": 142.736,
- "total_deaths_per_million": 367.437,
- "new_deaths_per_million": 2.354,
- "new_deaths_smoothed_per_million": 4.783,
- "new_tests": 12238.0,
- "total_tests": 1314480.0,
- "total_tests_per_thousand": 68.763,
- "new_tests_per_thousand": 0.64,
- "new_tests_smoothed": 16025.0,
- "new_tests_smoothed_per_thousand": 0.838,
- "tests_per_case": 5.872999999999999,
- "positive_rate": 0.17,
- "tests_units": "tests performed",
- "stringency_index": 89.35
- },
- {
- "date": "2020-07-15",
- "total_cases": 319493.0,
- "new_cases": 1836.0,
- "new_cases_smoothed": 2639.143,
- "total_deaths": 7069.0,
- "new_deaths": 45.0,
- "new_deaths_smoothed": 90.714,
- "total_cases_per_million": 16713.199,
- "new_cases_per_million": 96.044,
- "new_cases_smoothed_per_million": 138.058,
- "total_deaths_per_million": 369.791,
- "new_deaths_per_million": 2.354,
- "new_deaths_smoothed_per_million": 4.745,
- "new_tests": 12209.0,
- "total_tests": 1326689.0,
- "total_tests_per_thousand": 69.401,
- "new_tests_per_thousand": 0.639,
- "new_tests_smoothed": 16275.0,
- "new_tests_smoothed_per_thousand": 0.851,
- "tests_per_case": 6.167000000000001,
- "positive_rate": 0.162,
- "tests_units": "tests performed",
- "stringency_index": 89.35
- },
- {
- "date": "2020-07-16",
- "total_cases": 321205.0,
- "new_cases": 1712.0,
- "new_cases_smoothed": 2588.857,
- "total_deaths": 7186.0,
- "new_deaths": 117.0,
- "new_deaths_smoothed": 87.571,
- "total_cases_per_million": 16802.756,
- "new_cases_per_million": 89.558,
- "new_cases_smoothed_per_million": 135.427,
- "total_deaths_per_million": 375.911,
- "new_deaths_per_million": 6.12,
- "new_deaths_smoothed_per_million": 4.581,
- "new_tests": 17192.0,
- "total_tests": 1343881.0,
- "total_tests_per_thousand": 70.301,
- "new_tests_per_thousand": 0.899,
- "new_tests_smoothed": 16325.0,
- "new_tests_smoothed_per_thousand": 0.854,
- "tests_per_case": 6.306,
- "positive_rate": 0.159,
- "tests_units": "tests performed",
- "stringency_index": 89.35
- },
- {
- "date": "2020-07-17",
- "total_cases": 323698.0,
- "new_cases": 2493.0,
- "new_cases_smoothed": 2497.429,
- "total_deaths": 7290.0,
- "new_deaths": 104.0,
- "new_deaths_smoothed": 86.857,
- "total_cases_per_million": 16933.169,
- "new_cases_per_million": 130.413,
- "new_cases_smoothed_per_million": 130.645,
- "total_deaths_per_million": 381.352,
- "new_deaths_per_million": 5.44,
- "new_deaths_smoothed_per_million": 4.544,
- "new_tests": 18699.0,
- "total_tests": 1362580.0,
- "total_tests_per_thousand": 71.279,
- "new_tests_per_thousand": 0.978,
- "new_tests_smoothed": 16463.0,
- "new_tests_smoothed_per_thousand": 0.861,
- "tests_per_case": 6.5920000000000005,
- "positive_rate": 0.152,
- "tests_units": "tests performed",
- "stringency_index": 86.57
- },
- {
- "date": "2020-07-18",
- "total_cases": 326539.0,
- "new_cases": 2841.0,
- "new_cases_smoothed": 2466.429,
- "total_deaths": 8347.0,
- "new_deaths": 1057.0,
- "new_deaths_smoothed": 223.714,
- "total_cases_per_million": 17081.786,
- "new_cases_per_million": 148.617,
- "new_cases_smoothed_per_million": 129.023,
- "total_deaths_per_million": 436.645,
- "new_deaths_per_million": 55.293,
- "new_deaths_smoothed_per_million": 11.703,
- "new_tests": 17716.0,
- "total_tests": 1380296.0,
- "total_tests_per_thousand": 72.206,
- "new_tests_per_thousand": 0.927,
- "new_tests_smoothed": 16385.0,
- "new_tests_smoothed_per_thousand": 0.857,
- "tests_per_case": 6.643,
- "positive_rate": 0.151,
- "tests_units": "tests performed",
- "stringency_index": 86.57
- },
- {
- "date": "2020-07-19",
- "total_cases": 328846.0,
- "new_cases": 2307.0,
- "new_cases_smoothed": 2402.429,
- "total_deaths": 8445.0,
- "new_deaths": 98.0,
- "new_deaths_smoothed": 223.429,
- "total_cases_per_million": 17202.469,
- "new_cases_per_million": 120.683,
- "new_cases_smoothed_per_million": 125.675,
- "total_deaths_per_million": 441.772,
- "new_deaths_per_million": 5.127,
- "new_deaths_smoothed_per_million": 11.688,
- "new_tests": 15728.0,
- "total_tests": 1396024.0,
- "total_tests_per_thousand": 73.028,
- "new_tests_per_thousand": 0.823,
- "new_tests_smoothed": 15893.0,
- "new_tests_smoothed_per_thousand": 0.831,
- "tests_per_case": 6.615,
- "positive_rate": 0.151,
- "tests_units": "tests performed",
- "stringency_index": 86.57
- },
- {
- "date": "2020-07-20",
- "total_cases": 330930.0,
- "new_cases": 2084.0,
- "new_cases_smoothed": 2269.857,
- "total_deaths": 8503.0,
- "new_deaths": 58.0,
- "new_deaths_smoothed": 217.714,
- "total_cases_per_million": 17311.487,
- "new_cases_per_million": 109.017,
- "new_cases_smoothed_per_million": 118.74,
- "total_deaths_per_million": 444.806,
- "new_deaths_per_million": 3.034,
- "new_deaths_smoothed_per_million": 11.389,
- "new_tests": 16343.0,
- "total_tests": 1412367.0,
- "total_tests_per_thousand": 73.883,
- "new_tests_per_thousand": 0.855,
- "new_tests_smoothed": 15732.0,
- "new_tests_smoothed_per_thousand": 0.823,
- "tests_per_case": 6.931,
- "positive_rate": 0.14400000000000002,
- "tests_units": "tests performed",
- "stringency_index": 86.57
- },
- {
- "date": "2020-07-21",
- "total_cases": 333029.0,
- "new_cases": 2099.0,
- "new_cases_smoothed": 2196.0,
- "total_deaths": 8633.0,
- "new_deaths": 130.0,
- "new_deaths_smoothed": 229.857,
- "total_cases_per_million": 17421.289,
- "new_cases_per_million": 109.802,
- "new_cases_smoothed_per_million": 114.876,
- "total_deaths_per_million": 451.606,
- "new_deaths_per_million": 6.801,
- "new_deaths_smoothed_per_million": 12.024,
- "new_tests": 12590.0,
- "total_tests": 1424957.0,
- "total_tests_per_thousand": 74.542,
- "new_tests_per_thousand": 0.659,
- "new_tests_smoothed": 15782.0,
- "new_tests_smoothed_per_thousand": 0.826,
- "tests_per_case": 7.187,
- "positive_rate": 0.139,
- "tests_units": "tests performed",
- "stringency_index": 86.57
- },
- {
- "date": "2020-07-22",
- "total_cases": 334683.0,
- "new_cases": 1654.0,
- "new_cases_smoothed": 2170.0,
- "total_deaths": 8677.0,
- "new_deaths": 44.0,
- "new_deaths_smoothed": 229.714,
- "total_cases_per_million": 17507.812,
- "new_cases_per_million": 86.523,
- "new_cases_smoothed_per_million": 113.516,
- "total_deaths_per_million": 453.908,
- "new_deaths_per_million": 2.302,
- "new_deaths_smoothed_per_million": 12.017,
- "new_tests": 12793.0,
- "total_tests": 1437750.0,
- "total_tests_per_thousand": 75.211,
- "new_tests_per_thousand": 0.669,
- "new_tests_smoothed": 15866.0,
- "new_tests_smoothed_per_thousand": 0.83,
- "tests_per_case": 7.312,
- "positive_rate": 0.13699999999999998,
- "tests_units": "tests performed",
- "stringency_index": 86.57
- },
- {
- "date": "2020-07-23",
- "total_cases": 336402.0,
- "new_cases": 1719.0,
- "new_cases_smoothed": 2171.0,
- "total_deaths": 8722.0,
- "new_deaths": 45.0,
- "new_deaths_smoothed": 219.429,
- "total_cases_per_million": 17597.736,
- "new_cases_per_million": 89.924,
- "new_cases_smoothed_per_million": 113.569,
- "total_deaths_per_million": 456.262,
- "new_deaths_per_million": 2.354,
- "new_deaths_smoothed_per_million": 11.479,
- "new_tests": 18867.0,
- "total_tests": 1456617.0,
- "total_tests_per_thousand": 76.198,
- "new_tests_per_thousand": 0.987,
- "new_tests_smoothed": 16105.0,
- "new_tests_smoothed_per_thousand": 0.842,
- "tests_per_case": 7.417999999999999,
- "positive_rate": 0.135,
- "tests_units": "tests performed",
- "stringency_index": 86.57
- },
- {
- "date": "2020-07-24",
- "total_cases": 338759.0,
- "new_cases": 2357.0,
- "new_cases_smoothed": 2151.571,
- "total_deaths": 8838.0,
- "new_deaths": 116.0,
- "new_deaths_smoothed": 221.143,
- "total_cases_per_million": 17721.035,
- "new_cases_per_million": 123.299,
- "new_cases_smoothed_per_million": 112.552,
- "total_deaths_per_million": 462.33,
- "new_deaths_per_million": 6.068,
- "new_deaths_smoothed_per_million": 11.568,
- "new_tests": 21071.0,
- "total_tests": 1477688.0,
- "total_tests_per_thousand": 77.3,
- "new_tests_per_thousand": 1.102,
- "new_tests_smoothed": 16444.0,
- "new_tests_smoothed_per_thousand": 0.86,
- "tests_per_case": 7.643,
- "positive_rate": 0.131,
- "tests_units": "tests performed",
- "stringency_index": 86.57
- },
- {
- "date": "2020-07-25",
- "total_cases": 341304.0,
- "new_cases": 2545.0,
- "new_cases_smoothed": 2109.286,
- "total_deaths": 8914.0,
- "new_deaths": 76.0,
- "new_deaths_smoothed": 81.0,
- "total_cases_per_million": 17854.168,
- "new_cases_per_million": 133.133,
- "new_cases_smoothed_per_million": 110.34,
- "total_deaths_per_million": 466.306,
- "new_deaths_per_million": 3.976,
- "new_deaths_smoothed_per_million": 4.237,
- "new_tests": 19133.0,
- "total_tests": 1496821.0,
- "total_tests_per_thousand": 78.301,
- "new_tests_per_thousand": 1.001,
- "new_tests_smoothed": 16646.0,
- "new_tests_smoothed_per_thousand": 0.871,
- "tests_per_case": 7.892,
- "positive_rate": 0.127,
- "tests_units": "tests performed",
- "stringency_index": 86.57
- },
- {
- "date": "2020-07-26",
- "total_cases": 343592.0,
- "new_cases": 2288.0,
- "new_cases_smoothed": 2106.571,
- "total_deaths": 9020.0,
- "new_deaths": 106.0,
- "new_deaths_smoothed": 82.143,
- "total_cases_per_million": 17973.857,
- "new_cases_per_million": 119.689,
- "new_cases_smoothed_per_million": 110.198,
- "total_deaths_per_million": 471.851,
- "new_deaths_per_million": 5.545,
- "new_deaths_smoothed_per_million": 4.297,
- "new_tests": 19709.0,
- "total_tests": 1516530.0,
- "total_tests_per_thousand": 79.332,
- "new_tests_per_thousand": 1.031,
- "new_tests_smoothed": 17215.0,
- "new_tests_smoothed_per_thousand": 0.901,
- "tests_per_case": 8.172,
- "positive_rate": 0.122,
- "tests_units": "tests performed",
- "stringency_index": 86.57
- },
- {
- "date": "2020-07-27",
- "total_cases": 345790.0,
- "new_cases": 2198.0,
- "new_cases_smoothed": 2122.857,
- "total_deaths": 9112.0,
- "new_deaths": 92.0,
- "new_deaths_smoothed": 87.0,
- "total_cases_per_million": 18088.838,
- "new_cases_per_million": 114.981,
- "new_cases_smoothed_per_million": 111.05,
- "total_deaths_per_million": 476.664,
- "new_deaths_per_million": 4.813,
- "new_deaths_smoothed_per_million": 4.551,
- "new_tests": 21544.0,
- "total_tests": 1538074.0,
- "total_tests_per_thousand": 80.459,
- "new_tests_per_thousand": 1.127,
- "new_tests_smoothed": 17958.0,
- "new_tests_smoothed_per_thousand": 0.939,
- "tests_per_case": 8.459,
- "positive_rate": 0.11800000000000001,
- "tests_units": "tests performed",
- "stringency_index": 86.57
- },
- {
- "date": "2020-07-28",
- "total_cases": 347923.0,
- "new_cases": 2133.0,
- "new_cases_smoothed": 2127.714,
- "total_deaths": 9187.0,
- "new_deaths": 75.0,
- "new_deaths_smoothed": 79.143,
- "total_cases_per_million": 18200.418,
- "new_cases_per_million": 111.581,
- "new_cases_smoothed_per_million": 111.304,
- "total_deaths_per_million": 480.587,
- "new_deaths_per_million": 3.923,
- "new_deaths_smoothed_per_million": 4.14,
- "new_tests": 17596.0,
- "total_tests": 1555670.0,
- "total_tests_per_thousand": 81.38,
- "new_tests_per_thousand": 0.92,
- "new_tests_smoothed": 18673.0,
- "new_tests_smoothed_per_thousand": 0.977,
- "tests_per_case": 8.776,
- "positive_rate": 0.114,
- "tests_units": "tests performed",
- "stringency_index": 86.57
- },
- {
- "date": "2020-07-29",
- "total_cases": 349800.0,
- "new_cases": 1877.0,
- "new_cases_smoothed": 2159.571,
- "total_deaths": 9240.0,
- "new_deaths": 53.0,
- "new_deaths_smoothed": 80.429,
- "total_cases_per_million": 18298.607,
- "new_cases_per_million": 98.189,
- "new_cases_smoothed_per_million": 112.971,
- "total_deaths_per_million": 483.359,
- "new_deaths_per_million": 2.773,
- "new_deaths_smoothed_per_million": 4.207,
- "new_tests": 17130.0,
- "total_tests": 1572800.0,
- "total_tests_per_thousand": 82.276,
- "new_tests_per_thousand": 0.896,
- "new_tests_smoothed": 19293.0,
- "new_tests_smoothed_per_thousand": 1.009,
- "tests_per_case": 8.934,
- "positive_rate": 0.11199999999999999,
- "tests_units": "tests performed",
- "stringency_index": 86.57
- },
- {
- "date": "2020-07-30",
- "total_cases": 351575.0,
- "new_cases": 1775.0,
- "new_cases_smoothed": 2167.571,
- "total_deaths": 9278.0,
- "new_deaths": 38.0,
- "new_deaths_smoothed": 79.429,
- "total_cases_per_million": 18391.46,
- "new_cases_per_million": 92.853,
- "new_cases_smoothed_per_million": 113.389,
- "total_deaths_per_million": 485.347,
- "new_deaths_per_million": 1.988,
- "new_deaths_smoothed_per_million": 4.155,
- "new_tests": 20295.0,
- "total_tests": 1593095.0,
- "total_tests_per_thousand": 83.337,
- "new_tests_per_thousand": 1.062,
- "new_tests_smoothed": 19497.0,
- "new_tests_smoothed_per_thousand": 1.02,
- "tests_per_case": 8.995,
- "positive_rate": 0.111,
- "tests_units": "tests performed",
- "stringency_index": 86.57
- },
- {
- "date": "2020-07-31",
- "total_cases": 353536.0,
- "new_cases": 1961.0,
- "new_cases_smoothed": 2111.0,
- "total_deaths": 9377.0,
- "new_deaths": 99.0,
- "new_deaths_smoothed": 77.0,
- "total_cases_per_million": 18494.043,
- "new_cases_per_million": 102.583,
- "new_cases_smoothed_per_million": 110.43,
- "total_deaths_per_million": 490.526,
- "new_deaths_per_million": 5.179,
- "new_deaths_smoothed_per_million": 4.028,
- "new_tests": 22874.0,
- "total_tests": 1615969.0,
- "total_tests_per_thousand": 84.534,
- "new_tests_per_thousand": 1.197,
- "new_tests_smoothed": 19754.0,
- "new_tests_smoothed_per_thousand": 1.033,
- "tests_per_case": 9.357999999999999,
- "positive_rate": 0.107,
- "tests_units": "tests performed",
- "stringency_index": 86.57
- },
- {
- "date": "2020-08-01",
- "total_cases": 355667.0,
- "new_cases": 2131.0,
- "new_cases_smoothed": 2051.857,
- "total_deaths": 9457.0,
- "new_deaths": 80.0,
- "new_deaths_smoothed": 77.571,
- "total_cases_per_million": 18605.52,
- "new_cases_per_million": 111.476,
- "new_cases_smoothed_per_million": 107.336,
- "total_deaths_per_million": 494.711,
- "new_deaths_per_million": 4.185,
- "new_deaths_smoothed_per_million": 4.058,
- "new_tests": 24398.0,
- "total_tests": 1640367.0,
- "total_tests_per_thousand": 85.81,
- "new_tests_per_thousand": 1.276,
- "new_tests_smoothed": 20507.0,
- "new_tests_smoothed_per_thousand": 1.073,
- "tests_per_case": 9.994,
- "positive_rate": 0.1,
- "tests_units": "tests performed",
- "stringency_index": 89.35
- },
- {
- "date": "2020-08-02",
- "total_cases": 357658.0,
- "new_cases": 1991.0,
- "new_cases_smoothed": 2009.429,
- "total_deaths": 9533.0,
- "new_deaths": 76.0,
- "new_deaths_smoothed": 73.286,
- "total_cases_per_million": 18709.672,
- "new_cases_per_million": 104.152,
- "new_cases_smoothed_per_million": 105.116,
- "total_deaths_per_million": 498.687,
- "new_deaths_per_million": 3.976,
- "new_deaths_smoothed_per_million": 3.834,
- "new_tests": 24899.0,
- "total_tests": 1665266.0,
- "total_tests_per_thousand": 87.113,
- "new_tests_per_thousand": 1.303,
- "new_tests_smoothed": 21248.0,
- "new_tests_smoothed_per_thousand": 1.112,
- "tests_per_case": 10.574000000000002,
- "positive_rate": 0.095,
- "tests_units": "tests performed",
- "stringency_index": 89.35
- },
- {
- "date": "2020-08-03",
- "total_cases": 359731.0,
- "new_cases": 2073.0,
- "new_cases_smoothed": 1991.571,
- "total_deaths": 9608.0,
- "new_deaths": 75.0,
- "new_deaths_smoothed": 70.857,
- "total_cases_per_million": 18818.114,
- "new_cases_per_million": 108.442,
- "new_cases_smoothed_per_million": 104.182,
- "total_deaths_per_million": 502.61,
- "new_deaths_per_million": 3.923,
- "new_deaths_smoothed_per_million": 3.707,
- "new_tests": 24269.0,
- "total_tests": 1689535.0,
- "total_tests_per_thousand": 88.382,
- "new_tests_per_thousand": 1.27,
- "new_tests_smoothed": 21637.0,
- "new_tests_smoothed_per_thousand": 1.132,
- "tests_per_case": 10.864,
- "positive_rate": 0.092,
- "tests_units": "tests performed",
- "stringency_index": 89.35
- },
- {
- "date": "2020-08-04",
- "total_cases": 361493.0,
- "new_cases": 1762.0,
- "new_cases_smoothed": 1938.571,
- "total_deaths": 9707.0,
- "new_deaths": 99.0,
- "new_deaths_smoothed": 74.286,
- "total_cases_per_million": 18910.287,
- "new_cases_per_million": 92.173,
- "new_cases_smoothed_per_million": 101.41,
- "total_deaths_per_million": 507.789,
- "new_deaths_per_million": 5.179,
- "new_deaths_smoothed_per_million": 3.886,
- "new_tests": 18857.0,
- "total_tests": 1708392.0,
- "total_tests_per_thousand": 89.369,
- "new_tests_per_thousand": 0.986,
- "new_tests_smoothed": 21817.0,
- "new_tests_smoothed_per_thousand": 1.141,
- "tests_per_case": 11.254000000000001,
- "positive_rate": 0.08900000000000001,
- "tests_units": "tests performed",
- "stringency_index": 89.35
- },
- {
- "date": "2020-08-05",
- "total_cases": 362962.0,
- "new_cases": 1469.0,
- "new_cases_smoothed": 1880.286,
- "total_deaths": 9745.0,
- "new_deaths": 38.0,
- "new_deaths_smoothed": 72.143,
- "total_cases_per_million": 18987.133,
- "new_cases_per_million": 76.846,
- "new_cases_smoothed_per_million": 98.361,
- "total_deaths_per_million": 509.777,
- "new_deaths_per_million": 1.988,
- "new_deaths_smoothed_per_million": 3.774,
- "new_tests": 21398.0,
- "total_tests": 1729790.0,
- "total_tests_per_thousand": 90.488,
- "new_tests_per_thousand": 1.119,
- "new_tests_smoothed": 22427.0,
- "new_tests_smoothed_per_thousand": 1.173,
- "tests_per_case": 11.927,
- "positive_rate": 0.084,
- "tests_units": "tests performed",
- "stringency_index": 89.35
- },
- {
- "date": "2020-08-06",
- "total_cases": 364723.0,
- "new_cases": 1761.0,
- "new_cases_smoothed": 1878.286,
- "total_deaths": 9792.0,
- "new_deaths": 47.0,
- "new_deaths_smoothed": 73.429,
- "total_cases_per_million": 19079.254,
- "new_cases_per_million": 92.121,
- "new_cases_smoothed_per_million": 98.256,
- "total_deaths_per_million": 512.235,
- "new_deaths_per_million": 2.459,
- "new_deaths_smoothed_per_million": 3.841,
- "new_tests": 22802.0,
- "total_tests": 1752592.0,
- "total_tests_per_thousand": 91.681,
- "new_tests_per_thousand": 1.193,
- "new_tests_smoothed": 22785.0,
- "new_tests_smoothed_per_thousand": 1.192,
- "tests_per_case": 12.130999999999998,
- "positive_rate": 0.08199999999999999,
- "tests_units": "tests performed",
- "stringency_index": 89.35
- },
- {
- "date": "2020-08-07",
- "total_cases": 366671.0,
- "new_cases": 1948.0,
- "new_cases_smoothed": 1876.429,
- "total_deaths": 9889.0,
- "new_deaths": 97.0,
- "new_deaths_smoothed": 73.143,
- "total_cases_per_million": 19181.157,
- "new_cases_per_million": 101.903,
- "new_cases_smoothed_per_million": 98.159,
- "total_deaths_per_million": 517.31,
- "new_deaths_per_million": 5.074,
- "new_deaths_smoothed_per_million": 3.826,
- "new_tests": 25243.0,
- "total_tests": 1777835.0,
- "total_tests_per_thousand": 93.001,
- "new_tests_per_thousand": 1.321,
- "new_tests_smoothed": 23124.0,
- "new_tests_smoothed_per_thousand": 1.21,
- "tests_per_case": 12.323,
- "positive_rate": 0.081,
- "tests_units": "tests performed",
- "stringency_index": 89.35
- },
- {
- "date": "2020-08-08",
- "total_cases": 368825.0,
- "new_cases": 2154.0,
- "new_cases_smoothed": 1879.714,
- "total_deaths": 9958.0,
- "new_deaths": 69.0,
- "new_deaths_smoothed": 71.571,
- "total_cases_per_million": 19293.836,
- "new_cases_per_million": 112.679,
- "new_cases_smoothed_per_million": 98.331,
- "total_deaths_per_million": 520.919,
- "new_deaths_per_million": 3.61,
- "new_deaths_smoothed_per_million": 3.744,
- "new_tests": 27037.0,
- "total_tests": 1804872.0,
- "total_tests_per_thousand": 94.416,
- "new_tests_per_thousand": 1.414,
- "new_tests_smoothed": 23501.0,
- "new_tests_smoothed_per_thousand": 1.229,
- "tests_per_case": 12.502,
- "positive_rate": 0.08,
- "tests_units": "tests performed",
- "stringency_index": 89.35
- },
- {
- "date": "2020-08-09",
- "total_cases": 371023.0,
- "new_cases": 2198.0,
- "new_cases_smoothed": 1909.286,
- "total_deaths": 10011.0,
- "new_deaths": 53.0,
- "new_deaths_smoothed": 68.286,
- "total_cases_per_million": 19408.817,
- "new_cases_per_million": 114.981,
- "new_cases_smoothed_per_million": 99.878,
- "total_deaths_per_million": 523.692,
- "new_deaths_per_million": 2.773,
- "new_deaths_smoothed_per_million": 3.572,
- "new_tests": 28460.0,
- "total_tests": 1833332.0,
- "total_tests_per_thousand": 95.905,
- "new_tests_per_thousand": 1.489,
- "new_tests_smoothed": 24009.0,
- "new_tests_smoothed_per_thousand": 1.256,
- "tests_per_case": 12.575,
- "positive_rate": 0.08,
- "tests_units": "tests performed",
- "stringency_index": 89.35
- },
- {
- "date": "2020-08-10",
- "total_cases": 373056.0,
- "new_cases": 2033.0,
- "new_cases_smoothed": 1903.571,
- "total_deaths": 10077.0,
- "new_deaths": 66.0,
- "new_deaths_smoothed": 67.0,
- "total_cases_per_million": 19515.166,
- "new_cases_per_million": 106.35,
- "new_cases_smoothed_per_million": 99.579,
- "total_deaths_per_million": 527.144,
- "new_deaths_per_million": 3.453,
- "new_deaths_smoothed_per_million": 3.505,
- "new_tests": 26012.0,
- "total_tests": 1859344.0,
- "total_tests_per_thousand": 97.265,
- "new_tests_per_thousand": 1.361,
- "new_tests_smoothed": 24258.0,
- "new_tests_smoothed_per_thousand": 1.269,
- "tests_per_case": 12.743,
- "positive_rate": 0.078,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-08-11",
- "total_cases": 375044.0,
- "new_cases": 1988.0,
- "new_cases_smoothed": 1935.857,
- "total_deaths": 10139.0,
- "new_deaths": 62.0,
- "new_deaths_smoothed": 61.714,
- "total_cases_per_million": 19619.162,
- "new_cases_per_million": 103.996,
- "new_cases_smoothed_per_million": 101.268,
- "total_deaths_per_million": 530.388,
- "new_deaths_per_million": 3.243,
- "new_deaths_smoothed_per_million": 3.228,
- "new_tests": 22249.0,
- "total_tests": 1881593.0,
- "total_tests_per_thousand": 98.429,
- "new_tests_per_thousand": 1.164,
- "new_tests_smoothed": 24743.0,
- "new_tests_smoothed_per_thousand": 1.294,
- "tests_per_case": 12.780999999999999,
- "positive_rate": 0.078,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-08-12",
- "total_cases": 376616.0,
- "new_cases": 1572.0,
- "new_cases_smoothed": 1950.571,
- "total_deaths": 10178.0,
- "new_deaths": 39.0,
- "new_deaths_smoothed": 61.857,
- "total_cases_per_million": 19701.396,
- "new_cases_per_million": 82.234,
- "new_cases_smoothed_per_million": 102.038,
- "total_deaths_per_million": 532.428,
- "new_deaths_per_million": 2.04,
- "new_deaths_smoothed_per_million": 3.236,
- "new_tests": 19348.0,
- "total_tests": 1900941.0,
- "total_tests_per_thousand": 99.441,
- "new_tests_per_thousand": 1.012,
- "new_tests_smoothed": 24450.0,
- "new_tests_smoothed_per_thousand": 1.279,
- "tests_per_case": 12.535,
- "positive_rate": 0.08,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-08-13",
- "total_cases": 378168.0,
- "new_cases": 1552.0,
- "new_cases_smoothed": 1920.714,
- "total_deaths": 10205.0,
- "new_deaths": 27.0,
- "new_deaths_smoothed": 59.0,
- "total_cases_per_million": 19782.583,
- "new_cases_per_million": 81.188,
- "new_cases_smoothed_per_million": 100.476,
- "total_deaths_per_million": 533.84,
- "new_deaths_per_million": 1.412,
- "new_deaths_smoothed_per_million": 3.086,
- "new_tests": 23628.0,
- "total_tests": 1924569.0,
- "total_tests_per_thousand": 100.677,
- "new_tests_per_thousand": 1.236,
- "new_tests_smoothed": 24568.0,
- "new_tests_smoothed_per_thousand": 1.285,
- "tests_per_case": 12.790999999999999,
- "positive_rate": 0.078,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-08-14",
- "total_cases": 380034.0,
- "new_cases": 1866.0,
- "new_cases_smoothed": 1909.0,
- "total_deaths": 10299.0,
- "new_deaths": 94.0,
- "new_deaths_smoothed": 58.571,
- "total_cases_per_million": 19880.197,
- "new_cases_per_million": 97.613,
- "new_cases_smoothed_per_million": 99.863,
- "total_deaths_per_million": 538.757,
- "new_deaths_per_million": 4.917,
- "new_deaths_smoothed_per_million": 3.064,
- "new_tests": 27618.0,
- "total_tests": 1952187.0,
- "total_tests_per_thousand": 102.122,
- "new_tests_per_thousand": 1.445,
- "new_tests_smoothed": 24907.0,
- "new_tests_smoothed_per_thousand": 1.303,
- "tests_per_case": 13.047,
- "positive_rate": 0.077,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-08-15",
- "total_cases": 382111.0,
- "new_cases": 2077.0,
- "new_cases_smoothed": 1898.0,
- "total_deaths": 10340.0,
- "new_deaths": 41.0,
- "new_deaths_smoothed": 54.571,
- "total_cases_per_million": 19988.848,
- "new_cases_per_million": 108.651,
- "new_cases_smoothed_per_million": 99.287,
- "total_deaths_per_million": 540.902,
- "new_deaths_per_million": 2.145,
- "new_deaths_smoothed_per_million": 2.855,
- "new_tests": 28499.0,
- "total_tests": 1980686.0,
- "total_tests_per_thousand": 103.613,
- "new_tests_per_thousand": 1.491,
- "new_tests_smoothed": 25116.0,
- "new_tests_smoothed_per_thousand": 1.314,
- "tests_per_case": 13.232999999999999,
- "positive_rate": 0.076,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-08-16",
- "total_cases": 383902.0,
- "new_cases": 1791.0,
- "new_cases_smoothed": 1839.857,
- "total_deaths": 10395.0,
- "new_deaths": 55.0,
- "new_deaths_smoothed": 54.857,
- "total_cases_per_million": 20082.538,
- "new_cases_per_million": 93.69,
- "new_cases_smoothed_per_million": 96.246,
- "total_deaths_per_million": 543.779,
- "new_deaths_per_million": 2.877,
- "new_deaths_smoothed_per_million": 2.87,
- "new_tests": 30882.0,
- "total_tests": 2011568.0,
- "total_tests_per_thousand": 105.228,
- "new_tests_per_thousand": 1.615,
- "new_tests_smoothed": 25462.0,
- "new_tests_smoothed_per_thousand": 1.332,
- "tests_per_case": 13.839,
- "positive_rate": 0.07200000000000001,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-08-17",
- "total_cases": 385946.0,
- "new_cases": 2044.0,
- "new_cases_smoothed": 1841.429,
- "total_deaths": 10452.0,
- "new_deaths": 57.0,
- "new_deaths_smoothed": 53.571,
- "total_cases_per_million": 20189.463,
- "new_cases_per_million": 106.925,
- "new_cases_smoothed_per_million": 96.328,
- "total_deaths_per_million": 546.761,
- "new_deaths_per_million": 2.982,
- "new_deaths_smoothed_per_million": 2.802,
- "new_tests": 25289.0,
- "total_tests": 2036857.0,
- "total_tests_per_thousand": 106.551,
- "new_tests_per_thousand": 1.323,
- "new_tests_smoothed": 25359.0,
- "new_tests_smoothed_per_thousand": 1.327,
- "tests_per_case": 13.770999999999999,
- "positive_rate": 0.073,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-08-18",
- "total_cases": 387502.0,
- "new_cases": 1556.0,
- "new_cases_smoothed": 1779.714,
- "total_deaths": 10513.0,
- "new_deaths": 61.0,
- "new_deaths_smoothed": 53.429,
- "total_cases_per_million": 20270.86,
- "new_cases_per_million": 81.397,
- "new_cases_smoothed_per_million": 93.1,
- "total_deaths_per_million": 549.952,
- "new_deaths_per_million": 3.191,
- "new_deaths_smoothed_per_million": 2.795,
- "new_tests": 23199.0,
- "total_tests": 2060056.0,
- "total_tests_per_thousand": 107.765,
- "new_tests_per_thousand": 1.214,
- "new_tests_smoothed": 25495.0,
- "new_tests_smoothed_per_thousand": 1.334,
- "tests_per_case": 14.325,
- "positive_rate": 0.07,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-08-19",
- "total_cases": 388855.0,
- "new_cases": 1353.0,
- "new_cases_smoothed": 1748.429,
- "total_deaths": 10546.0,
- "new_deaths": 33.0,
- "new_deaths_smoothed": 52.571,
- "total_cases_per_million": 20341.638,
- "new_cases_per_million": 70.778,
- "new_cases_smoothed_per_million": 91.463,
- "total_deaths_per_million": 551.678,
- "new_deaths_per_million": 1.726,
- "new_deaths_smoothed_per_million": 2.75,
- "new_tests": 19275.0,
- "total_tests": 2079331.0,
- "total_tests_per_thousand": 108.773,
- "new_tests_per_thousand": 1.008,
- "new_tests_smoothed": 25484.0,
- "new_tests_smoothed_per_thousand": 1.333,
- "tests_per_case": 14.575,
- "positive_rate": 0.069,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-08-20",
- "total_cases": 390037.0,
- "new_cases": 1182.0,
- "new_cases_smoothed": 1695.571,
- "total_deaths": 10578.0,
- "new_deaths": 32.0,
- "new_deaths_smoothed": 53.286,
- "total_cases_per_million": 20403.47,
- "new_cases_per_million": 61.832,
- "new_cases_smoothed_per_million": 88.698,
- "total_deaths_per_million": 553.352,
- "new_deaths_per_million": 1.674,
- "new_deaths_smoothed_per_million": 2.787,
- "new_tests": 26278.0,
- "total_tests": 2105609.0,
- "total_tests_per_thousand": 110.148,
- "new_tests_per_thousand": 1.375,
- "new_tests_smoothed": 25863.0,
- "new_tests_smoothed_per_thousand": 1.353,
- "tests_per_case": 15.253,
- "positive_rate": 0.066,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-08-21",
- "total_cases": 391849.0,
- "new_cases": 1812.0,
- "new_cases_smoothed": 1687.857,
- "total_deaths": 10671.0,
- "new_deaths": 93.0,
- "new_deaths_smoothed": 53.143,
- "total_cases_per_million": 20498.259,
- "new_cases_per_million": 94.789,
- "new_cases_smoothed_per_million": 88.295,
- "total_deaths_per_million": 558.217,
- "new_deaths_per_million": 4.865,
- "new_deaths_smoothed_per_million": 2.78,
- "new_tests": 28669.0,
- "total_tests": 2134278.0,
- "total_tests_per_thousand": 111.648,
- "new_tests_per_thousand": 1.5,
- "new_tests_smoothed": 26013.0,
- "new_tests_smoothed_per_thousand": 1.361,
- "tests_per_case": 15.412,
- "positive_rate": 0.065,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-08-22",
- "total_cases": 393769.0,
- "new_cases": 1920.0,
- "new_cases_smoothed": 1665.429,
- "total_deaths": 10723.0,
- "new_deaths": 52.0,
- "new_deaths_smoothed": 54.714,
- "total_cases_per_million": 20598.697,
- "new_cases_per_million": 100.438,
- "new_cases_smoothed_per_million": 87.121,
- "total_deaths_per_million": 560.938,
- "new_deaths_per_million": 2.72,
- "new_deaths_smoothed_per_million": 2.862,
- "new_tests": 29727.0,
- "total_tests": 2164005.0,
- "total_tests_per_thousand": 113.203,
- "new_tests_per_thousand": 1.555,
- "new_tests_smoothed": 26188.0,
- "new_tests_smoothed_per_thousand": 1.37,
- "tests_per_case": 15.724,
- "positive_rate": 0.064,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-08-23",
- "total_cases": 395708.0,
- "new_cases": 1939.0,
- "new_cases_smoothed": 1686.571,
- "total_deaths": 10792.0,
- "new_deaths": 69.0,
- "new_deaths_smoothed": 56.714,
- "total_cases_per_million": 20700.129,
- "new_cases_per_million": 101.432,
- "new_cases_smoothed_per_million": 88.227,
- "total_deaths_per_million": 564.547,
- "new_deaths_per_million": 3.61,
- "new_deaths_smoothed_per_million": 2.967,
- "new_tests": 31981.0,
- "total_tests": 2195986.0,
- "total_tests_per_thousand": 114.876,
- "new_tests_per_thousand": 1.673,
- "new_tests_smoothed": 26345.0,
- "new_tests_smoothed_per_thousand": 1.378,
- "tests_per_case": 15.62,
- "positive_rate": 0.064,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-08-24",
- "total_cases": 397665.0,
- "new_cases": 1957.0,
- "new_cases_smoothed": 1674.143,
- "total_deaths": 10852.0,
- "new_deaths": 60.0,
- "new_deaths_smoothed": 57.143,
- "total_cases_per_million": 20802.503,
- "new_cases_per_million": 102.374,
- "new_cases_smoothed_per_million": 87.577,
- "total_deaths_per_million": 567.686,
- "new_deaths_per_million": 3.139,
- "new_deaths_smoothed_per_million": 2.989,
- "new_tests": 27454.0,
- "total_tests": 2223440.0,
- "total_tests_per_thousand": 116.312,
- "new_tests_per_thousand": 1.436,
- "new_tests_smoothed": 26655.0,
- "new_tests_smoothed_per_thousand": 1.394,
- "tests_per_case": 15.922,
- "positive_rate": 0.063,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-08-25",
- "total_cases": 399568.0,
- "new_cases": 1903.0,
- "new_cases_smoothed": 1723.714,
- "total_deaths": 10916.0,
- "new_deaths": 64.0,
- "new_deaths_smoothed": 57.571,
- "total_cases_per_million": 20902.052,
- "new_cases_per_million": 99.549,
- "new_cases_smoothed_per_million": 90.17,
- "total_deaths_per_million": 571.034,
- "new_deaths_per_million": 3.348,
- "new_deaths_smoothed_per_million": 3.012,
- "new_tests": 24503.0,
- "total_tests": 2247943.0,
- "total_tests_per_thousand": 117.594,
- "new_tests_per_thousand": 1.282,
- "new_tests_smoothed": 26841.0,
- "new_tests_smoothed_per_thousand": 1.404,
- "tests_per_case": 15.572000000000001,
- "positive_rate": 0.064,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-08-26",
- "total_cases": 400985.0,
- "new_cases": 1417.0,
- "new_cases_smoothed": 1732.857,
- "total_deaths": 10958.0,
- "new_deaths": 42.0,
- "new_deaths_smoothed": 58.857,
- "total_cases_per_million": 20976.178,
- "new_cases_per_million": 74.126,
- "new_cases_smoothed_per_million": 90.649,
- "total_deaths_per_million": 573.231,
- "new_deaths_per_million": 2.197,
- "new_deaths_smoothed_per_million": 3.079,
- "new_tests": 20257.0,
- "total_tests": 2268200.0,
- "total_tests_per_thousand": 118.653,
- "new_tests_per_thousand": 1.06,
- "new_tests_smoothed": 26981.0,
- "new_tests_smoothed_per_thousand": 1.411,
- "tests_per_case": 15.57,
- "positive_rate": 0.064,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-08-27",
- "total_cases": 402365.0,
- "new_cases": 1380.0,
- "new_cases_smoothed": 1761.143,
- "total_deaths": 10990.0,
- "new_deaths": 32.0,
- "new_deaths_smoothed": 58.857,
- "total_cases_per_million": 21048.368,
- "new_cases_per_million": 72.19,
- "new_cases_smoothed_per_million": 92.128,
- "total_deaths_per_million": 574.905,
- "new_deaths_per_million": 1.674,
- "new_deaths_smoothed_per_million": 3.079,
- "new_tests": 27019.0,
- "total_tests": 2295219.0,
- "total_tests_per_thousand": 120.067,
- "new_tests_per_thousand": 1.413,
- "new_tests_smoothed": 27087.0,
- "new_tests_smoothed_per_thousand": 1.417,
- "tests_per_case": 15.38,
- "positive_rate": 0.065,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-08-28",
- "total_cases": 404102.0,
- "new_cases": 1737.0,
- "new_cases_smoothed": 1750.429,
- "total_deaths": 11072.0,
- "new_deaths": 82.0,
- "new_deaths_smoothed": 57.286,
- "total_cases_per_million": 21139.233,
- "new_cases_per_million": 90.865,
- "new_cases_smoothed_per_million": 91.568,
- "total_deaths_per_million": 579.194,
- "new_deaths_per_million": 4.29,
- "new_deaths_smoothed_per_million": 2.997,
- "new_tests": 30274.0,
- "total_tests": 2325493.0,
- "total_tests_per_thousand": 121.65,
- "new_tests_per_thousand": 1.584,
- "new_tests_smoothed": 27316.0,
- "new_tests_smoothed_per_thousand": 1.429,
- "tests_per_case": 15.605,
- "positive_rate": 0.064,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-08-29",
- "total_cases": 405972.0,
- "new_cases": 1870.0,
- "new_cases_smoothed": 1743.286,
- "total_deaths": 11132.0,
- "new_deaths": 60.0,
- "new_deaths_smoothed": 58.429,
- "total_cases_per_million": 21237.056,
- "new_cases_per_million": 97.823,
- "new_cases_smoothed_per_million": 91.194,
- "total_deaths_per_million": 582.333,
- "new_deaths_per_million": 3.139,
- "new_deaths_smoothed_per_million": 3.056,
- "new_tests": 32237.0,
- "total_tests": 2357730.0,
- "total_tests_per_thousand": 123.337,
- "new_tests_per_thousand": 1.686,
- "new_tests_smoothed": 27675.0,
- "new_tests_smoothed_per_thousand": 1.448,
- "tests_per_case": 15.875,
- "positive_rate": 0.063,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-08-30",
- "total_cases": 408009.0,
- "new_cases": 2037.0,
- "new_cases_smoothed": 1757.286,
- "total_deaths": 11181.0,
- "new_deaths": 49.0,
- "new_deaths_smoothed": 55.571,
- "total_cases_per_million": 21343.615,
- "new_cases_per_million": 106.559,
- "new_cases_smoothed_per_million": 91.926,
- "total_deaths_per_million": 584.896,
- "new_deaths_per_million": 2.563,
- "new_deaths_smoothed_per_million": 2.907,
- "new_tests": 34769.0,
- "total_tests": 2392499.0,
- "total_tests_per_thousand": 125.156,
- "new_tests_per_thousand": 1.819,
- "new_tests_smoothed": 28073.0,
- "new_tests_smoothed_per_thousand": 1.469,
- "tests_per_case": 15.975,
- "positive_rate": 0.063,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-08-31",
- "total_cases": 409974.0,
- "new_cases": 1965.0,
- "new_cases_smoothed": 1758.429,
- "total_deaths": 11244.0,
- "new_deaths": 63.0,
- "new_deaths_smoothed": 56.0,
- "total_cases_per_million": 21446.407,
- "new_cases_per_million": 102.792,
- "new_cases_smoothed_per_million": 91.986,
- "total_deaths_per_million": 588.192,
- "new_deaths_per_million": 3.296,
- "new_deaths_smoothed_per_million": 2.929,
- "new_tests": 31914.0,
- "total_tests": 2424413.0,
- "total_tests_per_thousand": 126.825,
- "new_tests_per_thousand": 1.669,
- "new_tests_smoothed": 28710.0,
- "new_tests_smoothed_per_thousand": 1.502,
- "tests_per_case": 16.327,
- "positive_rate": 0.061,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-09-01",
- "total_cases": 411726.0,
- "new_cases": 1752.0,
- "new_cases_smoothed": 1736.857,
- "total_deaths": 11289.0,
- "new_deaths": 45.0,
- "new_deaths_smoothed": 53.286,
- "total_cases_per_million": 21538.057,
- "new_cases_per_million": 91.65,
- "new_cases_smoothed_per_million": 90.858,
- "total_deaths_per_million": 590.546,
- "new_deaths_per_million": 2.354,
- "new_deaths_smoothed_per_million": 2.787,
- "new_tests": 26326.0,
- "total_tests": 2450739.0,
- "total_tests_per_thousand": 128.202,
- "new_tests_per_thousand": 1.377,
- "new_tests_smoothed": 28971.0,
- "new_tests_smoothed_per_thousand": 1.516,
- "tests_per_case": 16.68,
- "positive_rate": 0.06,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-09-02",
- "total_cases": 413145.0,
- "new_cases": 1419.0,
- "new_cases_smoothed": 1737.143,
- "total_deaths": 11321.0,
- "new_deaths": 32.0,
- "new_deaths_smoothed": 51.857,
- "total_cases_per_million": 21612.287,
- "new_cases_per_million": 74.23,
- "new_cases_smoothed_per_million": 90.873,
- "total_deaths_per_million": 592.22,
- "new_deaths_per_million": 1.674,
- "new_deaths_smoothed_per_million": 2.713,
- "new_tests": 22746.0,
- "total_tests": 2473485.0,
- "total_tests_per_thousand": 129.392,
- "new_tests_per_thousand": 1.19,
- "new_tests_smoothed": 29326.0,
- "new_tests_smoothed_per_thousand": 1.534,
- "tests_per_case": 16.882,
- "positive_rate": 0.059000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-09-03",
- "total_cases": 414739.0,
- "new_cases": 1594.0,
- "new_cases_smoothed": 1767.714,
- "total_deaths": 11344.0,
- "new_deaths": 23.0,
- "new_deaths_smoothed": 50.571,
- "total_cases_per_million": 21695.672,
- "new_cases_per_million": 83.385,
- "new_cases_smoothed_per_million": 92.472,
- "total_deaths_per_million": 593.423,
- "new_deaths_per_million": 1.203,
- "new_deaths_smoothed_per_million": 2.645,
- "new_tests": 27242.0,
- "total_tests": 2500727.0,
- "total_tests_per_thousand": 130.817,
- "new_tests_per_thousand": 1.425,
- "new_tests_smoothed": 29358.0,
- "new_tests_smoothed_per_thousand": 1.536,
- "tests_per_case": 16.608,
- "positive_rate": 0.06,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-09-04",
- "total_cases": 416501.0,
- "new_cases": 1762.0,
- "new_cases_smoothed": 1771.286,
- "total_deaths": 11422.0,
- "new_deaths": 78.0,
- "new_deaths_smoothed": 50.0,
- "total_cases_per_million": 21787.845,
- "new_cases_per_million": 92.173,
- "new_cases_smoothed_per_million": 92.659,
- "total_deaths_per_million": 597.503,
- "new_deaths_per_million": 4.08,
- "new_deaths_smoothed_per_million": 2.616,
- "new_tests": 31968.0,
- "total_tests": 2532695.0,
- "total_tests_per_thousand": 132.489,
- "new_tests_per_thousand": 1.672,
- "new_tests_smoothed": 29600.0,
- "new_tests_smoothed_per_thousand": 1.548,
- "tests_per_case": 16.711,
- "positive_rate": 0.06,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-09-05",
- "total_cases": 418469.0,
- "new_cases": 1968.0,
- "new_cases_smoothed": 1785.286,
- "total_deaths": 11494.0,
- "new_deaths": 72.0,
- "new_deaths_smoothed": 51.714,
- "total_cases_per_million": 21890.794,
- "new_cases_per_million": 102.949,
- "new_cases_smoothed_per_million": 93.391,
- "total_deaths_per_million": 601.27,
- "new_deaths_per_million": 3.766,
- "new_deaths_smoothed_per_million": 2.705,
- "new_tests": 34595.0,
- "total_tests": 2567290.0,
- "total_tests_per_thousand": 134.299,
- "new_tests_per_thousand": 1.81,
- "new_tests_smoothed": 29937.0,
- "new_tests_smoothed_per_thousand": 1.566,
- "tests_per_case": 16.769000000000002,
- "positive_rate": 0.06,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-09-06",
- "total_cases": 420434.0,
- "new_cases": 1965.0,
- "new_cases_smoothed": 1775.0,
- "total_deaths": 11551.0,
- "new_deaths": 57.0,
- "new_deaths_smoothed": 52.857,
- "total_cases_per_million": 21993.587,
- "new_cases_per_million": 102.792,
- "new_cases_smoothed_per_million": 92.853,
- "total_deaths_per_million": 604.252,
- "new_deaths_per_million": 2.982,
- "new_deaths_smoothed_per_million": 2.765,
- "new_tests": 35289.0,
- "total_tests": 2602579.0,
- "total_tests_per_thousand": 136.145,
- "new_tests_per_thousand": 1.846,
- "new_tests_smoothed": 30011.0,
- "new_tests_smoothed_per_thousand": 1.57,
- "tests_per_case": 16.908,
- "positive_rate": 0.059000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-09-07",
- "total_cases": 422510.0,
- "new_cases": 2076.0,
- "new_cases_smoothed": 1790.857,
- "total_deaths": 11592.0,
- "new_deaths": 41.0,
- "new_deaths_smoothed": 49.714,
- "total_cases_per_million": 22102.186,
- "new_cases_per_million": 108.599,
- "new_cases_smoothed_per_million": 93.683,
- "total_deaths_per_million": 606.396,
- "new_deaths_per_million": 2.145,
- "new_deaths_smoothed_per_million": 2.601,
- "new_tests": 30987.0,
- "total_tests": 2633566.0,
- "total_tests_per_thousand": 137.766,
- "new_tests_per_thousand": 1.621,
- "new_tests_smoothed": 29879.0,
- "new_tests_smoothed_per_thousand": 1.563,
- "tests_per_case": 16.684,
- "positive_rate": 0.06,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-09-08",
- "total_cases": 424274.0,
- "new_cases": 1764.0,
- "new_cases_smoothed": 1792.571,
- "total_deaths": 11652.0,
- "new_deaths": 60.0,
- "new_deaths_smoothed": 51.857,
- "total_cases_per_million": 22194.463,
- "new_cases_per_million": 92.278,
- "new_cases_smoothed_per_million": 93.772,
- "total_deaths_per_million": 609.535,
- "new_deaths_per_million": 3.139,
- "new_deaths_smoothed_per_million": 2.713,
- "new_tests": 27980.0,
- "total_tests": 2661546.0,
- "total_tests_per_thousand": 139.23,
- "new_tests_per_thousand": 1.464,
- "new_tests_smoothed": 30115.0,
- "new_tests_smoothed_per_thousand": 1.575,
- "tests_per_case": 16.8,
- "positive_rate": 0.06,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-09-09",
- "total_cases": 425541.0,
- "new_cases": 1267.0,
- "new_cases_smoothed": 1770.857,
- "total_deaths": 11682.0,
- "new_deaths": 30.0,
- "new_deaths_smoothed": 51.571,
- "total_cases_per_million": 22260.742,
- "new_cases_per_million": 66.279,
- "new_cases_smoothed_per_million": 92.636,
- "total_deaths_per_million": 611.104,
- "new_deaths_per_million": 1.569,
- "new_deaths_smoothed_per_million": 2.698,
- "new_tests": 21805.0,
- "total_tests": 2683351.0,
- "total_tests_per_thousand": 140.37,
- "new_tests_per_thousand": 1.141,
- "new_tests_smoothed": 29981.0,
- "new_tests_smoothed_per_thousand": 1.568,
- "tests_per_case": 16.93,
- "positive_rate": 0.059000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-09-10",
- "total_cases": 427027.0,
- "new_cases": 1486.0,
- "new_cases_smoothed": 1755.429,
- "total_deaths": 11702.0,
- "new_deaths": 20.0,
- "new_deaths_smoothed": 51.143,
- "total_cases_per_million": 22338.477,
- "new_cases_per_million": 77.735,
- "new_cases_smoothed_per_million": 91.829,
- "total_deaths_per_million": 612.151,
- "new_deaths_per_million": 1.046,
- "new_deaths_smoothed_per_million": 2.675,
- "new_tests": 28313.0,
- "total_tests": 2711664.0,
- "total_tests_per_thousand": 141.852,
- "new_tests_per_thousand": 1.481,
- "new_tests_smoothed": 30134.0,
- "new_tests_smoothed_per_thousand": 1.576,
- "tests_per_case": 17.166,
- "positive_rate": 0.057999999999999996,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-09-11",
- "total_cases": 428669.0,
- "new_cases": 1642.0,
- "new_cases_smoothed": 1738.286,
- "total_deaths": 11781.0,
- "new_deaths": 79.0,
- "new_deaths_smoothed": 51.286,
- "total_cases_per_million": 22424.373,
- "new_cases_per_million": 85.896,
- "new_cases_smoothed_per_million": 90.933,
- "total_deaths_per_million": 616.283,
- "new_deaths_per_million": 4.133,
- "new_deaths_smoothed_per_million": 2.683,
- "new_tests": 34082.0,
- "total_tests": 2745746.0,
- "total_tests_per_thousand": 143.634,
- "new_tests_per_thousand": 1.783,
- "new_tests_smoothed": 30436.0,
- "new_tests_smoothed_per_thousand": 1.592,
- "tests_per_case": 17.509,
- "positive_rate": 0.057,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-09-12",
- "total_cases": 430535.0,
- "new_cases": 1866.0,
- "new_cases_smoothed": 1723.714,
- "total_deaths": 11850.0,
- "new_deaths": 69.0,
- "new_deaths_smoothed": 50.857,
- "total_cases_per_million": 22521.986,
- "new_cases_per_million": 97.613,
- "new_cases_smoothed_per_million": 90.17,
- "total_deaths_per_million": 619.893,
- "new_deaths_per_million": 3.61,
- "new_deaths_smoothed_per_million": 2.66,
- "new_tests": 38062.0,
- "total_tests": 2783808.0,
- "total_tests_per_thousand": 145.626,
- "new_tests_per_thousand": 1.991,
- "new_tests_smoothed": 30931.0,
- "new_tests_smoothed_per_thousand": 1.618,
- "tests_per_case": 17.944000000000003,
- "positive_rate": 0.055999999999999994,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-09-13",
- "total_cases": 432666.0,
- "new_cases": 2131.0,
- "new_cases_smoothed": 1747.429,
- "total_deaths": 11895.0,
- "new_deaths": 45.0,
- "new_deaths_smoothed": 49.143,
- "total_cases_per_million": 22633.463,
- "new_cases_per_million": 111.476,
- "new_cases_smoothed_per_million": 91.411,
- "total_deaths_per_million": 622.247,
- "new_deaths_per_million": 2.354,
- "new_deaths_smoothed_per_million": 2.571,
- "new_tests": 36298.0,
- "total_tests": 2820106.0,
- "total_tests_per_thousand": 147.524,
- "new_tests_per_thousand": 1.899,
- "new_tests_smoothed": 31075.0,
- "new_tests_smoothed_per_thousand": 1.626,
- "tests_per_case": 17.783,
- "positive_rate": 0.055999999999999994,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-09-14",
- "total_cases": 434748.0,
- "new_cases": 2082.0,
- "new_cases_smoothed": 1748.286,
- "total_deaths": 11949.0,
- "new_deaths": 54.0,
- "new_deaths_smoothed": 51.0,
- "total_cases_per_million": 22742.375,
- "new_cases_per_million": 108.913,
- "new_cases_smoothed_per_million": 91.456,
- "total_deaths_per_million": 625.072,
- "new_deaths_per_million": 2.825,
- "new_deaths_smoothed_per_million": 2.668,
- "new_tests": 32577.0,
- "total_tests": 2852683.0,
- "total_tests_per_thousand": 149.228,
- "new_tests_per_thousand": 1.704,
- "new_tests_smoothed": 31302.0,
- "new_tests_smoothed_per_thousand": 1.637,
- "tests_per_case": 17.904,
- "positive_rate": 0.055999999999999994,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-09-15",
- "total_cases": 436433.0,
- "new_cases": 1685.0,
- "new_cases_smoothed": 1737.0,
- "total_deaths": 12013.0,
- "new_deaths": 64.0,
- "new_deaths_smoothed": 51.571,
- "total_cases_per_million": 22830.52,
- "new_cases_per_million": 88.145,
- "new_cases_smoothed_per_million": 90.865,
- "total_deaths_per_million": 628.42,
- "new_deaths_per_million": 3.348,
- "new_deaths_smoothed_per_million": 2.698,
- "new_tests": 27197.0,
- "total_tests": 2879880.0,
- "total_tests_per_thousand": 150.651,
- "new_tests_per_thousand": 1.423,
- "new_tests_smoothed": 31191.0,
- "new_tests_smoothed_per_thousand": 1.632,
- "tests_per_case": 17.957,
- "positive_rate": 0.055999999999999994,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-09-16",
- "total_cases": 437983.0,
- "new_cases": 1550.0,
- "new_cases_smoothed": 1777.429,
- "total_deaths": 12040.0,
- "new_deaths": 27.0,
- "new_deaths_smoothed": 51.143,
- "total_cases_per_million": 22911.603,
- "new_cases_per_million": 81.083,
- "new_cases_smoothed_per_million": 92.98,
- "total_deaths_per_million": 629.832,
- "new_deaths_per_million": 1.412,
- "new_deaths_smoothed_per_million": 2.675,
- "new_tests": 23102.0,
- "total_tests": 2902982.0,
- "total_tests_per_thousand": 151.86,
- "new_tests_per_thousand": 1.209,
- "new_tests_smoothed": 31376.0,
- "new_tests_smoothed_per_thousand": 1.641,
- "tests_per_case": 17.652,
- "positive_rate": 0.057,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-09-17",
- "total_cases": 439287.0,
- "new_cases": 1304.0,
- "new_cases_smoothed": 1751.429,
- "total_deaths": 12058.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 50.857,
- "total_cases_per_million": 22979.818,
- "new_cases_per_million": 68.214,
- "new_cases_smoothed_per_million": 91.62,
- "total_deaths_per_million": 630.774,
- "new_deaths_per_million": 0.942,
- "new_deaths_smoothed_per_million": 2.66,
- "new_tests": 31646.0,
- "total_tests": 2934628.0,
- "total_tests_per_thousand": 153.515,
- "new_tests_per_thousand": 1.655,
- "new_tests_smoothed": 31852.0,
- "new_tests_smoothed_per_thousand": 1.666,
- "tests_per_case": 18.186,
- "positive_rate": 0.055,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-09-18",
- "total_cases": 441150.0,
- "new_cases": 1863.0,
- "new_cases_smoothed": 1783.0,
- "total_deaths": 12142.0,
- "new_deaths": 84.0,
- "new_deaths_smoothed": 51.571,
- "total_cases_per_million": 23077.274,
- "new_cases_per_million": 97.457,
- "new_cases_smoothed_per_million": 93.272,
- "total_deaths_per_million": 635.168,
- "new_deaths_per_million": 4.394,
- "new_deaths_smoothed_per_million": 2.698,
- "new_tests": 33240.0,
- "total_tests": 2967868.0,
- "total_tests_per_thousand": 155.254,
- "new_tests_per_thousand": 1.739,
- "new_tests_smoothed": 31732.0,
- "new_tests_smoothed_per_thousand": 1.66,
- "tests_per_case": 17.797,
- "positive_rate": 0.055999999999999994,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-09-19",
- "total_cases": 442827.0,
- "new_cases": 1677.0,
- "new_cases_smoothed": 1756.0,
- "total_deaths": 12199.0,
- "new_deaths": 57.0,
- "new_deaths_smoothed": 49.857,
- "total_cases_per_million": 23165.001,
- "new_cases_per_million": 87.727,
- "new_cases_smoothed_per_million": 91.859,
- "total_deaths_per_million": 638.15,
- "new_deaths_per_million": 2.982,
- "new_deaths_smoothed_per_million": 2.608,
- "new_tests": 34822.0,
- "total_tests": 3002690.0,
- "total_tests_per_thousand": 157.076,
- "new_tests_per_thousand": 1.822,
- "new_tests_smoothed": 31269.0,
- "new_tests_smoothed_per_thousand": 1.636,
- "tests_per_case": 17.807000000000002,
- "positive_rate": 0.055999999999999994,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-09-20",
- "total_cases": 444674.0,
- "new_cases": 1847.0,
- "new_cases_smoothed": 1715.429,
- "total_deaths": 12254.0,
- "new_deaths": 55.0,
- "new_deaths_smoothed": 51.286,
- "total_cases_per_million": 23261.621,
- "new_cases_per_million": 96.62,
- "new_cases_smoothed_per_million": 89.737,
- "total_deaths_per_million": 641.027,
- "new_deaths_per_million": 2.877,
- "new_deaths_smoothed_per_million": 2.683,
- "new_tests": 27620.0,
- "total_tests": 3030310.0,
- "total_tests_per_thousand": 158.52,
- "new_tests_per_thousand": 1.445,
- "new_tests_smoothed": 30029.0,
- "new_tests_smoothed_per_thousand": 1.571,
- "tests_per_case": 17.505,
- "positive_rate": 0.057,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-09-21",
- "total_cases": 446274.0,
- "new_cases": 1600.0,
- "new_cases_smoothed": 1646.571,
- "total_deaths": 12286.0,
- "new_deaths": 32.0,
- "new_deaths_smoothed": 48.143,
- "total_cases_per_million": 23345.319,
- "new_cases_per_million": 83.699,
- "new_cases_smoothed_per_million": 86.135,
- "total_deaths_per_million": 642.701,
- "new_deaths_per_million": 1.674,
- "new_deaths_smoothed_per_million": 2.518,
- "new_tests": 16822.0,
- "total_tests": 3047132.0,
- "total_tests_per_thousand": 159.4,
- "new_tests_per_thousand": 0.88,
- "new_tests_smoothed": 27778.0,
- "new_tests_smoothed_per_thousand": 1.453,
- "tests_per_case": 16.87,
- "positive_rate": 0.059000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 83.8
- },
- {
- "date": "2020-09-22",
- "total_cases": 447468.0,
- "new_cases": 1194.0,
- "new_cases_smoothed": 1576.429,
- "total_deaths": 12298.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 40.714,
- "total_cases_per_million": 23407.779,
- "new_cases_per_million": 62.46,
- "new_cases_smoothed_per_million": 82.466,
- "total_deaths_per_million": 643.328,
- "new_deaths_per_million": 0.628,
- "new_deaths_smoothed_per_million": 2.13,
- "new_tests": 13389.0,
- "total_tests": 3060521.0,
- "total_tests_per_thousand": 160.101,
- "new_tests_per_thousand": 0.7,
- "new_tests_smoothed": 25806.0,
- "new_tests_smoothed_per_thousand": 1.35,
- "tests_per_case": 16.37,
- "positive_rate": 0.061,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-23",
- "total_cases": 448523.0,
- "new_cases": 1055.0,
- "new_cases_smoothed": 1505.714,
- "total_deaths": 12321.0,
- "new_deaths": 23.0,
- "new_deaths_smoothed": 40.143,
- "total_cases_per_million": 23462.968,
- "new_cases_per_million": 55.189,
- "new_cases_smoothed_per_million": 78.766,
- "total_deaths_per_million": 644.532,
- "new_deaths_per_million": 1.203,
- "new_deaths_smoothed_per_million": 2.1,
- "new_tests": 15573.0,
- "total_tests": 3076094.0,
- "total_tests_per_thousand": 160.915,
- "new_tests_per_thousand": 0.815,
- "new_tests_smoothed": 24730.0,
- "new_tests_smoothed_per_thousand": 1.294,
- "tests_per_case": 16.424,
- "positive_rate": 0.061,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-24",
- "total_cases": 449903.0,
- "new_cases": 1380.0,
- "new_cases_smoothed": 1516.571,
- "total_deaths": 12345.0,
- "new_deaths": 24.0,
- "new_deaths_smoothed": 41.0,
- "total_cases_per_million": 23535.158,
- "new_cases_per_million": 72.19,
- "new_cases_smoothed_per_million": 79.334,
- "total_deaths_per_million": 645.787,
- "new_deaths_per_million": 1.255,
- "new_deaths_smoothed_per_million": 2.145,
- "new_tests": 29078.0,
- "total_tests": 3105172.0,
- "total_tests_per_thousand": 162.437,
- "new_tests_per_thousand": 1.521,
- "new_tests_smoothed": 24363.0,
- "new_tests_smoothed_per_thousand": 1.274,
- "tests_per_case": 16.065,
- "positive_rate": 0.062,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-25",
- "total_cases": 451634.0,
- "new_cases": 1731.0,
- "new_cases_smoothed": 1497.714,
- "total_deaths": 12469.0,
- "new_deaths": 124.0,
- "new_deaths_smoothed": 46.714,
- "total_cases_per_million": 23625.709,
- "new_cases_per_million": 90.551,
- "new_cases_smoothed_per_million": 78.348,
- "total_deaths_per_million": 652.274,
- "new_deaths_per_million": 6.487,
- "new_deaths_smoothed_per_million": 2.444
- }
- ]
- },
- "CHN": {
- "continent": "Asia",
- "location": "China",
- "population": 1439323774.0,
- "population_density": 147.674,
- "median_age": 38.7,
- "aged_65_older": 10.641,
- "aged_70_older": 5.929,
- "gdp_per_capita": 15308.712,
- "extreme_poverty": 0.7,
- "cardiovasc_death_rate": 261.899,
- "diabetes_prevalence": 9.74,
- "female_smokers": 1.9,
- "male_smokers": 48.4,
- "hospital_beds_per_thousand": 4.34,
- "life_expectancy": 76.91,
- "human_development_index": 0.752,
- "data": [
- {
- "date": "2019-12-31",
- "total_cases": 27.0,
- "new_cases": 27.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.019,
- "new_cases_per_million": 0.019,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-01-01",
- "total_cases": 27.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.019,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-02",
- "total_cases": 27.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.019,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-03",
- "total_cases": 44.0,
- "new_cases": 17.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.031,
- "new_cases_per_million": 0.012,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-04",
- "total_cases": 44.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.031,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-05",
- "total_cases": 59.0,
- "new_cases": 15.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.041,
- "new_cases_per_million": 0.01,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-01-06",
- "total_cases": 59.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 8.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.041,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.006,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-01-07",
- "total_cases": 59.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.041,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.003,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-01-08",
- "total_cases": 59.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.041,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.003,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-01-09",
- "total_cases": 59.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.041,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.003,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-01-10",
- "total_cases": 59.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.041,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.001,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-01-11",
- "total_cases": 59.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 0.041,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.001,
- "total_deaths_per_million": 0.001,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-01-12",
- "total_cases": 59.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 0.041,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.001,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-01-13",
- "total_cases": 59.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 0.041,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.001,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-01-14",
- "total_cases": 59.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 0.041,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.001,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-01-15",
- "total_cases": 59.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 0.041,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.001,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 8.33
- },
- {
- "date": "2020-01-16",
- "total_cases": 59.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 0.041,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.001,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 8.33
- },
- {
- "date": "2020-01-17",
- "total_cases": 63.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 0.044,
- "new_cases_per_million": 0.003,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.001,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 8.33
- },
- {
- "date": "2020-01-18",
- "total_cases": 80.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 0.056,
- "new_cases_per_million": 0.012,
- "new_cases_smoothed_per_million": 0.002,
- "total_deaths_per_million": 0.001,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 8.33
- },
- {
- "date": "2020-01-19",
- "total_cases": 216.0,
- "new_cases": 136.0,
- "new_cases_smoothed": 22.429,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 0.15,
- "new_cases_per_million": 0.094,
- "new_cases_smoothed_per_million": 0.016,
- "total_deaths_per_million": 0.002,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 8.33
- },
- {
- "date": "2020-01-20",
- "total_cases": 235.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 25.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 0.163,
- "new_cases_per_million": 0.013,
- "new_cases_smoothed_per_million": 0.017,
- "total_deaths_per_million": 0.002,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 8.33
- },
- {
- "date": "2020-01-21",
- "total_cases": 386.0,
- "new_cases": 151.0,
- "new_cases_smoothed": 46.714,
- "total_deaths": 6.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 0.268,
- "new_cases_per_million": 0.105,
- "new_cases_smoothed_per_million": 0.032,
- "total_deaths_per_million": 0.004,
- "new_deaths_per_million": 0.002,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 8.33
- },
- {
- "date": "2020-01-22",
- "total_cases": 526.0,
- "new_cases": 140.0,
- "new_cases_smoothed": 66.714,
- "total_deaths": 17.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 0.365,
- "new_cases_per_million": 0.097,
- "new_cases_smoothed_per_million": 0.046,
- "total_deaths_per_million": 0.012,
- "new_deaths_per_million": 0.008,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 26.39
- },
- {
- "date": "2020-01-23",
- "total_cases": 623.0,
- "new_cases": 97.0,
- "new_cases_smoothed": 80.571,
- "total_deaths": 17.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 0.433,
- "new_cases_per_million": 0.067,
- "new_cases_smoothed_per_million": 0.056,
- "total_deaths_per_million": 0.012,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 44.91
- },
- {
- "date": "2020-01-24",
- "total_cases": 882.0,
- "new_cases": 259.0,
- "new_cases_smoothed": 117.0,
- "total_deaths": 26.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 0.613,
- "new_cases_per_million": 0.18,
- "new_cases_smoothed_per_million": 0.081,
- "total_deaths_per_million": 0.018,
- "new_deaths_per_million": 0.006,
- "new_deaths_smoothed_per_million": 0.002,
- "stringency_index": 44.91
- },
- {
- "date": "2020-01-25",
- "total_cases": 1323.0,
- "new_cases": 441.0,
- "new_cases_smoothed": 177.571,
- "total_deaths": 41.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 0.919,
- "new_cases_per_million": 0.306,
- "new_cases_smoothed_per_million": 0.123,
- "total_deaths_per_million": 0.028,
- "new_deaths_per_million": 0.01,
- "new_deaths_smoothed_per_million": 0.004,
- "stringency_index": 47.69
- },
- {
- "date": "2020-01-26",
- "total_cases": 1988.0,
- "new_cases": 665.0,
- "new_cases_smoothed": 253.143,
- "total_deaths": 56.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 7.571,
- "total_cases_per_million": 1.381,
- "new_cases_per_million": 0.462,
- "new_cases_smoothed_per_million": 0.176,
- "total_deaths_per_million": 0.039,
- "new_deaths_per_million": 0.01,
- "new_deaths_smoothed_per_million": 0.005,
- "stringency_index": 69.91
- },
- {
- "date": "2020-01-27",
- "total_cases": 2775.0,
- "new_cases": 787.0,
- "new_cases_smoothed": 362.857,
- "total_deaths": 81.0,
- "new_deaths": 25.0,
- "new_deaths_smoothed": 11.143,
- "total_cases_per_million": 1.928,
- "new_cases_per_million": 0.547,
- "new_cases_smoothed_per_million": 0.252,
- "total_deaths_per_million": 0.056,
- "new_deaths_per_million": 0.017,
- "new_deaths_smoothed_per_million": 0.008,
- "stringency_index": 69.91
- },
- {
- "date": "2020-01-28",
- "total_cases": 4528.0,
- "new_cases": 1753.0,
- "new_cases_smoothed": 591.714,
- "total_deaths": 106.0,
- "new_deaths": 25.0,
- "new_deaths_smoothed": 14.286,
- "total_cases_per_million": 3.146,
- "new_cases_per_million": 1.218,
- "new_cases_smoothed_per_million": 0.411,
- "total_deaths_per_million": 0.074,
- "new_deaths_per_million": 0.017,
- "new_deaths_smoothed_per_million": 0.01,
- "stringency_index": 69.91
- },
- {
- "date": "2020-01-29",
- "total_cases": 5994.0,
- "new_cases": 1466.0,
- "new_cases_smoothed": 781.143,
- "total_deaths": 132.0,
- "new_deaths": 26.0,
- "new_deaths_smoothed": 16.429,
- "total_cases_per_million": 4.164,
- "new_cases_per_million": 1.019,
- "new_cases_smoothed_per_million": 0.543,
- "total_deaths_per_million": 0.092,
- "new_deaths_per_million": 0.018,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 69.91
- },
- {
- "date": "2020-01-30",
- "total_cases": 7734.0,
- "new_cases": 1740.0,
- "new_cases_smoothed": 1015.857,
- "total_deaths": 170.0,
- "new_deaths": 38.0,
- "new_deaths_smoothed": 21.857,
- "total_cases_per_million": 5.373,
- "new_cases_per_million": 1.209,
- "new_cases_smoothed_per_million": 0.706,
- "total_deaths_per_million": 0.118,
- "new_deaths_per_million": 0.026,
- "new_deaths_smoothed_per_million": 0.015,
- "stringency_index": 69.91
- },
- {
- "date": "2020-01-31",
- "total_cases": 9714.0,
- "new_cases": 1980.0,
- "new_cases_smoothed": 1261.714,
- "total_deaths": 213.0,
- "new_deaths": 43.0,
- "new_deaths_smoothed": 26.714,
- "total_cases_per_million": 6.749,
- "new_cases_per_million": 1.376,
- "new_cases_smoothed_per_million": 0.877,
- "total_deaths_per_million": 0.148,
- "new_deaths_per_million": 0.03,
- "new_deaths_smoothed_per_million": 0.019,
- "stringency_index": 69.91
- },
- {
- "date": "2020-02-01",
- "total_cases": 11809.0,
- "new_cases": 2095.0,
- "new_cases_smoothed": 1498.0,
- "total_deaths": 259.0,
- "new_deaths": 46.0,
- "new_deaths_smoothed": 31.143,
- "total_cases_per_million": 8.205,
- "new_cases_per_million": 1.456,
- "new_cases_smoothed_per_million": 1.041,
- "total_deaths_per_million": 0.18,
- "new_deaths_per_million": 0.032,
- "new_deaths_smoothed_per_million": 0.022,
- "stringency_index": 77.31
- },
- {
- "date": "2020-02-02",
- "total_cases": 14399.0,
- "new_cases": 2590.0,
- "new_cases_smoothed": 1773.0,
- "total_deaths": 304.0,
- "new_deaths": 45.0,
- "new_deaths_smoothed": 35.429,
- "total_cases_per_million": 10.004,
- "new_cases_per_million": 1.799,
- "new_cases_smoothed_per_million": 1.232,
- "total_deaths_per_million": 0.211,
- "new_deaths_per_million": 0.031,
- "new_deaths_smoothed_per_million": 0.025,
- "stringency_index": 77.31
- },
- {
- "date": "2020-02-03",
- "total_cases": 17211.0,
- "new_cases": 2812.0,
- "new_cases_smoothed": 2062.286,
- "total_deaths": 361.0,
- "new_deaths": 57.0,
- "new_deaths_smoothed": 40.0,
- "total_cases_per_million": 11.958,
- "new_cases_per_million": 1.954,
- "new_cases_smoothed_per_million": 1.433,
- "total_deaths_per_million": 0.251,
- "new_deaths_per_million": 0.04,
- "new_deaths_smoothed_per_million": 0.028,
- "stringency_index": 77.31
- },
- {
- "date": "2020-02-04",
- "total_cases": 20448.0,
- "new_cases": 3237.0,
- "new_cases_smoothed": 2274.286,
- "total_deaths": 426.0,
- "new_deaths": 65.0,
- "new_deaths_smoothed": 45.714,
- "total_cases_per_million": 14.207,
- "new_cases_per_million": 2.249,
- "new_cases_smoothed_per_million": 1.58,
- "total_deaths_per_million": 0.296,
- "new_deaths_per_million": 0.045,
- "new_deaths_smoothed_per_million": 0.032,
- "stringency_index": 77.31
- },
- {
- "date": "2020-02-05",
- "total_cases": 24320.0,
- "new_cases": 3872.0,
- "new_cases_smoothed": 2618.0,
- "total_deaths": 492.0,
- "new_deaths": 66.0,
- "new_deaths_smoothed": 51.429,
- "total_cases_per_million": 16.897,
- "new_cases_per_million": 2.69,
- "new_cases_smoothed_per_million": 1.819,
- "total_deaths_per_million": 0.342,
- "new_deaths_per_million": 0.046,
- "new_deaths_smoothed_per_million": 0.036,
- "stringency_index": 77.31
- },
- {
- "date": "2020-02-06",
- "total_cases": 28047.0,
- "new_cases": 3727.0,
- "new_cases_smoothed": 2901.857,
- "total_deaths": 564.0,
- "new_deaths": 72.0,
- "new_deaths_smoothed": 56.286,
- "total_cases_per_million": 19.486,
- "new_cases_per_million": 2.589,
- "new_cases_smoothed_per_million": 2.016,
- "total_deaths_per_million": 0.392,
- "new_deaths_per_million": 0.05,
- "new_deaths_smoothed_per_million": 0.039,
- "stringency_index": 77.31
- },
- {
- "date": "2020-02-07",
- "total_cases": 31207.0,
- "new_cases": 3160.0,
- "new_cases_smoothed": 3070.429,
- "total_deaths": 637.0,
- "new_deaths": 73.0,
- "new_deaths_smoothed": 60.571,
- "total_cases_per_million": 21.682,
- "new_cases_per_million": 2.195,
- "new_cases_smoothed_per_million": 2.133,
- "total_deaths_per_million": 0.443,
- "new_deaths_per_million": 0.051,
- "new_deaths_smoothed_per_million": 0.042,
- "stringency_index": 77.31
- },
- {
- "date": "2020-02-08",
- "total_cases": 34625.0,
- "new_cases": 3418.0,
- "new_cases_smoothed": 3259.429,
- "total_deaths": 723.0,
- "new_deaths": 86.0,
- "new_deaths_smoothed": 66.286,
- "total_cases_per_million": 24.056,
- "new_cases_per_million": 2.375,
- "new_cases_smoothed_per_million": 2.265,
- "total_deaths_per_million": 0.502,
- "new_deaths_per_million": 0.06,
- "new_deaths_smoothed_per_million": 0.046,
- "stringency_index": 77.31
- },
- {
- "date": "2020-02-09",
- "total_cases": 37232.0,
- "new_cases": 2607.0,
- "new_cases_smoothed": 3261.857,
- "total_deaths": 812.0,
- "new_deaths": 89.0,
- "new_deaths_smoothed": 72.571,
- "total_cases_per_million": 25.868,
- "new_cases_per_million": 1.811,
- "new_cases_smoothed_per_million": 2.266,
- "total_deaths_per_million": 0.564,
- "new_deaths_per_million": 0.062,
- "new_deaths_smoothed_per_million": 0.05,
- "stringency_index": 77.31
- },
- {
- "date": "2020-02-10",
- "total_cases": 40206.0,
- "new_cases": 2974.0,
- "new_cases_smoothed": 3285.0,
- "total_deaths": 909.0,
- "new_deaths": 97.0,
- "new_deaths_smoothed": 78.286,
- "total_cases_per_million": 27.934,
- "new_cases_per_million": 2.066,
- "new_cases_smoothed_per_million": 2.282,
- "total_deaths_per_million": 0.632,
- "new_deaths_per_million": 0.067,
- "new_deaths_smoothed_per_million": 0.054,
- "stringency_index": 75.46
- },
- {
- "date": "2020-02-11",
- "total_cases": 42696.0,
- "new_cases": 2490.0,
- "new_cases_smoothed": 3178.286,
- "total_deaths": 1017.0,
- "new_deaths": 108.0,
- "new_deaths_smoothed": 84.429,
- "total_cases_per_million": 29.664,
- "new_cases_per_million": 1.73,
- "new_cases_smoothed_per_million": 2.208,
- "total_deaths_per_million": 0.707,
- "new_deaths_per_million": 0.075,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 75.46
- },
- {
- "date": "2020-02-12",
- "total_cases": 44724.0,
- "new_cases": 2028.0,
- "new_cases_smoothed": 2914.857,
- "total_deaths": 1114.0,
- "new_deaths": 97.0,
- "new_deaths_smoothed": 88.857,
- "total_cases_per_million": 31.073,
- "new_cases_per_million": 1.409,
- "new_cases_smoothed_per_million": 2.025,
- "total_deaths_per_million": 0.774,
- "new_deaths_per_million": 0.067,
- "new_deaths_smoothed_per_million": 0.062,
- "stringency_index": 75.46
- },
- {
- "date": "2020-02-13",
- "total_cases": 59865.0,
- "new_cases": 15141.0,
- "new_cases_smoothed": 4545.429,
- "total_deaths": 1368.0,
- "new_deaths": 254.0,
- "new_deaths_smoothed": 114.857,
- "total_cases_per_million": 41.592,
- "new_cases_per_million": 10.52,
- "new_cases_smoothed_per_million": 3.158,
- "total_deaths_per_million": 0.95,
- "new_deaths_per_million": 0.176,
- "new_deaths_smoothed_per_million": 0.08,
- "stringency_index": 75.46
- },
- {
- "date": "2020-02-14",
- "total_cases": 64021.0,
- "new_cases": 4156.0,
- "new_cases_smoothed": 4687.714,
- "total_deaths": 1381.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 106.286,
- "total_cases_per_million": 44.48,
- "new_cases_per_million": 2.887,
- "new_cases_smoothed_per_million": 3.257,
- "total_deaths_per_million": 0.959,
- "new_deaths_per_million": 0.009,
- "new_deaths_smoothed_per_million": 0.074,
- "stringency_index": 75.46
- },
- {
- "date": "2020-02-15",
- "total_cases": 66559.0,
- "new_cases": 2538.0,
- "new_cases_smoothed": 4562.0,
- "total_deaths": 1524.0,
- "new_deaths": 143.0,
- "new_deaths_smoothed": 114.429,
- "total_cases_per_million": 46.243,
- "new_cases_per_million": 1.763,
- "new_cases_smoothed_per_million": 3.17,
- "total_deaths_per_million": 1.059,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.08,
- "stringency_index": 75.46
- },
- {
- "date": "2020-02-16",
- "total_cases": 68566.0,
- "new_cases": 2007.0,
- "new_cases_smoothed": 4476.286,
- "total_deaths": 1666.0,
- "new_deaths": 142.0,
- "new_deaths_smoothed": 122.0,
- "total_cases_per_million": 47.638,
- "new_cases_per_million": 1.394,
- "new_cases_smoothed_per_million": 3.11,
- "total_deaths_per_million": 1.157,
- "new_deaths_per_million": 0.099,
- "new_deaths_smoothed_per_million": 0.085,
- "stringency_index": 75.46
- },
- {
- "date": "2020-02-17",
- "total_cases": 70618.0,
- "new_cases": 2052.0,
- "new_cases_smoothed": 4344.571,
- "total_deaths": 1771.0,
- "new_deaths": 105.0,
- "new_deaths_smoothed": 123.143,
- "total_cases_per_million": 49.063,
- "new_cases_per_million": 1.426,
- "new_cases_smoothed_per_million": 3.018,
- "total_deaths_per_million": 1.23,
- "new_deaths_per_million": 0.073,
- "new_deaths_smoothed_per_million": 0.086,
- "stringency_index": 75.46
- },
- {
- "date": "2020-02-18",
- "total_cases": 72508.0,
- "new_cases": 1890.0,
- "new_cases_smoothed": 4258.857,
- "total_deaths": 1869.0,
- "new_deaths": 98.0,
- "new_deaths_smoothed": 121.714,
- "total_cases_per_million": 50.376,
- "new_cases_per_million": 1.313,
- "new_cases_smoothed_per_million": 2.959,
- "total_deaths_per_million": 1.299,
- "new_deaths_per_million": 0.068,
- "new_deaths_smoothed_per_million": 0.085,
- "stringency_index": 75.46
- },
- {
- "date": "2020-02-19",
- "total_cases": 74258.0,
- "new_cases": 1750.0,
- "new_cases_smoothed": 4219.143,
- "total_deaths": 2008.0,
- "new_deaths": 139.0,
- "new_deaths_smoothed": 127.714,
- "total_cases_per_million": 51.592,
- "new_cases_per_million": 1.216,
- "new_cases_smoothed_per_million": 2.931,
- "total_deaths_per_million": 1.395,
- "new_deaths_per_million": 0.097,
- "new_deaths_smoothed_per_million": 0.089,
- "stringency_index": 75.46
- },
- {
- "date": "2020-02-20",
- "total_cases": 74652.0,
- "new_cases": 394.0,
- "new_cases_smoothed": 2112.429,
- "total_deaths": 2120.0,
- "new_deaths": 112.0,
- "new_deaths_smoothed": 107.429,
- "total_cases_per_million": 51.866,
- "new_cases_per_million": 0.274,
- "new_cases_smoothed_per_million": 1.468,
- "total_deaths_per_million": 1.473,
- "new_deaths_per_million": 0.078,
- "new_deaths_smoothed_per_million": 0.075,
- "stringency_index": 75.46
- },
- {
- "date": "2020-02-21",
- "total_cases": 75543.0,
- "new_cases": 891.0,
- "new_cases_smoothed": 1646.0,
- "total_deaths": 2238.0,
- "new_deaths": 118.0,
- "new_deaths_smoothed": 122.429,
- "total_cases_per_million": 52.485,
- "new_cases_per_million": 0.619,
- "new_cases_smoothed_per_million": 1.144,
- "total_deaths_per_million": 1.555,
- "new_deaths_per_million": 0.082,
- "new_deaths_smoothed_per_million": 0.085,
- "stringency_index": 75.46
- },
- {
- "date": "2020-02-22",
- "total_cases": 76369.0,
- "new_cases": 826.0,
- "new_cases_smoothed": 1401.429,
- "total_deaths": 2347.0,
- "new_deaths": 109.0,
- "new_deaths_smoothed": 117.571,
- "total_cases_per_million": 53.059,
- "new_cases_per_million": 0.574,
- "new_cases_smoothed_per_million": 0.974,
- "total_deaths_per_million": 1.631,
- "new_deaths_per_million": 0.076,
- "new_deaths_smoothed_per_million": 0.082,
- "stringency_index": 75.46
- },
- {
- "date": "2020-02-23",
- "total_cases": 77016.0,
- "new_cases": 647.0,
- "new_cases_smoothed": 1207.143,
- "total_deaths": 2445.0,
- "new_deaths": 98.0,
- "new_deaths_smoothed": 111.286,
- "total_cases_per_million": 53.508,
- "new_cases_per_million": 0.45,
- "new_cases_smoothed_per_million": 0.839,
- "total_deaths_per_million": 1.699,
- "new_deaths_per_million": 0.068,
- "new_deaths_smoothed_per_million": 0.077,
- "stringency_index": 75.46
- },
- {
- "date": "2020-02-24",
- "total_cases": 77234.0,
- "new_cases": 218.0,
- "new_cases_smoothed": 945.143,
- "total_deaths": 2595.0,
- "new_deaths": 150.0,
- "new_deaths_smoothed": 117.714,
- "total_cases_per_million": 53.66,
- "new_cases_per_million": 0.151,
- "new_cases_smoothed_per_million": 0.657,
- "total_deaths_per_million": 1.803,
- "new_deaths_per_million": 0.104,
- "new_deaths_smoothed_per_million": 0.082,
- "stringency_index": 75.46
- },
- {
- "date": "2020-02-25",
- "total_cases": 77749.0,
- "new_cases": 515.0,
- "new_cases_smoothed": 748.714,
- "total_deaths": 2665.0,
- "new_deaths": 70.0,
- "new_deaths_smoothed": 113.714,
- "total_cases_per_million": 54.018,
- "new_cases_per_million": 0.358,
- "new_cases_smoothed_per_million": 0.52,
- "total_deaths_per_million": 1.852,
- "new_deaths_per_million": 0.049,
- "new_deaths_smoothed_per_million": 0.079,
- "stringency_index": 81.02
- },
- {
- "date": "2020-02-26",
- "total_cases": 78159.0,
- "new_cases": 410.0,
- "new_cases_smoothed": 557.286,
- "total_deaths": 2717.0,
- "new_deaths": 52.0,
- "new_deaths_smoothed": 101.286,
- "total_cases_per_million": 54.303,
- "new_cases_per_million": 0.285,
- "new_cases_smoothed_per_million": 0.387,
- "total_deaths_per_million": 1.888,
- "new_deaths_per_million": 0.036,
- "new_deaths_smoothed_per_million": 0.07,
- "stringency_index": 81.02
- },
- {
- "date": "2020-02-27",
- "total_cases": 78598.0,
- "new_cases": 439.0,
- "new_cases_smoothed": 563.714,
- "total_deaths": 2746.0,
- "new_deaths": 29.0,
- "new_deaths_smoothed": 89.429,
- "total_cases_per_million": 54.608,
- "new_cases_per_million": 0.305,
- "new_cases_smoothed_per_million": 0.392,
- "total_deaths_per_million": 1.908,
- "new_deaths_per_million": 0.02,
- "new_deaths_smoothed_per_million": 0.062,
- "stringency_index": 81.02
- },
- {
- "date": "2020-02-28",
- "total_cases": 78927.0,
- "new_cases": 329.0,
- "new_cases_smoothed": 483.429,
- "total_deaths": 2790.0,
- "new_deaths": 44.0,
- "new_deaths_smoothed": 78.857,
- "total_cases_per_million": 54.836,
- "new_cases_per_million": 0.229,
- "new_cases_smoothed_per_million": 0.336,
- "total_deaths_per_million": 1.938,
- "new_deaths_per_million": 0.031,
- "new_deaths_smoothed_per_million": 0.055,
- "stringency_index": 81.02
- },
- {
- "date": "2020-02-29",
- "total_cases": 79355.0,
- "new_cases": 428.0,
- "new_cases_smoothed": 426.571,
- "total_deaths": 2837.0,
- "new_deaths": 47.0,
- "new_deaths_smoothed": 70.0,
- "total_cases_per_million": 55.134,
- "new_cases_per_million": 0.297,
- "new_cases_smoothed_per_million": 0.296,
- "total_deaths_per_million": 1.971,
- "new_deaths_per_million": 0.033,
- "new_deaths_smoothed_per_million": 0.049,
- "stringency_index": 81.02
- },
- {
- "date": "2020-03-01",
- "total_cases": 79929.0,
- "new_cases": 574.0,
- "new_cases_smoothed": 416.143,
- "total_deaths": 2872.0,
- "new_deaths": 35.0,
- "new_deaths_smoothed": 61.0,
- "total_cases_per_million": 55.532,
- "new_cases_per_million": 0.399,
- "new_cases_smoothed_per_million": 0.289,
- "total_deaths_per_million": 1.995,
- "new_deaths_per_million": 0.024,
- "new_deaths_smoothed_per_million": 0.042,
- "stringency_index": 81.02
- },
- {
- "date": "2020-03-02",
- "total_cases": 80134.0,
- "new_cases": 205.0,
- "new_cases_smoothed": 414.286,
- "total_deaths": 2914.0,
- "new_deaths": 42.0,
- "new_deaths_smoothed": 45.571,
- "total_cases_per_million": 55.675,
- "new_cases_per_million": 0.142,
- "new_cases_smoothed_per_million": 0.288,
- "total_deaths_per_million": 2.025,
- "new_deaths_per_million": 0.029,
- "new_deaths_smoothed_per_million": 0.032,
- "stringency_index": 81.02
- },
- {
- "date": "2020-03-03",
- "total_cases": 80261.0,
- "new_cases": 127.0,
- "new_cases_smoothed": 358.857,
- "total_deaths": 2946.0,
- "new_deaths": 32.0,
- "new_deaths_smoothed": 40.143,
- "total_cases_per_million": 55.763,
- "new_cases_per_million": 0.088,
- "new_cases_smoothed_per_million": 0.249,
- "total_deaths_per_million": 2.047,
- "new_deaths_per_million": 0.022,
- "new_deaths_smoothed_per_million": 0.028,
- "stringency_index": 81.02
- },
- {
- "date": "2020-03-04",
- "total_cases": 80380.0,
- "new_cases": 119.0,
- "new_cases_smoothed": 317.286,
- "total_deaths": 2983.0,
- "new_deaths": 37.0,
- "new_deaths_smoothed": 38.0,
- "total_cases_per_million": 55.846,
- "new_cases_per_million": 0.083,
- "new_cases_smoothed_per_million": 0.22,
- "total_deaths_per_million": 2.073,
- "new_deaths_per_million": 0.026,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 81.02
- },
- {
- "date": "2020-03-05",
- "total_cases": 80497.0,
- "new_cases": 117.0,
- "new_cases_smoothed": 271.286,
- "total_deaths": 3014.0,
- "new_deaths": 31.0,
- "new_deaths_smoothed": 38.286,
- "total_cases_per_million": 55.927,
- "new_cases_per_million": 0.081,
- "new_cases_smoothed_per_million": 0.188,
- "total_deaths_per_million": 2.094,
- "new_deaths_per_million": 0.022,
- "new_deaths_smoothed_per_million": 0.027,
- "stringency_index": 81.02
- },
- {
- "date": "2020-03-06",
- "total_cases": 80667.0,
- "new_cases": 170.0,
- "new_cases_smoothed": 248.571,
- "total_deaths": 3044.0,
- "new_deaths": 30.0,
- "new_deaths_smoothed": 36.286,
- "total_cases_per_million": 56.045,
- "new_cases_per_million": 0.118,
- "new_cases_smoothed_per_million": 0.173,
- "total_deaths_per_million": 2.115,
- "new_deaths_per_million": 0.021,
- "new_deaths_smoothed_per_million": 0.025,
- "stringency_index": 81.02
- },
- {
- "date": "2020-03-07",
- "total_cases": 80768.0,
- "new_cases": 101.0,
- "new_cases_smoothed": 201.857,
- "total_deaths": 3072.0,
- "new_deaths": 28.0,
- "new_deaths_smoothed": 33.571,
- "total_cases_per_million": 56.115,
- "new_cases_per_million": 0.07,
- "new_cases_smoothed_per_million": 0.14,
- "total_deaths_per_million": 2.134,
- "new_deaths_per_million": 0.019,
- "new_deaths_smoothed_per_million": 0.023,
- "stringency_index": 81.02
- },
- {
- "date": "2020-03-08",
- "total_cases": 80814.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 126.429,
- "total_deaths": 3099.0,
- "new_deaths": 27.0,
- "new_deaths_smoothed": 32.429,
- "total_cases_per_million": 56.147,
- "new_cases_per_million": 0.032,
- "new_cases_smoothed_per_million": 0.088,
- "total_deaths_per_million": 2.153,
- "new_deaths_per_million": 0.019,
- "new_deaths_smoothed_per_million": 0.023,
- "stringency_index": 81.02
- },
- {
- "date": "2020-03-09",
- "total_cases": 80859.0,
- "new_cases": 45.0,
- "new_cases_smoothed": 103.571,
- "total_deaths": 3122.0,
- "new_deaths": 23.0,
- "new_deaths_smoothed": 29.714,
- "total_cases_per_million": 56.178,
- "new_cases_per_million": 0.031,
- "new_cases_smoothed_per_million": 0.072,
- "total_deaths_per_million": 2.169,
- "new_deaths_per_million": 0.016,
- "new_deaths_smoothed_per_million": 0.021,
- "stringency_index": 81.02
- },
- {
- "date": "2020-03-10",
- "total_cases": 80879.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 88.286,
- "total_deaths": 3139.0,
- "new_deaths": 17.0,
- "new_deaths_smoothed": 27.571,
- "total_cases_per_million": 56.192,
- "new_cases_per_million": 0.014,
- "new_cases_smoothed_per_million": 0.061,
- "total_deaths_per_million": 2.181,
- "new_deaths_per_million": 0.012,
- "new_deaths_smoothed_per_million": 0.019,
- "stringency_index": 81.02
- },
- {
- "date": "2020-03-11",
- "total_cases": 80908.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 75.429,
- "total_deaths": 3161.0,
- "new_deaths": 22.0,
- "new_deaths_smoothed": 25.429,
- "total_cases_per_million": 56.213,
- "new_cases_per_million": 0.02,
- "new_cases_smoothed_per_million": 0.052,
- "total_deaths_per_million": 2.196,
- "new_deaths_per_million": 0.015,
- "new_deaths_smoothed_per_million": 0.018,
- "stringency_index": 81.02
- },
- {
- "date": "2020-03-12",
- "total_cases": 80932.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 62.143,
- "total_deaths": 3172.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 22.571,
- "total_cases_per_million": 56.229,
- "new_cases_per_million": 0.017,
- "new_cases_smoothed_per_million": 0.043,
- "total_deaths_per_million": 2.204,
- "new_deaths_per_million": 0.008,
- "new_deaths_smoothed_per_million": 0.016,
- "stringency_index": 81.02
- },
- {
- "date": "2020-03-13",
- "total_cases": 80954.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 41.0,
- "total_deaths": 3179.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 19.286,
- "total_cases_per_million": 56.244,
- "new_cases_per_million": 0.015,
- "new_cases_smoothed_per_million": 0.028,
- "total_deaths_per_million": 2.209,
- "new_deaths_per_million": 0.005,
- "new_deaths_smoothed_per_million": 0.013,
- "stringency_index": 81.02
- },
- {
- "date": "2020-03-14",
- "total_cases": 80973.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 29.286,
- "total_deaths": 3194.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 17.429,
- "total_cases_per_million": 56.258,
- "new_cases_per_million": 0.013,
- "new_cases_smoothed_per_million": 0.02,
- "total_deaths_per_million": 2.219,
- "new_deaths_per_million": 0.01,
- "new_deaths_smoothed_per_million": 0.012,
- "stringency_index": 81.02
- },
- {
- "date": "2020-03-15",
- "total_cases": 80995.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 25.857,
- "total_deaths": 3203.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 14.857,
- "total_cases_per_million": 56.273,
- "new_cases_per_million": 0.015,
- "new_cases_smoothed_per_million": 0.018,
- "total_deaths_per_million": 2.225,
- "new_deaths_per_million": 0.006,
- "new_deaths_smoothed_per_million": 0.01,
- "stringency_index": 81.02
- },
- {
- "date": "2020-03-16",
- "total_cases": 81020.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 23.0,
- "total_deaths": 3216.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 13.429,
- "total_cases_per_million": 56.29,
- "new_cases_per_million": 0.017,
- "new_cases_smoothed_per_million": 0.016,
- "total_deaths_per_million": 2.234,
- "new_deaths_per_million": 0.009,
- "new_deaths_smoothed_per_million": 0.009,
- "stringency_index": 79.17
- },
- {
- "date": "2020-03-17",
- "total_cases": 81063.0,
- "new_cases": 43.0,
- "new_cases_smoothed": 26.286,
- "total_deaths": 3225.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 12.286,
- "total_cases_per_million": 56.32,
- "new_cases_per_million": 0.03,
- "new_cases_smoothed_per_million": 0.018,
- "total_deaths_per_million": 2.241,
- "new_deaths_per_million": 0.006,
- "new_deaths_smoothed_per_million": 0.009,
- "stringency_index": 79.17
- },
- {
- "date": "2020-03-18",
- "total_cases": 81086.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 25.429,
- "total_deaths": 3241.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 11.429,
- "total_cases_per_million": 56.336,
- "new_cases_per_million": 0.016,
- "new_cases_smoothed_per_million": 0.018,
- "total_deaths_per_million": 2.252,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.008,
- "stringency_index": 79.17
- },
- {
- "date": "2020-03-19",
- "total_cases": 81130.0,
- "new_cases": 44.0,
- "new_cases_smoothed": 28.286,
- "total_deaths": 3249.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 11.0,
- "total_cases_per_million": 56.367,
- "new_cases_per_million": 0.031,
- "new_cases_smoothed_per_million": 0.02,
- "total_deaths_per_million": 2.257,
- "new_deaths_per_million": 0.006,
- "new_deaths_smoothed_per_million": 0.008,
- "stringency_index": 79.17
- },
- {
- "date": "2020-03-20",
- "total_cases": 81229.0,
- "new_cases": 99.0,
- "new_cases_smoothed": 39.286,
- "total_deaths": 3253.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 10.571,
- "total_cases_per_million": 56.436,
- "new_cases_per_million": 0.069,
- "new_cases_smoothed_per_million": 0.027,
- "total_deaths_per_million": 2.26,
- "new_deaths_per_million": 0.003,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 79.17
- },
- {
- "date": "2020-03-21",
- "total_cases": 81281.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 44.0,
- "total_deaths": 3259.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 9.286,
- "total_cases_per_million": 56.472,
- "new_cases_per_million": 0.036,
- "new_cases_smoothed_per_million": 0.031,
- "total_deaths_per_million": 2.264,
- "new_deaths_per_million": 0.004,
- "new_deaths_smoothed_per_million": 0.006,
- "stringency_index": 79.17
- },
- {
- "date": "2020-03-22",
- "total_cases": 81346.0,
- "new_cases": 65.0,
- "new_cases_smoothed": 50.143,
- "total_deaths": 3265.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 8.857,
- "total_cases_per_million": 56.517,
- "new_cases_per_million": 0.045,
- "new_cases_smoothed_per_million": 0.035,
- "total_deaths_per_million": 2.268,
- "new_deaths_per_million": 0.004,
- "new_deaths_smoothed_per_million": 0.006,
- "stringency_index": 79.17
- },
- {
- "date": "2020-03-23",
- "total_cases": 81484.0,
- "new_cases": 138.0,
- "new_cases_smoothed": 66.286,
- "total_deaths": 3274.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 8.286,
- "total_cases_per_million": 56.613,
- "new_cases_per_million": 0.096,
- "new_cases_smoothed_per_million": 0.046,
- "total_deaths_per_million": 2.275,
- "new_deaths_per_million": 0.006,
- "new_deaths_smoothed_per_million": 0.006,
- "stringency_index": 79.17
- },
- {
- "date": "2020-03-24",
- "total_cases": 81553.0,
- "new_cases": 69.0,
- "new_cases_smoothed": 70.0,
- "total_deaths": 3281.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 8.0,
- "total_cases_per_million": 56.661,
- "new_cases_per_million": 0.048,
- "new_cases_smoothed_per_million": 0.049,
- "total_deaths_per_million": 2.28,
- "new_deaths_per_million": 0.005,
- "new_deaths_smoothed_per_million": 0.006,
- "stringency_index": 79.17
- },
- {
- "date": "2020-03-25",
- "total_cases": 81631.0,
- "new_cases": 78.0,
- "new_cases_smoothed": 77.857,
- "total_deaths": 3285.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 6.286,
- "total_cases_per_million": 56.715,
- "new_cases_per_million": 0.054,
- "new_cases_smoothed_per_million": 0.054,
- "total_deaths_per_million": 2.282,
- "new_deaths_per_million": 0.003,
- "new_deaths_smoothed_per_million": 0.004,
- "stringency_index": 79.17
- },
- {
- "date": "2020-03-26",
- "total_cases": 81733.0,
- "new_cases": 102.0,
- "new_cases_smoothed": 86.143,
- "total_deaths": 3291.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 6.0,
- "total_cases_per_million": 56.786,
- "new_cases_per_million": 0.071,
- "new_cases_smoothed_per_million": 0.06,
- "total_deaths_per_million": 2.286,
- "new_deaths_per_million": 0.004,
- "new_deaths_smoothed_per_million": 0.004,
- "stringency_index": 81.94
- },
- {
- "date": "2020-03-27",
- "total_cases": 81827.0,
- "new_cases": 94.0,
- "new_cases_smoothed": 85.429,
- "total_deaths": 3296.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 6.143,
- "total_cases_per_million": 56.851,
- "new_cases_per_million": 0.065,
- "new_cases_smoothed_per_million": 0.059,
- "total_deaths_per_million": 2.29,
- "new_deaths_per_million": 0.003,
- "new_deaths_smoothed_per_million": 0.004,
- "stringency_index": 81.94
- },
- {
- "date": "2020-03-28",
- "total_cases": 81946.0,
- "new_cases": 119.0,
- "new_cases_smoothed": 95.0,
- "total_deaths": 3299.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 5.714,
- "total_cases_per_million": 56.934,
- "new_cases_per_million": 0.083,
- "new_cases_smoothed_per_million": 0.066,
- "total_deaths_per_million": 2.292,
- "new_deaths_per_million": 0.002,
- "new_deaths_smoothed_per_million": 0.004,
- "stringency_index": 73.61
- },
- {
- "date": "2020-03-29",
- "total_cases": 82059.0,
- "new_cases": 113.0,
- "new_cases_smoothed": 101.857,
- "total_deaths": 3304.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 57.012,
- "new_cases_per_million": 0.079,
- "new_cases_smoothed_per_million": 0.071,
- "total_deaths_per_million": 2.296,
- "new_deaths_per_million": 0.003,
- "new_deaths_smoothed_per_million": 0.004,
- "stringency_index": 73.61
- },
- {
- "date": "2020-03-30",
- "total_cases": 82157.0,
- "new_cases": 98.0,
- "new_cases_smoothed": 96.143,
- "total_deaths": 3306.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 57.08,
- "new_cases_per_million": 0.068,
- "new_cases_smoothed_per_million": 0.067,
- "total_deaths_per_million": 2.297,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.003,
- "stringency_index": 73.61
- },
- {
- "date": "2020-03-31",
- "total_cases": 82241.0,
- "new_cases": 84.0,
- "new_cases_smoothed": 98.286,
- "total_deaths": 3309.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 57.139,
- "new_cases_per_million": 0.058,
- "new_cases_smoothed_per_million": 0.068,
- "total_deaths_per_million": 2.299,
- "new_deaths_per_million": 0.002,
- "new_deaths_smoothed_per_million": 0.003,
- "stringency_index": 73.61
- },
- {
- "date": "2020-04-01",
- "total_cases": 82295.0,
- "new_cases": 54.0,
- "new_cases_smoothed": 94.857,
- "total_deaths": 3310.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 57.176,
- "new_cases_per_million": 0.038,
- "new_cases_smoothed_per_million": 0.066,
- "total_deaths_per_million": 2.3,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.002,
- "stringency_index": 73.61
- },
- {
- "date": "2020-04-02",
- "total_cases": 82395.0,
- "new_cases": 100.0,
- "new_cases_smoothed": 94.571,
- "total_deaths": 3316.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 57.246,
- "new_cases_per_million": 0.069,
- "new_cases_smoothed_per_million": 0.066,
- "total_deaths_per_million": 2.304,
- "new_deaths_per_million": 0.004,
- "new_deaths_smoothed_per_million": 0.002,
- "stringency_index": 73.61
- },
- {
- "date": "2020-04-03",
- "total_cases": 82465.0,
- "new_cases": 70.0,
- "new_cases_smoothed": 91.143,
- "total_deaths": 3326.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 57.294,
- "new_cases_per_million": 0.049,
- "new_cases_smoothed_per_million": 0.063,
- "total_deaths_per_million": 2.311,
- "new_deaths_per_million": 0.007,
- "new_deaths_smoothed_per_million": 0.003,
- "stringency_index": 69.91
- },
- {
- "date": "2020-04-04",
- "total_cases": 82527.0,
- "new_cases": 62.0,
- "new_cases_smoothed": 83.0,
- "total_deaths": 3330.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 57.337,
- "new_cases_per_million": 0.043,
- "new_cases_smoothed_per_million": 0.058,
- "total_deaths_per_million": 2.314,
- "new_deaths_per_million": 0.003,
- "new_deaths_smoothed_per_million": 0.003,
- "stringency_index": 69.91
- },
- {
- "date": "2020-04-05",
- "total_cases": 82575.0,
- "new_cases": 48.0,
- "new_cases_smoothed": 73.714,
- "total_deaths": 3333.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 57.371,
- "new_cases_per_million": 0.033,
- "new_cases_smoothed_per_million": 0.051,
- "total_deaths_per_million": 2.316,
- "new_deaths_per_million": 0.002,
- "new_deaths_smoothed_per_million": 0.003,
- "stringency_index": 69.91
- },
- {
- "date": "2020-04-06",
- "total_cases": 82642.0,
- "new_cases": 67.0,
- "new_cases_smoothed": 69.286,
- "total_deaths": 3335.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 57.417,
- "new_cases_per_million": 0.047,
- "new_cases_smoothed_per_million": 0.048,
- "total_deaths_per_million": 2.317,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.003,
- "stringency_index": 69.91
- },
- {
- "date": "2020-04-07",
- "total_cases": 82698.0,
- "new_cases": 56.0,
- "new_cases_smoothed": 65.286,
- "total_deaths": 3335.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 57.456,
- "new_cases_per_million": 0.039,
- "new_cases_smoothed_per_million": 0.045,
- "total_deaths_per_million": 2.317,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.003,
- "stringency_index": 69.91
- },
- {
- "date": "2020-04-08",
- "total_cases": 82784.0,
- "new_cases": 86.0,
- "new_cases_smoothed": 69.857,
- "total_deaths": 3337.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 57.516,
- "new_cases_per_million": 0.06,
- "new_cases_smoothed_per_million": 0.049,
- "total_deaths_per_million": 2.318,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.003,
- "stringency_index": 56.94
- },
- {
- "date": "2020-04-09",
- "total_cases": 82870.0,
- "new_cases": 86.0,
- "new_cases_smoothed": 67.857,
- "total_deaths": 3339.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 57.576,
- "new_cases_per_million": 0.06,
- "new_cases_smoothed_per_million": 0.047,
- "total_deaths_per_million": 2.32,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.002,
- "stringency_index": 56.94
- },
- {
- "date": "2020-04-10",
- "total_cases": 82925.0,
- "new_cases": 55.0,
- "new_cases_smoothed": 65.714,
- "total_deaths": 3340.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 57.614,
- "new_cases_per_million": 0.038,
- "new_cases_smoothed_per_million": 0.046,
- "total_deaths_per_million": 2.321,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 56.94
- },
- {
- "date": "2020-04-11",
- "total_cases": 83004.0,
- "new_cases": 79.0,
- "new_cases_smoothed": 68.143,
- "total_deaths": 3343.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 57.669,
- "new_cases_per_million": 0.055,
- "new_cases_smoothed_per_million": 0.047,
- "total_deaths_per_million": 2.323,
- "new_deaths_per_million": 0.002,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 56.94
- },
- {
- "date": "2020-04-12",
- "total_cases": 83097.0,
- "new_cases": 93.0,
- "new_cases_smoothed": 74.571,
- "total_deaths": 3343.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 57.733,
- "new_cases_per_million": 0.065,
- "new_cases_smoothed_per_million": 0.052,
- "total_deaths_per_million": 2.323,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 56.94
- },
- {
- "date": "2020-04-13",
- "total_cases": 83209.0,
- "new_cases": 112.0,
- "new_cases_smoothed": 81.0,
- "total_deaths": 3345.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 57.811,
- "new_cases_per_million": 0.078,
- "new_cases_smoothed_per_million": 0.056,
- "total_deaths_per_million": 2.324,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 56.94
- },
- {
- "date": "2020-04-14",
- "total_cases": 83303.0,
- "new_cases": 94.0,
- "new_cases_smoothed": 86.429,
- "total_deaths": 3345.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 57.876,
- "new_cases_per_million": 0.065,
- "new_cases_smoothed_per_million": 0.06,
- "total_deaths_per_million": 2.324,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 56.94
- },
- {
- "date": "2020-04-15",
- "total_cases": 83352.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 81.143,
- "total_deaths": 3346.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 57.911,
- "new_cases_per_million": 0.034,
- "new_cases_smoothed_per_million": 0.056,
- "total_deaths_per_million": 2.325,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 56.94
- },
- {
- "date": "2020-04-16",
- "total_cases": 83402.0,
- "new_cases": 50.0,
- "new_cases_smoothed": 76.0,
- "total_deaths": 3346.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 57.945,
- "new_cases_per_million": 0.035,
- "new_cases_smoothed_per_million": 0.053,
- "total_deaths_per_million": 2.325,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 56.94
- },
- {
- "date": "2020-04-17",
- "total_cases": 83754.0,
- "new_cases": 352.0,
- "new_cases_smoothed": 118.429,
- "total_deaths": 4636.0,
- "new_deaths": 1290.0,
- "new_deaths_smoothed": 185.143,
- "total_cases_per_million": 58.19,
- "new_cases_per_million": 0.245,
- "new_cases_smoothed_per_million": 0.082,
- "total_deaths_per_million": 3.221,
- "new_deaths_per_million": 0.896,
- "new_deaths_smoothed_per_million": 0.129,
- "stringency_index": 56.94
- },
- {
- "date": "2020-04-18",
- "total_cases": 83785.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 111.571,
- "total_deaths": 4636.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 184.714,
- "total_cases_per_million": 58.211,
- "new_cases_per_million": 0.022,
- "new_cases_smoothed_per_million": 0.078,
- "total_deaths_per_million": 3.221,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.128,
- "stringency_index": 56.94
- },
- {
- "date": "2020-04-19",
- "total_cases": 83803.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 100.857,
- "total_deaths": 4636.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 184.714,
- "total_cases_per_million": 58.224,
- "new_cases_per_million": 0.013,
- "new_cases_smoothed_per_million": 0.07,
- "total_deaths_per_million": 3.221,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.128,
- "stringency_index": 56.94
- },
- {
- "date": "2020-04-20",
- "total_cases": 83817.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 86.857,
- "total_deaths": 4636.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 184.429,
- "total_cases_per_million": 58.234,
- "new_cases_per_million": 0.01,
- "new_cases_smoothed_per_million": 0.06,
- "total_deaths_per_million": 3.221,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.128,
- "stringency_index": 56.94
- },
- {
- "date": "2020-04-21",
- "total_cases": 83849.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 78.0,
- "total_deaths": 4636.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 184.429,
- "total_cases_per_million": 58.256,
- "new_cases_per_million": 0.022,
- "new_cases_smoothed_per_million": 0.054,
- "total_deaths_per_million": 3.221,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.128,
- "stringency_index": 56.94
- },
- {
- "date": "2020-04-22",
- "total_cases": 83864.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 73.143,
- "total_deaths": 4636.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 184.286,
- "total_cases_per_million": 58.266,
- "new_cases_per_million": 0.01,
- "new_cases_smoothed_per_million": 0.051,
- "total_deaths_per_million": 3.221,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.128,
- "stringency_index": 56.94
- },
- {
- "date": "2020-04-23",
- "total_cases": 83876.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 67.714,
- "total_deaths": 4636.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 184.286,
- "total_cases_per_million": 58.275,
- "new_cases_per_million": 0.008,
- "new_cases_smoothed_per_million": 0.047,
- "total_deaths_per_million": 3.221,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.128,
- "stringency_index": 56.94
- },
- {
- "date": "2020-04-24",
- "total_cases": 83884.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 18.571,
- "total_deaths": 4636.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.28,
- "new_cases_per_million": 0.006,
- "new_cases_smoothed_per_million": 0.013,
- "total_deaths_per_million": 3.221,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.94
- },
- {
- "date": "2020-04-25",
- "total_cases": 83899.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 16.286,
- "total_deaths": 4636.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.291,
- "new_cases_per_million": 0.01,
- "new_cases_smoothed_per_million": 0.011,
- "total_deaths_per_million": 3.221,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.94
- },
- {
- "date": "2020-04-26",
- "total_cases": 83909.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 15.143,
- "total_deaths": 4636.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.298,
- "new_cases_per_million": 0.007,
- "new_cases_smoothed_per_million": 0.011,
- "total_deaths_per_million": 3.221,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.94
- },
- {
- "date": "2020-04-27",
- "total_cases": 83912.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 13.571,
- "total_deaths": 4637.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 58.3,
- "new_cases_per_million": 0.002,
- "new_cases_smoothed_per_million": 0.009,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.94
- },
- {
- "date": "2020-04-28",
- "total_cases": 83938.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 12.714,
- "total_deaths": 4637.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 58.318,
- "new_cases_per_million": 0.018,
- "new_cases_smoothed_per_million": 0.009,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.94
- },
- {
- "date": "2020-04-29",
- "total_cases": 83940.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 10.857,
- "total_deaths": 4637.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 58.319,
- "new_cases_per_million": 0.001,
- "new_cases_smoothed_per_million": 0.008,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.94
- },
- {
- "date": "2020-04-30",
- "total_cases": 83944.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 9.714,
- "total_deaths": 4637.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 58.322,
- "new_cases_per_million": 0.003,
- "new_cases_smoothed_per_million": 0.007,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.94
- },
- {
- "date": "2020-05-01",
- "total_cases": 83956.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 10.286,
- "total_deaths": 4637.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 58.33,
- "new_cases_per_million": 0.008,
- "new_cases_smoothed_per_million": 0.007,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.94
- },
- {
- "date": "2020-05-02",
- "total_cases": 83959.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 8.571,
- "total_deaths": 4637.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 58.332,
- "new_cases_per_million": 0.002,
- "new_cases_smoothed_per_million": 0.006,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.94
- },
- {
- "date": "2020-05-03",
- "total_cases": 83961.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 7.429,
- "total_deaths": 4637.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 58.334,
- "new_cases_per_million": 0.001,
- "new_cases_smoothed_per_million": 0.005,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.94
- },
- {
- "date": "2020-05-04",
- "total_cases": 83964.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 7.429,
- "total_deaths": 4637.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.336,
- "new_cases_per_million": 0.002,
- "new_cases_smoothed_per_million": 0.005,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.94
- },
- {
- "date": "2020-05-05",
- "total_cases": 83966.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 4.0,
- "total_deaths": 4637.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.337,
- "new_cases_per_million": 0.001,
- "new_cases_smoothed_per_million": 0.003,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.94
- },
- {
- "date": "2020-05-06",
- "total_cases": 83968.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 4.0,
- "total_deaths": 4637.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.339,
- "new_cases_per_million": 0.001,
- "new_cases_smoothed_per_million": 0.003,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.94
- },
- {
- "date": "2020-05-07",
- "total_cases": 83970.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 4637.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.34,
- "new_cases_per_million": 0.001,
- "new_cases_smoothed_per_million": 0.003,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.94
- },
- {
- "date": "2020-05-08",
- "total_cases": 83976.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 4637.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.344,
- "new_cases_per_million": 0.004,
- "new_cases_smoothed_per_million": 0.002,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.94
- },
- {
- "date": "2020-05-09",
- "total_cases": 83976.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 4637.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.344,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.002,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 56.94
- },
- {
- "date": "2020-05-10",
- "total_cases": 83991.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 4.286,
- "total_deaths": 4637.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.354,
- "new_cases_per_million": 0.01,
- "new_cases_smoothed_per_million": 0.003,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-05-11",
- "total_cases": 84010.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 6.571,
- "total_deaths": 4637.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.368,
- "new_cases_per_million": 0.013,
- "new_cases_smoothed_per_million": 0.005,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-05-12",
- "total_cases": 84011.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 6.429,
- "total_deaths": 4637.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.368,
- "new_cases_per_million": 0.001,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-05-13",
- "total_cases": 84018.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 7.143,
- "total_deaths": 4637.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.373,
- "new_cases_per_million": 0.005,
- "new_cases_smoothed_per_million": 0.005,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-05-14",
- "total_cases": 84024.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 7.714,
- "total_deaths": 4637.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.377,
- "new_cases_per_million": 0.004,
- "new_cases_smoothed_per_million": 0.005,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-05-15",
- "total_cases": 84029.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 7.571,
- "total_deaths": 4637.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.381,
- "new_cases_per_million": 0.003,
- "new_cases_smoothed_per_million": 0.005,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-05-16",
- "total_cases": 84038.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 8.857,
- "total_deaths": 4637.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.387,
- "new_cases_per_million": 0.006,
- "new_cases_smoothed_per_million": 0.006,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-05-17",
- "total_cases": 84044.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 7.571,
- "total_deaths": 4638.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 58.391,
- "new_cases_per_million": 0.004,
- "new_cases_smoothed_per_million": 0.005,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-05-18",
- "total_cases": 84054.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 6.286,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 58.398,
- "new_cases_per_million": 0.007,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-05-19",
- "total_cases": 84063.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 7.429,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 58.405,
- "new_cases_per_million": 0.006,
- "new_cases_smoothed_per_million": 0.005,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-05-20",
- "total_cases": 84065.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 6.714,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 58.406,
- "new_cases_per_million": 0.001,
- "new_cases_smoothed_per_million": 0.005,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-05-21",
- "total_cases": 84067.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 6.143,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 58.407,
- "new_cases_per_million": 0.001,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-05-22",
- "total_cases": 84079.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 7.143,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 58.416,
- "new_cases_per_million": 0.008,
- "new_cases_smoothed_per_million": 0.005,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-05-23",
- "total_cases": 84081.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 6.143,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 58.417,
- "new_cases_per_million": 0.001,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-05-24",
- "total_cases": 84084.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 5.714,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.419,
- "new_cases_per_million": 0.002,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-05-25",
- "total_cases": 84095.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 5.857,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.427,
- "new_cases_per_million": 0.008,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-05-26",
- "total_cases": 84102.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.432,
- "new_cases_per_million": 0.005,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-05-27",
- "total_cases": 84103.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.432,
- "new_cases_per_million": 0.001,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-05-28",
- "total_cases": 84106.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.434,
- "new_cases_per_million": 0.002,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-05-29",
- "total_cases": 84106.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.857,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.434,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.003,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-05-30",
- "total_cases": 84123.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 6.0,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.446,
- "new_cases_per_million": 0.012,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-05-31",
- "total_cases": 84128.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 6.286,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.45,
- "new_cases_per_million": 0.003,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-06-01",
- "total_cases": 84147.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 7.429,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.463,
- "new_cases_per_million": 0.013,
- "new_cases_smoothed_per_million": 0.005,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-06-02",
- "total_cases": 84154.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 7.429,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.468,
- "new_cases_per_million": 0.005,
- "new_cases_smoothed_per_million": 0.005,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-06-03",
- "total_cases": 84159.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 8.0,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.471,
- "new_cases_per_million": 0.003,
- "new_cases_smoothed_per_million": 0.006,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-04",
- "total_cases": 84160.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 7.714,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.472,
- "new_cases_per_million": 0.001,
- "new_cases_smoothed_per_million": 0.005,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-05",
- "total_cases": 84171.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 9.286,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.48,
- "new_cases_per_million": 0.008,
- "new_cases_smoothed_per_million": 0.006,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-06",
- "total_cases": 84177.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 7.714,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.484,
- "new_cases_per_million": 0.004,
- "new_cases_smoothed_per_million": 0.005,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-07",
- "total_cases": 84186.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 8.286,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.49,
- "new_cases_per_million": 0.006,
- "new_cases_smoothed_per_million": 0.006,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-08",
- "total_cases": 84191.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 6.286,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.493,
- "new_cases_per_million": 0.003,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-09",
- "total_cases": 84194.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 5.714,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.496,
- "new_cases_per_million": 0.002,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-10",
- "total_cases": 84198.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.498,
- "new_cases_per_million": 0.003,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-11",
- "total_cases": 84209.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 7.0,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.506,
- "new_cases_per_million": 0.008,
- "new_cases_smoothed_per_million": 0.005,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-12",
- "total_cases": 84216.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 6.429,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.511,
- "new_cases_per_million": 0.005,
- "new_cases_smoothed_per_million": 0.004,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-13",
- "total_cases": 84228.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 7.286,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.519,
- "new_cases_per_million": 0.008,
- "new_cases_smoothed_per_million": 0.005,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-14",
- "total_cases": 84288.0,
- "new_cases": 60.0,
- "new_cases_smoothed": 14.571,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.561,
- "new_cases_per_million": 0.042,
- "new_cases_smoothed_per_million": 0.01,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-15",
- "total_cases": 84335.0,
- "new_cases": 47.0,
- "new_cases_smoothed": 20.571,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.593,
- "new_cases_per_million": 0.033,
- "new_cases_smoothed_per_million": 0.014,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 78.24
- },
- {
- "date": "2020-06-16",
- "total_cases": 84378.0,
- "new_cases": 43.0,
- "new_cases_smoothed": 26.286,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.623,
- "new_cases_per_million": 0.03,
- "new_cases_smoothed_per_million": 0.018,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-06-17",
- "total_cases": 84422.0,
- "new_cases": 44.0,
- "new_cases_smoothed": 32.0,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.654,
- "new_cases_per_million": 0.031,
- "new_cases_smoothed_per_million": 0.022,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-06-18",
- "total_cases": 84458.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 35.571,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.679,
- "new_cases_per_million": 0.025,
- "new_cases_smoothed_per_million": 0.025,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-06-19",
- "total_cases": 84494.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 39.714,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.704,
- "new_cases_per_million": 0.025,
- "new_cases_smoothed_per_million": 0.028,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-06-20",
- "total_cases": 84524.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 42.286,
- "total_deaths": 4638.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.725,
- "new_cases_per_million": 0.021,
- "new_cases_smoothed_per_million": 0.029,
- "total_deaths_per_million": 3.222,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-06-21",
- "total_cases": 84553.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 37.857,
- "total_deaths": 4639.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 58.745,
- "new_cases_per_million": 0.02,
- "new_cases_smoothed_per_million": 0.026,
- "total_deaths_per_million": 3.223,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-06-22",
- "total_cases": 84572.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 33.857,
- "total_deaths": 4639.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 58.758,
- "new_cases_per_million": 0.013,
- "new_cases_smoothed_per_million": 0.024,
- "total_deaths_per_million": 3.223,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-06-23",
- "total_cases": 84624.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 35.143,
- "total_deaths": 4639.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 58.794,
- "new_cases_per_million": 0.036,
- "new_cases_smoothed_per_million": 0.024,
- "total_deaths_per_million": 3.223,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-06-24",
- "total_cases": 84653.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 33.0,
- "total_deaths": 4640.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 58.814,
- "new_cases_per_million": 0.02,
- "new_cases_smoothed_per_million": 0.023,
- "total_deaths_per_million": 3.224,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-06-25",
- "total_cases": 84673.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 30.714,
- "total_deaths": 4640.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 58.828,
- "new_cases_per_million": 0.014,
- "new_cases_smoothed_per_million": 0.021,
- "total_deaths_per_million": 3.224,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-06-26",
- "total_cases": 84701.0,
- "new_cases": 28.0,
- "new_cases_smoothed": 29.571,
- "total_deaths": 4641.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 58.848,
- "new_cases_per_million": 0.019,
- "new_cases_smoothed_per_million": 0.021,
- "total_deaths_per_million": 3.224,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-06-27",
- "total_cases": 84725.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 28.714,
- "total_deaths": 4641.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 58.864,
- "new_cases_per_million": 0.017,
- "new_cases_smoothed_per_million": 0.02,
- "total_deaths_per_million": 3.224,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-06-28",
- "total_cases": 84743.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 27.143,
- "total_deaths": 4641.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 58.877,
- "new_cases_per_million": 0.013,
- "new_cases_smoothed_per_million": 0.019,
- "total_deaths_per_million": 3.224,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-06-29",
- "total_cases": 84757.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 26.429,
- "total_deaths": 4641.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 58.887,
- "new_cases_per_million": 0.01,
- "new_cases_smoothed_per_million": 0.018,
- "total_deaths_per_million": 3.224,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-06-30",
- "total_cases": 84780.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 22.286,
- "total_deaths": 4641.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 58.903,
- "new_cases_per_million": 0.016,
- "new_cases_smoothed_per_million": 0.015,
- "total_deaths_per_million": 3.224,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-07-01",
- "total_cases": 84785.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 18.857,
- "total_deaths": 4641.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 58.906,
- "new_cases_per_million": 0.003,
- "new_cases_smoothed_per_million": 0.013,
- "total_deaths_per_million": 3.224,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-07-02",
- "total_cases": 84816.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 20.429,
- "total_deaths": 4641.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 58.928,
- "new_cases_per_million": 0.022,
- "new_cases_smoothed_per_million": 0.014,
- "total_deaths_per_million": 3.224,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-07-03",
- "total_cases": 84830.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 18.429,
- "total_deaths": 4641.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.937,
- "new_cases_per_million": 0.01,
- "new_cases_smoothed_per_million": 0.013,
- "total_deaths_per_million": 3.224,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-07-04",
- "total_cases": 84839.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 16.286,
- "total_deaths": 4641.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.944,
- "new_cases_per_million": 0.006,
- "new_cases_smoothed_per_million": 0.011,
- "total_deaths_per_million": 3.224,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-07-05",
- "total_cases": 84857.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 16.286,
- "total_deaths": 4641.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.956,
- "new_cases_per_million": 0.013,
- "new_cases_smoothed_per_million": 0.011,
- "total_deaths_per_million": 3.224,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-07-06",
- "total_cases": 84871.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 16.286,
- "total_deaths": 4641.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.966,
- "new_cases_per_million": 0.01,
- "new_cases_smoothed_per_million": 0.011,
- "total_deaths_per_million": 3.224,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-07-07",
- "total_cases": 84896.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 16.571,
- "total_deaths": 4641.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.983,
- "new_cases_per_million": 0.017,
- "new_cases_smoothed_per_million": 0.012,
- "total_deaths_per_million": 3.224,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-07-08",
- "total_cases": 84917.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 18.857,
- "total_deaths": 4641.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 58.998,
- "new_cases_per_million": 0.015,
- "new_cases_smoothed_per_million": 0.013,
- "total_deaths_per_million": 3.224,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-07-09",
- "total_cases": 84950.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 19.143,
- "total_deaths": 4641.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 59.021,
- "new_cases_per_million": 0.023,
- "new_cases_smoothed_per_million": 0.013,
- "total_deaths_per_million": 3.224,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-07-10",
- "total_cases": 84996.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 23.714,
- "total_deaths": 4641.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 59.053,
- "new_cases_per_million": 0.032,
- "new_cases_smoothed_per_million": 0.016,
- "total_deaths_per_million": 3.224,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-07-11",
- "total_cases": 85036.0,
- "new_cases": 40.0,
- "new_cases_smoothed": 28.143,
- "total_deaths": 4641.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 59.081,
- "new_cases_per_million": 0.028,
- "new_cases_smoothed_per_million": 0.02,
- "total_deaths_per_million": 3.224,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-07-12",
- "total_cases": 85071.0,
- "new_cases": 35.0,
- "new_cases_smoothed": 30.571,
- "total_deaths": 4641.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 59.105,
- "new_cases_per_million": 0.024,
- "new_cases_smoothed_per_million": 0.021,
- "total_deaths_per_million": 3.224,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-07-13",
- "total_cases": 85117.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 35.143,
- "total_deaths": 4641.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 59.137,
- "new_cases_per_million": 0.032,
- "new_cases_smoothed_per_million": 0.024,
- "total_deaths_per_million": 3.224,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-07-14",
- "total_cases": 85172.0,
- "new_cases": 55.0,
- "new_cases_smoothed": 39.429,
- "total_deaths": 4642.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 59.175,
- "new_cases_per_million": 0.038,
- "new_cases_smoothed_per_million": 0.027,
- "total_deaths_per_million": 3.225,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-07-15",
- "total_cases": 85226.0,
- "new_cases": 54.0,
- "new_cases_smoothed": 44.143,
- "total_deaths": 4642.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 59.213,
- "new_cases_per_million": 0.038,
- "new_cases_smoothed_per_million": 0.031,
- "total_deaths_per_million": 3.225,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-07-16",
- "total_cases": 85246.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 42.286,
- "total_deaths": 4644.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 59.226,
- "new_cases_per_million": 0.014,
- "new_cases_smoothed_per_million": 0.029,
- "total_deaths_per_million": 3.227,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-07-17",
- "total_cases": 85323.0,
- "new_cases": 77.0,
- "new_cases_smoothed": 46.714,
- "total_deaths": 4644.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 59.28,
- "new_cases_per_million": 0.053,
- "new_cases_smoothed_per_million": 0.032,
- "total_deaths_per_million": 3.227,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-07-18",
- "total_cases": 85403.0,
- "new_cases": 80.0,
- "new_cases_smoothed": 52.429,
- "total_deaths": 4645.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 59.336,
- "new_cases_per_million": 0.056,
- "new_cases_smoothed_per_million": 0.036,
- "total_deaths_per_million": 3.227,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-07-19",
- "total_cases": 85483.0,
- "new_cases": 80.0,
- "new_cases_smoothed": 58.857,
- "total_deaths": 4646.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 59.391,
- "new_cases_per_million": 0.056,
- "new_cases_smoothed_per_million": 0.041,
- "total_deaths_per_million": 3.228,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-07-20",
- "total_cases": 85613.0,
- "new_cases": 130.0,
- "new_cases_smoothed": 70.857,
- "total_deaths": 4646.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 59.481,
- "new_cases_per_million": 0.09,
- "new_cases_smoothed_per_million": 0.049,
- "total_deaths_per_million": 3.228,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-07-21",
- "total_cases": 85697.0,
- "new_cases": 84.0,
- "new_cases_smoothed": 75.0,
- "total_deaths": 4646.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 59.54,
- "new_cases_per_million": 0.058,
- "new_cases_smoothed_per_million": 0.052,
- "total_deaths_per_million": 3.228,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-07-22",
- "total_cases": 85771.0,
- "new_cases": 74.0,
- "new_cases_smoothed": 77.857,
- "total_deaths": 4648.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 59.591,
- "new_cases_per_million": 0.051,
- "new_cases_smoothed_per_million": 0.054,
- "total_deaths_per_million": 3.229,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-07-23",
- "total_cases": 85906.0,
- "new_cases": 135.0,
- "new_cases_smoothed": 94.286,
- "total_deaths": 4648.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 59.685,
- "new_cases_per_million": 0.094,
- "new_cases_smoothed_per_million": 0.066,
- "total_deaths_per_million": 3.229,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-07-24",
- "total_cases": 86045.0,
- "new_cases": 139.0,
- "new_cases_smoothed": 103.143,
- "total_deaths": 4649.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 59.782,
- "new_cases_per_million": 0.097,
- "new_cases_smoothed_per_million": 0.072,
- "total_deaths_per_million": 3.23,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-07-25",
- "total_cases": 86202.0,
- "new_cases": 157.0,
- "new_cases_smoothed": 114.143,
- "total_deaths": 4650.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 59.891,
- "new_cases_per_million": 0.109,
- "new_cases_smoothed_per_million": 0.079,
- "total_deaths_per_million": 3.231,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-07-26",
- "total_cases": 86381.0,
- "new_cases": 179.0,
- "new_cases_smoothed": 128.286,
- "total_deaths": 4652.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 60.015,
- "new_cases_per_million": 0.124,
- "new_cases_smoothed_per_million": 0.089,
- "total_deaths_per_million": 3.232,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-07-27",
- "total_cases": 86570.0,
- "new_cases": 189.0,
- "new_cases_smoothed": 136.714,
- "total_deaths": 4652.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 60.146,
- "new_cases_per_million": 0.131,
- "new_cases_smoothed_per_million": 0.095,
- "total_deaths_per_million": 3.232,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-07-28",
- "total_cases": 86783.0,
- "new_cases": 213.0,
- "new_cases_smoothed": 155.143,
- "total_deaths": 4656.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 60.294,
- "new_cases_per_million": 0.148,
- "new_cases_smoothed_per_million": 0.108,
- "total_deaths_per_million": 3.235,
- "new_deaths_per_million": 0.003,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-07-29",
- "total_cases": 86990.0,
- "new_cases": 207.0,
- "new_cases_smoothed": 174.143,
- "total_deaths": 4657.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 60.438,
- "new_cases_per_million": 0.144,
- "new_cases_smoothed_per_million": 0.121,
- "total_deaths_per_million": 3.236,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-07-30",
- "total_cases": 87213.0,
- "new_cases": 223.0,
- "new_cases_smoothed": 186.714,
- "total_deaths": 4659.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 60.593,
- "new_cases_per_million": 0.155,
- "new_cases_smoothed_per_million": 0.13,
- "total_deaths_per_million": 3.237,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-07-31",
- "total_cases": 87489.0,
- "new_cases": 276.0,
- "new_cases_smoothed": 206.286,
- "total_deaths": 4659.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 60.785,
- "new_cases_per_million": 0.192,
- "new_cases_smoothed_per_million": 0.143,
- "total_deaths_per_million": 3.237,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-08-01",
- "total_cases": 87655.0,
- "new_cases": 166.0,
- "new_cases_smoothed": 207.571,
- "total_deaths": 4661.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 60.9,
- "new_cases_per_million": 0.115,
- "new_cases_smoothed_per_million": 0.144,
- "total_deaths_per_million": 3.238,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-08-02",
- "total_cases": 87827.0,
- "new_cases": 172.0,
- "new_cases_smoothed": 206.571,
- "total_deaths": 4667.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 61.02,
- "new_cases_per_million": 0.12,
- "new_cases_smoothed_per_million": 0.144,
- "total_deaths_per_million": 3.242,
- "new_deaths_per_million": 0.004,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-08-03",
- "total_cases": 87985.0,
- "new_cases": 158.0,
- "new_cases_smoothed": 202.143,
- "total_deaths": 4669.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 61.129,
- "new_cases_per_million": 0.11,
- "new_cases_smoothed_per_million": 0.14,
- "total_deaths_per_million": 3.244,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.002,
- "stringency_index": 81.94
- },
- {
- "date": "2020-08-04",
- "total_cases": 88099.0,
- "new_cases": 114.0,
- "new_cases_smoothed": 188.0,
- "total_deaths": 4672.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 61.209,
- "new_cases_per_million": 0.079,
- "new_cases_smoothed_per_million": 0.131,
- "total_deaths_per_million": 3.246,
- "new_deaths_per_million": 0.002,
- "new_deaths_smoothed_per_million": 0.002,
- "stringency_index": 81.94
- },
- {
- "date": "2020-08-05",
- "total_cases": 88206.0,
- "new_cases": 107.0,
- "new_cases_smoothed": 173.714,
- "total_deaths": 4676.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 61.283,
- "new_cases_per_million": 0.074,
- "new_cases_smoothed_per_million": 0.121,
- "total_deaths_per_million": 3.249,
- "new_deaths_per_million": 0.003,
- "new_deaths_smoothed_per_million": 0.002,
- "stringency_index": 81.94
- },
- {
- "date": "2020-08-06",
- "total_cases": 88328.0,
- "new_cases": 122.0,
- "new_cases_smoothed": 159.286,
- "total_deaths": 4677.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 61.368,
- "new_cases_per_million": 0.085,
- "new_cases_smoothed_per_million": 0.111,
- "total_deaths_per_million": 3.249,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.002,
- "stringency_index": 81.94
- },
- {
- "date": "2020-08-07",
- "total_cases": 88460.0,
- "new_cases": 132.0,
- "new_cases_smoothed": 138.714,
- "total_deaths": 4680.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 61.459,
- "new_cases_per_million": 0.092,
- "new_cases_smoothed_per_million": 0.096,
- "total_deaths_per_million": 3.252,
- "new_deaths_per_million": 0.002,
- "new_deaths_smoothed_per_million": 0.002,
- "stringency_index": 81.94
- },
- {
- "date": "2020-08-08",
- "total_cases": 88580.0,
- "new_cases": 120.0,
- "new_cases_smoothed": 132.143,
- "total_deaths": 4681.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 61.543,
- "new_cases_per_million": 0.083,
- "new_cases_smoothed_per_million": 0.092,
- "total_deaths_per_million": 3.252,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.002,
- "stringency_index": 81.94
- },
- {
- "date": "2020-08-09",
- "total_cases": 88672.0,
- "new_cases": 92.0,
- "new_cases_smoothed": 120.714,
- "total_deaths": 4681.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 61.607,
- "new_cases_per_million": 0.064,
- "new_cases_smoothed_per_million": 0.084,
- "total_deaths_per_million": 3.252,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-08-10",
- "total_cases": 88793.0,
- "new_cases": 121.0,
- "new_cases_smoothed": 115.429,
- "total_deaths": 4686.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 61.691,
- "new_cases_per_million": 0.084,
- "new_cases_smoothed_per_million": 0.08,
- "total_deaths_per_million": 3.256,
- "new_deaths_per_million": 0.003,
- "new_deaths_smoothed_per_million": 0.002,
- "stringency_index": 81.94
- },
- {
- "date": "2020-08-11",
- "total_cases": 88906.0,
- "new_cases": 113.0,
- "new_cases_smoothed": 115.286,
- "total_deaths": 4690.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 61.769,
- "new_cases_per_million": 0.079,
- "new_cases_smoothed_per_million": 0.08,
- "total_deaths_per_million": 3.258,
- "new_deaths_per_million": 0.003,
- "new_deaths_smoothed_per_million": 0.002,
- "stringency_index": 81.94
- },
- {
- "date": "2020-08-12",
- "total_cases": 88964.0,
- "new_cases": 58.0,
- "new_cases_smoothed": 108.286,
- "total_deaths": 4693.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 61.81,
- "new_cases_per_million": 0.04,
- "new_cases_smoothed_per_million": 0.075,
- "total_deaths_per_million": 3.261,
- "new_deaths_per_million": 0.002,
- "new_deaths_smoothed_per_million": 0.002,
- "stringency_index": 81.94
- },
- {
- "date": "2020-08-13",
- "total_cases": 89045.0,
- "new_cases": 81.0,
- "new_cases_smoothed": 102.429,
- "total_deaths": 4697.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 61.866,
- "new_cases_per_million": 0.056,
- "new_cases_smoothed_per_million": 0.071,
- "total_deaths_per_million": 3.263,
- "new_deaths_per_million": 0.003,
- "new_deaths_smoothed_per_million": 0.002,
- "stringency_index": 81.94
- },
- {
- "date": "2020-08-14",
- "total_cases": 89144.0,
- "new_cases": 99.0,
- "new_cases_smoothed": 97.714,
- "total_deaths": 4700.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 61.935,
- "new_cases_per_million": 0.069,
- "new_cases_smoothed_per_million": 0.068,
- "total_deaths_per_million": 3.265,
- "new_deaths_per_million": 0.002,
- "new_deaths_smoothed_per_million": 0.002,
- "stringency_index": 81.94
- },
- {
- "date": "2020-08-15",
- "total_cases": 89214.0,
- "new_cases": 70.0,
- "new_cases_smoothed": 90.571,
- "total_deaths": 4701.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 61.983,
- "new_cases_per_million": 0.049,
- "new_cases_smoothed_per_million": 0.063,
- "total_deaths_per_million": 3.266,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.002,
- "stringency_index": 81.94
- },
- {
- "date": "2020-08-16",
- "total_cases": 89279.0,
- "new_cases": 65.0,
- "new_cases_smoothed": 86.714,
- "total_deaths": 4703.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 62.028,
- "new_cases_per_million": 0.045,
- "new_cases_smoothed_per_million": 0.06,
- "total_deaths_per_million": 3.268,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.002,
- "stringency_index": 81.94
- },
- {
- "date": "2020-08-17",
- "total_cases": 89375.0,
- "new_cases": 96.0,
- "new_cases_smoothed": 83.143,
- "total_deaths": 4703.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 62.095,
- "new_cases_per_million": 0.067,
- "new_cases_smoothed_per_million": 0.058,
- "total_deaths_per_million": 3.268,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.002,
- "stringency_index": 81.94
- },
- {
- "date": "2020-08-18",
- "total_cases": 89441.0,
- "new_cases": 66.0,
- "new_cases_smoothed": 76.429,
- "total_deaths": 4703.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 62.141,
- "new_cases_per_million": 0.046,
- "new_cases_smoothed_per_million": 0.053,
- "total_deaths_per_million": 3.268,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-08-19",
- "total_cases": 89494.0,
- "new_cases": 53.0,
- "new_cases_smoothed": 75.714,
- "total_deaths": 4705.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 62.178,
- "new_cases_per_million": 0.037,
- "new_cases_smoothed_per_million": 0.053,
- "total_deaths_per_million": 3.269,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-08-20",
- "total_cases": 89527.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 68.857,
- "total_deaths": 4706.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 62.201,
- "new_cases_per_million": 0.023,
- "new_cases_smoothed_per_million": 0.048,
- "total_deaths_per_million": 3.27,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-08-21",
- "total_cases": 89567.0,
- "new_cases": 40.0,
- "new_cases_smoothed": 60.429,
- "total_deaths": 4709.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 62.229,
- "new_cases_per_million": 0.028,
- "new_cases_smoothed_per_million": 0.042,
- "total_deaths_per_million": 3.272,
- "new_deaths_per_million": 0.002,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-08-22",
- "total_cases": 89616.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 57.429,
- "total_deaths": 4711.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 62.263,
- "new_cases_per_million": 0.034,
- "new_cases_smoothed_per_million": 0.04,
- "total_deaths_per_million": 3.273,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-08-23",
- "total_cases": 89654.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 53.571,
- "total_deaths": 4711.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 62.289,
- "new_cases_per_million": 0.026,
- "new_cases_smoothed_per_million": 0.037,
- "total_deaths_per_million": 3.273,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-08-24",
- "total_cases": 89695.0,
- "new_cases": 41.0,
- "new_cases_smoothed": 45.714,
- "total_deaths": 4711.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 62.317,
- "new_cases_per_million": 0.028,
- "new_cases_smoothed_per_million": 0.032,
- "total_deaths_per_million": 3.273,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-08-25",
- "total_cases": 89718.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 39.571,
- "total_deaths": 4711.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 62.333,
- "new_cases_per_million": 0.016,
- "new_cases_smoothed_per_million": 0.027,
- "total_deaths_per_million": 3.273,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-08-26",
- "total_cases": 89752.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 36.857,
- "total_deaths": 4712.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 62.357,
- "new_cases_per_million": 0.024,
- "new_cases_smoothed_per_million": 0.026,
- "total_deaths_per_million": 3.274,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-08-27",
- "total_cases": 89784.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 36.714,
- "total_deaths": 4713.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 62.379,
- "new_cases_per_million": 0.022,
- "new_cases_smoothed_per_million": 0.026,
- "total_deaths_per_million": 3.274,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-08-28",
- "total_cases": 89814.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 35.286,
- "total_deaths": 4715.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 62.4,
- "new_cases_per_million": 0.021,
- "new_cases_smoothed_per_million": 0.025,
- "total_deaths_per_million": 3.276,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-08-29",
- "total_cases": 89836.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 31.429,
- "total_deaths": 4718.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 62.415,
- "new_cases_per_million": 0.015,
- "new_cases_smoothed_per_million": 0.022,
- "total_deaths_per_million": 3.278,
- "new_deaths_per_million": 0.002,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-08-30",
- "total_cases": 89863.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 29.857,
- "total_deaths": 4721.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 62.434,
- "new_cases_per_million": 0.019,
- "new_cases_smoothed_per_million": 0.021,
- "total_deaths_per_million": 3.28,
- "new_deaths_per_million": 0.002,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-08-31",
- "total_cases": 89895.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 28.571,
- "total_deaths": 4722.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 62.456,
- "new_cases_per_million": 0.022,
- "new_cases_smoothed_per_million": 0.02,
- "total_deaths_per_million": 3.281,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-09-01",
- "total_cases": 89914.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 28.0,
- "total_deaths": 4723.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 62.47,
- "new_cases_per_million": 0.013,
- "new_cases_smoothed_per_million": 0.019,
- "total_deaths_per_million": 3.281,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-09-02",
- "total_cases": 89934.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 26.0,
- "total_deaths": 4724.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 62.484,
- "new_cases_per_million": 0.014,
- "new_cases_smoothed_per_million": 0.018,
- "total_deaths_per_million": 3.282,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-09-03",
- "total_cases": 89953.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 24.143,
- "total_deaths": 4727.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 62.497,
- "new_cases_per_million": 0.013,
- "new_cases_smoothed_per_million": 0.017,
- "total_deaths_per_million": 3.284,
- "new_deaths_per_million": 0.002,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-09-04",
- "total_cases": 89986.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 24.571,
- "total_deaths": 4728.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 62.52,
- "new_cases_per_million": 0.023,
- "new_cases_smoothed_per_million": 0.017,
- "total_deaths_per_million": 3.285,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-09-05",
- "total_cases": 90008.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 24.571,
- "total_deaths": 4728.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 62.535,
- "new_cases_per_million": 0.015,
- "new_cases_smoothed_per_million": 0.017,
- "total_deaths_per_million": 3.285,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-09-06",
- "total_cases": 90025.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 23.143,
- "total_deaths": 4728.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 62.547,
- "new_cases_per_million": 0.012,
- "new_cases_smoothed_per_million": 0.016,
- "total_deaths_per_million": 3.285,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-09-07",
- "total_cases": 90058.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 23.286,
- "total_deaths": 4730.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 62.57,
- "new_cases_per_million": 0.023,
- "new_cases_smoothed_per_million": 0.016,
- "total_deaths_per_million": 3.286,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-09-08",
- "total_cases": 90079.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 23.571,
- "total_deaths": 4732.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 62.584,
- "new_cases_per_million": 0.015,
- "new_cases_smoothed_per_million": 0.016,
- "total_deaths_per_million": 3.288,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-09-09",
- "total_cases": 90087.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 21.857,
- "total_deaths": 4733.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 62.59,
- "new_cases_per_million": 0.006,
- "new_cases_smoothed_per_million": 0.015,
- "total_deaths_per_million": 3.288,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-09-10",
- "total_cases": 90100.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 21.0,
- "total_deaths": 4733.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 62.599,
- "new_cases_per_million": 0.009,
- "new_cases_smoothed_per_million": 0.015,
- "total_deaths_per_million": 3.288,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-09-11",
- "total_cases": 90127.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 20.143,
- "total_deaths": 4733.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 62.618,
- "new_cases_per_million": 0.019,
- "new_cases_smoothed_per_million": 0.014,
- "total_deaths_per_million": 3.288,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-09-12",
- "total_cases": 90145.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 19.571,
- "total_deaths": 4733.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 62.63,
- "new_cases_per_million": 0.013,
- "new_cases_smoothed_per_million": 0.014,
- "total_deaths_per_million": 3.288,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-09-13",
- "total_cases": 90168.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 20.429,
- "total_deaths": 4734.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 62.646,
- "new_cases_per_million": 0.016,
- "new_cases_smoothed_per_million": 0.014,
- "total_deaths_per_million": 3.289,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.001,
- "stringency_index": 81.94
- },
- {
- "date": "2020-09-14",
- "total_cases": 90197.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 19.857,
- "total_deaths": 4734.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 62.666,
- "new_cases_per_million": 0.02,
- "new_cases_smoothed_per_million": 0.014,
- "total_deaths_per_million": 3.289,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-09-15",
- "total_cases": 90219.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 20.0,
- "total_deaths": 4735.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 62.682,
- "new_cases_per_million": 0.015,
- "new_cases_smoothed_per_million": 0.014,
- "total_deaths_per_million": 3.29,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-09-16",
- "total_cases": 90243.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 22.286,
- "total_deaths": 4736.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 62.698,
- "new_cases_per_million": 0.017,
- "new_cases_smoothed_per_million": 0.015,
- "total_deaths_per_million": 3.29,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-09-17",
- "total_cases": 90250.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 21.429,
- "total_deaths": 4736.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 62.703,
- "new_cases_per_million": 0.005,
- "new_cases_smoothed_per_million": 0.015,
- "total_deaths_per_million": 3.29,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 81.94
- },
- {
- "date": "2020-09-18",
- "total_cases": 90294.0,
- "new_cases": 44.0,
- "new_cases_smoothed": 23.857,
- "total_deaths": 4736.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 62.734,
- "new_cases_per_million": 0.031,
- "new_cases_smoothed_per_million": 0.017,
- "total_deaths_per_million": 3.29,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-19",
- "total_cases": 90308.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 23.286,
- "total_deaths": 4737.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 62.743,
- "new_cases_per_million": 0.01,
- "new_cases_smoothed_per_million": 0.016,
- "total_deaths_per_million": 3.291,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-20",
- "total_cases": 90333.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 23.571,
- "total_deaths": 4737.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 62.761,
- "new_cases_per_million": 0.017,
- "new_cases_smoothed_per_million": 0.016,
- "total_deaths_per_million": 3.291,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-21",
- "total_cases": 90369.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 24.571,
- "total_deaths": 4737.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 62.786,
- "new_cases_per_million": 0.025,
- "new_cases_smoothed_per_million": 0.017,
- "total_deaths_per_million": 3.291,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-22",
- "total_cases": 90381.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 23.143,
- "total_deaths": 4737.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 62.794,
- "new_cases_per_million": 0.008,
- "new_cases_smoothed_per_million": 0.016,
- "total_deaths_per_million": 3.291,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-23",
- "total_cases": 90399.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 22.286,
- "total_deaths": 4737.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 62.807,
- "new_cases_per_million": 0.013,
- "new_cases_smoothed_per_million": 0.015,
- "total_deaths_per_million": 3.291,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-24",
- "total_cases": 90409.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 22.714,
- "total_deaths": 4738.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 62.814,
- "new_cases_per_million": 0.007,
- "new_cases_smoothed_per_million": 0.016,
- "total_deaths_per_million": 3.292,
- "new_deaths_per_million": 0.001,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-25",
- "total_cases": 90424.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 18.571,
- "total_deaths": 4738.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 62.824,
- "new_cases_per_million": 0.01,
- "new_cases_smoothed_per_million": 0.013,
- "total_deaths_per_million": 3.292,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- }
- ]
- },
- "CIV": {
- "continent": "Africa",
- "location": "Cote d'Ivoire",
- "population": 26378275.0,
- "population_density": 76.399,
- "median_age": 18.7,
- "aged_65_older": 2.933,
- "aged_70_older": 1.582,
- "gdp_per_capita": 3601.006,
- "extreme_poverty": 28.2,
- "cardiovasc_death_rate": 303.74,
- "diabetes_prevalence": 2.42,
- "handwashing_facilities": 19.351,
- "life_expectancy": 57.78,
- "human_development_index": 0.492,
- "data": [
- {
- "date": "2020-03-12",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.038,
- "new_cases_per_million": 0.038,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-15",
- "total_cases": 4.0,
- "new_cases": 3.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.152,
- "new_cases_per_million": 0.114,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-16",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.152,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-17",
- "total_cases": 5.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.19,
- "new_cases_per_million": 0.038,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-18",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.19,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.027,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-19",
- "total_cases": 6.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.227,
- "new_cases_per_million": 0.038,
- "new_cases_smoothed_per_million": 0.027,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-03-20",
- "total_cases": 9.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.341,
- "new_cases_per_million": 0.114,
- "new_cases_smoothed_per_million": 0.043,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-03-21",
- "total_cases": 14.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.531,
- "new_cases_per_million": 0.19,
- "new_cases_smoothed_per_million": 0.07,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-03-22",
- "total_cases": 17.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.644,
- "new_cases_per_million": 0.114,
- "new_cases_smoothed_per_million": 0.07,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 60.19
- },
- {
- "date": "2020-03-23",
- "total_cases": 25.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.948,
- "new_cases_per_million": 0.303,
- "new_cases_smoothed_per_million": 0.114,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 63.89
- },
- {
- "date": "2020-03-24",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.948,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.108,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 80.56
- },
- {
- "date": "2020-03-25",
- "total_cases": 73.0,
- "new_cases": 48.0,
- "new_cases_smoothed": 9.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.767,
- "new_cases_per_million": 1.82,
- "new_cases_smoothed_per_million": 0.368,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 80.56
- },
- {
- "date": "2020-03-26",
- "total_cases": 80.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 10.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.033,
- "new_cases_per_million": 0.265,
- "new_cases_smoothed_per_million": 0.401,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 80.56
- },
- {
- "date": "2020-03-27",
- "total_cases": 96.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 12.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.639,
- "new_cases_per_million": 0.607,
- "new_cases_smoothed_per_million": 0.471,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 80.56
- },
- {
- "date": "2020-03-28",
- "total_cases": 101.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 12.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.829,
- "new_cases_per_million": 0.19,
- "new_cases_smoothed_per_million": 0.471,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 80.56
- },
- {
- "date": "2020-03-29",
- "total_cases": 140.0,
- "new_cases": 39.0,
- "new_cases_smoothed": 17.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5.307,
- "new_cases_per_million": 1.478,
- "new_cases_smoothed_per_million": 0.666,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 80.56
- },
- {
- "date": "2020-03-30",
- "total_cases": 165.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 20.0,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 6.255,
- "new_cases_per_million": 0.948,
- "new_cases_smoothed_per_million": 0.758,
- "total_deaths_per_million": 0.038,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.005,
- "stringency_index": 80.56
- },
- {
- "date": "2020-03-31",
- "total_cases": 168.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 20.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 6.369,
- "new_cases_per_million": 0.114,
- "new_cases_smoothed_per_million": 0.774,
- "total_deaths_per_million": 0.038,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-01",
- "total_cases": 168.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 13.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 6.369,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.514,
- "total_deaths_per_million": 0.038,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-02",
- "total_cases": 190.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 15.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 7.203,
- "new_cases_per_million": 0.834,
- "new_cases_smoothed_per_million": 0.596,
- "total_deaths_per_million": 0.038,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-03",
- "total_cases": 194.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 14.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 7.355,
- "new_cases_per_million": 0.152,
- "new_cases_smoothed_per_million": 0.531,
- "total_deaths_per_million": 0.038,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-04",
- "total_cases": 218.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 16.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 8.264,
- "new_cases_per_million": 0.91,
- "new_cases_smoothed_per_million": 0.634,
- "total_deaths_per_million": 0.038,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-05",
- "total_cases": 245.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 15.0,
- "total_deaths": 2.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 9.288,
- "new_cases_per_million": 1.024,
- "new_cases_smoothed_per_million": 0.569,
- "total_deaths_per_million": 0.076,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-06",
- "total_cases": 261.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 13.714,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 9.895,
- "new_cases_per_million": 0.607,
- "new_cases_smoothed_per_million": 0.52,
- "total_deaths_per_million": 0.114,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-07",
- "total_cases": 323.0,
- "new_cases": 62.0,
- "new_cases_smoothed": 22.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 12.245,
- "new_cases_per_million": 2.35,
- "new_cases_smoothed_per_million": 0.839,
- "total_deaths_per_million": 0.114,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-08",
- "total_cases": 349.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 25.857,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 13.231,
- "new_cases_per_million": 0.986,
- "new_cases_smoothed_per_million": 0.98,
- "total_deaths_per_million": 0.114,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-09",
- "total_cases": 384.0,
- "new_cases": 35.0,
- "new_cases_smoothed": 27.714,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 14.557,
- "new_cases_per_million": 1.327,
- "new_cases_smoothed_per_million": 1.051,
- "total_deaths_per_million": 0.114,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-10",
- "total_cases": 444.0,
- "new_cases": 60.0,
- "new_cases_smoothed": 35.714,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 16.832,
- "new_cases_per_million": 2.275,
- "new_cases_smoothed_per_million": 1.354,
- "total_deaths_per_million": 0.114,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-11",
- "total_cases": 480.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 37.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 18.197,
- "new_cases_per_million": 1.365,
- "new_cases_smoothed_per_million": 1.419,
- "total_deaths_per_million": 0.114,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-12",
- "total_cases": 533.0,
- "new_cases": 53.0,
- "new_cases_smoothed": 41.143,
- "total_deaths": 4.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 20.206,
- "new_cases_per_million": 2.009,
- "new_cases_smoothed_per_million": 1.56,
- "total_deaths_per_million": 0.152,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-13",
- "total_cases": 574.0,
- "new_cases": 41.0,
- "new_cases_smoothed": 44.714,
- "total_deaths": 5.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 21.76,
- "new_cases_per_million": 1.554,
- "new_cases_smoothed_per_million": 1.695,
- "total_deaths_per_million": 0.19,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.011,
- "total_tests": 3658.0,
- "total_tests_per_thousand": 0.139,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-14",
- "total_cases": 626.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 43.286,
- "total_deaths": 6.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 23.732,
- "new_cases_per_million": 1.971,
- "new_cases_smoothed_per_million": 1.641,
- "total_deaths_per_million": 0.227,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 129.0,
- "total_tests": 3787.0,
- "total_tests_per_thousand": 0.144,
- "new_tests_per_thousand": 0.005,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-15",
- "total_cases": 626.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 39.571,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 23.732,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.5,
- "total_deaths_per_million": 0.227,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 238.0,
- "total_tests": 4025.0,
- "total_tests_per_thousand": 0.153,
- "new_tests_per_thousand": 0.009,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-16",
- "total_cases": 654.0,
- "new_cases": 28.0,
- "new_cases_smoothed": 38.571,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 24.793,
- "new_cases_per_million": 1.061,
- "new_cases_smoothed_per_million": 1.462,
- "total_deaths_per_million": 0.227,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 298.0,
- "total_tests": 4323.0,
- "total_tests_per_thousand": 0.164,
- "new_tests_per_thousand": 0.011,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-17",
- "total_cases": 688.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 34.857,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 26.082,
- "new_cases_per_million": 1.289,
- "new_cases_smoothed_per_million": 1.321,
- "total_deaths_per_million": 0.227,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 296.0,
- "total_tests": 4619.0,
- "total_tests_per_thousand": 0.175,
- "new_tests_per_thousand": 0.011,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-18",
- "total_cases": 742.0,
- "new_cases": 54.0,
- "new_cases_smoothed": 37.429,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 28.129,
- "new_cases_per_million": 2.047,
- "new_cases_smoothed_per_million": 1.419,
- "total_deaths_per_million": 0.227,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 361.0,
- "total_tests": 4980.0,
- "total_tests_per_thousand": 0.189,
- "new_tests_per_thousand": 0.014,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-19",
- "total_cases": 801.0,
- "new_cases": 59.0,
- "new_cases_smoothed": 38.286,
- "total_deaths": 8.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 30.366,
- "new_cases_per_million": 2.237,
- "new_cases_smoothed_per_million": 1.451,
- "total_deaths_per_million": 0.303,
- "new_deaths_per_million": 0.076,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 399.0,
- "total_tests": 5379.0,
- "total_tests_per_thousand": 0.204,
- "new_tests_per_thousand": 0.015,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-20",
- "total_cases": 847.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 39.0,
- "total_deaths": 9.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 32.11,
- "new_cases_per_million": 1.744,
- "new_cases_smoothed_per_million": 1.478,
- "total_deaths_per_million": 0.341,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 351.0,
- "total_tests": 5730.0,
- "total_tests_per_thousand": 0.217,
- "new_tests_per_thousand": 0.013,
- "new_tests_smoothed": 296.0,
- "new_tests_smoothed_per_thousand": 0.011,
- "tests_per_case": 7.59,
- "positive_rate": 0.132,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-21",
- "total_cases": 879.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 36.143,
- "total_deaths": 10.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 33.323,
- "new_cases_per_million": 1.213,
- "new_cases_smoothed_per_million": 1.37,
- "total_deaths_per_million": 0.379,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 270.0,
- "total_tests": 6000.0,
- "total_tests_per_thousand": 0.227,
- "new_tests_per_thousand": 0.01,
- "new_tests_smoothed": 316.0,
- "new_tests_smoothed_per_thousand": 0.012,
- "tests_per_case": 8.743,
- "positive_rate": 0.114,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-22",
- "total_cases": 916.0,
- "new_cases": 37.0,
- "new_cases_smoothed": 41.429,
- "total_deaths": 13.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 34.726,
- "new_cases_per_million": 1.403,
- "new_cases_smoothed_per_million": 1.571,
- "total_deaths_per_million": 0.493,
- "new_deaths_per_million": 0.114,
- "new_deaths_smoothed_per_million": 0.038,
- "new_tests": 342.0,
- "total_tests": 6342.0,
- "total_tests_per_thousand": 0.24,
- "new_tests_per_thousand": 0.013,
- "new_tests_smoothed": 331.0,
- "new_tests_smoothed_per_thousand": 0.013,
- "tests_per_case": 7.99,
- "positive_rate": 0.125,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-23",
- "total_cases": 952.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 42.571,
- "total_deaths": 14.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 36.09,
- "new_cases_per_million": 1.365,
- "new_cases_smoothed_per_million": 1.614,
- "total_deaths_per_million": 0.531,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.043,
- "new_tests": 504.0,
- "total_tests": 6846.0,
- "total_tests_per_thousand": 0.26,
- "new_tests_per_thousand": 0.019,
- "new_tests_smoothed": 360.0,
- "new_tests_smoothed_per_thousand": 0.014,
- "tests_per_case": 8.456,
- "positive_rate": 0.11800000000000001,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-24",
- "total_cases": 1004.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 45.143,
- "total_deaths": 14.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 38.062,
- "new_cases_per_million": 1.971,
- "new_cases_smoothed_per_million": 1.711,
- "total_deaths_per_million": 0.531,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.043,
- "new_tests": 584.0,
- "total_tests": 7430.0,
- "total_tests_per_thousand": 0.282,
- "new_tests_per_thousand": 0.022,
- "new_tests_smoothed": 402.0,
- "new_tests_smoothed_per_thousand": 0.015,
- "tests_per_case": 8.905,
- "positive_rate": 0.11199999999999999,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-25",
- "total_cases": 1077.0,
- "new_cases": 73.0,
- "new_cases_smoothed": 47.857,
- "total_deaths": 14.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 40.829,
- "new_cases_per_million": 2.767,
- "new_cases_smoothed_per_million": 1.814,
- "total_deaths_per_million": 0.531,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.043,
- "new_tests": 302.0,
- "total_tests": 7732.0,
- "total_tests_per_thousand": 0.293,
- "new_tests_per_thousand": 0.011,
- "new_tests_smoothed": 393.0,
- "new_tests_smoothed_per_thousand": 0.015,
- "tests_per_case": 8.212,
- "positive_rate": 0.122,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-26",
- "total_cases": 1111.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 44.286,
- "total_deaths": 14.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 42.118,
- "new_cases_per_million": 1.289,
- "new_cases_smoothed_per_million": 1.679,
- "total_deaths_per_million": 0.531,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests": 560.0,
- "total_tests": 8292.0,
- "total_tests_per_thousand": 0.314,
- "new_tests_per_thousand": 0.021,
- "new_tests_smoothed": 416.0,
- "new_tests_smoothed_per_thousand": 0.016,
- "tests_per_case": 9.394,
- "positive_rate": 0.106,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-27",
- "total_cases": 1150.0,
- "new_cases": 39.0,
- "new_cases_smoothed": 43.286,
- "total_deaths": 14.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 43.596,
- "new_cases_per_million": 1.478,
- "new_cases_smoothed_per_million": 1.641,
- "total_deaths_per_million": 0.531,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.027,
- "new_tests": 289.0,
- "total_tests": 8581.0,
- "total_tests_per_thousand": 0.325,
- "new_tests_per_thousand": 0.011,
- "new_tests_smoothed": 407.0,
- "new_tests_smoothed_per_thousand": 0.015,
- "tests_per_case": 9.402999999999999,
- "positive_rate": 0.106,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-28",
- "total_cases": 1164.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 40.714,
- "total_deaths": 14.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 44.127,
- "new_cases_per_million": 0.531,
- "new_cases_smoothed_per_million": 1.543,
- "total_deaths_per_million": 0.531,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 179.0,
- "total_tests": 8760.0,
- "total_tests_per_thousand": 0.332,
- "new_tests_per_thousand": 0.007,
- "new_tests_smoothed": 394.0,
- "new_tests_smoothed_per_thousand": 0.015,
- "tests_per_case": 9.677,
- "positive_rate": 0.10300000000000001,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-29",
- "total_cases": 1183.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 38.143,
- "total_deaths": 14.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 44.848,
- "new_cases_per_million": 0.72,
- "new_cases_smoothed_per_million": 1.446,
- "total_deaths_per_million": 0.531,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "new_tests": 512.0,
- "total_tests": 9272.0,
- "total_tests_per_thousand": 0.352,
- "new_tests_per_thousand": 0.019,
- "new_tests_smoothed": 419.0,
- "new_tests_smoothed_per_thousand": 0.016,
- "tests_per_case": 10.985,
- "positive_rate": 0.091,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-30",
- "total_cases": 1238.0,
- "new_cases": 55.0,
- "new_cases_smoothed": 40.857,
- "total_deaths": 14.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 46.933,
- "new_cases_per_million": 2.085,
- "new_cases_smoothed_per_million": 1.549,
- "total_deaths_per_million": 0.531,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 385.0,
- "total_tests": 9657.0,
- "total_tests_per_thousand": 0.366,
- "new_tests_per_thousand": 0.015,
- "new_tests_smoothed": 402.0,
- "new_tests_smoothed_per_thousand": 0.015,
- "tests_per_case": 9.839,
- "positive_rate": 0.102,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-01",
- "total_cases": 1275.0,
- "new_cases": 37.0,
- "new_cases_smoothed": 38.714,
- "total_deaths": 14.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 48.335,
- "new_cases_per_million": 1.403,
- "new_cases_smoothed_per_million": 1.468,
- "total_deaths_per_million": 0.531,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 379.0,
- "new_tests_smoothed_per_thousand": 0.014,
- "tests_per_case": 9.79,
- "positive_rate": 0.102,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-02",
- "total_cases": 1333.0,
- "new_cases": 58.0,
- "new_cases_smoothed": 36.571,
- "total_deaths": 15.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 50.534,
- "new_cases_per_million": 2.199,
- "new_cases_smoothed_per_million": 1.386,
- "total_deaths_per_million": 0.569,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.005,
- "total_tests": 10508.0,
- "total_tests_per_thousand": 0.398,
- "new_tests_smoothed": 397.0,
- "new_tests_smoothed_per_thousand": 0.015,
- "tests_per_case": 10.855,
- "positive_rate": 0.092,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-03",
- "total_cases": 1362.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 35.857,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 51.633,
- "new_cases_per_million": 1.099,
- "new_cases_smoothed_per_million": 1.359,
- "total_deaths_per_million": 0.569,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "new_tests": 288.0,
- "total_tests": 10796.0,
- "total_tests_per_thousand": 0.409,
- "new_tests_per_thousand": 0.011,
- "new_tests_smoothed": 358.0,
- "new_tests_smoothed_per_thousand": 0.014,
- "tests_per_case": 9.984,
- "positive_rate": 0.1,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-04",
- "total_cases": 1398.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 35.429,
- "total_deaths": 17.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 52.998,
- "new_cases_per_million": 1.365,
- "new_cases_smoothed_per_million": 1.343,
- "total_deaths_per_million": 0.644,
- "new_deaths_per_million": 0.076,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 482.0,
- "total_tests": 11278.0,
- "total_tests_per_thousand": 0.428,
- "new_tests_per_thousand": 0.018,
- "new_tests_smoothed": 385.0,
- "new_tests_smoothed_per_thousand": 0.015,
- "tests_per_case": 10.867,
- "positive_rate": 0.092,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-05",
- "total_cases": 1432.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 38.286,
- "total_deaths": 17.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 54.287,
- "new_cases_per_million": 1.289,
- "new_cases_smoothed_per_million": 1.451,
- "total_deaths_per_million": 0.644,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 170.0,
- "total_tests": 11448.0,
- "total_tests_per_thousand": 0.434,
- "new_tests_per_thousand": 0.006,
- "new_tests_smoothed": 384.0,
- "new_tests_smoothed_per_thousand": 0.015,
- "tests_per_case": 10.03,
- "positive_rate": 0.1,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-06",
- "total_cases": 1464.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 40.143,
- "total_deaths": 18.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 55.5,
- "new_cases_per_million": 1.213,
- "new_cases_smoothed_per_million": 1.522,
- "total_deaths_per_million": 0.682,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 497.0,
- "total_tests": 11945.0,
- "total_tests_per_thousand": 0.453,
- "new_tests_per_thousand": 0.019,
- "new_tests_smoothed": 382.0,
- "new_tests_smoothed_per_thousand": 0.014,
- "tests_per_case": 9.516,
- "positive_rate": 0.105,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-07",
- "total_cases": 1516.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 39.714,
- "total_deaths": 18.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 57.472,
- "new_cases_per_million": 1.971,
- "new_cases_smoothed_per_million": 1.506,
- "total_deaths_per_million": 0.682,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 367.0,
- "total_tests": 12312.0,
- "total_tests_per_thousand": 0.467,
- "new_tests_per_thousand": 0.014,
- "new_tests_smoothed": 379.0,
- "new_tests_smoothed_per_thousand": 0.014,
- "tests_per_case": 9.543,
- "positive_rate": 0.105,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-08",
- "total_cases": 1571.0,
- "new_cases": 55.0,
- "new_cases_smoothed": 42.286,
- "total_deaths": 20.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 59.557,
- "new_cases_per_million": 2.085,
- "new_cases_smoothed_per_million": 1.603,
- "total_deaths_per_million": 0.758,
- "new_deaths_per_million": 0.076,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests": 456.0,
- "total_tests": 12768.0,
- "total_tests_per_thousand": 0.484,
- "new_tests_per_thousand": 0.017,
- "new_tests_smoothed": 384.0,
- "new_tests_smoothed_per_thousand": 0.015,
- "tests_per_case": 9.081,
- "positive_rate": 0.11,
- "tests_units": "samples tested",
- "stringency_index": 69.91
- },
- {
- "date": "2020-05-09",
- "total_cases": 1602.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 38.429,
- "total_deaths": 20.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 60.732,
- "new_cases_per_million": 1.175,
- "new_cases_smoothed_per_million": 1.457,
- "total_deaths_per_million": 0.758,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.027,
- "new_tests": 573.0,
- "total_tests": 13341.0,
- "total_tests_per_thousand": 0.506,
- "new_tests_per_thousand": 0.022,
- "new_tests_smoothed": 405.0,
- "new_tests_smoothed_per_thousand": 0.015,
- "tests_per_case": 10.539000000000001,
- "positive_rate": 0.095,
- "tests_units": "samples tested",
- "stringency_index": 69.91
- },
- {
- "date": "2020-05-10",
- "total_cases": 1667.0,
- "new_cases": 65.0,
- "new_cases_smoothed": 43.571,
- "total_deaths": 21.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 63.196,
- "new_cases_per_million": 2.464,
- "new_cases_smoothed_per_million": 1.652,
- "total_deaths_per_million": 0.796,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests": 322.0,
- "total_tests": 13663.0,
- "total_tests_per_thousand": 0.518,
- "new_tests_per_thousand": 0.012,
- "new_tests_smoothed": 410.0,
- "new_tests_smoothed_per_thousand": 0.016,
- "tests_per_case": 9.41,
- "positive_rate": 0.106,
- "tests_units": "samples tested",
- "stringency_index": 69.91
- },
- {
- "date": "2020-05-11",
- "total_cases": 1700.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 43.143,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 64.447,
- "new_cases_per_million": 1.251,
- "new_cases_smoothed_per_million": 1.636,
- "total_deaths_per_million": 0.796,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 499.0,
- "total_tests": 14162.0,
- "total_tests_per_thousand": 0.537,
- "new_tests_per_thousand": 0.019,
- "new_tests_smoothed": 412.0,
- "new_tests_smoothed_per_thousand": 0.016,
- "tests_per_case": 9.55,
- "positive_rate": 0.105,
- "tests_units": "samples tested",
- "stringency_index": 69.91
- },
- {
- "date": "2020-05-12",
- "total_cases": 1730.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 42.571,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 65.584,
- "new_cases_per_million": 1.137,
- "new_cases_smoothed_per_million": 1.614,
- "total_deaths_per_million": 0.796,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 506.0,
- "total_tests": 14668.0,
- "total_tests_per_thousand": 0.556,
- "new_tests_per_thousand": 0.019,
- "new_tests_smoothed": 460.0,
- "new_tests_smoothed_per_thousand": 0.017,
- "tests_per_case": 10.805,
- "positive_rate": 0.09300000000000001,
- "tests_units": "samples tested",
- "stringency_index": 69.91
- },
- {
- "date": "2020-05-13",
- "total_cases": 1857.0,
- "new_cases": 127.0,
- "new_cases_smoothed": 56.143,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 70.399,
- "new_cases_per_million": 4.815,
- "new_cases_smoothed_per_million": 2.128,
- "total_deaths_per_million": 0.796,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 592.0,
- "total_tests": 15260.0,
- "total_tests_per_thousand": 0.579,
- "new_tests_per_thousand": 0.022,
- "new_tests_smoothed": 474.0,
- "new_tests_smoothed_per_thousand": 0.018,
- "tests_per_case": 8.443,
- "positive_rate": 0.11800000000000001,
- "tests_units": "samples tested",
- "stringency_index": 69.91
- },
- {
- "date": "2020-05-14",
- "total_cases": 1912.0,
- "new_cases": 55.0,
- "new_cases_smoothed": 56.571,
- "total_deaths": 24.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 72.484,
- "new_cases_per_million": 2.085,
- "new_cases_smoothed_per_million": 2.145,
- "total_deaths_per_million": 0.91,
- "new_deaths_per_million": 0.114,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests": 680.0,
- "total_tests": 15940.0,
- "total_tests_per_thousand": 0.604,
- "new_tests_per_thousand": 0.026,
- "new_tests_smoothed": 518.0,
- "new_tests_smoothed_per_thousand": 0.02,
- "tests_per_case": 9.157,
- "positive_rate": 0.109,
- "tests_units": "samples tested",
- "stringency_index": 69.91
- },
- {
- "date": "2020-05-15",
- "total_cases": 1971.0,
- "new_cases": 59.0,
- "new_cases_smoothed": 57.143,
- "total_deaths": 24.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 74.721,
- "new_cases_per_million": 2.237,
- "new_cases_smoothed_per_million": 2.166,
- "total_deaths_per_million": 0.91,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 728.0,
- "total_tests": 16668.0,
- "total_tests_per_thousand": 0.632,
- "new_tests_per_thousand": 0.028,
- "new_tests_smoothed": 557.0,
- "new_tests_smoothed_per_thousand": 0.021,
- "tests_per_case": 9.747,
- "positive_rate": 0.10300000000000001,
- "tests_units": "samples tested",
- "stringency_index": 69.91
- },
- {
- "date": "2020-05-16",
- "total_cases": 2017.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 59.286,
- "total_deaths": 24.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 76.464,
- "new_cases_per_million": 1.744,
- "new_cases_smoothed_per_million": 2.248,
- "total_deaths_per_million": 0.91,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 845.0,
- "total_tests": 17513.0,
- "total_tests_per_thousand": 0.664,
- "new_tests_per_thousand": 0.032,
- "new_tests_smoothed": 596.0,
- "new_tests_smoothed_per_thousand": 0.023,
- "tests_per_case": 10.052999999999999,
- "positive_rate": 0.099,
- "tests_units": "samples tested",
- "stringency_index": 64.81
- },
- {
- "date": "2020-05-17",
- "total_cases": 2061.0,
- "new_cases": 44.0,
- "new_cases_smoothed": 56.286,
- "total_deaths": 25.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 78.132,
- "new_cases_per_million": 1.668,
- "new_cases_smoothed_per_million": 2.134,
- "total_deaths_per_million": 0.948,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 790.0,
- "total_tests": 18303.0,
- "total_tests_per_thousand": 0.694,
- "new_tests_per_thousand": 0.03,
- "new_tests_smoothed": 663.0,
- "new_tests_smoothed_per_thousand": 0.025,
- "tests_per_case": 11.779000000000002,
- "positive_rate": 0.085,
- "tests_units": "samples tested",
- "stringency_index": 64.81
- },
- {
- "date": "2020-05-18",
- "total_cases": 2109.0,
- "new_cases": 48.0,
- "new_cases_smoothed": 58.429,
- "total_deaths": 27.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 79.952,
- "new_cases_per_million": 1.82,
- "new_cases_smoothed_per_million": 2.215,
- "total_deaths_per_million": 1.024,
- "new_deaths_per_million": 0.076,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests": 305.0,
- "total_tests": 18608.0,
- "total_tests_per_thousand": 0.705,
- "new_tests_per_thousand": 0.012,
- "new_tests_smoothed": 635.0,
- "new_tests_smoothed_per_thousand": 0.024,
- "tests_per_case": 10.868,
- "positive_rate": 0.092,
- "tests_units": "samples tested",
- "stringency_index": 64.81
- },
- {
- "date": "2020-05-19",
- "total_cases": 2119.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 55.571,
- "total_deaths": 28.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 80.331,
- "new_cases_per_million": 0.379,
- "new_cases_smoothed_per_million": 2.107,
- "total_deaths_per_million": 1.061,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.038,
- "new_tests": 566.0,
- "total_tests": 19174.0,
- "total_tests_per_thousand": 0.727,
- "new_tests_per_thousand": 0.021,
- "new_tests_smoothed": 644.0,
- "new_tests_smoothed_per_thousand": 0.024,
- "tests_per_case": 11.589,
- "positive_rate": 0.086,
- "tests_units": "samples tested",
- "stringency_index": 64.81
- },
- {
- "date": "2020-05-20",
- "total_cases": 2153.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 42.286,
- "total_deaths": 28.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 81.62,
- "new_cases_per_million": 1.289,
- "new_cases_smoothed_per_million": 1.603,
- "total_deaths_per_million": 1.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.038,
- "new_tests": 840.0,
- "total_tests": 20014.0,
- "total_tests_per_thousand": 0.759,
- "new_tests_per_thousand": 0.032,
- "new_tests_smoothed": 679.0,
- "new_tests_smoothed_per_thousand": 0.026,
- "tests_per_case": 16.057000000000002,
- "positive_rate": 0.062,
- "tests_units": "samples tested",
- "stringency_index": 64.81
- },
- {
- "date": "2020-05-21",
- "total_cases": 2231.0,
- "new_cases": 78.0,
- "new_cases_smoothed": 45.571,
- "total_deaths": 29.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 84.577,
- "new_cases_per_million": 2.957,
- "new_cases_smoothed_per_million": 1.728,
- "total_deaths_per_million": 1.099,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.027,
- "new_tests": 1055.0,
- "total_tests": 21069.0,
- "total_tests_per_thousand": 0.799,
- "new_tests_per_thousand": 0.04,
- "new_tests_smoothed": 733.0,
- "new_tests_smoothed_per_thousand": 0.028,
- "tests_per_case": 16.085,
- "positive_rate": 0.062,
- "tests_units": "samples tested",
- "stringency_index": 64.81
- },
- {
- "date": "2020-05-22",
- "total_cases": 2231.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 37.143,
- "total_deaths": 29.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 84.577,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.408,
- "total_deaths_per_million": 1.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.027,
- "new_tests": 1164.0,
- "total_tests": 22233.0,
- "total_tests_per_thousand": 0.843,
- "new_tests_per_thousand": 0.044,
- "new_tests_smoothed": 795.0,
- "new_tests_smoothed_per_thousand": 0.03,
- "tests_per_case": 21.404,
- "positive_rate": 0.047,
- "tests_units": "samples tested",
- "stringency_index": 64.81
- },
- {
- "date": "2020-05-23",
- "total_cases": 2301.0,
- "new_cases": 70.0,
- "new_cases_smoothed": 40.571,
- "total_deaths": 29.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 87.231,
- "new_cases_per_million": 2.654,
- "new_cases_smoothed_per_million": 1.538,
- "total_deaths_per_million": 1.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.027,
- "new_tests": 727.0,
- "total_tests": 22960.0,
- "total_tests_per_thousand": 0.87,
- "new_tests_per_thousand": 0.028,
- "new_tests_smoothed": 778.0,
- "new_tests_smoothed_per_thousand": 0.029,
- "tests_per_case": 19.176,
- "positive_rate": 0.052000000000000005,
- "tests_units": "samples tested",
- "stringency_index": 64.81
- },
- {
- "date": "2020-05-24",
- "total_cases": 2366.0,
- "new_cases": 65.0,
- "new_cases_smoothed": 43.571,
- "total_deaths": 30.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 89.695,
- "new_cases_per_million": 2.464,
- "new_cases_smoothed_per_million": 1.652,
- "total_deaths_per_million": 1.137,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.027,
- "new_tests": 484.0,
- "total_tests": 23444.0,
- "total_tests_per_thousand": 0.889,
- "new_tests_per_thousand": 0.018,
- "new_tests_smoothed": 734.0,
- "new_tests_smoothed_per_thousand": 0.028,
- "tests_per_case": 16.846,
- "positive_rate": 0.059000000000000004,
- "tests_units": "samples tested",
- "stringency_index": 64.81
- },
- {
- "date": "2020-05-25",
- "total_cases": 2376.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 38.143,
- "total_deaths": 30.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 90.074,
- "new_cases_per_million": 0.379,
- "new_cases_smoothed_per_million": 1.446,
- "total_deaths_per_million": 1.137,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 873.0,
- "total_tests": 24317.0,
- "total_tests_per_thousand": 0.922,
- "new_tests_per_thousand": 0.033,
- "new_tests_smoothed": 816.0,
- "new_tests_smoothed_per_thousand": 0.031,
- "tests_per_case": 21.393,
- "positive_rate": 0.047,
- "tests_units": "samples tested",
- "stringency_index": 59.26
- },
- {
- "date": "2020-05-26",
- "total_cases": 2423.0,
- "new_cases": 47.0,
- "new_cases_smoothed": 43.429,
- "total_deaths": 30.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 91.856,
- "new_cases_per_million": 1.782,
- "new_cases_smoothed_per_million": 1.646,
- "total_deaths_per_million": 1.137,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 782.0,
- "total_tests": 25099.0,
- "total_tests_per_thousand": 0.952,
- "new_tests_per_thousand": 0.03,
- "new_tests_smoothed": 846.0,
- "new_tests_smoothed_per_thousand": 0.032,
- "tests_per_case": 19.48,
- "positive_rate": 0.051,
- "tests_units": "samples tested",
- "stringency_index": 59.26
- },
- {
- "date": "2020-05-27",
- "total_cases": 2477.0,
- "new_cases": 54.0,
- "new_cases_smoothed": 46.286,
- "total_deaths": 30.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 93.903,
- "new_cases_per_million": 2.047,
- "new_cases_smoothed_per_million": 1.755,
- "total_deaths_per_million": 1.137,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 425.0,
- "total_tests": 25524.0,
- "total_tests_per_thousand": 0.968,
- "new_tests_per_thousand": 0.016,
- "new_tests_smoothed": 787.0,
- "new_tests_smoothed_per_thousand": 0.03,
- "tests_per_case": 17.003,
- "positive_rate": 0.059000000000000004,
- "tests_units": "samples tested",
- "stringency_index": 59.26
- },
- {
- "date": "2020-05-28",
- "total_cases": 2556.0,
- "new_cases": 79.0,
- "new_cases_smoothed": 46.429,
- "total_deaths": 31.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 96.898,
- "new_cases_per_million": 2.995,
- "new_cases_smoothed_per_million": 1.76,
- "total_deaths_per_million": 1.175,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 497.0,
- "total_tests": 26021.0,
- "total_tests_per_thousand": 0.986,
- "new_tests_per_thousand": 0.019,
- "new_tests_smoothed": 707.0,
- "new_tests_smoothed_per_thousand": 0.027,
- "tests_per_case": 15.228,
- "positive_rate": 0.066,
- "tests_units": "samples tested",
- "stringency_index": 59.26
- },
- {
- "date": "2020-05-29",
- "total_cases": 2641.0,
- "new_cases": 85.0,
- "new_cases_smoothed": 58.571,
- "total_deaths": 32.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 100.12,
- "new_cases_per_million": 3.222,
- "new_cases_smoothed_per_million": 2.22,
- "total_deaths_per_million": 1.213,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 527.0,
- "total_tests": 26548.0,
- "total_tests_per_thousand": 1.006,
- "new_tests_per_thousand": 0.02,
- "new_tests_smoothed": 616.0,
- "new_tests_smoothed_per_thousand": 0.023,
- "tests_per_case": 10.517000000000001,
- "positive_rate": 0.095,
- "tests_units": "samples tested",
- "stringency_index": 59.26
- },
- {
- "date": "2020-05-30",
- "total_cases": 2750.0,
- "new_cases": 109.0,
- "new_cases_smoothed": 64.143,
- "total_deaths": 32.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 104.252,
- "new_cases_per_million": 4.132,
- "new_cases_smoothed_per_million": 2.432,
- "total_deaths_per_million": 1.213,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 357.0,
- "total_tests": 26905.0,
- "total_tests_per_thousand": 1.02,
- "new_tests_per_thousand": 0.014,
- "new_tests_smoothed": 564.0,
- "new_tests_smoothed_per_thousand": 0.021,
- "tests_per_case": 8.793,
- "positive_rate": 0.114,
- "tests_units": "samples tested",
- "stringency_index": 59.26
- },
- {
- "date": "2020-05-31",
- "total_cases": 2799.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 61.857,
- "total_deaths": 33.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 106.11,
- "new_cases_per_million": 1.858,
- "new_cases_smoothed_per_million": 2.345,
- "total_deaths_per_million": 1.251,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 134.0,
- "total_tests": 27039.0,
- "total_tests_per_thousand": 1.025,
- "new_tests_per_thousand": 0.005,
- "new_tests_smoothed": 514.0,
- "new_tests_smoothed_per_thousand": 0.019,
- "tests_per_case": 8.309,
- "positive_rate": 0.12,
- "tests_units": "samples tested",
- "stringency_index": 59.26
- },
- {
- "date": "2020-06-01",
- "total_cases": 2833.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 65.286,
- "total_deaths": 33.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 107.399,
- "new_cases_per_million": 1.289,
- "new_cases_smoothed_per_million": 2.475,
- "total_deaths_per_million": 1.251,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 611.0,
- "total_tests": 27650.0,
- "total_tests_per_thousand": 1.048,
- "new_tests_per_thousand": 0.023,
- "new_tests_smoothed": 476.0,
- "new_tests_smoothed_per_thousand": 0.018,
- "tests_per_case": 7.291,
- "positive_rate": 0.13699999999999998,
- "tests_units": "samples tested",
- "stringency_index": 59.26
- },
- {
- "date": "2020-06-02",
- "total_cases": 2951.0,
- "new_cases": 118.0,
- "new_cases_smoothed": 75.429,
- "total_deaths": 33.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 111.872,
- "new_cases_per_million": 4.473,
- "new_cases_smoothed_per_million": 2.859,
- "total_deaths_per_million": 1.251,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 470.0,
- "total_tests": 28120.0,
- "total_tests_per_thousand": 1.066,
- "new_tests_per_thousand": 0.018,
- "new_tests_smoothed": 432.0,
- "new_tests_smoothed_per_thousand": 0.016,
- "tests_per_case": 5.727,
- "positive_rate": 0.175,
- "tests_units": "samples tested",
- "stringency_index": 59.26
- },
- {
- "date": "2020-06-03",
- "total_cases": 3024.0,
- "new_cases": 73.0,
- "new_cases_smoothed": 78.143,
- "total_deaths": 33.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 114.64,
- "new_cases_per_million": 2.767,
- "new_cases_smoothed_per_million": 2.962,
- "total_deaths_per_million": 1.251,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 402.0,
- "total_tests": 28522.0,
- "total_tests_per_thousand": 1.081,
- "new_tests_per_thousand": 0.015,
- "new_tests_smoothed": 428.0,
- "new_tests_smoothed_per_thousand": 0.016,
- "tests_per_case": 5.477,
- "positive_rate": 0.183,
- "tests_units": "samples tested",
- "stringency_index": 59.26
- },
- {
- "date": "2020-06-04",
- "total_cases": 3024.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 66.857,
- "total_deaths": 33.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 114.64,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.535,
- "total_deaths_per_million": 1.251,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 706.0,
- "total_tests": 29228.0,
- "total_tests_per_thousand": 1.108,
- "new_tests_per_thousand": 0.027,
- "new_tests_smoothed": 458.0,
- "new_tests_smoothed_per_thousand": 0.017,
- "tests_per_case": 6.85,
- "positive_rate": 0.146,
- "tests_units": "samples tested",
- "stringency_index": 59.26
- },
- {
- "date": "2020-06-05",
- "total_cases": 3262.0,
- "new_cases": 238.0,
- "new_cases_smoothed": 88.714,
- "total_deaths": 35.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 123.662,
- "new_cases_per_million": 9.023,
- "new_cases_smoothed_per_million": 3.363,
- "total_deaths_per_million": 1.327,
- "new_deaths_per_million": 0.076,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 628.0,
- "total_tests": 29856.0,
- "total_tests_per_thousand": 1.132,
- "new_tests_per_thousand": 0.024,
- "new_tests_smoothed": 473.0,
- "new_tests_smoothed_per_thousand": 0.018,
- "tests_per_case": 5.332000000000001,
- "positive_rate": 0.188,
- "tests_units": "samples tested",
- "stringency_index": 59.26
- },
- {
- "date": "2020-06-06",
- "total_cases": 3431.0,
- "new_cases": 169.0,
- "new_cases_smoothed": 97.286,
- "total_deaths": 36.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 130.069,
- "new_cases_per_million": 6.407,
- "new_cases_smoothed_per_million": 3.688,
- "total_deaths_per_million": 1.365,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 756.0,
- "total_tests": 30612.0,
- "total_tests_per_thousand": 1.161,
- "new_tests_per_thousand": 0.029,
- "new_tests_smoothed": 530.0,
- "new_tests_smoothed_per_thousand": 0.02,
- "tests_per_case": 5.4479999999999995,
- "positive_rate": 0.184,
- "tests_units": "samples tested",
- "stringency_index": 59.26
- },
- {
- "date": "2020-06-07",
- "total_cases": 3557.0,
- "new_cases": 126.0,
- "new_cases_smoothed": 108.286,
- "total_deaths": 36.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 134.846,
- "new_cases_per_million": 4.777,
- "new_cases_smoothed_per_million": 4.105,
- "total_deaths_per_million": 1.365,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 937.0,
- "total_tests": 31549.0,
- "total_tests_per_thousand": 1.196,
- "new_tests_per_thousand": 0.036,
- "new_tests_smoothed": 644.0,
- "new_tests_smoothed_per_thousand": 0.024,
- "tests_per_case": 5.947,
- "positive_rate": 0.168,
- "tests_units": "samples tested",
- "stringency_index": 59.26
- },
- {
- "date": "2020-06-08",
- "total_cases": 3739.0,
- "new_cases": 182.0,
- "new_cases_smoothed": 129.429,
- "total_deaths": 36.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 141.745,
- "new_cases_per_million": 6.9,
- "new_cases_smoothed_per_million": 4.907,
- "total_deaths_per_million": 1.365,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 800.0,
- "total_tests": 32349.0,
- "total_tests_per_thousand": 1.226,
- "new_tests_per_thousand": 0.03,
- "new_tests_smoothed": 671.0,
- "new_tests_smoothed_per_thousand": 0.025,
- "tests_per_case": 5.184,
- "positive_rate": 0.193,
- "tests_units": "samples tested",
- "stringency_index": 59.26
- },
- {
- "date": "2020-06-09",
- "total_cases": 3881.0,
- "new_cases": 142.0,
- "new_cases_smoothed": 132.857,
- "total_deaths": 38.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 147.129,
- "new_cases_per_million": 5.383,
- "new_cases_smoothed_per_million": 5.037,
- "total_deaths_per_million": 1.441,
- "new_deaths_per_million": 0.076,
- "new_deaths_smoothed_per_million": 0.027,
- "new_tests": 515.0,
- "total_tests": 32864.0,
- "total_tests_per_thousand": 1.246,
- "new_tests_per_thousand": 0.02,
- "new_tests_smoothed": 678.0,
- "new_tests_smoothed_per_thousand": 0.026,
- "tests_per_case": 5.103,
- "positive_rate": 0.196,
- "tests_units": "samples tested",
- "stringency_index": 59.26
- },
- {
- "date": "2020-06-10",
- "total_cases": 3995.0,
- "new_cases": 114.0,
- "new_cases_smoothed": 138.714,
- "total_deaths": 38.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 151.45,
- "new_cases_per_million": 4.322,
- "new_cases_smoothed_per_million": 5.259,
- "total_deaths_per_million": 1.441,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.027,
- "new_tests": 612.0,
- "total_tests": 33476.0,
- "total_tests_per_thousand": 1.269,
- "new_tests_per_thousand": 0.023,
- "new_tests_smoothed": 708.0,
- "new_tests_smoothed_per_thousand": 0.027,
- "tests_per_case": 5.104,
- "positive_rate": 0.196,
- "tests_units": "samples tested",
- "stringency_index": 59.26
- },
- {
- "date": "2020-06-11",
- "total_cases": 4181.0,
- "new_cases": 186.0,
- "new_cases_smoothed": 165.286,
- "total_deaths": 41.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 158.502,
- "new_cases_per_million": 7.051,
- "new_cases_smoothed_per_million": 6.266,
- "total_deaths_per_million": 1.554,
- "new_deaths_per_million": 0.114,
- "new_deaths_smoothed_per_million": 0.043,
- "new_tests": 796.0,
- "total_tests": 34272.0,
- "total_tests_per_thousand": 1.299,
- "new_tests_per_thousand": 0.03,
- "new_tests_smoothed": 721.0,
- "new_tests_smoothed_per_thousand": 0.027,
- "tests_per_case": 4.362,
- "positive_rate": 0.22899999999999998,
- "tests_units": "samples tested",
- "stringency_index": 59.26
- },
- {
- "date": "2020-06-12",
- "total_cases": 4404.0,
- "new_cases": 223.0,
- "new_cases_smoothed": 163.143,
- "total_deaths": 41.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 166.956,
- "new_cases_per_million": 8.454,
- "new_cases_smoothed_per_million": 6.185,
- "total_deaths_per_million": 1.554,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests_smoothed": 750.0,
- "new_tests_smoothed_per_thousand": 0.028,
- "tests_per_case": 4.5969999999999995,
- "positive_rate": 0.218,
- "tests_units": "samples tested",
- "stringency_index": 59.26
- },
- {
- "date": "2020-06-13",
- "total_cases": 4684.0,
- "new_cases": 280.0,
- "new_cases_smoothed": 179.0,
- "total_deaths": 45.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 177.57,
- "new_cases_per_million": 10.615,
- "new_cases_smoothed_per_million": 6.786,
- "total_deaths_per_million": 1.706,
- "new_deaths_per_million": 0.152,
- "new_deaths_smoothed_per_million": 0.049,
- "total_tests": 35935.0,
- "total_tests_per_thousand": 1.362,
- "new_tests_smoothed": 760.0,
- "new_tests_smoothed_per_thousand": 0.029,
- "tests_per_case": 4.246,
- "positive_rate": 0.23600000000000002,
- "tests_units": "samples tested",
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-14",
- "total_cases": 4848.0,
- "new_cases": 164.0,
- "new_cases_smoothed": 184.429,
- "total_deaths": 45.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 183.788,
- "new_cases_per_million": 6.217,
- "new_cases_smoothed_per_million": 6.992,
- "total_deaths_per_million": 1.706,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 848.0,
- "total_tests": 36783.0,
- "total_tests_per_thousand": 1.394,
- "new_tests_per_thousand": 0.032,
- "new_tests_smoothed": 748.0,
- "new_tests_smoothed_per_thousand": 0.028,
- "tests_per_case": 4.056,
- "positive_rate": 0.247,
- "tests_units": "samples tested",
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-15",
- "total_cases": 5084.0,
- "new_cases": 236.0,
- "new_cases_smoothed": 192.143,
- "total_deaths": 45.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 192.734,
- "new_cases_per_million": 8.947,
- "new_cases_smoothed_per_million": 7.284,
- "total_deaths_per_million": 1.706,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 870.0,
- "total_tests": 37653.0,
- "total_tests_per_thousand": 1.427,
- "new_tests_per_thousand": 0.033,
- "new_tests_smoothed": 758.0,
- "new_tests_smoothed_per_thousand": 0.029,
- "tests_per_case": 3.945,
- "positive_rate": 0.253,
- "tests_units": "samples tested",
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-16",
- "total_cases": 5439.0,
- "new_cases": 355.0,
- "new_cases_smoothed": 222.571,
- "total_deaths": 46.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 206.192,
- "new_cases_per_million": 13.458,
- "new_cases_smoothed_per_million": 8.438,
- "total_deaths_per_million": 1.744,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.043,
- "new_tests": 984.0,
- "total_tests": 38637.0,
- "total_tests_per_thousand": 1.465,
- "new_tests_per_thousand": 0.037,
- "new_tests_smoothed": 825.0,
- "new_tests_smoothed_per_thousand": 0.031,
- "tests_per_case": 3.707,
- "positive_rate": 0.27,
- "tests_units": "samples tested",
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-17",
- "total_cases": 5679.0,
- "new_cases": 240.0,
- "new_cases_smoothed": 240.571,
- "total_deaths": 46.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 215.291,
- "new_cases_per_million": 9.098,
- "new_cases_smoothed_per_million": 9.12,
- "total_deaths_per_million": 1.744,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.043,
- "new_tests": 1214.0,
- "total_tests": 39851.0,
- "total_tests_per_thousand": 1.511,
- "new_tests_per_thousand": 0.046,
- "new_tests_smoothed": 911.0,
- "new_tests_smoothed_per_thousand": 0.035,
- "tests_per_case": 3.787,
- "positive_rate": 0.264,
- "tests_units": "samples tested",
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-18",
- "total_cases": 6063.0,
- "new_cases": 384.0,
- "new_cases_smoothed": 268.857,
- "total_deaths": 48.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 229.848,
- "new_cases_per_million": 14.557,
- "new_cases_smoothed_per_million": 10.192,
- "total_deaths_per_million": 1.82,
- "new_deaths_per_million": 0.076,
- "new_deaths_smoothed_per_million": 0.038,
- "new_tests": 1592.0,
- "total_tests": 41443.0,
- "total_tests_per_thousand": 1.571,
- "new_tests_per_thousand": 0.06,
- "new_tests_smoothed": 1024.0,
- "new_tests_smoothed_per_thousand": 0.039,
- "tests_per_case": 3.8089999999999997,
- "positive_rate": 0.263,
- "tests_units": "samples tested",
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-19",
- "total_cases": 6063.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 237.0,
- "total_deaths": 48.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 229.848,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.985,
- "total_deaths_per_million": 1.82,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.038,
- "new_tests": 1632.0,
- "total_tests": 43075.0,
- "total_tests_per_thousand": 1.633,
- "new_tests_per_thousand": 0.062,
- "new_tests_smoothed": 1139.0,
- "new_tests_smoothed_per_thousand": 0.043,
- "tests_per_case": 4.806,
- "positive_rate": 0.20800000000000002,
- "tests_units": "samples tested",
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-20",
- "total_cases": 6444.0,
- "new_cases": 381.0,
- "new_cases_smoothed": 251.429,
- "total_deaths": 49.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 244.292,
- "new_cases_per_million": 14.444,
- "new_cases_smoothed_per_million": 9.532,
- "total_deaths_per_million": 1.858,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 1155.0,
- "total_tests": 44230.0,
- "total_tests_per_thousand": 1.677,
- "new_tests_per_thousand": 0.044,
- "new_tests_smoothed": 1185.0,
- "new_tests_smoothed_per_thousand": 0.045,
- "tests_per_case": 4.713,
- "positive_rate": 0.212,
- "tests_units": "samples tested",
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-21",
- "total_cases": 6874.0,
- "new_cases": 430.0,
- "new_cases_smoothed": 289.429,
- "total_deaths": 49.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 260.593,
- "new_cases_per_million": 16.301,
- "new_cases_smoothed_per_million": 10.972,
- "total_deaths_per_million": 1.858,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 922.0,
- "total_tests": 45152.0,
- "total_tests_per_thousand": 1.712,
- "new_tests_per_thousand": 0.035,
- "new_tests_smoothed": 1196.0,
- "new_tests_smoothed_per_thousand": 0.045,
- "tests_per_case": 4.132,
- "positive_rate": 0.242,
- "tests_units": "samples tested",
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-22",
- "total_cases": 7492.0,
- "new_cases": 618.0,
- "new_cases_smoothed": 344.0,
- "total_deaths": 51.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 284.022,
- "new_cases_per_million": 23.428,
- "new_cases_smoothed_per_million": 13.041,
- "total_deaths_per_million": 1.933,
- "new_deaths_per_million": 0.076,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests": 844.0,
- "total_tests": 45996.0,
- "total_tests_per_thousand": 1.744,
- "new_tests_per_thousand": 0.032,
- "new_tests_smoothed": 1192.0,
- "new_tests_smoothed_per_thousand": 0.045,
- "tests_per_case": 3.465,
- "positive_rate": 0.289,
- "tests_units": "samples tested",
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-23",
- "total_cases": 7492.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 293.286,
- "total_deaths": 54.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 284.022,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 11.118,
- "total_deaths_per_million": 2.047,
- "new_deaths_per_million": 0.114,
- "new_deaths_smoothed_per_million": 0.043,
- "new_tests": 1303.0,
- "total_tests": 47299.0,
- "total_tests_per_thousand": 1.793,
- "new_tests_per_thousand": 0.049,
- "new_tests_smoothed": 1237.0,
- "new_tests_smoothed_per_thousand": 0.047,
- "tests_per_case": 4.218,
- "positive_rate": 0.237,
- "tests_units": "samples tested",
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-24",
- "total_cases": 7904.0,
- "new_cases": 412.0,
- "new_cases_smoothed": 317.857,
- "total_deaths": 58.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 299.641,
- "new_cases_per_million": 15.619,
- "new_cases_smoothed_per_million": 12.05,
- "total_deaths_per_million": 2.199,
- "new_deaths_per_million": 0.152,
- "new_deaths_smoothed_per_million": 0.065,
- "new_tests": 1041.0,
- "total_tests": 48340.0,
- "total_tests_per_thousand": 1.833,
- "new_tests_per_thousand": 0.039,
- "new_tests_smoothed": 1213.0,
- "new_tests_smoothed_per_thousand": 0.046,
- "tests_per_case": 3.8160000000000003,
- "positive_rate": 0.262,
- "tests_units": "samples tested",
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-25",
- "total_cases": 7904.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 263.0,
- "total_deaths": 58.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 299.641,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.97,
- "total_deaths_per_million": 2.199,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.054,
- "new_tests": 1012.0,
- "total_tests": 49352.0,
- "total_tests_per_thousand": 1.871,
- "new_tests_per_thousand": 0.038,
- "new_tests_smoothed": 1130.0,
- "new_tests_smoothed_per_thousand": 0.043,
- "tests_per_case": 4.297,
- "positive_rate": 0.233,
- "tests_units": "samples tested",
- "stringency_index": 57.41
- },
- {
- "date": "2020-06-26",
- "total_cases": 8164.0,
- "new_cases": 260.0,
- "new_cases_smoothed": 300.143,
- "total_deaths": 58.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 309.497,
- "new_cases_per_million": 9.857,
- "new_cases_smoothed_per_million": 11.378,
- "total_deaths_per_million": 2.199,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.054,
- "new_tests": 1562.0,
- "total_tests": 50914.0,
- "total_tests_per_thousand": 1.93,
- "new_tests_per_thousand": 0.059,
- "new_tests_smoothed": 1120.0,
- "new_tests_smoothed_per_thousand": 0.042,
- "tests_per_case": 3.7319999999999998,
- "positive_rate": 0.268,
- "tests_units": "samples tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-06-27",
- "total_cases": 8334.0,
- "new_cases": 170.0,
- "new_cases_smoothed": 270.0,
- "total_deaths": 60.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 315.942,
- "new_cases_per_million": 6.445,
- "new_cases_smoothed_per_million": 10.236,
- "total_deaths_per_million": 2.275,
- "new_deaths_per_million": 0.076,
- "new_deaths_smoothed_per_million": 0.06,
- "new_tests": 1347.0,
- "total_tests": 52261.0,
- "total_tests_per_thousand": 1.981,
- "new_tests_per_thousand": 0.051,
- "new_tests_smoothed": 1147.0,
- "new_tests_smoothed_per_thousand": 0.043,
- "tests_per_case": 4.248,
- "positive_rate": 0.235,
- "tests_units": "samples tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-06-28",
- "total_cases": 8739.0,
- "new_cases": 405.0,
- "new_cases_smoothed": 266.429,
- "total_deaths": 64.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 331.295,
- "new_cases_per_million": 15.354,
- "new_cases_smoothed_per_million": 10.1,
- "total_deaths_per_million": 2.426,
- "new_deaths_per_million": 0.152,
- "new_deaths_smoothed_per_million": 0.081,
- "new_tests": 624.0,
- "total_tests": 52885.0,
- "total_tests_per_thousand": 2.005,
- "new_tests_per_thousand": 0.024,
- "new_tests_smoothed": 1105.0,
- "new_tests_smoothed_per_thousand": 0.042,
- "tests_per_case": 4.147,
- "positive_rate": 0.24100000000000002,
- "tests_units": "samples tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-06-29",
- "total_cases": 8944.0,
- "new_cases": 205.0,
- "new_cases_smoothed": 207.429,
- "total_deaths": 66.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 339.067,
- "new_cases_per_million": 7.772,
- "new_cases_smoothed_per_million": 7.864,
- "total_deaths_per_million": 2.502,
- "new_deaths_per_million": 0.076,
- "new_deaths_smoothed_per_million": 0.081,
- "new_tests": 1053.0,
- "total_tests": 53938.0,
- "total_tests_per_thousand": 2.045,
- "new_tests_per_thousand": 0.04,
- "new_tests_smoothed": 1135.0,
- "new_tests_smoothed_per_thousand": 0.043,
- "tests_per_case": 5.472,
- "positive_rate": 0.183,
- "tests_units": "samples tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-06-30",
- "total_cases": 9214.0,
- "new_cases": 270.0,
- "new_cases_smoothed": 246.0,
- "total_deaths": 66.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 349.303,
- "new_cases_per_million": 10.236,
- "new_cases_smoothed_per_million": 9.326,
- "total_deaths_per_million": 2.502,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.065,
- "new_tests": 2012.0,
- "total_tests": 55950.0,
- "total_tests_per_thousand": 2.121,
- "new_tests_per_thousand": 0.076,
- "new_tests_smoothed": 1236.0,
- "new_tests_smoothed_per_thousand": 0.047,
- "tests_per_case": 5.024,
- "positive_rate": 0.19899999999999998,
- "tests_units": "samples tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-07-01",
- "total_cases": 9499.0,
- "new_cases": 285.0,
- "new_cases_smoothed": 227.857,
- "total_deaths": 68.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 360.107,
- "new_cases_per_million": 10.804,
- "new_cases_smoothed_per_million": 8.638,
- "total_deaths_per_million": 2.578,
- "new_deaths_per_million": 0.076,
- "new_deaths_smoothed_per_million": 0.054,
- "new_tests": 1824.0,
- "total_tests": 57774.0,
- "total_tests_per_thousand": 2.19,
- "new_tests_per_thousand": 0.069,
- "new_tests_smoothed": 1348.0,
- "new_tests_smoothed_per_thousand": 0.051,
- "tests_per_case": 5.916,
- "positive_rate": 0.16899999999999998,
- "tests_units": "samples tested",
- "stringency_index": 57.87
- },
- {
- "date": "2020-07-02",
- "total_cases": 9702.0,
- "new_cases": 203.0,
- "new_cases_smoothed": 256.857,
- "total_deaths": 68.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 367.803,
- "new_cases_per_million": 7.696,
- "new_cases_smoothed_per_million": 9.737,
- "total_deaths_per_million": 2.578,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.054,
- "new_tests": 1608.0,
- "total_tests": 59382.0,
- "total_tests_per_thousand": 2.251,
- "new_tests_per_thousand": 0.061,
- "new_tests_smoothed": 1433.0,
- "new_tests_smoothed_per_thousand": 0.054,
- "tests_per_case": 5.579,
- "positive_rate": 0.179,
- "tests_units": "samples tested",
- "stringency_index": 57.87
- },
- {
- "date": "2020-07-03",
- "total_cases": 9992.0,
- "new_cases": 290.0,
- "new_cases_smoothed": 261.143,
- "total_deaths": 68.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 378.797,
- "new_cases_per_million": 10.994,
- "new_cases_smoothed_per_million": 9.9,
- "total_deaths_per_million": 2.578,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.054,
- "new_tests": 1270.0,
- "total_tests": 60652.0,
- "total_tests_per_thousand": 2.299,
- "new_tests_per_thousand": 0.048,
- "new_tests_smoothed": 1391.0,
- "new_tests_smoothed_per_thousand": 0.053,
- "tests_per_case": 5.327000000000001,
- "positive_rate": 0.188,
- "tests_units": "samples tested",
- "stringency_index": 57.87
- },
- {
- "date": "2020-07-04",
- "total_cases": 10244.0,
- "new_cases": 252.0,
- "new_cases_smoothed": 272.857,
- "total_deaths": 70.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 388.35,
- "new_cases_per_million": 9.553,
- "new_cases_smoothed_per_million": 10.344,
- "total_deaths_per_million": 2.654,
- "new_deaths_per_million": 0.076,
- "new_deaths_smoothed_per_million": 0.054,
- "new_tests": 1553.0,
- "total_tests": 62205.0,
- "total_tests_per_thousand": 2.358,
- "new_tests_per_thousand": 0.059,
- "new_tests_smoothed": 1421.0,
- "new_tests_smoothed_per_thousand": 0.054,
- "tests_per_case": 5.207999999999999,
- "positive_rate": 0.192,
- "tests_units": "samples tested",
- "stringency_index": 57.87
- },
- {
- "date": "2020-07-05",
- "total_cases": 10462.0,
- "new_cases": 218.0,
- "new_cases_smoothed": 246.143,
- "total_deaths": 72.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 396.614,
- "new_cases_per_million": 8.264,
- "new_cases_smoothed_per_million": 9.331,
- "total_deaths_per_million": 2.73,
- "new_deaths_per_million": 0.076,
- "new_deaths_smoothed_per_million": 0.043,
- "new_tests": 2219.0,
- "total_tests": 64424.0,
- "total_tests_per_thousand": 2.442,
- "new_tests_per_thousand": 0.084,
- "new_tests_smoothed": 1648.0,
- "new_tests_smoothed_per_thousand": 0.062,
- "tests_per_case": 6.695,
- "positive_rate": 0.149,
- "tests_units": "samples tested",
- "stringency_index": 57.87
- },
- {
- "date": "2020-07-06",
- "total_cases": 10772.0,
- "new_cases": 310.0,
- "new_cases_smoothed": 261.143,
- "total_deaths": 74.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 408.366,
- "new_cases_per_million": 11.752,
- "new_cases_smoothed_per_million": 9.9,
- "total_deaths_per_million": 2.805,
- "new_deaths_per_million": 0.076,
- "new_deaths_smoothed_per_million": 0.043,
- "new_tests": 1464.0,
- "total_tests": 65888.0,
- "total_tests_per_thousand": 2.498,
- "new_tests_per_thousand": 0.056,
- "new_tests_smoothed": 1707.0,
- "new_tests_smoothed_per_thousand": 0.065,
- "tests_per_case": 6.537000000000001,
- "positive_rate": 0.153,
- "tests_units": "samples tested",
- "stringency_index": 57.87
- },
- {
- "date": "2020-07-07",
- "total_cases": 10966.0,
- "new_cases": 194.0,
- "new_cases_smoothed": 250.286,
- "total_deaths": 75.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 415.721,
- "new_cases_per_million": 7.355,
- "new_cases_smoothed_per_million": 9.488,
- "total_deaths_per_million": 2.843,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 1280.0,
- "total_tests": 67168.0,
- "total_tests_per_thousand": 2.546,
- "new_tests_per_thousand": 0.049,
- "new_tests_smoothed": 1603.0,
- "new_tests_smoothed_per_thousand": 0.061,
- "tests_per_case": 6.405,
- "positive_rate": 0.156,
- "tests_units": "samples tested",
- "stringency_index": 57.87
- },
- {
- "date": "2020-07-08",
- "total_cases": 10966.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 209.571,
- "total_deaths": 75.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 415.721,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.945,
- "total_deaths_per_million": 2.843,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.038,
- "new_tests": 1841.0,
- "total_tests": 69009.0,
- "total_tests_per_thousand": 2.616,
- "new_tests_per_thousand": 0.07,
- "new_tests_smoothed": 1605.0,
- "new_tests_smoothed_per_thousand": 0.061,
- "tests_per_case": 7.6579999999999995,
- "positive_rate": 0.131,
- "tests_units": "samples tested",
- "stringency_index": 57.87
- },
- {
- "date": "2020-07-09",
- "total_cases": 11504.0,
- "new_cases": 538.0,
- "new_cases_smoothed": 257.429,
- "total_deaths": 78.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 436.116,
- "new_cases_per_million": 20.396,
- "new_cases_smoothed_per_million": 9.759,
- "total_deaths_per_million": 2.957,
- "new_deaths_per_million": 0.114,
- "new_deaths_smoothed_per_million": 0.054,
- "new_tests": 1405.0,
- "total_tests": 70414.0,
- "total_tests_per_thousand": 2.669,
- "new_tests_per_thousand": 0.053,
- "new_tests_smoothed": 1576.0,
- "new_tests_smoothed_per_thousand": 0.06,
- "tests_per_case": 6.122000000000001,
- "positive_rate": 0.163,
- "tests_units": "samples tested",
- "stringency_index": 57.87
- },
- {
- "date": "2020-07-10",
- "total_cases": 11750.0,
- "new_cases": 246.0,
- "new_cases_smoothed": 251.143,
- "total_deaths": 79.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 445.442,
- "new_cases_per_million": 9.326,
- "new_cases_smoothed_per_million": 9.521,
- "total_deaths_per_million": 2.995,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.06,
- "new_tests": 2185.0,
- "total_tests": 72599.0,
- "total_tests_per_thousand": 2.752,
- "new_tests_per_thousand": 0.083,
- "new_tests_smoothed": 1707.0,
- "new_tests_smoothed_per_thousand": 0.065,
- "tests_per_case": 6.797000000000001,
- "positive_rate": 0.147,
- "tests_units": "samples tested",
- "stringency_index": 57.87
- },
- {
- "date": "2020-07-11",
- "total_cases": 12052.0,
- "new_cases": 302.0,
- "new_cases_smoothed": 258.286,
- "total_deaths": 81.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 456.891,
- "new_cases_per_million": 11.449,
- "new_cases_smoothed_per_million": 9.792,
- "total_deaths_per_million": 3.071,
- "new_deaths_per_million": 0.076,
- "new_deaths_smoothed_per_million": 0.06,
- "new_tests": 2281.0,
- "total_tests": 74880.0,
- "total_tests_per_thousand": 2.839,
- "new_tests_per_thousand": 0.086,
- "new_tests_smoothed": 1811.0,
- "new_tests_smoothed_per_thousand": 0.069,
- "tests_per_case": 7.0120000000000005,
- "positive_rate": 0.14300000000000002,
- "tests_units": "samples tested",
- "stringency_index": 57.87
- },
- {
- "date": "2020-07-12",
- "total_cases": 12443.0,
- "new_cases": 391.0,
- "new_cases_smoothed": 283.0,
- "total_deaths": 82.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 471.714,
- "new_cases_per_million": 14.823,
- "new_cases_smoothed_per_million": 10.729,
- "total_deaths_per_million": 3.109,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.054,
- "new_tests": 1370.0,
- "total_tests": 76250.0,
- "total_tests_per_thousand": 2.891,
- "new_tests_per_thousand": 0.052,
- "new_tests_smoothed": 1689.0,
- "new_tests_smoothed_per_thousand": 0.064,
- "tests_per_case": 5.968,
- "positive_rate": 0.168,
- "tests_units": "samples tested",
- "stringency_index": 57.87
- },
- {
- "date": "2020-07-13",
- "total_cases": 12766.0,
- "new_cases": 323.0,
- "new_cases_smoothed": 284.857,
- "total_deaths": 84.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 483.959,
- "new_cases_per_million": 12.245,
- "new_cases_smoothed_per_million": 10.799,
- "total_deaths_per_million": 3.184,
- "new_deaths_per_million": 0.076,
- "new_deaths_smoothed_per_million": 0.054,
- "new_tests": 1134.0,
- "total_tests": 77384.0,
- "total_tests_per_thousand": 2.934,
- "new_tests_per_thousand": 0.043,
- "new_tests_smoothed": 1642.0,
- "new_tests_smoothed_per_thousand": 0.062,
- "tests_per_case": 5.763999999999999,
- "positive_rate": 0.17300000000000001,
- "tests_units": "samples tested",
- "stringency_index": 57.87
- },
- {
- "date": "2020-07-14",
- "total_cases": 12872.0,
- "new_cases": 106.0,
- "new_cases_smoothed": 272.286,
- "total_deaths": 84.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 487.977,
- "new_cases_per_million": 4.018,
- "new_cases_smoothed_per_million": 10.322,
- "total_deaths_per_million": 3.184,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 682.0,
- "total_tests": 78066.0,
- "total_tests_per_thousand": 2.959,
- "new_tests_per_thousand": 0.026,
- "new_tests_smoothed": 1557.0,
- "new_tests_smoothed_per_thousand": 0.059,
- "tests_per_case": 5.718,
- "positive_rate": 0.175,
- "tests_units": "samples tested",
- "stringency_index": 57.87
- },
- {
- "date": "2020-07-15",
- "total_cases": 13037.0,
- "new_cases": 165.0,
- "new_cases_smoothed": 295.857,
- "total_deaths": 87.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 494.232,
- "new_cases_per_million": 6.255,
- "new_cases_smoothed_per_million": 11.216,
- "total_deaths_per_million": 3.298,
- "new_deaths_per_million": 0.114,
- "new_deaths_smoothed_per_million": 0.065,
- "new_tests": 1829.0,
- "total_tests": 79895.0,
- "total_tests_per_thousand": 3.029,
- "new_tests_per_thousand": 0.069,
- "new_tests_smoothed": 1555.0,
- "new_tests_smoothed_per_thousand": 0.059,
- "tests_per_case": 5.256,
- "positive_rate": 0.19,
- "tests_units": "samples tested",
- "stringency_index": 57.87
- },
- {
- "date": "2020-07-16",
- "total_cases": 13403.0,
- "new_cases": 366.0,
- "new_cases_smoothed": 271.286,
- "total_deaths": 87.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 508.108,
- "new_cases_per_million": 13.875,
- "new_cases_smoothed_per_million": 10.284,
- "total_deaths_per_million": 3.298,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 738.0,
- "total_tests": 80633.0,
- "total_tests_per_thousand": 3.057,
- "new_tests_per_thousand": 0.028,
- "new_tests_smoothed": 1460.0,
- "new_tests_smoothed_per_thousand": 0.055,
- "tests_per_case": 5.382000000000001,
- "positive_rate": 0.18600000000000003,
- "tests_units": "samples tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-07-17",
- "total_cases": 13554.0,
- "new_cases": 151.0,
- "new_cases_smoothed": 257.714,
- "total_deaths": 87.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 513.832,
- "new_cases_per_million": 5.724,
- "new_cases_smoothed_per_million": 9.77,
- "total_deaths_per_million": 3.298,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.043,
- "new_tests": 746.0,
- "total_tests": 81379.0,
- "total_tests_per_thousand": 3.085,
- "new_tests_per_thousand": 0.028,
- "new_tests_smoothed": 1254.0,
- "new_tests_smoothed_per_thousand": 0.048,
- "tests_per_case": 4.8660000000000005,
- "positive_rate": 0.20600000000000002,
- "tests_units": "samples tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-07-18",
- "total_cases": 13696.0,
- "new_cases": 142.0,
- "new_cases_smoothed": 234.857,
- "total_deaths": 87.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 519.215,
- "new_cases_per_million": 5.383,
- "new_cases_smoothed_per_million": 8.903,
- "total_deaths_per_million": 3.298,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests": 1237.0,
- "total_tests": 82616.0,
- "total_tests_per_thousand": 3.132,
- "new_tests_per_thousand": 0.047,
- "new_tests_smoothed": 1105.0,
- "new_tests_smoothed_per_thousand": 0.042,
- "tests_per_case": 4.705,
- "positive_rate": 0.213,
- "tests_units": "samples tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-07-19",
- "total_cases": 13912.0,
- "new_cases": 216.0,
- "new_cases_smoothed": 209.857,
- "total_deaths": 91.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 527.404,
- "new_cases_per_million": 8.189,
- "new_cases_smoothed_per_million": 7.956,
- "total_deaths_per_million": 3.45,
- "new_deaths_per_million": 0.152,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 1137.0,
- "total_tests": 83753.0,
- "total_tests_per_thousand": 3.175,
- "new_tests_per_thousand": 0.043,
- "new_tests_smoothed": 1072.0,
- "new_tests_smoothed_per_thousand": 0.041,
- "tests_per_case": 5.1080000000000005,
- "positive_rate": 0.196,
- "tests_units": "samples tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-07-20",
- "total_cases": 14119.0,
- "new_cases": 207.0,
- "new_cases_smoothed": 193.286,
- "total_deaths": 92.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 535.251,
- "new_cases_per_million": 7.847,
- "new_cases_smoothed_per_million": 7.327,
- "total_deaths_per_million": 3.488,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.043,
- "new_tests": 1656.0,
- "total_tests": 85409.0,
- "total_tests_per_thousand": 3.238,
- "new_tests_per_thousand": 0.063,
- "new_tests_smoothed": 1146.0,
- "new_tests_smoothed_per_thousand": 0.043,
- "tests_per_case": 5.928999999999999,
- "positive_rate": 0.16899999999999998,
- "tests_units": "samples tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-07-21",
- "total_cases": 14312.0,
- "new_cases": 193.0,
- "new_cases_smoothed": 205.714,
- "total_deaths": 92.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 542.568,
- "new_cases_per_million": 7.317,
- "new_cases_smoothed_per_million": 7.799,
- "total_deaths_per_million": 3.488,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.043,
- "new_tests": 1143.0,
- "total_tests": 86552.0,
- "total_tests_per_thousand": 3.281,
- "new_tests_per_thousand": 0.043,
- "new_tests_smoothed": 1212.0,
- "new_tests_smoothed_per_thousand": 0.046,
- "tests_per_case": 5.892,
- "positive_rate": 0.17,
- "tests_units": "samples tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-07-22",
- "total_cases": 14531.0,
- "new_cases": 219.0,
- "new_cases_smoothed": 213.429,
- "total_deaths": 93.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 550.87,
- "new_cases_per_million": 8.302,
- "new_cases_smoothed_per_million": 8.091,
- "total_deaths_per_million": 3.526,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests": 1131.0,
- "total_tests": 87683.0,
- "total_tests_per_thousand": 3.324,
- "new_tests_per_thousand": 0.043,
- "new_tests_smoothed": 1113.0,
- "new_tests_smoothed_per_thousand": 0.042,
- "tests_per_case": 5.215,
- "positive_rate": 0.192,
- "tests_units": "samples tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-07-23",
- "total_cases": 14531.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 161.143,
- "total_deaths": 93.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 550.87,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.109,
- "total_deaths_per_million": 3.526,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests": 2237.0,
- "total_tests": 89920.0,
- "total_tests_per_thousand": 3.409,
- "new_tests_per_thousand": 0.085,
- "new_tests_smoothed": 1327.0,
- "new_tests_smoothed_per_thousand": 0.05,
- "tests_per_case": 8.235,
- "positive_rate": 0.121,
- "tests_units": "samples tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-07-24",
- "total_cases": 15001.0,
- "new_cases": 470.0,
- "new_cases_smoothed": 206.714,
- "total_deaths": 93.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 568.688,
- "new_cases_per_million": 17.818,
- "new_cases_smoothed_per_million": 7.837,
- "total_deaths_per_million": 3.526,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests": 1735.0,
- "total_tests": 91655.0,
- "total_tests_per_thousand": 3.475,
- "new_tests_per_thousand": 0.066,
- "new_tests_smoothed": 1468.0,
- "new_tests_smoothed_per_thousand": 0.056,
- "tests_per_case": 7.102,
- "positive_rate": 0.141,
- "tests_units": "samples tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-07-25",
- "total_cases": 15253.0,
- "new_cases": 252.0,
- "new_cases_smoothed": 222.429,
- "total_deaths": 94.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 578.241,
- "new_cases_per_million": 9.553,
- "new_cases_smoothed_per_million": 8.432,
- "total_deaths_per_million": 3.564,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.038,
- "new_tests": 2004.0,
- "total_tests": 93659.0,
- "total_tests_per_thousand": 3.551,
- "new_tests_per_thousand": 0.076,
- "new_tests_smoothed": 1578.0,
- "new_tests_smoothed_per_thousand": 0.06,
- "tests_per_case": 7.093999999999999,
- "positive_rate": 0.141,
- "tests_units": "samples tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-07-26",
- "total_cases": 15494.0,
- "new_cases": 241.0,
- "new_cases_smoothed": 226.0,
- "total_deaths": 94.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 587.377,
- "new_cases_per_million": 9.136,
- "new_cases_smoothed_per_million": 8.568,
- "total_deaths_per_million": 3.564,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 1446.0,
- "total_tests": 95105.0,
- "total_tests_per_thousand": 3.605,
- "new_tests_per_thousand": 0.055,
- "new_tests_smoothed": 1622.0,
- "new_tests_smoothed_per_thousand": 0.061,
- "tests_per_case": 7.1770000000000005,
- "positive_rate": 0.139,
- "tests_units": "samples tested",
- "stringency_index": 60.65
- },
- {
- "date": "2020-07-27",
- "total_cases": 15596.0,
- "new_cases": 102.0,
- "new_cases_smoothed": 211.0,
- "total_deaths": 96.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 591.244,
- "new_cases_per_million": 3.867,
- "new_cases_smoothed_per_million": 7.999,
- "total_deaths_per_million": 3.639,
- "new_deaths_per_million": 0.076,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 992.0,
- "total_tests": 96097.0,
- "total_tests_per_thousand": 3.643,
- "new_tests_per_thousand": 0.038,
- "new_tests_smoothed": 1527.0,
- "new_tests_smoothed_per_thousand": 0.058,
- "tests_per_case": 7.237,
- "positive_rate": 0.138,
- "tests_units": "samples tested",
- "stringency_index": 44.91
- },
- {
- "date": "2020-07-28",
- "total_cases": 15655.0,
- "new_cases": 59.0,
- "new_cases_smoothed": 191.857,
- "total_deaths": 96.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 593.481,
- "new_cases_per_million": 2.237,
- "new_cases_smoothed_per_million": 7.273,
- "total_deaths_per_million": 3.639,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 671.0,
- "total_tests": 96768.0,
- "total_tests_per_thousand": 3.668,
- "new_tests_per_thousand": 0.025,
- "new_tests_smoothed": 1459.0,
- "new_tests_smoothed_per_thousand": 0.055,
- "tests_per_case": 7.605,
- "positive_rate": 0.131,
- "tests_units": "samples tested",
- "stringency_index": 44.91
- },
- {
- "date": "2020-07-29",
- "total_cases": 15713.0,
- "new_cases": 58.0,
- "new_cases_smoothed": 168.857,
- "total_deaths": 98.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 595.68,
- "new_cases_per_million": 2.199,
- "new_cases_smoothed_per_million": 6.401,
- "total_deaths_per_million": 3.715,
- "new_deaths_per_million": 0.076,
- "new_deaths_smoothed_per_million": 0.027,
- "new_tests": 1246.0,
- "total_tests": 98014.0,
- "total_tests_per_thousand": 3.716,
- "new_tests_per_thousand": 0.047,
- "new_tests_smoothed": 1476.0,
- "new_tests_smoothed_per_thousand": 0.056,
- "tests_per_case": 8.741,
- "positive_rate": 0.114,
- "tests_units": "samples tested",
- "stringency_index": 44.91
- },
- {
- "date": "2020-07-30",
- "total_cases": 15813.0,
- "new_cases": 100.0,
- "new_cases_smoothed": 183.143,
- "total_deaths": 99.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 599.471,
- "new_cases_per_million": 3.791,
- "new_cases_smoothed_per_million": 6.943,
- "total_deaths_per_million": 3.753,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests": 1720.0,
- "total_tests": 99734.0,
- "total_tests_per_thousand": 3.781,
- "new_tests_per_thousand": 0.065,
- "new_tests_smoothed": 1402.0,
- "new_tests_smoothed_per_thousand": 0.053,
- "tests_per_case": 7.655,
- "positive_rate": 0.131,
- "tests_units": "samples tested",
- "stringency_index": 44.91
- },
- {
- "date": "2020-07-31",
- "total_cases": 15978.0,
- "new_cases": 165.0,
- "new_cases_smoothed": 139.571,
- "total_deaths": 100.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 605.726,
- "new_cases_per_million": 6.255,
- "new_cases_smoothed_per_million": 5.291,
- "total_deaths_per_million": 3.791,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.038,
- "new_tests": 951.0,
- "total_tests": 100685.0,
- "total_tests_per_thousand": 3.817,
- "new_tests_per_thousand": 0.036,
- "new_tests_smoothed": 1290.0,
- "new_tests_smoothed_per_thousand": 0.049,
- "tests_per_case": 9.243,
- "positive_rate": 0.10800000000000001,
- "tests_units": "samples tested",
- "stringency_index": 26.39
- },
- {
- "date": "2020-08-01",
- "total_cases": 16047.0,
- "new_cases": 69.0,
- "new_cases_smoothed": 113.429,
- "total_deaths": 102.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 608.342,
- "new_cases_per_million": 2.616,
- "new_cases_smoothed_per_million": 4.3,
- "total_deaths_per_million": 3.867,
- "new_deaths_per_million": 0.076,
- "new_deaths_smoothed_per_million": 0.043,
- "new_tests": 898.0,
- "total_tests": 101583.0,
- "total_tests_per_thousand": 3.851,
- "new_tests_per_thousand": 0.034,
- "new_tests_smoothed": 1132.0,
- "new_tests_smoothed_per_thousand": 0.043,
- "tests_per_case": 9.98,
- "positive_rate": 0.1,
- "tests_units": "samples tested",
- "stringency_index": 26.39
- },
- {
- "date": "2020-08-02",
- "total_cases": 16109.0,
- "new_cases": 62.0,
- "new_cases_smoothed": 87.857,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 610.692,
- "new_cases_per_million": 2.35,
- "new_cases_smoothed_per_million": 3.331,
- "total_deaths_per_million": 3.867,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.043,
- "new_tests": 1102.0,
- "total_tests": 102685.0,
- "total_tests_per_thousand": 3.893,
- "new_tests_per_thousand": 0.042,
- "new_tests_smoothed": 1083.0,
- "new_tests_smoothed_per_thousand": 0.041,
- "tests_per_case": 12.327,
- "positive_rate": 0.081,
- "tests_units": "samples tested",
- "stringency_index": 26.39
- },
- {
- "date": "2020-08-03",
- "total_cases": 16182.0,
- "new_cases": 73.0,
- "new_cases_smoothed": 83.714,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 613.459,
- "new_cases_per_million": 2.767,
- "new_cases_smoothed_per_million": 3.174,
- "total_deaths_per_million": 3.867,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests": 427.0,
- "total_tests": 103112.0,
- "total_tests_per_thousand": 3.909,
- "new_tests_per_thousand": 0.016,
- "new_tests_smoothed": 1002.0,
- "new_tests_smoothed_per_thousand": 0.038,
- "tests_per_case": 11.969000000000001,
- "positive_rate": 0.084,
- "tests_units": "samples tested",
- "stringency_index": 26.39
- },
- {
- "date": "2020-08-04",
- "total_cases": 16220.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 80.714,
- "total_deaths": 102.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 614.9,
- "new_cases_per_million": 1.441,
- "new_cases_smoothed_per_million": 3.06,
- "total_deaths_per_million": 3.867,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests": 512.0,
- "total_tests": 103624.0,
- "total_tests_per_thousand": 3.928,
- "new_tests_per_thousand": 0.019,
- "new_tests_smoothed": 979.0,
- "new_tests_smoothed_per_thousand": 0.037,
- "tests_per_case": 12.129000000000001,
- "positive_rate": 0.08199999999999999,
- "tests_units": "samples tested",
- "stringency_index": 26.39
- },
- {
- "date": "2020-08-05",
- "total_cases": 16293.0,
- "new_cases": 73.0,
- "new_cases_smoothed": 82.857,
- "total_deaths": 103.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 617.667,
- "new_cases_per_million": 2.767,
- "new_cases_smoothed_per_million": 3.141,
- "total_deaths_per_million": 3.905,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.027,
- "new_tests_smoothed": 870.0,
- "new_tests_smoothed_per_thousand": 0.033,
- "tests_per_case": 10.5,
- "positive_rate": 0.095,
- "tests_units": "samples tested",
- "stringency_index": 26.39
- },
- {
- "date": "2020-08-06",
- "total_cases": 16349.0,
- "new_cases": 56.0,
- "new_cases_smoothed": 76.571,
- "total_deaths": 103.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 619.79,
- "new_cases_per_million": 2.123,
- "new_cases_smoothed_per_million": 2.903,
- "total_deaths_per_million": 3.905,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.022,
- "total_tests": 104584.0,
- "total_tests_per_thousand": 3.965,
- "new_tests_smoothed": 693.0,
- "new_tests_smoothed_per_thousand": 0.026,
- "tests_per_case": 9.05,
- "positive_rate": 0.11,
- "tests_units": "samples tested",
- "stringency_index": 26.39
- },
- {
- "date": "2020-08-07",
- "total_cases": 16447.0,
- "new_cases": 98.0,
- "new_cases_smoothed": 67.0,
- "total_deaths": 103.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 623.506,
- "new_cases_per_million": 3.715,
- "new_cases_smoothed_per_million": 2.54,
- "total_deaths_per_million": 3.905,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 924.0,
- "total_tests": 105508.0,
- "total_tests_per_thousand": 4.0,
- "new_tests_per_thousand": 0.035,
- "new_tests_smoothed": 689.0,
- "new_tests_smoothed_per_thousand": 0.026,
- "tests_per_case": 10.284,
- "positive_rate": 0.09699999999999999,
- "tests_units": "samples tested",
- "stringency_index": 26.39
- },
- {
- "date": "2020-08-08",
- "total_cases": 16524.0,
- "new_cases": 77.0,
- "new_cases_smoothed": 68.143,
- "total_deaths": 104.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 626.425,
- "new_cases_per_million": 2.919,
- "new_cases_smoothed_per_million": 2.583,
- "total_deaths_per_million": 3.943,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 1245.0,
- "total_tests": 106753.0,
- "total_tests_per_thousand": 4.047,
- "new_tests_per_thousand": 0.047,
- "new_tests_smoothed": 739.0,
- "new_tests_smoothed_per_thousand": 0.028,
- "tests_per_case": 10.845,
- "positive_rate": 0.092,
- "tests_units": "samples tested",
- "stringency_index": 26.39
- },
- {
- "date": "2020-08-09",
- "total_cases": 16620.0,
- "new_cases": 96.0,
- "new_cases_smoothed": 73.0,
- "total_deaths": 104.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 630.064,
- "new_cases_per_million": 3.639,
- "new_cases_smoothed_per_million": 2.767,
- "total_deaths_per_million": 3.943,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 2109.0,
- "total_tests": 108862.0,
- "total_tests_per_thousand": 4.127,
- "new_tests_per_thousand": 0.08,
- "new_tests_smoothed": 882.0,
- "new_tests_smoothed_per_thousand": 0.033,
- "tests_per_case": 12.082,
- "positive_rate": 0.083,
- "tests_units": "samples tested",
- "stringency_index": 26.39
- },
- {
- "date": "2020-08-10",
- "total_cases": 16715.0,
- "new_cases": 95.0,
- "new_cases_smoothed": 76.143,
- "total_deaths": 105.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 633.665,
- "new_cases_per_million": 3.601,
- "new_cases_smoothed_per_million": 2.887,
- "total_deaths_per_million": 3.981,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 815.0,
- "total_tests": 109677.0,
- "total_tests_per_thousand": 4.158,
- "new_tests_per_thousand": 0.031,
- "new_tests_smoothed": 938.0,
- "new_tests_smoothed_per_thousand": 0.036,
- "tests_per_case": 12.319,
- "positive_rate": 0.081,
- "tests_units": "samples tested",
- "stringency_index": 26.39
- },
- {
- "date": "2020-08-11",
- "total_cases": 16798.0,
- "new_cases": 83.0,
- "new_cases_smoothed": 82.571,
- "total_deaths": 105.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 636.812,
- "new_cases_per_million": 3.147,
- "new_cases_smoothed_per_million": 3.13,
- "total_deaths_per_million": 3.981,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 682.0,
- "total_tests": 110359.0,
- "total_tests_per_thousand": 4.184,
- "new_tests_per_thousand": 0.026,
- "new_tests_smoothed": 962.0,
- "new_tests_smoothed_per_thousand": 0.036,
- "tests_per_case": 11.651,
- "positive_rate": 0.086,
- "tests_units": "samples tested",
- "stringency_index": 26.39
- },
- {
- "date": "2020-08-12",
- "total_cases": 16847.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 79.143,
- "total_deaths": 105.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 638.67,
- "new_cases_per_million": 1.858,
- "new_cases_smoothed_per_million": 3.0,
- "total_deaths_per_million": 3.981,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 252.0,
- "total_tests": 110611.0,
- "total_tests_per_thousand": 4.193,
- "new_tests_per_thousand": 0.01,
- "new_tests_smoothed": 930.0,
- "new_tests_smoothed_per_thousand": 0.035,
- "tests_per_case": 11.751,
- "positive_rate": 0.085,
- "tests_units": "samples tested",
- "stringency_index": 26.39
- },
- {
- "date": "2020-08-13",
- "total_cases": 16847.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 71.143,
- "total_deaths": 105.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 638.67,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.697,
- "total_deaths_per_million": 3.981,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 521.0,
- "total_tests": 111132.0,
- "total_tests_per_thousand": 4.213,
- "new_tests_per_thousand": 0.02,
- "new_tests_smoothed": 935.0,
- "new_tests_smoothed_per_thousand": 0.035,
- "tests_per_case": 13.142999999999999,
- "positive_rate": 0.076,
- "tests_units": "samples tested",
- "stringency_index": 26.39
- },
- {
- "date": "2020-08-14",
- "total_cases": 16889.0,
- "new_cases": 42.0,
- "new_cases_smoothed": 63.143,
- "total_deaths": 105.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 640.262,
- "new_cases_per_million": 1.592,
- "new_cases_smoothed_per_million": 2.394,
- "total_deaths_per_million": 3.981,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 929.0,
- "total_tests": 112061.0,
- "total_tests_per_thousand": 4.248,
- "new_tests_per_thousand": 0.035,
- "new_tests_smoothed": 936.0,
- "new_tests_smoothed_per_thousand": 0.035,
- "tests_per_case": 14.824000000000002,
- "positive_rate": 0.067,
- "tests_units": "samples tested",
- "stringency_index": 26.39
- },
- {
- "date": "2020-08-15",
- "total_cases": 16935.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 58.714,
- "total_deaths": 106.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 642.006,
- "new_cases_per_million": 1.744,
- "new_cases_smoothed_per_million": 2.226,
- "total_deaths_per_million": 4.018,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 870.0,
- "total_tests": 112931.0,
- "total_tests_per_thousand": 4.281,
- "new_tests_per_thousand": 0.033,
- "new_tests_smoothed": 883.0,
- "new_tests_smoothed_per_thousand": 0.033,
- "tests_per_case": 15.039000000000001,
- "positive_rate": 0.066,
- "tests_units": "samples tested",
- "stringency_index": 26.39
- },
- {
- "date": "2020-08-16",
- "total_cases": 16993.0,
- "new_cases": 58.0,
- "new_cases_smoothed": 53.286,
- "total_deaths": 108.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 644.204,
- "new_cases_per_million": 2.199,
- "new_cases_smoothed_per_million": 2.02,
- "total_deaths_per_million": 4.094,
- "new_deaths_per_million": 0.076,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 457.0,
- "total_tests": 113388.0,
- "total_tests_per_thousand": 4.299,
- "new_tests_per_thousand": 0.017,
- "new_tests_smoothed": 647.0,
- "new_tests_smoothed_per_thousand": 0.025,
- "tests_per_case": 12.142000000000001,
- "positive_rate": 0.08199999999999999,
- "tests_units": "samples tested",
- "stringency_index": 26.39
- },
- {
- "date": "2020-08-17",
- "total_cases": 17026.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 44.429,
- "total_deaths": 110.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 645.455,
- "new_cases_per_million": 1.251,
- "new_cases_smoothed_per_million": 1.684,
- "total_deaths_per_million": 4.17,
- "new_deaths_per_million": 0.076,
- "new_deaths_smoothed_per_million": 0.027,
- "new_tests": 1032.0,
- "total_tests": 114420.0,
- "total_tests_per_thousand": 4.338,
- "new_tests_per_thousand": 0.039,
- "new_tests_smoothed": 678.0,
- "new_tests_smoothed_per_thousand": 0.026,
- "tests_per_case": 15.26,
- "positive_rate": 0.066,
- "tests_units": "samples tested",
- "stringency_index": 26.39
- },
- {
- "date": "2020-08-18",
- "total_cases": 17026.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 32.571,
- "total_deaths": 110.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 645.455,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.235,
- "total_deaths_per_million": 4.17,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.027,
- "new_tests": 918.0,
- "total_tests": 115338.0,
- "total_tests_per_thousand": 4.372,
- "new_tests_per_thousand": 0.035,
- "new_tests_smoothed": 711.0,
- "new_tests_smoothed_per_thousand": 0.027,
- "tests_per_case": 21.829,
- "positive_rate": 0.046,
- "tests_units": "samples tested",
- "stringency_index": 26.39
- },
- {
- "date": "2020-08-19",
- "total_cases": 17150.0,
- "new_cases": 124.0,
- "new_cases_smoothed": 43.286,
- "total_deaths": 110.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 650.156,
- "new_cases_per_million": 4.701,
- "new_cases_smoothed_per_million": 1.641,
- "total_deaths_per_million": 4.17,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.027,
- "new_tests": 1447.0,
- "total_tests": 116785.0,
- "total_tests_per_thousand": 4.427,
- "new_tests_per_thousand": 0.055,
- "new_tests_smoothed": 882.0,
- "new_tests_smoothed_per_thousand": 0.033,
- "tests_per_case": 20.375999999999998,
- "positive_rate": 0.049,
- "tests_units": "samples tested",
- "stringency_index": 26.39
- },
- {
- "date": "2020-08-20",
- "total_cases": 17232.0,
- "new_cases": 82.0,
- "new_cases_smoothed": 55.0,
- "total_deaths": 111.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 653.265,
- "new_cases_per_million": 3.109,
- "new_cases_smoothed_per_million": 2.085,
- "total_deaths_per_million": 4.208,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests": 330.0,
- "total_tests": 117115.0,
- "total_tests_per_thousand": 4.44,
- "new_tests_per_thousand": 0.013,
- "new_tests_smoothed": 855.0,
- "new_tests_smoothed_per_thousand": 0.032,
- "tests_per_case": 15.545,
- "positive_rate": 0.064,
- "tests_units": "samples tested",
- "stringency_index": 26.39
- },
- {
- "date": "2020-08-21",
- "total_cases": 17249.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 51.429,
- "total_deaths": 112.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 653.909,
- "new_cases_per_million": 0.644,
- "new_cases_smoothed_per_million": 1.95,
- "total_deaths_per_million": 4.246,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.038,
- "new_tests": 950.0,
- "total_tests": 118065.0,
- "total_tests_per_thousand": 4.476,
- "new_tests_per_thousand": 0.036,
- "new_tests_smoothed": 858.0,
- "new_tests_smoothed_per_thousand": 0.033,
- "tests_per_case": 16.683,
- "positive_rate": 0.06,
- "tests_units": "samples tested",
- "stringency_index": 32.87
- },
- {
- "date": "2020-08-22",
- "total_cases": 17310.0,
- "new_cases": 61.0,
- "new_cases_smoothed": 53.571,
- "total_deaths": 112.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 656.222,
- "new_cases_per_million": 2.313,
- "new_cases_smoothed_per_million": 2.031,
- "total_deaths_per_million": 4.246,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests": 1101.0,
- "total_tests": 119166.0,
- "total_tests_per_thousand": 4.518,
- "new_tests_per_thousand": 0.042,
- "new_tests_smoothed": 891.0,
- "new_tests_smoothed_per_thousand": 0.034,
- "tests_per_case": 16.632,
- "positive_rate": 0.06,
- "tests_units": "samples tested",
- "stringency_index": 32.87
- },
- {
- "date": "2020-08-23",
- "total_cases": 17374.0,
- "new_cases": 64.0,
- "new_cases_smoothed": 54.429,
- "total_deaths": 113.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 658.648,
- "new_cases_per_million": 2.426,
- "new_cases_smoothed_per_million": 2.063,
- "total_deaths_per_million": 4.284,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.027,
- "new_tests": 1133.0,
- "total_tests": 120299.0,
- "total_tests_per_thousand": 4.561,
- "new_tests_per_thousand": 0.043,
- "new_tests_smoothed": 987.0,
- "new_tests_smoothed_per_thousand": 0.037,
- "tests_per_case": 18.134,
- "positive_rate": 0.055,
- "tests_units": "samples tested",
- "stringency_index": 32.87
- },
- {
- "date": "2020-08-24",
- "total_cases": 17471.0,
- "new_cases": 97.0,
- "new_cases_smoothed": 63.571,
- "total_deaths": 113.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 662.325,
- "new_cases_per_million": 3.677,
- "new_cases_smoothed_per_million": 2.41,
- "total_deaths_per_million": 4.284,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 987.0,
- "total_tests": 121286.0,
- "total_tests_per_thousand": 4.598,
- "new_tests_per_thousand": 0.037,
- "new_tests_smoothed": 981.0,
- "new_tests_smoothed_per_thousand": 0.037,
- "tests_per_case": 15.431,
- "positive_rate": 0.065,
- "tests_units": "samples tested",
- "stringency_index": 32.87
- },
- {
- "date": "2020-08-25",
- "total_cases": 17506.0,
- "new_cases": 35.0,
- "new_cases_smoothed": 68.571,
- "total_deaths": 114.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 663.652,
- "new_cases_per_million": 1.327,
- "new_cases_smoothed_per_million": 2.6,
- "total_deaths_per_million": 4.322,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 793.0,
- "total_tests": 122079.0,
- "total_tests_per_thousand": 4.628,
- "new_tests_per_thousand": 0.03,
- "new_tests_smoothed": 963.0,
- "new_tests_smoothed_per_thousand": 0.037,
- "tests_per_case": 14.044,
- "positive_rate": 0.071,
- "tests_units": "samples tested",
- "stringency_index": 32.87
- },
- {
- "date": "2020-08-26",
- "total_cases": 17562.0,
- "new_cases": 56.0,
- "new_cases_smoothed": 58.857,
- "total_deaths": 114.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 665.775,
- "new_cases_per_million": 2.123,
- "new_cases_smoothed_per_million": 2.231,
- "total_deaths_per_million": 4.322,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 896.0,
- "total_tests": 122975.0,
- "total_tests_per_thousand": 4.662,
- "new_tests_per_thousand": 0.034,
- "new_tests_smoothed": 884.0,
- "new_tests_smoothed_per_thousand": 0.034,
- "tests_per_case": 15.019,
- "positive_rate": 0.067,
- "tests_units": "samples tested",
- "stringency_index": 32.87
- },
- {
- "date": "2020-08-27",
- "total_cases": 17603.0,
- "new_cases": 41.0,
- "new_cases_smoothed": 53.0,
- "total_deaths": 114.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 667.329,
- "new_cases_per_million": 1.554,
- "new_cases_smoothed_per_million": 2.009,
- "total_deaths_per_million": 4.322,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 1082.0,
- "total_tests": 124057.0,
- "total_tests_per_thousand": 4.703,
- "new_tests_per_thousand": 0.041,
- "new_tests_smoothed": 992.0,
- "new_tests_smoothed_per_thousand": 0.038,
- "tests_per_case": 18.717,
- "positive_rate": 0.053,
- "tests_units": "samples tested",
- "stringency_index": 32.87
- },
- {
- "date": "2020-08-28",
- "total_cases": 17702.0,
- "new_cases": 99.0,
- "new_cases_smoothed": 64.714,
- "total_deaths": 115.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 671.083,
- "new_cases_per_million": 3.753,
- "new_cases_smoothed_per_million": 2.453,
- "total_deaths_per_million": 4.36,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 1028.0,
- "total_tests": 125085.0,
- "total_tests_per_thousand": 4.742,
- "new_tests_per_thousand": 0.039,
- "new_tests_smoothed": 1003.0,
- "new_tests_smoothed_per_thousand": 0.038,
- "tests_per_case": 15.499,
- "positive_rate": 0.065,
- "tests_units": "samples tested",
- "stringency_index": 32.87
- },
- {
- "date": "2020-08-29",
- "total_cases": 17797.0,
- "new_cases": 95.0,
- "new_cases_smoothed": 69.571,
- "total_deaths": 115.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 674.684,
- "new_cases_per_million": 3.601,
- "new_cases_smoothed_per_million": 2.637,
- "total_deaths_per_million": 4.36,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 887.0,
- "total_tests": 125972.0,
- "total_tests_per_thousand": 4.776,
- "new_tests_per_thousand": 0.034,
- "new_tests_smoothed": 972.0,
- "new_tests_smoothed_per_thousand": 0.037,
- "tests_per_case": 13.970999999999998,
- "positive_rate": 0.07200000000000001,
- "tests_units": "samples tested",
- "stringency_index": 32.87
- },
- {
- "date": "2020-08-30",
- "total_cases": 17893.0,
- "new_cases": 96.0,
- "new_cases_smoothed": 74.143,
- "total_deaths": 115.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 678.323,
- "new_cases_per_million": 3.639,
- "new_cases_smoothed_per_million": 2.811,
- "total_deaths_per_million": 4.36,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 580.0,
- "total_tests": 126552.0,
- "total_tests_per_thousand": 4.798,
- "new_tests_per_thousand": 0.022,
- "new_tests_smoothed": 893.0,
- "new_tests_smoothed_per_thousand": 0.034,
- "tests_per_case": 12.044,
- "positive_rate": 0.083,
- "tests_units": "samples tested",
- "stringency_index": 32.87
- },
- {
- "date": "2020-08-31",
- "total_cases": 17948.0,
- "new_cases": 55.0,
- "new_cases_smoothed": 68.143,
- "total_deaths": 115.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 680.408,
- "new_cases_per_million": 2.085,
- "new_cases_smoothed_per_million": 2.583,
- "total_deaths_per_million": 4.36,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 1252.0,
- "total_tests": 127804.0,
- "total_tests_per_thousand": 4.845,
- "new_tests_per_thousand": 0.047,
- "new_tests_smoothed": 931.0,
- "new_tests_smoothed_per_thousand": 0.035,
- "tests_per_case": 13.662,
- "positive_rate": 0.073,
- "tests_units": "samples tested",
- "stringency_index": 32.87
- },
- {
- "date": "2020-09-01",
- "total_cases": 18067.0,
- "new_cases": 119.0,
- "new_cases_smoothed": 80.143,
- "total_deaths": 117.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 684.92,
- "new_cases_per_million": 4.511,
- "new_cases_smoothed_per_million": 3.038,
- "total_deaths_per_million": 4.435,
- "new_deaths_per_million": 0.076,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 383.0,
- "total_tests": 128187.0,
- "total_tests_per_thousand": 4.86,
- "new_tests_per_thousand": 0.015,
- "new_tests_smoothed": 873.0,
- "new_tests_smoothed_per_thousand": 0.033,
- "tests_per_case": 10.892999999999999,
- "positive_rate": 0.092,
- "tests_units": "samples tested",
- "stringency_index": 32.87
- },
- {
- "date": "2020-09-02",
- "total_cases": 18103.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 77.286,
- "total_deaths": 117.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 686.284,
- "new_cases_per_million": 1.365,
- "new_cases_smoothed_per_million": 2.93,
- "total_deaths_per_million": 4.435,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 938.0,
- "total_tests": 129125.0,
- "total_tests_per_thousand": 4.895,
- "new_tests_per_thousand": 0.036,
- "new_tests_smoothed": 879.0,
- "new_tests_smoothed_per_thousand": 0.033,
- "tests_per_case": 11.373,
- "positive_rate": 0.08800000000000001,
- "tests_units": "samples tested",
- "stringency_index": 32.87
- },
- {
- "date": "2020-09-03",
- "total_cases": 18161.0,
- "new_cases": 58.0,
- "new_cases_smoothed": 79.714,
- "total_deaths": 117.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 688.483,
- "new_cases_per_million": 2.199,
- "new_cases_smoothed_per_million": 3.022,
- "total_deaths_per_million": 4.435,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 921.0,
- "total_tests": 130046.0,
- "total_tests_per_thousand": 4.93,
- "new_tests_per_thousand": 0.035,
- "new_tests_smoothed": 856.0,
- "new_tests_smoothed_per_thousand": 0.032,
- "tests_per_case": 10.738,
- "positive_rate": 0.09300000000000001,
- "tests_units": "samples tested",
- "stringency_index": 32.87
- },
- {
- "date": "2020-09-04",
- "total_cases": 18208.0,
- "new_cases": 47.0,
- "new_cases_smoothed": 72.286,
- "total_deaths": 119.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 690.265,
- "new_cases_per_million": 1.782,
- "new_cases_smoothed_per_million": 2.74,
- "total_deaths_per_million": 4.511,
- "new_deaths_per_million": 0.076,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 1104.0,
- "total_tests": 131150.0,
- "total_tests_per_thousand": 4.972,
- "new_tests_per_thousand": 0.042,
- "new_tests_smoothed": 866.0,
- "new_tests_smoothed_per_thousand": 0.033,
- "tests_per_case": 11.98,
- "positive_rate": 0.083,
- "tests_units": "samples tested",
- "stringency_index": 32.87
- },
- {
- "date": "2020-09-05",
- "total_cases": 18269.0,
- "new_cases": 61.0,
- "new_cases_smoothed": 67.429,
- "total_deaths": 119.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 692.578,
- "new_cases_per_million": 2.313,
- "new_cases_smoothed_per_million": 2.556,
- "total_deaths_per_million": 4.511,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 1713.0,
- "total_tests": 132863.0,
- "total_tests_per_thousand": 5.037,
- "new_tests_per_thousand": 0.065,
- "new_tests_smoothed": 984.0,
- "new_tests_smoothed_per_thousand": 0.037,
- "tests_per_case": 14.593,
- "positive_rate": 0.069,
- "tests_units": "samples tested",
- "stringency_index": 32.87
- },
- {
- "date": "2020-09-06",
- "total_cases": 18472.0,
- "new_cases": 203.0,
- "new_cases_smoothed": 82.714,
- "total_deaths": 119.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 700.273,
- "new_cases_per_million": 7.696,
- "new_cases_smoothed_per_million": 3.136,
- "total_deaths_per_million": 4.511,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 1163.0,
- "total_tests": 134026.0,
- "total_tests_per_thousand": 5.081,
- "new_tests_per_thousand": 0.044,
- "new_tests_smoothed": 1068.0,
- "new_tests_smoothed_per_thousand": 0.04,
- "tests_per_case": 12.912,
- "positive_rate": 0.077,
- "tests_units": "samples tested",
- "stringency_index": 32.87
- },
- {
- "date": "2020-09-07",
- "total_cases": 18588.0,
- "new_cases": 116.0,
- "new_cases_smoothed": 91.429,
- "total_deaths": 119.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 704.671,
- "new_cases_per_million": 4.398,
- "new_cases_smoothed_per_million": 3.466,
- "total_deaths_per_million": 4.511,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 759.0,
- "total_tests": 134785.0,
- "total_tests_per_thousand": 5.11,
- "new_tests_per_thousand": 0.029,
- "new_tests_smoothed": 997.0,
- "new_tests_smoothed_per_thousand": 0.038,
- "tests_per_case": 10.905,
- "positive_rate": 0.092,
- "tests_units": "samples tested",
- "stringency_index": 32.87
- },
- {
- "date": "2020-09-08",
- "total_cases": 18701.0,
- "new_cases": 113.0,
- "new_cases_smoothed": 90.571,
- "total_deaths": 119.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 708.955,
- "new_cases_per_million": 4.284,
- "new_cases_smoothed_per_million": 3.434,
- "total_deaths_per_million": 4.511,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 492.0,
- "total_tests": 135277.0,
- "total_tests_per_thousand": 5.128,
- "new_tests_per_thousand": 0.019,
- "new_tests_smoothed": 1013.0,
- "new_tests_smoothed_per_thousand": 0.038,
- "tests_per_case": 11.185,
- "positive_rate": 0.08900000000000001,
- "tests_units": "samples tested",
- "stringency_index": 32.87
- },
- {
- "date": "2020-09-09",
- "total_cases": 18778.0,
- "new_cases": 77.0,
- "new_cases_smoothed": 96.429,
- "total_deaths": 119.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 711.874,
- "new_cases_per_million": 2.919,
- "new_cases_smoothed_per_million": 3.656,
- "total_deaths_per_million": 4.511,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 1164.0,
- "total_tests": 136441.0,
- "total_tests_per_thousand": 5.172,
- "new_tests_per_thousand": 0.044,
- "new_tests_smoothed": 1045.0,
- "new_tests_smoothed_per_thousand": 0.04,
- "tests_per_case": 10.837,
- "positive_rate": 0.092,
- "tests_units": "samples tested",
- "stringency_index": 32.87
- },
- {
- "date": "2020-09-10",
- "total_cases": 18815.0,
- "new_cases": 37.0,
- "new_cases_smoothed": 93.429,
- "total_deaths": 119.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 713.276,
- "new_cases_per_million": 1.403,
- "new_cases_smoothed_per_million": 3.542,
- "total_deaths_per_million": 4.511,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 1480.0,
- "total_tests": 137921.0,
- "total_tests_per_thousand": 5.229,
- "new_tests_per_thousand": 0.056,
- "new_tests_smoothed": 1125.0,
- "new_tests_smoothed_per_thousand": 0.043,
- "tests_per_case": 12.040999999999999,
- "positive_rate": 0.083,
- "tests_units": "samples tested",
- "stringency_index": 34.26
- },
- {
- "date": "2020-09-11",
- "total_cases": 18869.0,
- "new_cases": 54.0,
- "new_cases_smoothed": 94.429,
- "total_deaths": 119.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 715.324,
- "new_cases_per_million": 2.047,
- "new_cases_smoothed_per_million": 3.58,
- "total_deaths_per_million": 4.511,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1785.0,
- "total_tests": 139706.0,
- "total_tests_per_thousand": 5.296,
- "new_tests_per_thousand": 0.068,
- "new_tests_smoothed": 1222.0,
- "new_tests_smoothed_per_thousand": 0.046,
- "tests_per_case": 12.940999999999999,
- "positive_rate": 0.077,
- "tests_units": "samples tested",
- "stringency_index": 34.26
- },
- {
- "date": "2020-09-12",
- "total_cases": 18916.0,
- "new_cases": 47.0,
- "new_cases_smoothed": 92.429,
- "total_deaths": 119.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 717.105,
- "new_cases_per_million": 1.782,
- "new_cases_smoothed_per_million": 3.504,
- "total_deaths_per_million": 4.511,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1756.0,
- "total_tests": 141462.0,
- "total_tests_per_thousand": 5.363,
- "new_tests_per_thousand": 0.067,
- "new_tests_smoothed": 1228.0,
- "new_tests_smoothed_per_thousand": 0.047,
- "tests_per_case": 13.286,
- "positive_rate": 0.075,
- "tests_units": "samples tested",
- "stringency_index": 34.26
- },
- {
- "date": "2020-09-13",
- "total_cases": 18987.0,
- "new_cases": 71.0,
- "new_cases_smoothed": 73.571,
- "total_deaths": 120.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 719.797,
- "new_cases_per_million": 2.692,
- "new_cases_smoothed_per_million": 2.789,
- "total_deaths_per_million": 4.549,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.005,
- "new_tests": 786.0,
- "total_tests": 142248.0,
- "total_tests_per_thousand": 5.393,
- "new_tests_per_thousand": 0.03,
- "new_tests_smoothed": 1175.0,
- "new_tests_smoothed_per_thousand": 0.045,
- "tests_per_case": 15.970999999999998,
- "positive_rate": 0.063,
- "tests_units": "samples tested",
- "stringency_index": 34.26
- },
- {
- "date": "2020-09-14",
- "total_cases": 19013.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 60.714,
- "total_deaths": 120.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 720.783,
- "new_cases_per_million": 0.986,
- "new_cases_smoothed_per_million": 2.302,
- "total_deaths_per_million": 4.549,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "new_tests": 1413.0,
- "total_tests": 143661.0,
- "total_tests_per_thousand": 5.446,
- "new_tests_per_thousand": 0.054,
- "new_tests_smoothed": 1268.0,
- "new_tests_smoothed_per_thousand": 0.048,
- "tests_per_case": 20.885,
- "positive_rate": 0.048,
- "tests_units": "samples tested",
- "stringency_index": 34.26
- },
- {
- "date": "2020-09-15",
- "total_cases": 19066.0,
- "new_cases": 53.0,
- "new_cases_smoothed": 52.143,
- "total_deaths": 120.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 722.792,
- "new_cases_per_million": 2.009,
- "new_cases_smoothed_per_million": 1.977,
- "total_deaths_per_million": 4.549,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "new_tests": 1098.0,
- "total_tests": 144759.0,
- "total_tests_per_thousand": 5.488,
- "new_tests_per_thousand": 0.042,
- "new_tests_smoothed": 1355.0,
- "new_tests_smoothed_per_thousand": 0.051,
- "tests_per_case": 25.986,
- "positive_rate": 0.038,
- "tests_units": "samples tested",
- "stringency_index": 34.26
- },
- {
- "date": "2020-09-16",
- "total_cases": 19100.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 46.0,
- "total_deaths": 120.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 724.081,
- "new_cases_per_million": 1.289,
- "new_cases_smoothed_per_million": 1.744,
- "total_deaths_per_million": 4.549,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "new_tests": 1553.0,
- "total_tests": 146312.0,
- "total_tests_per_thousand": 5.547,
- "new_tests_per_thousand": 0.059,
- "new_tests_smoothed": 1410.0,
- "new_tests_smoothed_per_thousand": 0.053,
- "tests_per_case": 30.651999999999997,
- "positive_rate": 0.033,
- "tests_units": "samples tested",
- "stringency_index": 34.26
- },
- {
- "date": "2020-09-17",
- "total_cases": 19132.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 45.286,
- "total_deaths": 120.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 725.294,
- "new_cases_per_million": 1.213,
- "new_cases_smoothed_per_million": 1.717,
- "total_deaths_per_million": 4.549,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "new_tests": 1253.0,
- "total_tests": 147565.0,
- "total_tests_per_thousand": 5.594,
- "new_tests_per_thousand": 0.048,
- "new_tests_smoothed": 1378.0,
- "new_tests_smoothed_per_thousand": 0.052,
- "tests_per_case": 30.429000000000002,
- "positive_rate": 0.033,
- "tests_units": "samples tested",
- "stringency_index": 34.26
- },
- {
- "date": "2020-09-18",
- "total_cases": 19158.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 41.286,
- "total_deaths": 120.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 726.279,
- "new_cases_per_million": 0.986,
- "new_cases_smoothed_per_million": 1.565,
- "total_deaths_per_million": 4.549,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "new_tests": 1392.0,
- "total_tests": 148957.0,
- "total_tests_per_thousand": 5.647,
- "new_tests_per_thousand": 0.053,
- "new_tests_smoothed": 1322.0,
- "new_tests_smoothed_per_thousand": 0.05,
- "tests_per_case": 32.021,
- "positive_rate": 0.031,
- "tests_units": "samples tested",
- "stringency_index": 34.26
- },
- {
- "date": "2020-09-19",
- "total_cases": 19200.0,
- "new_cases": 42.0,
- "new_cases_smoothed": 40.571,
- "total_deaths": 120.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 727.872,
- "new_cases_per_million": 1.592,
- "new_cases_smoothed_per_million": 1.538,
- "total_deaths_per_million": 4.549,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "new_tests": 1689.0,
- "total_tests": 150646.0,
- "total_tests_per_thousand": 5.711,
- "new_tests_per_thousand": 0.064,
- "new_tests_smoothed": 1312.0,
- "new_tests_smoothed_per_thousand": 0.05,
- "tests_per_case": 32.338,
- "positive_rate": 0.031,
- "tests_units": "samples tested",
- "stringency_index": 34.26
- },
- {
- "date": "2020-09-20",
- "total_cases": 19269.0,
- "new_cases": 69.0,
- "new_cases_smoothed": 40.286,
- "total_deaths": 120.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 730.487,
- "new_cases_per_million": 2.616,
- "new_cases_smoothed_per_million": 1.527,
- "total_deaths_per_million": 4.549,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1881.0,
- "total_tests": 152527.0,
- "total_tests_per_thousand": 5.782,
- "new_tests_per_thousand": 0.071,
- "new_tests_smoothed": 1468.0,
- "new_tests_smoothed_per_thousand": 0.056,
- "tests_per_case": 36.44,
- "positive_rate": 0.027000000000000003,
- "tests_units": "samples tested",
- "stringency_index": 34.26
- },
- {
- "date": "2020-09-21",
- "total_cases": 19320.0,
- "new_cases": 51.0,
- "new_cases_smoothed": 43.857,
- "total_deaths": 120.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 732.421,
- "new_cases_per_million": 1.933,
- "new_cases_smoothed_per_million": 1.663,
- "total_deaths_per_million": 4.549,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 155.0,
- "total_tests": 152682.0,
- "total_tests_per_thousand": 5.788,
- "new_tests_per_thousand": 0.006,
- "new_tests_smoothed": 1289.0,
- "new_tests_smoothed_per_thousand": 0.049,
- "tests_per_case": 29.391,
- "positive_rate": 0.034,
- "tests_units": "samples tested",
- "stringency_index": 34.26
- },
- {
- "date": "2020-09-22",
- "total_cases": 19327.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 37.286,
- "total_deaths": 120.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 732.686,
- "new_cases_per_million": 0.265,
- "new_cases_smoothed_per_million": 1.414,
- "total_deaths_per_million": 4.549,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 546.0,
- "total_tests": 153228.0,
- "total_tests_per_thousand": 5.809,
- "new_tests_per_thousand": 0.021,
- "new_tests_smoothed": 1210.0,
- "new_tests_smoothed_per_thousand": 0.046,
- "tests_per_case": 32.452,
- "positive_rate": 0.031,
- "tests_units": "samples tested"
- },
- {
- "date": "2020-09-23",
- "total_cases": 19343.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 34.714,
- "total_deaths": 120.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 733.293,
- "new_cases_per_million": 0.607,
- "new_cases_smoothed_per_million": 1.316,
- "total_deaths_per_million": 4.549,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1742.0,
- "total_tests": 154970.0,
- "total_tests_per_thousand": 5.875,
- "new_tests_per_thousand": 0.066,
- "new_tests_smoothed": 1237.0,
- "new_tests_smoothed_per_thousand": 0.047,
- "tests_per_case": 35.634,
- "positive_rate": 0.027999999999999997,
- "tests_units": "samples tested"
- },
- {
- "date": "2020-09-24",
- "total_cases": 19430.0,
- "new_cases": 87.0,
- "new_cases_smoothed": 42.571,
- "total_deaths": 120.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 736.591,
- "new_cases_per_million": 3.298,
- "new_cases_smoothed_per_million": 1.614,
- "total_deaths_per_million": 4.549,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1420.0,
- "total_tests": 156390.0,
- "total_tests_per_thousand": 5.929,
- "new_tests_per_thousand": 0.054,
- "new_tests_smoothed": 1261.0,
- "new_tests_smoothed_per_thousand": 0.048,
- "tests_per_case": 29.621,
- "positive_rate": 0.034,
- "tests_units": "samples tested"
- },
- {
- "date": "2020-09-25",
- "total_cases": 19501.0,
- "new_cases": 71.0,
- "new_cases_smoothed": 49.0,
- "total_deaths": 120.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 739.283,
- "new_cases_per_million": 2.692,
- "new_cases_smoothed_per_million": 1.858,
- "total_deaths_per_million": 4.549,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- }
- ]
- },
- "CMR": {
- "continent": "Africa",
- "location": "Cameroon",
- "population": 26545864.0,
- "population_density": 50.885,
- "median_age": 18.8,
- "aged_65_older": 3.165,
- "aged_70_older": 1.919,
- "gdp_per_capita": 3364.926,
- "extreme_poverty": 23.8,
- "cardiovasc_death_rate": 244.661,
- "diabetes_prevalence": 7.2,
- "handwashing_facilities": 2.735,
- "hospital_beds_per_thousand": 1.3,
- "life_expectancy": 59.29,
- "human_development_index": 0.556,
- "data": [
- {
- "date": "2020-03-07",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.038,
- "new_cases_per_million": 0.038,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-09",
- "total_cases": 2.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.075,
- "new_cases_per_million": 0.038,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-13",
- "new_cases_smoothed": 0.286,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-03-14",
- "new_cases_smoothed": 0.143,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.005,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-03-15",
- "total_cases": 3.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.113,
- "new_cases_per_million": 0.038,
- "new_cases_smoothed_per_million": 0.011,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-03-16",
- "total_cases": 4.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.151,
- "new_cases_per_million": 0.038,
- "new_cases_smoothed_per_million": 0.011,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-03-17",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.151,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.011,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 2.78
- },
- {
- "date": "2020-03-18",
- "total_cases": 10.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.377,
- "new_cases_per_million": 0.226,
- "new_cases_smoothed_per_million": 0.043,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-03-19",
- "total_cases": 10.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.377,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.043,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-03-20",
- "total_cases": 14.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.527,
- "new_cases_per_million": 0.151,
- "new_cases_smoothed_per_million": 0.065,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-03-21",
- "total_cases": 27.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 3.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.017,
- "new_cases_per_million": 0.49,
- "new_cases_smoothed_per_million": 0.135,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-03-22",
- "total_cases": 27.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.017,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.129,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-03-23",
- "total_cases": 27.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.017,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.124,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-03-24",
- "total_cases": 56.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 7.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.11,
- "new_cases_per_million": 1.092,
- "new_cases_smoothed_per_million": 0.28,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-03-25",
- "total_cases": 72.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 8.857,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2.712,
- "new_cases_per_million": 0.603,
- "new_cases_smoothed_per_million": 0.334,
- "total_deaths_per_million": 0.038,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.005,
- "stringency_index": 57.41
- },
- {
- "date": "2020-03-26",
- "total_cases": 72.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 8.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2.712,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.334,
- "total_deaths_per_million": 0.038,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "stringency_index": 57.41
- },
- {
- "date": "2020-03-27",
- "total_cases": 88.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 10.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 3.315,
- "new_cases_per_million": 0.603,
- "new_cases_smoothed_per_million": 0.398,
- "total_deaths_per_million": 0.038,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "stringency_index": 57.41
- },
- {
- "date": "2020-03-28",
- "total_cases": 88.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 8.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 3.315,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.328,
- "total_deaths_per_million": 0.038,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "stringency_index": 57.41
- },
- {
- "date": "2020-03-29",
- "total_cases": 99.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 10.286,
- "total_deaths": 2.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3.729,
- "new_cases_per_million": 0.414,
- "new_cases_smoothed_per_million": 0.387,
- "total_deaths_per_million": 0.075,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 57.41
- },
- {
- "date": "2020-03-30",
- "total_cases": 99.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 10.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3.729,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.387,
- "total_deaths_per_million": 0.075,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 57.41
- },
- {
- "date": "2020-03-31",
- "total_cases": 142.0,
- "new_cases": 43.0,
- "new_cases_smoothed": 12.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 5.349,
- "new_cases_per_million": 1.62,
- "new_cases_smoothed_per_million": 0.463,
- "total_deaths_per_million": 0.075,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 57.41
- },
- {
- "date": "2020-04-01",
- "total_cases": 193.0,
- "new_cases": 51.0,
- "new_cases_smoothed": 17.286,
- "total_deaths": 6.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 7.27,
- "new_cases_per_million": 1.921,
- "new_cases_smoothed_per_million": 0.651,
- "total_deaths_per_million": 0.226,
- "new_deaths_per_million": 0.151,
- "new_deaths_smoothed_per_million": 0.027,
- "stringency_index": 57.41
- },
- {
- "date": "2020-04-02",
- "total_cases": 233.0,
- "new_cases": 40.0,
- "new_cases_smoothed": 23.0,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 8.777,
- "new_cases_per_million": 1.507,
- "new_cases_smoothed_per_million": 0.866,
- "total_deaths_per_million": 0.226,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.027,
- "stringency_index": 57.41
- },
- {
- "date": "2020-04-03",
- "total_cases": 271.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 26.143,
- "total_deaths": 7.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 10.209,
- "new_cases_per_million": 1.431,
- "new_cases_smoothed_per_million": 0.985,
- "total_deaths_per_million": 0.264,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.032,
- "stringency_index": 57.41
- },
- {
- "date": "2020-04-04",
- "total_cases": 509.0,
- "new_cases": 238.0,
- "new_cases_smoothed": 60.143,
- "total_deaths": 8.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 19.174,
- "new_cases_per_million": 8.966,
- "new_cases_smoothed_per_million": 2.266,
- "total_deaths_per_million": 0.301,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.038,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-05",
- "total_cases": 555.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 65.143,
- "total_deaths": 9.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 20.907,
- "new_cases_per_million": 1.733,
- "new_cases_smoothed_per_million": 2.454,
- "total_deaths_per_million": 0.339,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.038,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-06",
- "total_cases": 650.0,
- "new_cases": 95.0,
- "new_cases_smoothed": 78.714,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 24.486,
- "new_cases_per_million": 3.579,
- "new_cases_smoothed_per_million": 2.965,
- "total_deaths_per_million": 0.339,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.038,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-07",
- "total_cases": 658.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 73.714,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 24.787,
- "new_cases_per_million": 0.301,
- "new_cases_smoothed_per_million": 2.777,
- "total_deaths_per_million": 0.339,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.038,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-08",
- "total_cases": 685.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 70.286,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 25.804,
- "new_cases_per_million": 1.017,
- "new_cases_smoothed_per_million": 2.648,
- "total_deaths_per_million": 0.339,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-09",
- "total_cases": 730.0,
- "new_cases": 45.0,
- "new_cases_smoothed": 71.0,
- "total_deaths": 10.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 27.5,
- "new_cases_per_million": 1.695,
- "new_cases_smoothed_per_million": 2.675,
- "total_deaths_per_million": 0.377,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.022,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-10",
- "total_cases": 730.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 65.571,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 27.5,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.47,
- "total_deaths_per_million": 0.377,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-11",
- "total_cases": 803.0,
- "new_cases": 73.0,
- "new_cases_smoothed": 42.0,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 30.25,
- "new_cases_per_million": 2.75,
- "new_cases_smoothed_per_million": 1.582,
- "total_deaths_per_million": 0.377,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-12",
- "total_cases": 820.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 37.857,
- "total_deaths": 11.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 30.89,
- "new_cases_per_million": 0.64,
- "new_cases_smoothed_per_million": 1.426,
- "total_deaths_per_million": 0.414,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-13",
- "total_cases": 820.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 24.286,
- "total_deaths": 12.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 30.89,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.915,
- "total_deaths_per_million": 0.452,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.016,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-14",
- "total_cases": 820.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 23.143,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 30.89,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.872,
- "total_deaths_per_million": 0.452,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-15",
- "total_cases": 855.0,
- "new_cases": 35.0,
- "new_cases_smoothed": 24.286,
- "total_deaths": 17.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 32.208,
- "new_cases_per_million": 1.318,
- "new_cases_smoothed_per_million": 0.915,
- "total_deaths_per_million": 0.64,
- "new_deaths_per_million": 0.188,
- "new_deaths_smoothed_per_million": 0.043,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-16",
- "total_cases": 855.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 17.857,
- "total_deaths": 17.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 32.208,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.673,
- "total_deaths_per_million": 0.64,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.038,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-17",
- "total_cases": 855.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 17.857,
- "total_deaths": 21.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 32.208,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.673,
- "total_deaths_per_million": 0.791,
- "new_deaths_per_million": 0.151,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-18",
- "total_cases": 1016.0,
- "new_cases": 161.0,
- "new_cases_smoothed": 30.429,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 38.273,
- "new_cases_per_million": 6.065,
- "new_cases_smoothed_per_million": 1.146,
- "total_deaths_per_million": 0.791,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-19",
- "total_cases": 1016.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 28.0,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 38.273,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.055,
- "total_deaths_per_million": 0.791,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.054,
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-20",
- "total_cases": 1016.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 28.0,
- "total_deaths": 42.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 38.273,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.055,
- "total_deaths_per_million": 1.582,
- "new_deaths_per_million": 0.791,
- "new_deaths_smoothed_per_million": 0.161,
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-21",
- "total_cases": 1017.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 28.143,
- "total_deaths": 42.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 38.311,
- "new_cases_per_million": 0.038,
- "new_cases_smoothed_per_million": 1.06,
- "total_deaths_per_million": 1.582,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.161,
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-22",
- "total_cases": 1163.0,
- "new_cases": 146.0,
- "new_cases_smoothed": 44.0,
- "total_deaths": 42.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 43.811,
- "new_cases_per_million": 5.5,
- "new_cases_smoothed_per_million": 1.658,
- "total_deaths_per_million": 1.582,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.135,
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-23",
- "total_cases": 1163.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 44.0,
- "total_deaths": 43.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 43.811,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.658,
- "total_deaths_per_million": 1.62,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.14,
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-24",
- "total_cases": 1401.0,
- "new_cases": 238.0,
- "new_cases_smoothed": 78.0,
- "total_deaths": 49.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 52.777,
- "new_cases_per_million": 8.966,
- "new_cases_smoothed_per_million": 2.938,
- "total_deaths_per_million": 1.846,
- "new_deaths_per_million": 0.226,
- "new_deaths_smoothed_per_million": 0.151,
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-25",
- "total_cases": 1403.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 55.286,
- "total_deaths": 49.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 52.852,
- "new_cases_per_million": 0.075,
- "new_cases_smoothed_per_million": 2.083,
- "total_deaths_per_million": 1.846,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.151,
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-26",
- "total_cases": 1518.0,
- "new_cases": 115.0,
- "new_cases_smoothed": 71.714,
- "total_deaths": 53.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 57.184,
- "new_cases_per_million": 4.332,
- "new_cases_smoothed_per_million": 2.702,
- "total_deaths_per_million": 1.997,
- "new_deaths_per_million": 0.151,
- "new_deaths_smoothed_per_million": 0.172,
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-27",
- "total_cases": 1621.0,
- "new_cases": 103.0,
- "new_cases_smoothed": 86.429,
- "total_deaths": 56.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 61.064,
- "new_cases_per_million": 3.88,
- "new_cases_smoothed_per_million": 3.256,
- "total_deaths_per_million": 2.11,
- "new_deaths_per_million": 0.113,
- "new_deaths_smoothed_per_million": 0.075,
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-28",
- "total_cases": 1621.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 86.286,
- "total_deaths": 58.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 61.064,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.25,
- "total_deaths_per_million": 2.185,
- "new_deaths_per_million": 0.075,
- "new_deaths_smoothed_per_million": 0.086,
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-29",
- "total_cases": 1806.0,
- "new_cases": 185.0,
- "new_cases_smoothed": 91.857,
- "total_deaths": 59.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 68.033,
- "new_cases_per_million": 6.969,
- "new_cases_smoothed_per_million": 3.46,
- "total_deaths_per_million": 2.223,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.091,
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-30",
- "total_cases": 1832.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 95.571,
- "total_deaths": 61.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 69.013,
- "new_cases_per_million": 0.979,
- "new_cases_smoothed_per_million": 3.6,
- "total_deaths_per_million": 2.298,
- "new_deaths_per_million": 0.075,
- "new_deaths_smoothed_per_million": 0.097,
- "stringency_index": 71.3
- },
- {
- "date": "2020-05-01",
- "total_cases": 1832.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 61.571,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 69.013,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.319,
- "total_deaths_per_million": 2.298,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.065,
- "stringency_index": 63.89
- },
- {
- "date": "2020-05-02",
- "total_cases": 2069.0,
- "new_cases": 237.0,
- "new_cases_smoothed": 95.143,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 77.941,
- "new_cases_per_million": 8.928,
- "new_cases_smoothed_per_million": 3.584,
- "total_deaths_per_million": 2.298,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.065,
- "stringency_index": 63.89
- },
- {
- "date": "2020-05-03",
- "total_cases": 2077.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 79.857,
- "total_deaths": 64.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 78.242,
- "new_cases_per_million": 0.301,
- "new_cases_smoothed_per_million": 3.008,
- "total_deaths_per_million": 2.411,
- "new_deaths_per_million": 0.113,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 63.89
- },
- {
- "date": "2020-05-04",
- "total_cases": 2077.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 65.143,
- "total_deaths": 64.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 78.242,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.454,
- "total_deaths_per_million": 2.411,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.043,
- "stringency_index": 63.89
- },
- {
- "date": "2020-05-05",
- "total_cases": 2104.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 69.0,
- "total_deaths": 64.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 79.259,
- "new_cases_per_million": 1.017,
- "new_cases_smoothed_per_million": 2.599,
- "total_deaths_per_million": 2.411,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.032,
- "stringency_index": 63.89
- },
- {
- "date": "2020-05-06",
- "total_cases": 2104.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 42.571,
- "total_deaths": 64.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 79.259,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.604,
- "total_deaths_per_million": 2.411,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.027,
- "stringency_index": 63.89
- },
- {
- "date": "2020-05-07",
- "total_cases": 2265.0,
- "new_cases": 161.0,
- "new_cases_smoothed": 61.857,
- "total_deaths": 108.0,
- "new_deaths": 44.0,
- "new_deaths_smoothed": 6.714,
- "total_cases_per_million": 85.324,
- "new_cases_per_million": 6.065,
- "new_cases_smoothed_per_million": 2.33,
- "total_deaths_per_million": 4.068,
- "new_deaths_per_million": 1.658,
- "new_deaths_smoothed_per_million": 0.253,
- "stringency_index": 63.89
- },
- {
- "date": "2020-05-08",
- "total_cases": 2265.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 61.857,
- "total_deaths": 108.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 6.714,
- "total_cases_per_million": 85.324,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.33,
- "total_deaths_per_million": 4.068,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.253,
- "stringency_index": 63.89
- },
- {
- "date": "2020-05-09",
- "total_cases": 2265.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 28.0,
- "total_deaths": 108.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 6.714,
- "total_cases_per_million": 85.324,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.055,
- "total_deaths_per_million": 4.068,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.253,
- "stringency_index": 63.89
- },
- {
- "date": "2020-05-10",
- "total_cases": 2274.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 28.143,
- "total_deaths": 108.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 6.286,
- "total_cases_per_million": 85.663,
- "new_cases_per_million": 0.339,
- "new_cases_smoothed_per_million": 1.06,
- "total_deaths_per_million": 4.068,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.237,
- "stringency_index": 63.89
- },
- {
- "date": "2020-05-11",
- "total_cases": 2579.0,
- "new_cases": 305.0,
- "new_cases_smoothed": 71.714,
- "total_deaths": 114.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 7.143,
- "total_cases_per_million": 97.153,
- "new_cases_per_million": 11.49,
- "new_cases_smoothed_per_million": 2.702,
- "total_deaths_per_million": 4.294,
- "new_deaths_per_million": 0.226,
- "new_deaths_smoothed_per_million": 0.269,
- "stringency_index": 63.89
- },
- {
- "date": "2020-05-12",
- "total_cases": 2689.0,
- "new_cases": 110.0,
- "new_cases_smoothed": 83.571,
- "total_deaths": 125.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 8.714,
- "total_cases_per_million": 101.296,
- "new_cases_per_million": 4.144,
- "new_cases_smoothed_per_million": 3.148,
- "total_deaths_per_million": 4.709,
- "new_deaths_per_million": 0.414,
- "new_deaths_smoothed_per_million": 0.328,
- "stringency_index": 63.89
- },
- {
- "date": "2020-05-13",
- "total_cases": 2689.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 83.571,
- "total_deaths": 125.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 8.714,
- "total_cases_per_million": 101.296,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.148,
- "total_deaths_per_million": 4.709,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.328,
- "stringency_index": 63.89
- },
- {
- "date": "2020-05-14",
- "total_cases": 2800.0,
- "new_cases": 111.0,
- "new_cases_smoothed": 76.429,
- "total_deaths": 136.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 105.478,
- "new_cases_per_million": 4.181,
- "new_cases_smoothed_per_million": 2.879,
- "total_deaths_per_million": 5.123,
- "new_deaths_per_million": 0.414,
- "new_deaths_smoothed_per_million": 0.151,
- "stringency_index": 63.89
- },
- {
- "date": "2020-05-15",
- "total_cases": 2954.0,
- "new_cases": 154.0,
- "new_cases_smoothed": 98.429,
- "total_deaths": 139.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 111.279,
- "new_cases_per_million": 5.801,
- "new_cases_smoothed_per_million": 3.708,
- "total_deaths_per_million": 5.236,
- "new_deaths_per_million": 0.113,
- "new_deaths_smoothed_per_million": 0.167,
- "stringency_index": 63.89
- },
- {
- "date": "2020-05-16",
- "total_cases": 3105.0,
- "new_cases": 151.0,
- "new_cases_smoothed": 120.0,
- "total_deaths": 140.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 116.967,
- "new_cases_per_million": 5.688,
- "new_cases_smoothed_per_million": 4.52,
- "total_deaths_per_million": 5.274,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.172,
- "stringency_index": 63.89
- },
- {
- "date": "2020-05-17",
- "total_cases": 3292.0,
- "new_cases": 187.0,
- "new_cases_smoothed": 145.429,
- "total_deaths": 140.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 124.012,
- "new_cases_per_million": 7.044,
- "new_cases_smoothed_per_million": 5.478,
- "total_deaths_per_million": 5.274,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.172,
- "stringency_index": 63.89
- },
- {
- "date": "2020-05-18",
- "total_cases": 3292.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 101.857,
- "total_deaths": 140.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 124.012,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.837,
- "total_deaths_per_million": 5.274,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.14,
- "stringency_index": 63.89
- },
- {
- "date": "2020-05-19",
- "total_cases": 3292.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 86.143,
- "total_deaths": 140.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 124.012,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.245,
- "total_deaths_per_million": 5.274,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.081,
- "stringency_index": 63.89
- },
- {
- "date": "2020-05-20",
- "total_cases": 3529.0,
- "new_cases": 237.0,
- "new_cases_smoothed": 120.0,
- "total_deaths": 140.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 132.94,
- "new_cases_per_million": 8.928,
- "new_cases_smoothed_per_million": 4.52,
- "total_deaths_per_million": 5.274,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.081,
- "stringency_index": 63.89
- },
- {
- "date": "2020-05-21",
- "total_cases": 3733.0,
- "new_cases": 204.0,
- "new_cases_smoothed": 133.286,
- "total_deaths": 146.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 140.625,
- "new_cases_per_million": 7.685,
- "new_cases_smoothed_per_million": 5.021,
- "total_deaths_per_million": 5.5,
- "new_deaths_per_million": 0.226,
- "new_deaths_smoothed_per_million": 0.054,
- "stringency_index": 63.89
- },
- {
- "date": "2020-05-22",
- "total_cases": 4288.0,
- "new_cases": 555.0,
- "new_cases_smoothed": 190.571,
- "total_deaths": 156.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 161.532,
- "new_cases_per_million": 20.907,
- "new_cases_smoothed_per_million": 7.179,
- "total_deaths_per_million": 5.877,
- "new_deaths_per_million": 0.377,
- "new_deaths_smoothed_per_million": 0.091,
- "stringency_index": 63.89
- },
- {
- "date": "2020-05-23",
- "total_cases": 4400.0,
- "new_cases": 112.0,
- "new_cases_smoothed": 185.0,
- "total_deaths": 159.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 165.751,
- "new_cases_per_million": 4.219,
- "new_cases_smoothed_per_million": 6.969,
- "total_deaths_per_million": 5.99,
- "new_deaths_per_million": 0.113,
- "new_deaths_smoothed_per_million": 0.102,
- "stringency_index": 63.89
- },
- {
- "date": "2020-05-24",
- "total_cases": 4597.0,
- "new_cases": 197.0,
- "new_cases_smoothed": 186.429,
- "total_deaths": 159.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 173.172,
- "new_cases_per_million": 7.421,
- "new_cases_smoothed_per_million": 7.023,
- "total_deaths_per_million": 5.99,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.102,
- "stringency_index": 63.89
- },
- {
- "date": "2020-05-25",
- "total_cases": 4890.0,
- "new_cases": 293.0,
- "new_cases_smoothed": 228.286,
- "total_deaths": 165.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 184.209,
- "new_cases_per_million": 11.038,
- "new_cases_smoothed_per_million": 8.6,
- "total_deaths_per_million": 6.216,
- "new_deaths_per_million": 0.226,
- "new_deaths_smoothed_per_million": 0.135,
- "stringency_index": 63.89
- },
- {
- "date": "2020-05-26",
- "total_cases": 5044.0,
- "new_cases": 154.0,
- "new_cases_smoothed": 250.286,
- "total_deaths": 171.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 190.011,
- "new_cases_per_million": 5.801,
- "new_cases_smoothed_per_million": 9.428,
- "total_deaths_per_million": 6.442,
- "new_deaths_per_million": 0.226,
- "new_deaths_smoothed_per_million": 0.167,
- "stringency_index": 63.89
- },
- {
- "date": "2020-05-27",
- "total_cases": 5356.0,
- "new_cases": 312.0,
- "new_cases_smoothed": 261.0,
- "total_deaths": 175.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 201.764,
- "new_cases_per_million": 11.753,
- "new_cases_smoothed_per_million": 9.832,
- "total_deaths_per_million": 6.592,
- "new_deaths_per_million": 0.151,
- "new_deaths_smoothed_per_million": 0.188,
- "stringency_index": 63.89
- },
- {
- "date": "2020-05-28",
- "total_cases": 5356.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 231.857,
- "total_deaths": 177.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 201.764,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.734,
- "total_deaths_per_million": 6.668,
- "new_deaths_per_million": 0.075,
- "new_deaths_smoothed_per_million": 0.167,
- "stringency_index": 63.89
- },
- {
- "date": "2020-05-29",
- "total_cases": 5356.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 152.571,
- "total_deaths": 177.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 201.764,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.747,
- "total_deaths_per_million": 6.668,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.113,
- "stringency_index": 63.89
- },
- {
- "date": "2020-05-30",
- "total_cases": 5436.0,
- "new_cases": 80.0,
- "new_cases_smoothed": 148.0,
- "total_deaths": 177.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 204.778,
- "new_cases_per_million": 3.014,
- "new_cases_smoothed_per_million": 5.575,
- "total_deaths_per_million": 6.668,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.097,
- "stringency_index": 63.89
- },
- {
- "date": "2020-05-31",
- "total_cases": 5904.0,
- "new_cases": 468.0,
- "new_cases_smoothed": 186.714,
- "total_deaths": 191.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 222.408,
- "new_cases_per_million": 17.63,
- "new_cases_smoothed_per_million": 7.034,
- "total_deaths_per_million": 7.195,
- "new_deaths_per_million": 0.527,
- "new_deaths_smoothed_per_million": 0.172,
- "stringency_index": 63.89
- },
- {
- "date": "2020-06-01",
- "total_cases": 5904.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 144.857,
- "total_deaths": 191.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 222.408,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.457,
- "total_deaths_per_million": 7.195,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.14,
- "stringency_index": 60.19
- },
- {
- "date": "2020-06-02",
- "total_cases": 6397.0,
- "new_cases": 493.0,
- "new_cases_smoothed": 193.286,
- "total_deaths": 199.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 240.979,
- "new_cases_per_million": 18.572,
- "new_cases_smoothed_per_million": 7.281,
- "total_deaths_per_million": 7.496,
- "new_deaths_per_million": 0.301,
- "new_deaths_smoothed_per_million": 0.151,
- "stringency_index": 60.19
- },
- {
- "date": "2020-06-03",
- "total_cases": 6585.0,
- "new_cases": 188.0,
- "new_cases_smoothed": 175.571,
- "total_deaths": 200.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 248.061,
- "new_cases_per_million": 7.082,
- "new_cases_smoothed_per_million": 6.614,
- "total_deaths_per_million": 7.534,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.135,
- "stringency_index": 60.19
- },
- {
- "date": "2020-06-04",
- "total_cases": 6752.0,
- "new_cases": 167.0,
- "new_cases_smoothed": 199.429,
- "total_deaths": 200.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 254.352,
- "new_cases_per_million": 6.291,
- "new_cases_smoothed_per_million": 7.513,
- "total_deaths_per_million": 7.534,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.124,
- "stringency_index": 60.19
- },
- {
- "date": "2020-06-05",
- "total_cases": 6789.0,
- "new_cases": 37.0,
- "new_cases_smoothed": 204.714,
- "total_deaths": 203.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 255.746,
- "new_cases_per_million": 1.394,
- "new_cases_smoothed_per_million": 7.712,
- "total_deaths_per_million": 7.647,
- "new_deaths_per_million": 0.113,
- "new_deaths_smoothed_per_million": 0.14,
- "stringency_index": 60.19
- },
- {
- "date": "2020-06-06",
- "total_cases": 7599.0,
- "new_cases": 810.0,
- "new_cases_smoothed": 309.0,
- "total_deaths": 203.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 286.259,
- "new_cases_per_million": 30.513,
- "new_cases_smoothed_per_million": 11.64,
- "total_deaths_per_million": 7.647,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.14,
- "stringency_index": 60.19
- },
- {
- "date": "2020-06-07",
- "total_cases": 7599.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 242.143,
- "total_deaths": 203.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 286.259,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.122,
- "total_deaths_per_million": 7.647,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.065,
- "stringency_index": 60.19
- },
- {
- "date": "2020-06-08",
- "total_cases": 7908.0,
- "new_cases": 309.0,
- "new_cases_smoothed": 286.286,
- "total_deaths": 203.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 297.9,
- "new_cases_per_million": 11.64,
- "new_cases_smoothed_per_million": 10.785,
- "total_deaths_per_million": 7.647,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.065,
- "stringency_index": 60.19
- },
- {
- "date": "2020-06-09",
- "total_cases": 8312.0,
- "new_cases": 404.0,
- "new_cases_smoothed": 273.571,
- "total_deaths": 208.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 313.118,
- "new_cases_per_million": 15.219,
- "new_cases_smoothed_per_million": 10.306,
- "total_deaths_per_million": 7.835,
- "new_deaths_per_million": 0.188,
- "new_deaths_smoothed_per_million": 0.048,
- "stringency_index": 60.19
- },
- {
- "date": "2020-06-10",
- "total_cases": 8681.0,
- "new_cases": 369.0,
- "new_cases_smoothed": 299.429,
- "total_deaths": 208.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 327.019,
- "new_cases_per_million": 13.9,
- "new_cases_smoothed_per_million": 11.28,
- "total_deaths_per_million": 7.835,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.043,
- "stringency_index": 60.19
- },
- {
- "date": "2020-06-11",
- "total_cases": 8929.0,
- "new_cases": 248.0,
- "new_cases_smoothed": 311.0,
- "total_deaths": 214.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 336.361,
- "new_cases_per_million": 9.342,
- "new_cases_smoothed_per_million": 11.716,
- "total_deaths_per_million": 8.062,
- "new_deaths_per_million": 0.226,
- "new_deaths_smoothed_per_million": 0.075,
- "stringency_index": 60.19
- },
- {
- "date": "2020-06-12",
- "total_cases": 8929.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 305.714,
- "total_deaths": 214.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 336.361,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 11.516,
- "total_deaths_per_million": 8.062,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 60.19
- },
- {
- "date": "2020-06-13",
- "total_cases": 9196.0,
- "new_cases": 267.0,
- "new_cases_smoothed": 228.143,
- "total_deaths": 273.0,
- "new_deaths": 59.0,
- "new_deaths_smoothed": 10.0,
- "total_cases_per_million": 346.419,
- "new_cases_per_million": 10.058,
- "new_cases_smoothed_per_million": 8.594,
- "total_deaths_per_million": 10.284,
- "new_deaths_per_million": 2.223,
- "new_deaths_smoothed_per_million": 0.377,
- "stringency_index": 60.19
- },
- {
- "date": "2020-06-14",
- "total_cases": 9572.0,
- "new_cases": 376.0,
- "new_cases_smoothed": 281.857,
- "total_deaths": 275.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 10.286,
- "total_cases_per_million": 360.583,
- "new_cases_per_million": 14.164,
- "new_cases_smoothed_per_million": 10.618,
- "total_deaths_per_million": 10.359,
- "new_deaths_per_million": 0.075,
- "new_deaths_smoothed_per_million": 0.387,
- "stringency_index": 60.19
- },
- {
- "date": "2020-06-15",
- "total_cases": 9864.0,
- "new_cases": 292.0,
- "new_cases_smoothed": 279.429,
- "total_deaths": 276.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 10.429,
- "total_cases_per_million": 371.583,
- "new_cases_per_million": 11.0,
- "new_cases_smoothed_per_million": 10.526,
- "total_deaths_per_million": 10.397,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.393,
- "stringency_index": 60.19
- },
- {
- "date": "2020-06-16",
- "total_cases": 9864.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 221.714,
- "total_deaths": 276.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 9.714,
- "total_cases_per_million": 371.583,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.352,
- "total_deaths_per_million": 10.397,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.366,
- "stringency_index": 60.19
- },
- {
- "date": "2020-06-17",
- "total_cases": 9864.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 169.0,
- "total_deaths": 276.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 9.714,
- "total_cases_per_million": 371.583,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.366,
- "total_deaths_per_million": 10.397,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.366,
- "stringency_index": 60.19
- },
- {
- "date": "2020-06-18",
- "total_cases": 9864.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 133.571,
- "total_deaths": 276.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 8.857,
- "total_cases_per_million": 371.583,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.032,
- "total_deaths_per_million": 10.397,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.334,
- "stringency_index": 60.19
- },
- {
- "date": "2020-06-19",
- "total_cases": 10638.0,
- "new_cases": 774.0,
- "new_cases_smoothed": 244.143,
- "total_deaths": 282.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 9.714,
- "total_cases_per_million": 400.74,
- "new_cases_per_million": 29.157,
- "new_cases_smoothed_per_million": 9.197,
- "total_deaths_per_million": 10.623,
- "new_deaths_per_million": 0.226,
- "new_deaths_smoothed_per_million": 0.366,
- "stringency_index": 60.19
- },
- {
- "date": "2020-06-20",
- "total_cases": 11281.0,
- "new_cases": 643.0,
- "new_cases_smoothed": 297.857,
- "total_deaths": 300.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 424.963,
- "new_cases_per_million": 24.222,
- "new_cases_smoothed_per_million": 11.22,
- "total_deaths_per_million": 11.301,
- "new_deaths_per_million": 0.678,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 60.19
- },
- {
- "date": "2020-06-21",
- "total_cases": 11281.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 244.143,
- "total_deaths": 300.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 424.963,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.197,
- "total_deaths_per_million": 11.301,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.135,
- "stringency_index": 60.19
- },
- {
- "date": "2020-06-22",
- "total_cases": 11610.0,
- "new_cases": 329.0,
- "new_cases_smoothed": 249.429,
- "total_deaths": 301.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 437.356,
- "new_cases_per_million": 12.394,
- "new_cases_smoothed_per_million": 9.396,
- "total_deaths_per_million": 11.339,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.135,
- "stringency_index": 60.19
- },
- {
- "date": "2020-06-23",
- "total_cases": 11892.0,
- "new_cases": 282.0,
- "new_cases_smoothed": 289.714,
- "total_deaths": 303.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 447.979,
- "new_cases_per_million": 10.623,
- "new_cases_smoothed_per_million": 10.914,
- "total_deaths_per_million": 11.414,
- "new_deaths_per_million": 0.075,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 60.19
- },
- {
- "date": "2020-06-24",
- "total_cases": 12041.0,
- "new_cases": 149.0,
- "new_cases_smoothed": 311.0,
- "total_deaths": 308.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 453.592,
- "new_cases_per_million": 5.613,
- "new_cases_smoothed_per_million": 11.716,
- "total_deaths_per_million": 11.603,
- "new_deaths_per_million": 0.188,
- "new_deaths_smoothed_per_million": 0.172,
- "stringency_index": 60.19
- },
- {
- "date": "2020-06-25",
- "total_cases": 12270.0,
- "new_cases": 229.0,
- "new_cases_smoothed": 343.714,
- "total_deaths": 313.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.286,
- "total_cases_per_million": 462.219,
- "new_cases_per_million": 8.627,
- "new_cases_smoothed_per_million": 12.948,
- "total_deaths_per_million": 11.791,
- "new_deaths_per_million": 0.188,
- "new_deaths_smoothed_per_million": 0.199,
- "stringency_index": 60.19
- },
- {
- "date": "2020-06-26",
- "total_cases": 12592.0,
- "new_cases": 322.0,
- "new_cases_smoothed": 279.143,
- "total_deaths": 313.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 474.349,
- "new_cases_per_million": 12.13,
- "new_cases_smoothed_per_million": 10.515,
- "total_deaths_per_million": 11.791,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.167,
- "stringency_index": 60.19
- },
- {
- "date": "2020-06-27",
- "total_cases": 12592.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 187.286,
- "total_deaths": 313.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 474.349,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.055,
- "total_deaths_per_million": 11.791,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.07,
- "stringency_index": 60.19
- },
- {
- "date": "2020-06-28",
- "total_cases": 12592.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 187.286,
- "total_deaths": 313.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 474.349,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.055,
- "total_deaths_per_million": 11.791,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.07,
- "stringency_index": 60.19
- },
- {
- "date": "2020-06-29",
- "total_cases": 12592.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 140.286,
- "total_deaths": 313.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 474.349,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.285,
- "total_deaths_per_million": 11.791,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.065,
- "stringency_index": 60.19
- },
- {
- "date": "2020-06-30",
- "total_cases": 12592.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 100.0,
- "total_deaths": 313.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 474.349,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.767,
- "total_deaths_per_million": 11.791,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.054,
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-01",
- "total_cases": 12592.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 78.714,
- "total_deaths": 313.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 474.349,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.965,
- "total_deaths_per_million": 11.791,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.027,
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-02",
- "total_cases": 12592.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 46.0,
- "total_deaths": 313.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 474.349,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.733,
- "total_deaths_per_million": 11.791,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-03",
- "total_cases": 12592.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 313.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 474.349,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 11.791,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-04",
- "total_cases": 12592.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 313.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 474.349,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 11.791,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-05",
- "total_cases": 12592.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 313.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 474.349,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 11.791,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-06",
- "total_cases": 13711.0,
- "new_cases": 1119.0,
- "new_cases_smoothed": 159.857,
- "total_deaths": 328.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 516.502,
- "new_cases_per_million": 42.153,
- "new_cases_smoothed_per_million": 6.022,
- "total_deaths_per_million": 12.356,
- "new_deaths_per_million": 0.565,
- "new_deaths_smoothed_per_million": 0.081,
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-07",
- "total_cases": 14037.0,
- "new_cases": 326.0,
- "new_cases_smoothed": 206.429,
- "total_deaths": 330.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 528.783,
- "new_cases_per_million": 12.281,
- "new_cases_smoothed_per_million": 7.776,
- "total_deaths_per_million": 12.431,
- "new_deaths_per_million": 0.075,
- "new_deaths_smoothed_per_million": 0.091,
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-08",
- "total_cases": 14916.0,
- "new_cases": 879.0,
- "new_cases_smoothed": 332.0,
- "total_deaths": 359.0,
- "new_deaths": 29.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 561.895,
- "new_cases_per_million": 33.113,
- "new_cases_smoothed_per_million": 12.507,
- "total_deaths_per_million": 13.524,
- "new_deaths_per_million": 1.092,
- "new_deaths_smoothed_per_million": 0.248,
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-09",
- "total_cases": 14916.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 332.0,
- "total_deaths": 359.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 561.895,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 12.507,
- "total_deaths_per_million": 13.524,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.248,
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-10",
- "total_cases": 14916.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 332.0,
- "total_deaths": 359.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 561.895,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 12.507,
- "total_deaths_per_million": 13.524,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.248,
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-11",
- "total_cases": 14916.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 332.0,
- "total_deaths": 359.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 561.895,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 12.507,
- "total_deaths_per_million": 13.524,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.248,
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-12",
- "total_cases": 14916.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 332.0,
- "total_deaths": 359.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 561.895,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 12.507,
- "total_deaths_per_million": 13.524,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.248,
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-13",
- "total_cases": 15173.0,
- "new_cases": 257.0,
- "new_cases_smoothed": 208.857,
- "total_deaths": 359.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 571.577,
- "new_cases_per_million": 9.681,
- "new_cases_smoothed_per_million": 7.868,
- "total_deaths_per_million": 13.524,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.167,
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-14",
- "total_cases": 15173.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 162.286,
- "total_deaths": 359.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 571.577,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.113,
- "total_deaths_per_million": 13.524,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.156,
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-15",
- "total_cases": 15173.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 36.714,
- "total_deaths": 359.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 571.577,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.383,
- "total_deaths_per_million": 13.524,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-16",
- "total_cases": 15173.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 36.714,
- "total_deaths": 359.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 571.577,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.383,
- "total_deaths_per_million": 13.524,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-17",
- "total_cases": 16157.0,
- "new_cases": 984.0,
- "new_cases_smoothed": 177.286,
- "total_deaths": 373.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 608.645,
- "new_cases_per_million": 37.068,
- "new_cases_smoothed_per_million": 6.678,
- "total_deaths_per_million": 14.051,
- "new_deaths_per_million": 0.527,
- "new_deaths_smoothed_per_million": 0.075,
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-18",
- "total_cases": 16157.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 177.286,
- "total_deaths": 373.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 608.645,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.678,
- "total_deaths_per_million": 14.051,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.075,
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-19",
- "total_cases": 16157.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 177.286,
- "total_deaths": 373.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 608.645,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.678,
- "total_deaths_per_million": 14.051,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.075,
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-20",
- "total_cases": 16157.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 140.571,
- "total_deaths": 373.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 608.645,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.295,
- "total_deaths_per_million": 14.051,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.075,
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-21",
- "total_cases": 16157.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 140.571,
- "total_deaths": 373.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 608.645,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.295,
- "total_deaths_per_million": 14.051,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.075,
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-22",
- "total_cases": 16157.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 140.571,
- "total_deaths": 373.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 608.645,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.295,
- "total_deaths_per_million": 14.051,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.075,
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-23",
- "total_cases": 16522.0,
- "new_cases": 365.0,
- "new_cases_smoothed": 192.714,
- "total_deaths": 382.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 622.395,
- "new_cases_per_million": 13.75,
- "new_cases_smoothed_per_million": 7.26,
- "total_deaths_per_million": 14.39,
- "new_deaths_per_million": 0.339,
- "new_deaths_smoothed_per_million": 0.124,
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-24",
- "total_cases": 16708.0,
- "new_cases": 186.0,
- "new_cases_smoothed": 78.714,
- "total_deaths": 385.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 629.401,
- "new_cases_per_million": 7.007,
- "new_cases_smoothed_per_million": 2.965,
- "total_deaths_per_million": 14.503,
- "new_deaths_per_million": 0.113,
- "new_deaths_smoothed_per_million": 0.065,
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-25",
- "total_cases": 16708.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 78.714,
- "total_deaths": 385.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 629.401,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.965,
- "total_deaths_per_million": 14.503,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.065,
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-26",
- "total_cases": 16708.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 78.714,
- "total_deaths": 385.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 629.401,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.965,
- "total_deaths_per_million": 14.503,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.065,
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-27",
- "total_cases": 16708.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 78.714,
- "total_deaths": 385.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 629.401,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.965,
- "total_deaths_per_million": 14.503,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.065,
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-28",
- "total_cases": 16708.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 78.714,
- "total_deaths": 385.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 629.401,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.965,
- "total_deaths_per_million": 14.503,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.065,
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-29",
- "total_cases": 16708.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 78.714,
- "total_deaths": 385.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 629.401,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.965,
- "total_deaths_per_million": 14.503,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.065,
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-30",
- "total_cases": 17255.0,
- "new_cases": 547.0,
- "new_cases_smoothed": 104.714,
- "total_deaths": 387.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 650.007,
- "new_cases_per_million": 20.606,
- "new_cases_smoothed_per_million": 3.945,
- "total_deaths_per_million": 14.579,
- "new_deaths_per_million": 0.075,
- "new_deaths_smoothed_per_million": 0.027,
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-31",
- "total_cases": 17255.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 78.143,
- "total_deaths": 387.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 650.007,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.944,
- "total_deaths_per_million": 14.579,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-01",
- "total_cases": 17255.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 78.143,
- "total_deaths": 387.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 650.007,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.944,
- "total_deaths_per_million": 14.579,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-02",
- "total_cases": 17255.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 78.143,
- "total_deaths": 387.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 650.007,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.944,
- "total_deaths_per_million": 14.579,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-03",
- "total_cases": 17255.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 78.143,
- "total_deaths": 387.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 650.007,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.944,
- "total_deaths_per_million": 14.579,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-04",
- "total_cases": 17255.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 78.143,
- "total_deaths": 387.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 650.007,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.944,
- "total_deaths_per_million": 14.579,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-05",
- "total_cases": 17718.0,
- "new_cases": 463.0,
- "new_cases_smoothed": 144.286,
- "total_deaths": 391.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 667.449,
- "new_cases_per_million": 17.442,
- "new_cases_smoothed_per_million": 5.435,
- "total_deaths_per_million": 14.729,
- "new_deaths_per_million": 0.151,
- "new_deaths_smoothed_per_million": 0.032,
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-06",
- "total_cases": 17718.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 66.143,
- "total_deaths": 391.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 667.449,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.492,
- "total_deaths_per_million": 14.729,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.022,
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-07",
- "total_cases": 17718.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 66.143,
- "total_deaths": 391.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 667.449,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.492,
- "total_deaths_per_million": 14.729,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.022,
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-08",
- "total_cases": 17718.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 66.143,
- "total_deaths": 391.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 667.449,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.492,
- "total_deaths_per_million": 14.729,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.022,
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-09",
- "total_cases": 17718.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 66.143,
- "total_deaths": 391.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 667.449,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.492,
- "total_deaths_per_million": 14.729,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.022,
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-10",
- "total_cases": 18042.0,
- "new_cases": 324.0,
- "new_cases_smoothed": 112.429,
- "total_deaths": 395.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 679.654,
- "new_cases_per_million": 12.205,
- "new_cases_smoothed_per_million": 4.235,
- "total_deaths_per_million": 14.88,
- "new_deaths_per_million": 0.151,
- "new_deaths_smoothed_per_million": 0.043,
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-11",
- "total_cases": 18042.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 112.429,
- "total_deaths": 395.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 679.654,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.235,
- "total_deaths_per_million": 14.88,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.043,
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-12",
- "total_cases": 18213.0,
- "new_cases": 171.0,
- "new_cases_smoothed": 70.714,
- "total_deaths": 398.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 686.096,
- "new_cases_per_million": 6.442,
- "new_cases_smoothed_per_million": 2.664,
- "total_deaths_per_million": 14.993,
- "new_deaths_per_million": 0.113,
- "new_deaths_smoothed_per_million": 0.038,
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-13",
- "total_cases": 18263.0,
- "new_cases": 50.0,
- "new_cases_smoothed": 77.857,
- "total_deaths": 401.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 687.979,
- "new_cases_per_million": 1.884,
- "new_cases_smoothed_per_million": 2.933,
- "total_deaths_per_million": 15.106,
- "new_deaths_per_million": 0.113,
- "new_deaths_smoothed_per_million": 0.054,
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-14",
- "total_cases": 18308.0,
- "new_cases": 45.0,
- "new_cases_smoothed": 84.286,
- "total_deaths": 401.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 689.674,
- "new_cases_per_million": 1.695,
- "new_cases_smoothed_per_million": 3.175,
- "total_deaths_per_million": 15.106,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.054,
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-15",
- "total_cases": 18469.0,
- "new_cases": 161.0,
- "new_cases_smoothed": 107.286,
- "total_deaths": 401.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 695.739,
- "new_cases_per_million": 6.065,
- "new_cases_smoothed_per_million": 4.042,
- "total_deaths_per_million": 15.106,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.054,
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-16",
- "total_cases": 18469.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 107.286,
- "total_deaths": 401.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 695.739,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.042,
- "total_deaths_per_million": 15.106,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.054,
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-17",
- "total_cases": 18469.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 61.0,
- "total_deaths": 401.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 695.739,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.298,
- "total_deaths_per_million": 15.106,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.032,
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-18",
- "total_cases": 18582.0,
- "new_cases": 113.0,
- "new_cases_smoothed": 77.143,
- "total_deaths": 403.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 699.996,
- "new_cases_per_million": 4.257,
- "new_cases_smoothed_per_million": 2.906,
- "total_deaths_per_million": 15.181,
- "new_deaths_per_million": 0.075,
- "new_deaths_smoothed_per_million": 0.043,
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-19",
- "total_cases": 18599.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 55.143,
- "total_deaths": 406.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 700.636,
- "new_cases_per_million": 0.64,
- "new_cases_smoothed_per_million": 2.077,
- "total_deaths_per_million": 15.294,
- "new_deaths_per_million": 0.113,
- "new_deaths_smoothed_per_million": 0.043,
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-20",
- "total_cases": 18624.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 51.571,
- "total_deaths": 406.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 701.578,
- "new_cases_per_million": 0.942,
- "new_cases_smoothed_per_million": 1.943,
- "total_deaths_per_million": 15.294,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.027,
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-21",
- "total_cases": 18762.0,
- "new_cases": 138.0,
- "new_cases_smoothed": 64.857,
- "total_deaths": 408.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 706.777,
- "new_cases_per_million": 5.199,
- "new_cases_smoothed_per_million": 2.443,
- "total_deaths_per_million": 15.37,
- "new_deaths_per_million": 0.075,
- "new_deaths_smoothed_per_million": 0.038,
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-22",
- "total_cases": 18762.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 41.857,
- "total_deaths": 408.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 706.777,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.577,
- "total_deaths_per_million": 15.37,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.038,
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-23",
- "total_cases": 18762.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 41.857,
- "total_deaths": 408.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 706.777,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.577,
- "total_deaths_per_million": 15.37,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.038,
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-24",
- "total_cases": 18762.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 41.857,
- "total_deaths": 408.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 706.777,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.577,
- "total_deaths_per_million": 15.37,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.038,
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-25",
- "total_cases": 18762.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 25.714,
- "total_deaths": 408.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 706.777,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.969,
- "total_deaths_per_million": 15.37,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.027,
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-26",
- "total_cases": 18973.0,
- "new_cases": 211.0,
- "new_cases_smoothed": 53.429,
- "total_deaths": 410.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 714.725,
- "new_cases_per_million": 7.949,
- "new_cases_smoothed_per_million": 2.013,
- "total_deaths_per_million": 15.445,
- "new_deaths_per_million": 0.075,
- "new_deaths_smoothed_per_million": 0.022,
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-27",
- "total_cases": 18973.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 49.857,
- "total_deaths": 410.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 714.725,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.878,
- "total_deaths_per_million": 15.445,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.022,
- "stringency_index": 57.41
- },
- {
- "date": "2020-08-28",
- "total_cases": 19142.0,
- "new_cases": 169.0,
- "new_cases_smoothed": 54.286,
- "total_deaths": 411.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 721.092,
- "new_cases_per_million": 6.366,
- "new_cases_smoothed_per_million": 2.045,
- "total_deaths_per_million": 15.483,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.016,
- "stringency_index": 57.41
- },
- {
- "date": "2020-08-29",
- "total_cases": 19142.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 54.286,
- "total_deaths": 411.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 721.092,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.045,
- "total_deaths_per_million": 15.483,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "stringency_index": 57.41
- },
- {
- "date": "2020-08-30",
- "total_cases": 19142.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 54.286,
- "total_deaths": 411.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 721.092,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.045,
- "total_deaths_per_million": 15.483,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "stringency_index": 57.41
- },
- {
- "date": "2020-08-31",
- "total_cases": 19142.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 54.286,
- "total_deaths": 411.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 721.092,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.045,
- "total_deaths_per_million": 15.483,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "stringency_index": 57.41
- },
- {
- "date": "2020-09-01",
- "total_cases": 19142.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 54.286,
- "total_deaths": 411.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 721.092,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.045,
- "total_deaths_per_million": 15.483,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "stringency_index": 57.41
- },
- {
- "date": "2020-09-02",
- "total_cases": 19409.0,
- "new_cases": 267.0,
- "new_cases_smoothed": 62.286,
- "total_deaths": 414.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 731.15,
- "new_cases_per_million": 10.058,
- "new_cases_smoothed_per_million": 2.346,
- "total_deaths_per_million": 15.596,
- "new_deaths_per_million": 0.113,
- "new_deaths_smoothed_per_million": 0.022,
- "stringency_index": 57.41
- },
- {
- "date": "2020-09-03",
- "total_cases": 19460.0,
- "new_cases": 51.0,
- "new_cases_smoothed": 69.571,
- "total_deaths": 414.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 733.071,
- "new_cases_per_million": 1.921,
- "new_cases_smoothed_per_million": 2.621,
- "total_deaths_per_million": 15.596,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.022,
- "stringency_index": 57.41
- },
- {
- "date": "2020-09-04",
- "total_cases": 19604.0,
- "new_cases": 144.0,
- "new_cases_smoothed": 66.0,
- "total_deaths": 414.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 738.495,
- "new_cases_per_million": 5.425,
- "new_cases_smoothed_per_million": 2.486,
- "total_deaths_per_million": 15.596,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "stringency_index": 57.41
- },
- {
- "date": "2020-09-05",
- "total_cases": 19604.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 66.0,
- "total_deaths": 414.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 738.495,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.486,
- "total_deaths_per_million": 15.596,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "stringency_index": 57.41
- },
- {
- "date": "2020-09-06",
- "total_cases": 19604.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 66.0,
- "total_deaths": 414.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 738.495,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.486,
- "total_deaths_per_million": 15.596,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "stringency_index": 57.41
- },
- {
- "date": "2020-09-07",
- "total_cases": 19604.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 66.0,
- "total_deaths": 414.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 738.495,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.486,
- "total_deaths_per_million": 15.596,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "stringency_index": 57.41
- },
- {
- "date": "2020-09-08",
- "total_cases": 19604.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 66.0,
- "total_deaths": 414.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 738.495,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.486,
- "total_deaths_per_million": 15.596,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "stringency_index": 57.41
- },
- {
- "date": "2020-09-09",
- "total_cases": 19604.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 27.857,
- "total_deaths": 414.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 738.495,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.049,
- "total_deaths_per_million": 15.596,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 57.41
- },
- {
- "date": "2020-09-10",
- "total_cases": 19848.0,
- "new_cases": 244.0,
- "new_cases_smoothed": 55.429,
- "total_deaths": 415.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 747.687,
- "new_cases_per_million": 9.192,
- "new_cases_smoothed_per_million": 2.088,
- "total_deaths_per_million": 15.633,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.005,
- "stringency_index": 57.41
- },
- {
- "date": "2020-09-11",
- "total_cases": 20009.0,
- "new_cases": 161.0,
- "new_cases_smoothed": 57.857,
- "total_deaths": 415.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 753.752,
- "new_cases_per_million": 6.065,
- "new_cases_smoothed_per_million": 2.18,
- "total_deaths_per_million": 15.633,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "stringency_index": 55.56
- },
- {
- "date": "2020-09-12",
- "total_cases": 20009.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 57.857,
- "total_deaths": 415.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 753.752,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.18,
- "total_deaths_per_million": 15.633,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "stringency_index": 55.56
- },
- {
- "date": "2020-09-13",
- "total_cases": 20009.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 57.857,
- "total_deaths": 415.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 753.752,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.18,
- "total_deaths_per_million": 15.633,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "stringency_index": 55.56
- },
- {
- "date": "2020-09-14",
- "total_cases": 20167.0,
- "new_cases": 158.0,
- "new_cases_smoothed": 80.429,
- "total_deaths": 415.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 759.704,
- "new_cases_per_million": 5.952,
- "new_cases_smoothed_per_million": 3.03,
- "total_deaths_per_million": 15.633,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "stringency_index": 55.56
- },
- {
- "date": "2020-09-15",
- "total_cases": 20228.0,
- "new_cases": 61.0,
- "new_cases_smoothed": 89.143,
- "total_deaths": 415.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 762.002,
- "new_cases_per_million": 2.298,
- "new_cases_smoothed_per_million": 3.358,
- "total_deaths_per_million": 15.633,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "stringency_index": 55.56
- },
- {
- "date": "2020-09-16",
- "total_cases": 20271.0,
- "new_cases": 43.0,
- "new_cases_smoothed": 95.286,
- "total_deaths": 415.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 763.622,
- "new_cases_per_million": 1.62,
- "new_cases_smoothed_per_million": 3.589,
- "total_deaths_per_million": 15.633,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "stringency_index": 55.56
- },
- {
- "date": "2020-09-17",
- "total_cases": 20303.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 65.0,
- "total_deaths": 415.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 764.827,
- "new_cases_per_million": 1.205,
- "new_cases_smoothed_per_million": 2.449,
- "total_deaths_per_million": 15.633,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 55.56
- },
- {
- "date": "2020-09-18",
- "total_cases": 20371.0,
- "new_cases": 68.0,
- "new_cases_smoothed": 51.714,
- "total_deaths": 416.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 767.389,
- "new_cases_per_million": 2.562,
- "new_cases_smoothed_per_million": 1.948,
- "total_deaths_per_million": 15.671,
- "new_deaths_per_million": 0.038,
- "new_deaths_smoothed_per_million": 0.005,
- "stringency_index": 55.56
- },
- {
- "date": "2020-09-19",
- "total_cases": 20371.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 51.714,
- "total_deaths": 416.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 767.389,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.948,
- "total_deaths_per_million": 15.671,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "stringency_index": 55.56
- },
- {
- "date": "2020-09-20",
- "total_cases": 20431.0,
- "new_cases": 60.0,
- "new_cases_smoothed": 60.286,
- "total_deaths": 416.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 769.649,
- "new_cases_per_million": 2.26,
- "new_cases_smoothed_per_million": 2.271,
- "total_deaths_per_million": 15.671,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "stringency_index": 55.56
- },
- {
- "date": "2020-09-21",
- "total_cases": 20431.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 37.714,
- "total_deaths": 416.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 769.649,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.421,
- "total_deaths_per_million": 15.671,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "stringency_index": 55.56
- },
- {
- "date": "2020-09-22",
- "total_cases": 20598.0,
- "new_cases": 167.0,
- "new_cases_smoothed": 52.857,
- "total_deaths": 416.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 775.94,
- "new_cases_per_million": 6.291,
- "new_cases_smoothed_per_million": 1.991,
- "total_deaths_per_million": 15.671,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005
- },
- {
- "date": "2020-09-23",
- "total_cases": 20598.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 46.714,
- "total_deaths": 416.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 775.94,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.76,
- "total_deaths_per_million": 15.671,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005
- },
- {
- "date": "2020-09-24",
- "total_cases": 20690.0,
- "new_cases": 92.0,
- "new_cases_smoothed": 55.286,
- "total_deaths": 416.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 779.406,
- "new_cases_per_million": 3.466,
- "new_cases_smoothed_per_million": 2.083,
- "total_deaths_per_million": 15.671,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005
- },
- {
- "date": "2020-09-25",
- "total_cases": 20712.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 48.714,
- "total_deaths": 418.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 780.235,
- "new_cases_per_million": 0.829,
- "new_cases_smoothed_per_million": 1.835,
- "total_deaths_per_million": 15.746,
- "new_deaths_per_million": 0.075,
- "new_deaths_smoothed_per_million": 0.011
- }
- ]
- },
- "COD": {
- "continent": "Africa",
- "location": "Democratic Republic of Congo",
- "population": 89561404.0,
- "population_density": 35.879,
- "median_age": 17.0,
- "aged_65_older": 3.02,
- "aged_70_older": 1.745,
- "gdp_per_capita": 808.133,
- "extreme_poverty": 77.1,
- "cardiovasc_death_rate": 318.949,
- "diabetes_prevalence": 6.1,
- "handwashing_facilities": 4.472,
- "life_expectancy": 60.68,
- "human_development_index": 0.457,
- "data": [
- {
- "date": "2020-03-11",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.011,
- "new_cases_per_million": 0.011,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-14",
- "total_cases": 2.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.022,
- "new_cases_per_million": 0.011,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-15",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.022,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-16",
- "total_cases": 2.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.022,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-17",
- "total_cases": 3.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.033,
- "new_cases_per_million": 0.011,
- "new_cases_smoothed_per_million": 0.005,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-18",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.033,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.003,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-19",
- "total_cases": 14.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.156,
- "new_cases_per_million": 0.123,
- "new_cases_smoothed_per_million": 0.021,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 52.78
- },
- {
- "date": "2020-03-20",
- "total_cases": 14.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.156,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.021,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 55.56
- },
- {
- "date": "2020-03-21",
- "total_cases": 14.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.156,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.019,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 55.56
- },
- {
- "date": "2020-03-22",
- "total_cases": 23.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 0.257,
- "new_cases_per_million": 0.1,
- "new_cases_smoothed_per_million": 0.033,
- "total_deaths_per_million": 0.011,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.002,
- "stringency_index": 58.33
- },
- {
- "date": "2020-03-23",
- "total_cases": 26.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 3.429,
- "total_deaths": 2.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 0.29,
- "new_cases_per_million": 0.033,
- "new_cases_smoothed_per_million": 0.038,
- "total_deaths_per_million": 0.022,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.003,
- "stringency_index": 58.33
- },
- {
- "date": "2020-03-24",
- "total_cases": 26.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 0.29,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.037,
- "total_deaths_per_million": 0.022,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.003,
- "stringency_index": 77.78
- },
- {
- "date": "2020-03-25",
- "total_cases": 45.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 6.0,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 0.502,
- "new_cases_per_million": 0.212,
- "new_cases_smoothed_per_million": 0.067,
- "total_deaths_per_million": 0.033,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.005,
- "stringency_index": 77.78
- },
- {
- "date": "2020-03-26",
- "total_cases": 45.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 0.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.049,
- "total_deaths_per_million": 0.033,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "stringency_index": 77.78
- },
- {
- "date": "2020-03-27",
- "total_cases": 54.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 5.714,
- "total_deaths": 4.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 0.603,
- "new_cases_per_million": 0.1,
- "new_cases_smoothed_per_million": 0.064,
- "total_deaths_per_million": 0.045,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.006,
- "stringency_index": 77.78
- },
- {
- "date": "2020-03-28",
- "total_cases": 58.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 6.286,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 0.648,
- "new_cases_per_million": 0.045,
- "new_cases_smoothed_per_million": 0.07,
- "total_deaths_per_million": 0.045,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.006,
- "stringency_index": 77.78
- },
- {
- "date": "2020-03-29",
- "total_cases": 58.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.0,
- "total_deaths": 6.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 0.648,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.056,
- "total_deaths_per_million": 0.067,
- "new_deaths_per_million": 0.022,
- "new_deaths_smoothed_per_million": 0.008,
- "stringency_index": 77.78
- },
- {
- "date": "2020-03-30",
- "total_cases": 81.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 7.857,
- "total_deaths": 8.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 0.904,
- "new_cases_per_million": 0.257,
- "new_cases_smoothed_per_million": 0.088,
- "total_deaths_per_million": 0.089,
- "new_deaths_per_million": 0.022,
- "new_deaths_smoothed_per_million": 0.01,
- "stringency_index": 77.78
- },
- {
- "date": "2020-03-31",
- "total_cases": 98.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 10.286,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 1.094,
- "new_cases_per_million": 0.19,
- "new_cases_smoothed_per_million": 0.115,
- "total_deaths_per_million": 0.089,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.01,
- "stringency_index": 77.78
- },
- {
- "date": "2020-04-01",
- "total_cases": 98.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.571,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 1.094,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.085,
- "total_deaths_per_million": 0.089,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.008,
- "stringency_index": 77.78
- },
- {
- "date": "2020-04-02",
- "total_cases": 123.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 11.143,
- "total_deaths": 11.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 1.373,
- "new_cases_per_million": 0.279,
- "new_cases_smoothed_per_million": 0.124,
- "total_deaths_per_million": 0.123,
- "new_deaths_per_million": 0.033,
- "new_deaths_smoothed_per_million": 0.013,
- "stringency_index": 77.78
- },
- {
- "date": "2020-04-03",
- "total_cases": 123.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 9.857,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 1.373,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.11,
- "total_deaths_per_million": 0.123,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "stringency_index": 77.78
- },
- {
- "date": "2020-04-04",
- "total_cases": 134.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 10.857,
- "total_deaths": 13.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 1.496,
- "new_cases_per_million": 0.123,
- "new_cases_smoothed_per_million": 0.121,
- "total_deaths_per_million": 0.145,
- "new_deaths_per_million": 0.022,
- "new_deaths_smoothed_per_million": 0.014,
- "stringency_index": 77.78
- },
- {
- "date": "2020-04-05",
- "total_cases": 154.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 13.714,
- "total_deaths": 18.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 1.719,
- "new_cases_per_million": 0.223,
- "new_cases_smoothed_per_million": 0.153,
- "total_deaths_per_million": 0.201,
- "new_deaths_per_million": 0.056,
- "new_deaths_smoothed_per_million": 0.019,
- "stringency_index": 77.78
- },
- {
- "date": "2020-04-06",
- "total_cases": 154.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 10.429,
- "total_deaths": 18.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 1.719,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.116,
- "total_deaths_per_million": 0.201,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-07",
- "total_cases": 161.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 9.0,
- "total_deaths": 18.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 1.798,
- "new_cases_per_million": 0.078,
- "new_cases_smoothed_per_million": 0.1,
- "total_deaths_per_million": 0.201,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-08",
- "total_cases": 180.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 11.714,
- "total_deaths": 18.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 2.01,
- "new_cases_per_million": 0.212,
- "new_cases_smoothed_per_million": 0.131,
- "total_deaths_per_million": 0.201,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 64.0,
- "new_tests_per_thousand": 0.001,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-09",
- "total_cases": 183.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 8.571,
- "total_deaths": 20.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 2.043,
- "new_cases_per_million": 0.033,
- "new_cases_smoothed_per_million": 0.096,
- "total_deaths_per_million": 0.223,
- "new_deaths_per_million": 0.022,
- "new_deaths_smoothed_per_million": 0.014,
- "new_tests": 98.0,
- "new_tests_per_thousand": 0.001,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-10",
- "total_cases": 215.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 13.143,
- "total_deaths": 20.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 2.401,
- "new_cases_per_million": 0.357,
- "new_cases_smoothed_per_million": 0.147,
- "total_deaths_per_million": 0.223,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.014,
- "new_tests": 127.0,
- "new_tests_per_thousand": 0.001,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-11",
- "total_cases": 223.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 12.714,
- "total_deaths": 20.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 2.49,
- "new_cases_per_million": 0.089,
- "new_cases_smoothed_per_million": 0.142,
- "total_deaths_per_million": 0.223,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 122.0,
- "new_tests_per_thousand": 0.001,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-12",
- "total_cases": 234.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 11.429,
- "total_deaths": 20.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2.613,
- "new_cases_per_million": 0.123,
- "new_cases_smoothed_per_million": 0.128,
- "total_deaths_per_million": 0.223,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.003,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-13",
- "total_cases": 234.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 11.429,
- "total_deaths": 20.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2.613,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.128,
- "total_deaths_per_million": 0.223,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.003,
- "new_tests": 68.0,
- "new_tests_per_thousand": 0.001,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-14",
- "total_cases": 235.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 10.571,
- "total_deaths": 20.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2.624,
- "new_cases_per_million": 0.011,
- "new_cases_smoothed_per_million": 0.118,
- "total_deaths_per_million": 0.223,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.003,
- "new_tests": 197.0,
- "new_tests_per_thousand": 0.002,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-15",
- "total_cases": 254.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 10.571,
- "total_deaths": 21.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2.836,
- "new_cases_per_million": 0.212,
- "new_cases_smoothed_per_million": 0.118,
- "total_deaths_per_million": 0.234,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.005,
- "new_tests": 206.0,
- "new_tests_per_thousand": 0.002,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-16",
- "total_cases": 267.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 12.0,
- "total_deaths": 22.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2.981,
- "new_cases_per_million": 0.145,
- "new_cases_smoothed_per_million": 0.134,
- "total_deaths_per_million": 0.246,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.003,
- "new_tests": 141.0,
- "new_tests_per_thousand": 0.002,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-17",
- "total_cases": 287.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 10.286,
- "total_deaths": 23.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 3.205,
- "new_cases_per_million": 0.223,
- "new_cases_smoothed_per_million": 0.115,
- "total_deaths_per_million": 0.257,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.005,
- "new_tests": 300.0,
- "new_tests_per_thousand": 0.003,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-18",
- "total_cases": 307.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 12.0,
- "total_deaths": 25.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 3.428,
- "new_cases_per_million": 0.223,
- "new_cases_smoothed_per_million": 0.134,
- "total_deaths_per_million": 0.279,
- "new_deaths_per_million": 0.022,
- "new_deaths_smoothed_per_million": 0.008,
- "new_tests": 297.0,
- "new_tests_per_thousand": 0.003,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-19",
- "total_cases": 327.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 13.286,
- "total_deaths": 25.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 3.651,
- "new_cases_per_million": 0.223,
- "new_cases_smoothed_per_million": 0.148,
- "total_deaths_per_million": 0.279,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.008,
- "new_tests": 127.0,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 191.0,
- "new_tests_smoothed_per_thousand": 0.002,
- "tests_per_case": 14.376,
- "positive_rate": 0.07,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-20",
- "total_cases": 332.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 14.0,
- "total_deaths": 25.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 3.707,
- "new_cases_per_million": 0.056,
- "new_cases_smoothed_per_million": 0.156,
- "total_deaths_per_million": 0.279,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.008,
- "new_tests": 86.0,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 193.0,
- "new_tests_smoothed_per_thousand": 0.002,
- "tests_per_case": 13.786,
- "positive_rate": 0.073,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-21",
- "total_cases": 350.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 16.429,
- "total_deaths": 25.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 3.908,
- "new_cases_per_million": 0.201,
- "new_cases_smoothed_per_million": 0.183,
- "total_deaths_per_million": 0.279,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.008,
- "new_tests": 123.0,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 183.0,
- "new_tests_smoothed_per_thousand": 0.002,
- "tests_per_case": 11.139000000000001,
- "positive_rate": 0.09,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-22",
- "total_cases": 359.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 15.0,
- "total_deaths": 25.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 4.008,
- "new_cases_per_million": 0.1,
- "new_cases_smoothed_per_million": 0.167,
- "total_deaths_per_million": 0.279,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.006,
- "new_tests": 119.0,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 170.0,
- "new_tests_smoothed_per_thousand": 0.002,
- "tests_per_case": 11.333,
- "positive_rate": 0.08800000000000001,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-23",
- "total_cases": 377.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 15.714,
- "total_deaths": 25.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 4.209,
- "new_cases_per_million": 0.201,
- "new_cases_smoothed_per_million": 0.175,
- "total_deaths_per_million": 0.279,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "new_tests": 74.0,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 161.0,
- "new_tests_smoothed_per_thousand": 0.002,
- "tests_per_case": 10.245,
- "positive_rate": 0.098,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-24",
- "total_cases": 394.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 15.286,
- "total_deaths": 25.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 4.399,
- "new_cases_per_million": 0.19,
- "new_cases_smoothed_per_million": 0.171,
- "total_deaths_per_million": 0.279,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.003,
- "new_tests": 136.0,
- "new_tests_per_thousand": 0.002,
- "new_tests_smoothed": 137.0,
- "new_tests_smoothed_per_thousand": 0.002,
- "tests_per_case": 8.963,
- "positive_rate": 0.11199999999999999,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-25",
- "total_cases": 416.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 15.571,
- "total_deaths": 28.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 4.645,
- "new_cases_per_million": 0.246,
- "new_cases_smoothed_per_million": 0.174,
- "total_deaths_per_million": 0.313,
- "new_deaths_per_million": 0.033,
- "new_deaths_smoothed_per_million": 0.005,
- "new_tests": 190.0,
- "new_tests_per_thousand": 0.002,
- "new_tests_smoothed": 122.0,
- "new_tests_smoothed_per_thousand": 0.001,
- "tests_per_case": 7.835,
- "positive_rate": 0.128,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-26",
- "total_cases": 442.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 16.429,
- "total_deaths": 28.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 4.935,
- "new_cases_per_million": 0.29,
- "new_cases_smoothed_per_million": 0.183,
- "total_deaths_per_million": 0.313,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-27",
- "total_cases": 459.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 18.143,
- "total_deaths": 28.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 5.125,
- "new_cases_per_million": 0.19,
- "new_cases_smoothed_per_million": 0.203,
- "total_deaths_per_million": 0.313,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "new_tests": 70.0,
- "new_tests_per_thousand": 0.001,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-28",
- "total_cases": 471.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 17.286,
- "total_deaths": 30.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 5.259,
- "new_cases_per_million": 0.134,
- "new_cases_smoothed_per_million": 0.193,
- "total_deaths_per_million": 0.335,
- "new_deaths_per_million": 0.022,
- "new_deaths_smoothed_per_million": 0.008,
- "new_tests": 187.0,
- "new_tests_per_thousand": 0.002,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-29",
- "total_cases": 491.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 18.857,
- "total_deaths": 30.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 5.482,
- "new_cases_per_million": 0.223,
- "new_cases_smoothed_per_million": 0.211,
- "total_deaths_per_million": 0.335,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.008,
- "new_tests": 126.0,
- "new_tests_per_thousand": 0.001,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-04-30",
- "total_cases": 500.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 17.571,
- "total_deaths": 31.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 5.583,
- "new_cases_per_million": 0.1,
- "new_cases_smoothed_per_million": 0.196,
- "total_deaths_per_million": 0.346,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.01,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-01",
- "total_cases": 572.0,
- "new_cases": 72.0,
- "new_cases_smoothed": 25.429,
- "total_deaths": 31.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 6.387,
- "new_cases_per_million": 0.804,
- "new_cases_smoothed_per_million": 0.284,
- "total_deaths_per_million": 0.346,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.01,
- "new_tests": 238.0,
- "new_tests_per_thousand": 0.003,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-02",
- "total_cases": 604.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 26.857,
- "total_deaths": 32.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 6.744,
- "new_cases_per_million": 0.357,
- "new_cases_smoothed_per_million": 0.3,
- "total_deaths_per_million": 0.357,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.006,
- "new_tests": 164.0,
- "new_tests_per_thousand": 0.002,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-03",
- "total_cases": 674.0,
- "new_cases": 70.0,
- "new_cases_smoothed": 33.143,
- "total_deaths": 33.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 7.526,
- "new_cases_per_million": 0.782,
- "new_cases_smoothed_per_million": 0.37,
- "total_deaths_per_million": 0.368,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.008,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-04",
- "total_cases": 684.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 32.143,
- "total_deaths": 34.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 7.637,
- "new_cases_per_million": 0.112,
- "new_cases_smoothed_per_million": 0.359,
- "total_deaths_per_million": 0.38,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.01,
- "new_tests": 121.0,
- "new_tests_per_thousand": 0.001,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-05",
- "total_cases": 684.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 30.429,
- "total_deaths": 34.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 7.637,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.34,
- "total_deaths_per_million": 0.38,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.006,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-06",
- "total_cases": 705.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 30.571,
- "total_deaths": 34.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 7.872,
- "new_cases_per_million": 0.234,
- "new_cases_smoothed_per_million": 0.341,
- "total_deaths_per_million": 0.38,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.006,
- "new_tests": 374.0,
- "new_tests_per_thousand": 0.004,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-07",
- "total_cases": 863.0,
- "new_cases": 158.0,
- "new_cases_smoothed": 51.857,
- "total_deaths": 36.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 9.636,
- "new_cases_per_million": 1.764,
- "new_cases_smoothed_per_million": 0.579,
- "total_deaths_per_million": 0.402,
- "new_deaths_per_million": 0.022,
- "new_deaths_smoothed_per_million": 0.008,
- "new_tests": 270.0,
- "new_tests_per_thousand": 0.003,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-08",
- "total_cases": 897.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 46.429,
- "total_deaths": 36.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 10.015,
- "new_cases_per_million": 0.38,
- "new_cases_smoothed_per_million": 0.518,
- "total_deaths_per_million": 0.402,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.008,
- "new_tests": 131.0,
- "new_tests_per_thousand": 0.001,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-09",
- "total_cases": 937.0,
- "new_cases": 40.0,
- "new_cases_smoothed": 47.571,
- "total_deaths": 39.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 10.462,
- "new_cases_per_million": 0.447,
- "new_cases_smoothed_per_million": 0.531,
- "total_deaths_per_million": 0.435,
- "new_deaths_per_million": 0.033,
- "new_deaths_smoothed_per_million": 0.011,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-10",
- "total_cases": 991.0,
- "new_cases": 54.0,
- "new_cases_smoothed": 45.286,
- "total_deaths": 41.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 11.065,
- "new_cases_per_million": 0.603,
- "new_cases_smoothed_per_million": 0.506,
- "total_deaths_per_million": 0.458,
- "new_deaths_per_million": 0.022,
- "new_deaths_smoothed_per_million": 0.013,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-11",
- "total_cases": 1024.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 48.571,
- "total_deaths": 41.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 11.433,
- "new_cases_per_million": 0.368,
- "new_cases_smoothed_per_million": 0.542,
- "total_deaths_per_million": 0.458,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 289.0,
- "new_tests_per_thousand": 0.003,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-12",
- "total_cases": 1102.0,
- "new_cases": 78.0,
- "new_cases_smoothed": 59.714,
- "total_deaths": 44.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 12.304,
- "new_cases_per_million": 0.871,
- "new_cases_smoothed_per_million": 0.667,
- "total_deaths_per_million": 0.491,
- "new_deaths_per_million": 0.033,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 192.0,
- "new_tests_per_thousand": 0.002,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-13",
- "total_cases": 1169.0,
- "new_cases": 67.0,
- "new_cases_smoothed": 66.286,
- "total_deaths": 50.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 13.052,
- "new_cases_per_million": 0.748,
- "new_cases_smoothed_per_million": 0.74,
- "total_deaths_per_million": 0.558,
- "new_deaths_per_million": 0.067,
- "new_deaths_smoothed_per_million": 0.026,
- "new_tests": 310.0,
- "new_tests_per_thousand": 0.003,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-14",
- "total_cases": 1242.0,
- "new_cases": 73.0,
- "new_cases_smoothed": 54.143,
- "total_deaths": 50.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 13.868,
- "new_cases_per_million": 0.815,
- "new_cases_smoothed_per_million": 0.605,
- "total_deaths_per_million": 0.558,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 209.0,
- "new_tests_per_thousand": 0.002,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-15",
- "total_cases": 1298.0,
- "new_cases": 56.0,
- "new_cases_smoothed": 57.286,
- "total_deaths": 50.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 14.493,
- "new_cases_per_million": 0.625,
- "new_cases_smoothed_per_million": 0.64,
- "total_deaths_per_million": 0.558,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.022,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-16",
- "total_cases": 1369.0,
- "new_cases": 71.0,
- "new_cases_smoothed": 61.714,
- "total_deaths": 60.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 15.286,
- "new_cases_per_million": 0.793,
- "new_cases_smoothed_per_million": 0.689,
- "total_deaths_per_million": 0.67,
- "new_deaths_per_million": 0.112,
- "new_deaths_smoothed_per_million": 0.033,
- "new_tests": 242.0,
- "new_tests_per_thousand": 0.003,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-17",
- "total_cases": 1454.0,
- "new_cases": 85.0,
- "new_cases_smoothed": 66.143,
- "total_deaths": 60.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 16.235,
- "new_cases_per_million": 0.949,
- "new_cases_smoothed_per_million": 0.739,
- "total_deaths_per_million": 0.67,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.03,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-18",
- "total_cases": 1454.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 61.429,
- "total_deaths": 60.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 16.235,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.686,
- "total_deaths_per_million": 0.67,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.03,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-19",
- "total_cases": 1629.0,
- "new_cases": 175.0,
- "new_cases_smoothed": 75.286,
- "total_deaths": 61.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 18.189,
- "new_cases_per_million": 1.954,
- "new_cases_smoothed_per_million": 0.841,
- "total_deaths_per_million": 0.681,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.027,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-20",
- "total_cases": 1731.0,
- "new_cases": 102.0,
- "new_cases_smoothed": 80.286,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 19.328,
- "new_cases_per_million": 1.139,
- "new_cases_smoothed_per_million": 0.896,
- "total_deaths_per_million": 0.681,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.018,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-21",
- "total_cases": 1835.0,
- "new_cases": 104.0,
- "new_cases_smoothed": 84.714,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 20.489,
- "new_cases_per_million": 1.161,
- "new_cases_smoothed_per_million": 0.946,
- "total_deaths_per_million": 0.681,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.018,
- "new_tests": 225.0,
- "new_tests_per_thousand": 0.003,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-22",
- "total_cases": 1945.0,
- "new_cases": 110.0,
- "new_cases_smoothed": 92.429,
- "total_deaths": 63.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 21.717,
- "new_cases_per_million": 1.228,
- "new_cases_smoothed_per_million": 1.032,
- "total_deaths_per_million": 0.703,
- "new_deaths_per_million": 0.022,
- "new_deaths_smoothed_per_million": 0.021,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-23",
- "total_cases": 2025.0,
- "new_cases": 80.0,
- "new_cases_smoothed": 93.714,
- "total_deaths": 63.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 22.61,
- "new_cases_per_million": 0.893,
- "new_cases_smoothed_per_million": 1.046,
- "total_deaths_per_million": 0.703,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "new_tests": 287.0,
- "new_tests_per_thousand": 0.003,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-24",
- "total_cases": 2141.0,
- "new_cases": 116.0,
- "new_cases_smoothed": 98.143,
- "total_deaths": 63.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 23.905,
- "new_cases_per_million": 1.295,
- "new_cases_smoothed_per_million": 1.096,
- "total_deaths_per_million": 0.703,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "new_tests": 402.0,
- "new_tests_per_thousand": 0.004,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-25",
- "total_cases": 2297.0,
- "new_cases": 156.0,
- "new_cases_smoothed": 120.429,
- "total_deaths": 67.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 25.647,
- "new_cases_per_million": 1.742,
- "new_cases_smoothed_per_million": 1.345,
- "total_deaths_per_million": 0.748,
- "new_deaths_per_million": 0.045,
- "new_deaths_smoothed_per_million": 0.011,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-26",
- "total_cases": 2297.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 95.429,
- "total_deaths": 67.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 25.647,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.066,
- "total_deaths_per_million": 0.748,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.01,
- "new_tests": 410.0,
- "new_tests_per_thousand": 0.005,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-27",
- "total_cases": 2545.0,
- "new_cases": 248.0,
- "new_cases_smoothed": 116.286,
- "total_deaths": 67.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 28.416,
- "new_cases_per_million": 2.769,
- "new_cases_smoothed_per_million": 1.298,
- "total_deaths_per_million": 0.748,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.01,
- "new_tests": 367.0,
- "new_tests_per_thousand": 0.004,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-28",
- "total_cases": 2659.0,
- "new_cases": 114.0,
- "new_cases_smoothed": 117.714,
- "total_deaths": 68.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 29.689,
- "new_cases_per_million": 1.273,
- "new_cases_smoothed_per_million": 1.314,
- "total_deaths_per_million": 0.759,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 327.0,
- "new_tests_per_thousand": 0.004,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-29",
- "total_cases": 2832.0,
- "new_cases": 173.0,
- "new_cases_smoothed": 126.714,
- "total_deaths": 69.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 31.621,
- "new_cases_per_million": 1.932,
- "new_cases_smoothed_per_million": 1.415,
- "total_deaths_per_million": 0.77,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.01,
- "new_tests": 398.0,
- "new_tests_per_thousand": 0.004,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-30",
- "total_cases": 2833.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 115.429,
- "total_deaths": 69.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 31.632,
- "new_cases_per_million": 0.011,
- "new_cases_smoothed_per_million": 1.289,
- "total_deaths_per_million": 0.77,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.01,
- "new_tests": 357.0,
- "new_tests_per_thousand": 0.004,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-05-31",
- "total_cases": 2966.0,
- "new_cases": 133.0,
- "new_cases_smoothed": 117.857,
- "total_deaths": 69.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 33.117,
- "new_cases_per_million": 1.485,
- "new_cases_smoothed_per_million": 1.316,
- "total_deaths_per_million": 0.77,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.01,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-06-01",
- "total_cases": 3049.0,
- "new_cases": 83.0,
- "new_cases_smoothed": 107.429,
- "total_deaths": 71.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 34.044,
- "new_cases_per_million": 0.927,
- "new_cases_smoothed_per_million": 1.199,
- "total_deaths_per_million": 0.793,
- "new_deaths_per_million": 0.022,
- "new_deaths_smoothed_per_million": 0.006,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-06-02",
- "total_cases": 3194.0,
- "new_cases": 145.0,
- "new_cases_smoothed": 128.143,
- "total_deaths": 72.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 35.663,
- "new_cases_per_million": 1.619,
- "new_cases_smoothed_per_million": 1.431,
- "total_deaths_per_million": 0.804,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.008,
- "new_tests": 610.0,
- "new_tests_per_thousand": 0.007,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-06-03",
- "total_cases": 3325.0,
- "new_cases": 131.0,
- "new_cases_smoothed": 111.429,
- "total_deaths": 72.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 37.125,
- "new_cases_per_million": 1.463,
- "new_cases_smoothed_per_million": 1.244,
- "total_deaths_per_million": 0.804,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.008,
- "new_tests": 650.0,
- "new_tests_per_thousand": 0.007,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-06-04",
- "total_cases": 3494.0,
- "new_cases": 169.0,
- "new_cases_smoothed": 119.286,
- "total_deaths": 75.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 39.012,
- "new_cases_per_million": 1.887,
- "new_cases_smoothed_per_million": 1.332,
- "total_deaths_per_million": 0.837,
- "new_deaths_per_million": 0.033,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 415.0,
- "new_tests_per_thousand": 0.005,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-06-05",
- "total_cases": 3643.0,
- "new_cases": 149.0,
- "new_cases_smoothed": 115.857,
- "total_deaths": 78.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 40.676,
- "new_cases_per_million": 1.664,
- "new_cases_smoothed_per_million": 1.294,
- "total_deaths_per_million": 0.871,
- "new_deaths_per_million": 0.033,
- "new_deaths_smoothed_per_million": 0.014,
- "new_tests": 440.0,
- "new_tests_per_thousand": 0.005,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-06-06",
- "total_cases": 3764.0,
- "new_cases": 121.0,
- "new_cases_smoothed": 133.0,
- "total_deaths": 81.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 42.027,
- "new_cases_per_million": 1.351,
- "new_cases_smoothed_per_million": 1.485,
- "total_deaths_per_million": 0.904,
- "new_deaths_per_million": 0.033,
- "new_deaths_smoothed_per_million": 0.019,
- "new_tests": 492.0,
- "new_tests_per_thousand": 0.005,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-06-07",
- "total_cases": 3878.0,
- "new_cases": 114.0,
- "new_cases_smoothed": 130.286,
- "total_deaths": 81.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 43.3,
- "new_cases_per_million": 1.273,
- "new_cases_smoothed_per_million": 1.455,
- "total_deaths_per_million": 0.904,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.019,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-06-08",
- "total_cases": 4016.0,
- "new_cases": 138.0,
- "new_cases_smoothed": 138.143,
- "total_deaths": 85.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 44.841,
- "new_cases_per_million": 1.541,
- "new_cases_smoothed_per_million": 1.542,
- "total_deaths_per_million": 0.949,
- "new_deaths_per_million": 0.045,
- "new_deaths_smoothed_per_million": 0.022,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-06-09",
- "total_cases": 4105.0,
- "new_cases": 89.0,
- "new_cases_smoothed": 130.143,
- "total_deaths": 87.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 45.834,
- "new_cases_per_million": 0.994,
- "new_cases_smoothed_per_million": 1.453,
- "total_deaths_per_million": 0.971,
- "new_deaths_per_million": 0.022,
- "new_deaths_smoothed_per_million": 0.024,
- "new_tests": 392.0,
- "new_tests_per_thousand": 0.004,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-06-10",
- "total_cases": 4258.0,
- "new_cases": 153.0,
- "new_cases_smoothed": 133.286,
- "total_deaths": 89.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 47.543,
- "new_cases_per_million": 1.708,
- "new_cases_smoothed_per_million": 1.488,
- "total_deaths_per_million": 0.994,
- "new_deaths_per_million": 0.022,
- "new_deaths_smoothed_per_million": 0.027,
- "new_tests": 655.0,
- "new_tests_per_thousand": 0.007,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-06-11",
- "total_cases": 4389.0,
- "new_cases": 131.0,
- "new_cases_smoothed": 127.857,
- "total_deaths": 95.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 49.005,
- "new_cases_per_million": 1.463,
- "new_cases_smoothed_per_million": 1.428,
- "total_deaths_per_million": 1.061,
- "new_deaths_per_million": 0.067,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests": 579.0,
- "new_tests_per_thousand": 0.006,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-06-12",
- "total_cases": 4514.0,
- "new_cases": 125.0,
- "new_cases_smoothed": 124.429,
- "total_deaths": 97.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 50.401,
- "new_cases_per_million": 1.396,
- "new_cases_smoothed_per_million": 1.389,
- "total_deaths_per_million": 1.083,
- "new_deaths_per_million": 0.022,
- "new_deaths_smoothed_per_million": 0.03,
- "new_tests": 366.0,
- "new_tests_per_thousand": 0.004,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-06-13",
- "total_cases": 4636.0,
- "new_cases": 122.0,
- "new_cases_smoothed": 124.571,
- "total_deaths": 100.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 51.763,
- "new_cases_per_million": 1.362,
- "new_cases_smoothed_per_million": 1.391,
- "total_deaths_per_million": 1.117,
- "new_deaths_per_million": 0.033,
- "new_deaths_smoothed_per_million": 0.03,
- "new_tests": 362.0,
- "new_tests_per_thousand": 0.004,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-06-14",
- "total_cases": 4723.0,
- "new_cases": 87.0,
- "new_cases_smoothed": 120.714,
- "total_deaths": 105.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 52.735,
- "new_cases_per_million": 0.971,
- "new_cases_smoothed_per_million": 1.348,
- "total_deaths_per_million": 1.172,
- "new_deaths_per_million": 0.056,
- "new_deaths_smoothed_per_million": 0.038,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-06-15",
- "total_cases": 4777.0,
- "new_cases": 54.0,
- "new_cases_smoothed": 108.714,
- "total_deaths": 106.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 53.338,
- "new_cases_per_million": 0.603,
- "new_cases_smoothed_per_million": 1.214,
- "total_deaths_per_million": 1.184,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.033,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-06-16",
- "total_cases": 4837.0,
- "new_cases": 60.0,
- "new_cases_smoothed": 104.571,
- "total_deaths": 112.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 54.008,
- "new_cases_per_million": 0.67,
- "new_cases_smoothed_per_million": 1.168,
- "total_deaths_per_million": 1.251,
- "new_deaths_per_million": 0.067,
- "new_deaths_smoothed_per_million": 0.04,
- "new_tests": 549.0,
- "new_tests_per_thousand": 0.006,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-06-17",
- "total_cases": 4974.0,
- "new_cases": 137.0,
- "new_cases_smoothed": 102.286,
- "total_deaths": 112.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 55.537,
- "new_cases_per_million": 1.53,
- "new_cases_smoothed_per_million": 1.142,
- "total_deaths_per_million": 1.251,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.037,
- "new_tests": 569.0,
- "new_tests_per_thousand": 0.006,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-06-18",
- "total_cases": 5099.0,
- "new_cases": 125.0,
- "new_cases_smoothed": 101.429,
- "total_deaths": 115.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 56.933,
- "new_cases_per_million": 1.396,
- "new_cases_smoothed_per_million": 1.133,
- "total_deaths_per_million": 1.284,
- "new_deaths_per_million": 0.033,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests": 624.0,
- "new_tests_per_thousand": 0.007,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-06-19",
- "total_cases": 5282.0,
- "new_cases": 183.0,
- "new_cases_smoothed": 109.714,
- "total_deaths": 117.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 58.976,
- "new_cases_per_million": 2.043,
- "new_cases_smoothed_per_million": 1.225,
- "total_deaths_per_million": 1.306,
- "new_deaths_per_million": 0.022,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests": 839.0,
- "new_tests_per_thousand": 0.009,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-06-20",
- "total_cases": 5476.0,
- "new_cases": 194.0,
- "new_cases_smoothed": 120.0,
- "total_deaths": 121.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 61.142,
- "new_cases_per_million": 2.166,
- "new_cases_smoothed_per_million": 1.34,
- "total_deaths_per_million": 1.351,
- "new_deaths_per_million": 0.045,
- "new_deaths_smoothed_per_million": 0.033,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-06-21",
- "total_cases": 5671.0,
- "new_cases": 195.0,
- "new_cases_smoothed": 135.429,
- "total_deaths": 124.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 63.32,
- "new_cases_per_million": 2.177,
- "new_cases_smoothed_per_million": 1.512,
- "total_deaths_per_million": 1.385,
- "new_deaths_per_million": 0.033,
- "new_deaths_smoothed_per_million": 0.03,
- "new_tests": 336.0,
- "new_tests_per_thousand": 0.004,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-06-22",
- "total_cases": 5826.0,
- "new_cases": 155.0,
- "new_cases_smoothed": 149.857,
- "total_deaths": 130.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 65.05,
- "new_cases_per_million": 1.731,
- "new_cases_smoothed_per_million": 1.673,
- "total_deaths_per_million": 1.452,
- "new_deaths_per_million": 0.067,
- "new_deaths_smoothed_per_million": 0.038,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-06-23",
- "total_cases": 5925.0,
- "new_cases": 99.0,
- "new_cases_smoothed": 155.429,
- "total_deaths": 135.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 66.156,
- "new_cases_per_million": 1.105,
- "new_cases_smoothed_per_million": 1.735,
- "total_deaths_per_million": 1.507,
- "new_deaths_per_million": 0.056,
- "new_deaths_smoothed_per_million": 0.037,
- "new_tests": 962.0,
- "new_tests_per_thousand": 0.011,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-06-24",
- "total_cases": 6027.0,
- "new_cases": 102.0,
- "new_cases_smoothed": 150.429,
- "total_deaths": 135.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 67.295,
- "new_cases_per_million": 1.139,
- "new_cases_smoothed_per_million": 1.68,
- "total_deaths_per_million": 1.507,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.037,
- "new_tests": 974.0,
- "new_tests_per_thousand": 0.011,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-06-25",
- "total_cases": 6027.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 132.571,
- "total_deaths": 135.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 67.295,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.48,
- "total_deaths_per_million": 1.507,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests": 824.0,
- "new_tests_per_thousand": 0.009,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-06-26",
- "total_cases": 6411.0,
- "new_cases": 384.0,
- "new_cases_smoothed": 161.286,
- "total_deaths": 142.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 71.582,
- "new_cases_per_million": 4.288,
- "new_cases_smoothed_per_million": 1.801,
- "total_deaths_per_million": 1.586,
- "new_deaths_per_million": 0.078,
- "new_deaths_smoothed_per_million": 0.04,
- "new_tests": 951.0,
- "new_tests_per_thousand": 0.011,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-06-27",
- "total_cases": 6552.0,
- "new_cases": 141.0,
- "new_cases_smoothed": 153.714,
- "total_deaths": 149.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 73.157,
- "new_cases_per_million": 1.574,
- "new_cases_smoothed_per_million": 1.716,
- "total_deaths_per_million": 1.664,
- "new_deaths_per_million": 0.078,
- "new_deaths_smoothed_per_million": 0.045,
- "new_tests": 975.0,
- "new_tests_per_thousand": 0.011,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-06-28",
- "total_cases": 6552.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 125.857,
- "total_deaths": 149.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 73.157,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.405,
- "total_deaths_per_million": 1.664,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.04,
- "new_tests": 475.0,
- "new_tests_per_thousand": 0.005,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-06-29",
- "total_cases": 6826.0,
- "new_cases": 274.0,
- "new_cases_smoothed": 142.857,
- "total_deaths": 157.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 76.216,
- "new_cases_per_million": 3.059,
- "new_cases_smoothed_per_million": 1.595,
- "total_deaths_per_million": 1.753,
- "new_deaths_per_million": 0.089,
- "new_deaths_smoothed_per_million": 0.043,
- "new_tests": 923.0,
- "new_tests_per_thousand": 0.01,
- "new_tests_smoothed": 869.0,
- "new_tests_smoothed_per_thousand": 0.01,
- "tests_per_case": 6.082999999999999,
- "positive_rate": 0.16399999999999998,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-06-30",
- "total_cases": 6939.0,
- "new_cases": 113.0,
- "new_cases_smoothed": 144.857,
- "total_deaths": 167.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 77.478,
- "new_cases_per_million": 1.262,
- "new_cases_smoothed_per_million": 1.617,
- "total_deaths_per_million": 1.865,
- "new_deaths_per_million": 0.112,
- "new_deaths_smoothed_per_million": 0.051,
- "new_tests": 686.0,
- "new_tests_per_thousand": 0.008,
- "new_tests_smoothed": 830.0,
- "new_tests_smoothed_per_thousand": 0.009,
- "tests_per_case": 5.73,
- "positive_rate": 0.175,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-07-01",
- "total_cases": 7038.0,
- "new_cases": 99.0,
- "new_cases_smoothed": 144.429,
- "total_deaths": 169.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 78.583,
- "new_cases_per_million": 1.105,
- "new_cases_smoothed_per_million": 1.613,
- "total_deaths_per_million": 1.887,
- "new_deaths_per_million": 0.022,
- "new_deaths_smoothed_per_million": 0.054,
- "new_tests": 662.0,
- "new_tests_per_thousand": 0.007,
- "new_tests_smoothed": 785.0,
- "new_tests_smoothed_per_thousand": 0.009,
- "tests_per_case": 5.435,
- "positive_rate": 0.184,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-07-02",
- "total_cases": 7121.0,
- "new_cases": 83.0,
- "new_cases_smoothed": 156.286,
- "total_deaths": 174.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 79.51,
- "new_cases_per_million": 0.927,
- "new_cases_smoothed_per_million": 1.745,
- "total_deaths_per_million": 1.943,
- "new_deaths_per_million": 0.056,
- "new_deaths_smoothed_per_million": 0.062,
- "new_tests": 748.0,
- "new_tests_per_thousand": 0.008,
- "new_tests_smoothed": 774.0,
- "new_tests_smoothed_per_thousand": 0.009,
- "tests_per_case": 4.952,
- "positive_rate": 0.20199999999999999,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-07-03",
- "total_cases": 7188.0,
- "new_cases": 67.0,
- "new_cases_smoothed": 111.0,
- "total_deaths": 175.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 80.258,
- "new_cases_per_million": 0.748,
- "new_cases_smoothed_per_million": 1.239,
- "total_deaths_per_million": 1.954,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.053,
- "new_tests": 758.0,
- "new_tests_per_thousand": 0.008,
- "new_tests_smoothed": 747.0,
- "new_tests_smoothed_per_thousand": 0.008,
- "tests_per_case": 6.73,
- "positive_rate": 0.149,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-07-04",
- "total_cases": 7188.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 90.857,
- "total_deaths": 175.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 80.258,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.014,
- "total_deaths_per_million": 1.954,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.041,
- "new_tests": 243.0,
- "new_tests_per_thousand": 0.003,
- "new_tests_smoothed": 642.0,
- "new_tests_smoothed_per_thousand": 0.007,
- "tests_per_case": 7.066,
- "positive_rate": 0.142,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-07-05",
- "total_cases": 7378.0,
- "new_cases": 190.0,
- "new_cases_smoothed": 118.0,
- "total_deaths": 181.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 82.379,
- "new_cases_per_million": 2.121,
- "new_cases_smoothed_per_million": 1.318,
- "total_deaths_per_million": 2.021,
- "new_deaths_per_million": 0.067,
- "new_deaths_smoothed_per_million": 0.051,
- "new_tests": 335.0,
- "new_tests_per_thousand": 0.004,
- "new_tests_smoothed": 622.0,
- "new_tests_smoothed_per_thousand": 0.007,
- "tests_per_case": 5.271,
- "positive_rate": 0.19,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-07-06",
- "total_cases": 7410.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 83.429,
- "total_deaths": 181.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 82.737,
- "new_cases_per_million": 0.357,
- "new_cases_smoothed_per_million": 0.932,
- "total_deaths_per_million": 2.021,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.038,
- "new_tests": 846.0,
- "new_tests_per_thousand": 0.009,
- "new_tests_smoothed": 611.0,
- "new_tests_smoothed_per_thousand": 0.007,
- "tests_per_case": 7.324,
- "positive_rate": 0.13699999999999998,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-07-07",
- "total_cases": 7432.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 70.429,
- "total_deaths": 182.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 82.982,
- "new_cases_per_million": 0.246,
- "new_cases_smoothed_per_million": 0.786,
- "total_deaths_per_million": 2.032,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.024,
- "new_tests": 919.0,
- "new_tests_per_thousand": 0.01,
- "new_tests_smoothed": 644.0,
- "new_tests_smoothed_per_thousand": 0.007,
- "tests_per_case": 9.144,
- "positive_rate": 0.109,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-07-08",
- "total_cases": 7660.0,
- "new_cases": 228.0,
- "new_cases_smoothed": 88.857,
- "total_deaths": 182.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 85.528,
- "new_cases_per_million": 2.546,
- "new_cases_smoothed_per_million": 0.992,
- "total_deaths_per_million": 2.032,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.021,
- "new_tests": 1217.0,
- "new_tests_per_thousand": 0.014,
- "new_tests_smoothed": 724.0,
- "new_tests_smoothed_per_thousand": 0.008,
- "tests_per_case": 8.148,
- "positive_rate": 0.12300000000000001,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-07-09",
- "total_cases": 7737.0,
- "new_cases": 77.0,
- "new_cases_smoothed": 88.0,
- "total_deaths": 184.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 86.388,
- "new_cases_per_million": 0.86,
- "new_cases_smoothed_per_million": 0.983,
- "total_deaths_per_million": 2.054,
- "new_deaths_per_million": 0.022,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 566.0,
- "new_tests_per_thousand": 0.006,
- "new_tests_smoothed": 698.0,
- "new_tests_smoothed_per_thousand": 0.008,
- "tests_per_case": 7.932,
- "positive_rate": 0.126,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-07-10",
- "total_cases": 7845.0,
- "new_cases": 108.0,
- "new_cases_smoothed": 93.857,
- "total_deaths": 188.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 87.594,
- "new_cases_per_million": 1.206,
- "new_cases_smoothed_per_million": 1.048,
- "total_deaths_per_million": 2.099,
- "new_deaths_per_million": 0.045,
- "new_deaths_smoothed_per_million": 0.021,
- "new_tests": 893.0,
- "new_tests_per_thousand": 0.01,
- "new_tests_smoothed": 717.0,
- "new_tests_smoothed_per_thousand": 0.008,
- "tests_per_case": 7.638999999999999,
- "positive_rate": 0.131,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-07-11",
- "total_cases": 7904.0,
- "new_cases": 59.0,
- "new_cases_smoothed": 102.286,
- "total_deaths": 188.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 88.252,
- "new_cases_per_million": 0.659,
- "new_cases_smoothed_per_million": 1.142,
- "total_deaths_per_million": 2.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.021,
- "new_tests": 466.0,
- "new_tests_per_thousand": 0.005,
- "new_tests_smoothed": 749.0,
- "new_tests_smoothed_per_thousand": 0.008,
- "tests_per_case": 7.3229999999999995,
- "positive_rate": 0.13699999999999998,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-07-12",
- "total_cases": 7970.0,
- "new_cases": 66.0,
- "new_cases_smoothed": 84.571,
- "total_deaths": 188.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 88.989,
- "new_cases_per_million": 0.737,
- "new_cases_smoothed_per_million": 0.944,
- "total_deaths_per_million": 2.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 349.0,
- "new_tests_per_thousand": 0.004,
- "new_tests_smoothed": 751.0,
- "new_tests_smoothed_per_thousand": 0.008,
- "tests_per_case": 8.88,
- "positive_rate": 0.113,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-07-13",
- "total_cases": 8032.0,
- "new_cases": 62.0,
- "new_cases_smoothed": 88.857,
- "total_deaths": 188.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 89.681,
- "new_cases_per_million": 0.692,
- "new_cases_smoothed_per_million": 0.992,
- "total_deaths_per_million": 2.099,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 741.0,
- "new_tests_per_thousand": 0.008,
- "new_tests_smoothed": 736.0,
- "new_tests_smoothed_per_thousand": 0.008,
- "tests_per_case": 8.283,
- "positive_rate": 0.121,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-07-14",
- "total_cases": 8074.0,
- "new_cases": 42.0,
- "new_cases_smoothed": 91.714,
- "total_deaths": 189.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 90.15,
- "new_cases_per_million": 0.469,
- "new_cases_smoothed_per_million": 1.024,
- "total_deaths_per_million": 2.11,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 456.0,
- "new_tests_per_thousand": 0.005,
- "new_tests_smoothed": 670.0,
- "new_tests_smoothed_per_thousand": 0.007,
- "tests_per_case": 7.305,
- "positive_rate": 0.13699999999999998,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-07-15",
- "total_cases": 8135.0,
- "new_cases": 61.0,
- "new_cases_smoothed": 67.857,
- "total_deaths": 189.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 90.832,
- "new_cases_per_million": 0.681,
- "new_cases_smoothed_per_million": 0.758,
- "total_deaths_per_million": 2.11,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 563.0,
- "new_tests_per_thousand": 0.006,
- "new_tests_smoothed": 576.0,
- "new_tests_smoothed_per_thousand": 0.006,
- "tests_per_case": 8.488,
- "positive_rate": 0.11800000000000001,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-07-16",
- "total_cases": 8162.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 60.714,
- "total_deaths": 191.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 91.133,
- "new_cases_per_million": 0.301,
- "new_cases_smoothed_per_million": 0.678,
- "total_deaths_per_million": 2.133,
- "new_deaths_per_million": 0.022,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 464.0,
- "new_tests_per_thousand": 0.005,
- "new_tests_smoothed": 562.0,
- "new_tests_smoothed_per_thousand": 0.006,
- "tests_per_case": 9.256,
- "positive_rate": 0.10800000000000001,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-07-17",
- "total_cases": 8198.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 50.429,
- "total_deaths": 192.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 91.535,
- "new_cases_per_million": 0.402,
- "new_cases_smoothed_per_million": 0.563,
- "total_deaths_per_million": 2.144,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.006,
- "new_tests": 800.0,
- "new_tests_per_thousand": 0.009,
- "new_tests_smoothed": 548.0,
- "new_tests_smoothed_per_thousand": 0.006,
- "tests_per_case": 10.867,
- "positive_rate": 0.092,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-07-18",
- "total_cases": 8248.0,
- "new_cases": 50.0,
- "new_cases_smoothed": 49.143,
- "total_deaths": 192.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 92.093,
- "new_cases_per_million": 0.558,
- "new_cases_smoothed_per_million": 0.549,
- "total_deaths_per_million": 2.144,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.006,
- "new_tests": 435.0,
- "new_tests_per_thousand": 0.005,
- "new_tests_smoothed": 544.0,
- "new_tests_smoothed_per_thousand": 0.006,
- "tests_per_case": 11.07,
- "positive_rate": 0.09,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-07-19",
- "total_cases": 8323.0,
- "new_cases": 75.0,
- "new_cases_smoothed": 50.429,
- "total_deaths": 192.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 92.931,
- "new_cases_per_million": 0.837,
- "new_cases_smoothed_per_million": 0.563,
- "total_deaths_per_million": 2.144,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.006,
- "new_tests": 423.0,
- "new_tests_per_thousand": 0.005,
- "new_tests_smoothed": 555.0,
- "new_tests_smoothed_per_thousand": 0.006,
- "tests_per_case": 11.005999999999998,
- "positive_rate": 0.091,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-07-20",
- "total_cases": 8402.0,
- "new_cases": 79.0,
- "new_cases_smoothed": 52.857,
- "total_deaths": 193.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 93.813,
- "new_cases_per_million": 0.882,
- "new_cases_smoothed_per_million": 0.59,
- "total_deaths_per_million": 2.155,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.008,
- "new_tests": 649.0,
- "new_tests_per_thousand": 0.007,
- "new_tests_smoothed": 541.0,
- "new_tests_smoothed_per_thousand": 0.006,
- "tests_per_case": 10.235,
- "positive_rate": 0.098,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-07-21",
- "total_cases": 8442.0,
- "new_cases": 40.0,
- "new_cases_smoothed": 52.571,
- "total_deaths": 194.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 94.259,
- "new_cases_per_million": 0.447,
- "new_cases_smoothed_per_million": 0.587,
- "total_deaths_per_million": 2.166,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.008,
- "new_tests": 741.0,
- "new_tests_per_thousand": 0.008,
- "new_tests_smoothed": 582.0,
- "new_tests_smoothed_per_thousand": 0.006,
- "tests_per_case": 11.071,
- "positive_rate": 0.09,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-07-22",
- "total_cases": 8533.0,
- "new_cases": 91.0,
- "new_cases_smoothed": 56.857,
- "total_deaths": 195.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 95.275,
- "new_cases_per_million": 1.016,
- "new_cases_smoothed_per_million": 0.635,
- "total_deaths_per_million": 2.177,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.01,
- "new_tests": 737.0,
- "new_tests_per_thousand": 0.008,
- "new_tests_smoothed": 607.0,
- "new_tests_smoothed_per_thousand": 0.007,
- "tests_per_case": 10.675999999999998,
- "positive_rate": 0.094,
- "tests_units": "samples tested",
- "stringency_index": 55.56
- },
- {
- "date": "2020-07-23",
- "total_cases": 8625.0,
- "new_cases": 92.0,
- "new_cases_smoothed": 66.143,
- "total_deaths": 197.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 96.303,
- "new_cases_per_million": 1.027,
- "new_cases_smoothed_per_million": 0.739,
- "total_deaths_per_million": 2.2,
- "new_deaths_per_million": 0.022,
- "new_deaths_smoothed_per_million": 0.01,
- "new_tests": 645.0,
- "new_tests_per_thousand": 0.007,
- "new_tests_smoothed": 633.0,
- "new_tests_smoothed_per_thousand": 0.007,
- "tests_per_case": 9.57,
- "positive_rate": 0.10400000000000001,
- "tests_units": "samples tested",
- "stringency_index": 55.56
- },
- {
- "date": "2020-07-24",
- "total_cases": 8719.0,
- "new_cases": 94.0,
- "new_cases_smoothed": 74.429,
- "total_deaths": 200.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 97.352,
- "new_cases_per_million": 1.05,
- "new_cases_smoothed_per_million": 0.831,
- "total_deaths_per_million": 2.233,
- "new_deaths_per_million": 0.033,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 464.0,
- "new_tests_per_thousand": 0.005,
- "new_tests_smoothed": 585.0,
- "new_tests_smoothed_per_thousand": 0.007,
- "tests_per_case": 7.86,
- "positive_rate": 0.127,
- "tests_units": "samples tested",
- "stringency_index": 55.56
- },
- {
- "date": "2020-07-25",
- "total_cases": 8766.0,
- "new_cases": 47.0,
- "new_cases_smoothed": 74.0,
- "total_deaths": 200.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 97.877,
- "new_cases_per_million": 0.525,
- "new_cases_smoothed_per_million": 0.826,
- "total_deaths_per_million": 2.233,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 669.0,
- "new_tests_per_thousand": 0.007,
- "new_tests_smoothed": 618.0,
- "new_tests_smoothed_per_thousand": 0.007,
- "tests_per_case": 8.351,
- "positive_rate": 0.12,
- "tests_units": "samples tested",
- "stringency_index": 55.56
- },
- {
- "date": "2020-07-26",
- "total_cases": 8800.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 68.143,
- "total_deaths": 203.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 98.257,
- "new_cases_per_million": 0.38,
- "new_cases_smoothed_per_million": 0.761,
- "total_deaths_per_million": 2.267,
- "new_deaths_per_million": 0.033,
- "new_deaths_smoothed_per_million": 0.018,
- "new_tests": 137.0,
- "new_tests_per_thousand": 0.002,
- "new_tests_smoothed": 577.0,
- "new_tests_smoothed_per_thousand": 0.006,
- "tests_per_case": 8.468,
- "positive_rate": 0.11800000000000001,
- "tests_units": "samples tested",
- "stringency_index": 55.56
- },
- {
- "date": "2020-07-27",
- "total_cases": 8831.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 61.286,
- "total_deaths": 204.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 98.603,
- "new_cases_per_million": 0.346,
- "new_cases_smoothed_per_million": 0.684,
- "total_deaths_per_million": 2.278,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.018,
- "new_tests": 242.0,
- "new_tests_per_thousand": 0.003,
- "new_tests_smoothed": 519.0,
- "new_tests_smoothed_per_thousand": 0.006,
- "tests_per_case": 8.469,
- "positive_rate": 0.11800000000000001,
- "tests_units": "samples tested",
- "stringency_index": 55.56
- },
- {
- "date": "2020-07-28",
- "total_cases": 8844.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 57.429,
- "total_deaths": 208.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 98.748,
- "new_cases_per_million": 0.145,
- "new_cases_smoothed_per_million": 0.641,
- "total_deaths_per_million": 2.322,
- "new_deaths_per_million": 0.045,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 242.0,
- "new_tests_per_thousand": 0.003,
- "new_tests_smoothed": 448.0,
- "new_tests_smoothed_per_thousand": 0.005,
- "tests_per_case": 7.801,
- "positive_rate": 0.128,
- "tests_units": "samples tested",
- "stringency_index": 55.56
- },
- {
- "date": "2020-07-29",
- "total_cases": 8873.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 48.571,
- "total_deaths": 208.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 99.072,
- "new_cases_per_million": 0.324,
- "new_cases_smoothed_per_million": 0.542,
- "total_deaths_per_million": 2.322,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.021,
- "new_tests": 637.0,
- "new_tests_per_thousand": 0.007,
- "new_tests_smoothed": 434.0,
- "new_tests_smoothed_per_thousand": 0.005,
- "tests_per_case": 8.935,
- "positive_rate": 0.11199999999999999,
- "tests_units": "samples tested",
- "stringency_index": 55.56
- },
- {
- "date": "2020-07-30",
- "total_cases": 8931.0,
- "new_cases": 58.0,
- "new_cases_smoothed": 43.714,
- "total_deaths": 213.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 99.719,
- "new_cases_per_million": 0.648,
- "new_cases_smoothed_per_million": 0.488,
- "total_deaths_per_million": 2.378,
- "new_deaths_per_million": 0.056,
- "new_deaths_smoothed_per_million": 0.026,
- "new_tests": 364.0,
- "new_tests_per_thousand": 0.004,
- "new_tests_smoothed": 394.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_per_case": 9.013,
- "positive_rate": 0.111,
- "tests_units": "samples tested",
- "stringency_index": 55.56
- },
- {
- "date": "2020-07-31",
- "total_cases": 9010.0,
- "new_cases": 79.0,
- "new_cases_smoothed": 41.571,
- "total_deaths": 214.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 100.601,
- "new_cases_per_million": 0.882,
- "new_cases_smoothed_per_million": 0.464,
- "total_deaths_per_million": 2.389,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 417.0,
- "new_tests_per_thousand": 0.005,
- "new_tests_smoothed": 387.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_per_case": 9.309,
- "positive_rate": 0.107,
- "tests_units": "samples tested",
- "stringency_index": 55.56
- },
- {
- "date": "2020-08-01",
- "total_cases": 9070.0,
- "new_cases": 60.0,
- "new_cases_smoothed": 43.429,
- "total_deaths": 214.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 101.271,
- "new_cases_per_million": 0.67,
- "new_cases_smoothed_per_million": 0.485,
- "total_deaths_per_million": 2.389,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 289.0,
- "new_tests_per_thousand": 0.003,
- "new_tests_smoothed": 333.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_per_case": 7.667999999999999,
- "positive_rate": 0.13,
- "tests_units": "samples tested",
- "stringency_index": 55.56
- },
- {
- "date": "2020-08-02",
- "total_cases": 9083.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 40.429,
- "total_deaths": 214.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 101.416,
- "new_cases_per_million": 0.145,
- "new_cases_smoothed_per_million": 0.451,
- "total_deaths_per_million": 2.389,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.018,
- "new_tests": 237.0,
- "new_tests_per_thousand": 0.003,
- "new_tests_smoothed": 347.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_per_case": 8.583,
- "positive_rate": 0.11699999999999999,
- "tests_units": "samples tested",
- "stringency_index": 55.56
- },
- {
- "date": "2020-08-03",
- "total_cases": 9114.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 40.429,
- "total_deaths": 214.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 101.763,
- "new_cases_per_million": 0.346,
- "new_cases_smoothed_per_million": 0.451,
- "total_deaths_per_million": 2.389,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 431.0,
- "new_tests_per_thousand": 0.005,
- "new_tests_smoothed": 374.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_per_case": 9.251,
- "positive_rate": 0.10800000000000001,
- "tests_units": "samples tested",
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-04",
- "total_cases": 9132.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 41.143,
- "total_deaths": 214.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 101.964,
- "new_cases_per_million": 0.201,
- "new_cases_smoothed_per_million": 0.459,
- "total_deaths_per_million": 2.389,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.01,
- "new_tests": 344.0,
- "new_tests_per_thousand": 0.004,
- "new_tests_smoothed": 388.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_per_case": 9.431000000000001,
- "positive_rate": 0.106,
- "tests_units": "samples tested",
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-05",
- "total_cases": 9177.0,
- "new_cases": 45.0,
- "new_cases_smoothed": 43.429,
- "total_deaths": 214.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 102.466,
- "new_cases_per_million": 0.502,
- "new_cases_smoothed_per_million": 0.485,
- "total_deaths_per_million": 2.389,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.01,
- "new_tests": 489.0,
- "new_tests_per_thousand": 0.005,
- "new_tests_smoothed": 367.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_per_case": 8.451,
- "positive_rate": 0.11800000000000001,
- "tests_units": "samples tested",
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-06",
- "total_cases": 9252.0,
- "new_cases": 75.0,
- "new_cases_smoothed": 45.857,
- "total_deaths": 214.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 103.303,
- "new_cases_per_million": 0.837,
- "new_cases_smoothed_per_million": 0.512,
- "total_deaths_per_million": 2.389,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.002,
- "new_tests": 342.0,
- "new_tests_per_thousand": 0.004,
- "new_tests_smoothed": 364.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_per_case": 7.938,
- "positive_rate": 0.126,
- "tests_units": "samples tested",
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-07",
- "total_cases": 9308.0,
- "new_cases": 56.0,
- "new_cases_smoothed": 42.571,
- "total_deaths": 214.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 103.929,
- "new_cases_per_million": 0.625,
- "new_cases_smoothed_per_million": 0.475,
- "total_deaths_per_million": 2.389,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 431.0,
- "new_tests_per_thousand": 0.005,
- "new_tests_smoothed": 366.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_per_case": 8.597000000000001,
- "positive_rate": 0.11599999999999999,
- "tests_units": "samples tested",
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-08",
- "total_cases": 9354.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 40.571,
- "total_deaths": 217.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 104.442,
- "new_cases_per_million": 0.514,
- "new_cases_smoothed_per_million": 0.453,
- "total_deaths_per_million": 2.423,
- "new_deaths_per_million": 0.033,
- "new_deaths_smoothed_per_million": 0.005,
- "new_tests": 342.0,
- "new_tests_per_thousand": 0.004,
- "new_tests_smoothed": 374.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_per_case": 9.218,
- "positive_rate": 0.10800000000000001,
- "tests_units": "samples tested",
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-09",
- "total_cases": 9453.0,
- "new_cases": 99.0,
- "new_cases_smoothed": 52.857,
- "total_deaths": 223.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 105.548,
- "new_cases_per_million": 1.105,
- "new_cases_smoothed_per_million": 0.59,
- "total_deaths_per_million": 2.49,
- "new_deaths_per_million": 0.067,
- "new_deaths_smoothed_per_million": 0.014,
- "new_tests": 267.0,
- "new_tests_per_thousand": 0.003,
- "new_tests_smoothed": 378.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_per_case": 7.151,
- "positive_rate": 0.14,
- "tests_units": "samples tested",
- "stringency_index": 59.26
- },
- {
- "date": "2020-08-10",
- "total_cases": 9453.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 48.429,
- "total_deaths": 223.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 105.548,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.541,
- "total_deaths_per_million": 2.49,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.014,
- "new_tests": 299.0,
- "new_tests_per_thousand": 0.003,
- "new_tests_smoothed": 359.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_per_case": 7.412999999999999,
- "positive_rate": 0.135,
- "tests_units": "samples tested",
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-11",
- "total_cases": 9488.0,
- "new_cases": 35.0,
- "new_cases_smoothed": 50.857,
- "total_deaths": 223.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 105.938,
- "new_cases_per_million": 0.391,
- "new_cases_smoothed_per_million": 0.568,
- "total_deaths_per_million": 2.49,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.014,
- "new_tests": 462.0,
- "new_tests_per_thousand": 0.005,
- "new_tests_smoothed": 376.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_per_case": 7.393,
- "positive_rate": 0.135,
- "tests_units": "samples tested",
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-12",
- "total_cases": 9498.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 45.857,
- "total_deaths": 224.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 106.05,
- "new_cases_per_million": 0.112,
- "new_cases_smoothed_per_million": 0.512,
- "total_deaths_per_million": 2.501,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.016,
- "new_tests": 413.0,
- "new_tests_per_thousand": 0.005,
- "new_tests_smoothed": 365.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_per_case": 7.96,
- "positive_rate": 0.126,
- "tests_units": "samples tested",
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-13",
- "total_cases": 9537.0,
- "new_cases": 39.0,
- "new_cases_smoothed": 40.714,
- "total_deaths": 225.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 106.486,
- "new_cases_per_million": 0.435,
- "new_cases_smoothed_per_million": 0.455,
- "total_deaths_per_million": 2.512,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.018,
- "new_tests": 326.0,
- "new_tests_per_thousand": 0.004,
- "new_tests_smoothed": 363.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_per_case": 8.916,
- "positive_rate": 0.11199999999999999,
- "tests_units": "samples tested",
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-14",
- "total_cases": 9588.0,
- "new_cases": 51.0,
- "new_cases_smoothed": 40.0,
- "total_deaths": 234.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 107.055,
- "new_cases_per_million": 0.569,
- "new_cases_smoothed_per_million": 0.447,
- "total_deaths_per_million": 2.613,
- "new_deaths_per_million": 0.1,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests": 480.0,
- "new_tests_per_thousand": 0.005,
- "new_tests_smoothed": 370.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_per_case": 9.25,
- "positive_rate": 0.10800000000000001,
- "tests_units": "samples tested",
- "stringency_index": 48.15
- },
- {
- "date": "2020-08-15",
- "total_cases": 9604.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 35.714,
- "total_deaths": 238.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 107.234,
- "new_cases_per_million": 0.179,
- "new_cases_smoothed_per_million": 0.399,
- "total_deaths_per_million": 2.657,
- "new_deaths_per_million": 0.045,
- "new_deaths_smoothed_per_million": 0.033,
- "new_tests": 437.0,
- "new_tests_per_thousand": 0.005,
- "new_tests_smoothed": 383.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_per_case": 10.724,
- "positive_rate": 0.09300000000000001,
- "tests_units": "samples tested",
- "stringency_index": 37.04
- },
- {
- "date": "2020-08-16",
- "total_cases": 9637.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 26.286,
- "total_deaths": 239.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 107.602,
- "new_cases_per_million": 0.368,
- "new_cases_smoothed_per_million": 0.293,
- "total_deaths_per_million": 2.669,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.026,
- "new_tests": 208.0,
- "new_tests_per_thousand": 0.002,
- "new_tests_smoothed": 375.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_per_case": 14.265999999999998,
- "positive_rate": 0.07,
- "tests_units": "samples tested",
- "stringency_index": 37.04
- },
- {
- "date": "2020-08-17",
- "total_cases": 9675.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 31.714,
- "total_deaths": 239.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 108.026,
- "new_cases_per_million": 0.424,
- "new_cases_smoothed_per_million": 0.354,
- "total_deaths_per_million": 2.669,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "new_tests": 333.0,
- "new_tests_per_thousand": 0.004,
- "new_tests_smoothed": 380.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_per_case": 11.982000000000001,
- "positive_rate": 0.083,
- "tests_units": "samples tested",
- "stringency_index": 37.04
- },
- {
- "date": "2020-08-18",
- "total_cases": 9705.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 31.0,
- "total_deaths": 242.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 108.361,
- "new_cases_per_million": 0.335,
- "new_cases_smoothed_per_million": 0.346,
- "total_deaths_per_million": 2.702,
- "new_deaths_per_million": 0.033,
- "new_deaths_smoothed_per_million": 0.03,
- "new_tests": 293.0,
- "new_tests_per_thousand": 0.003,
- "new_tests_smoothed": 356.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_per_case": 11.484000000000002,
- "positive_rate": 0.087,
- "tests_units": "samples tested",
- "stringency_index": 37.04
- },
- {
- "date": "2020-08-19",
- "total_cases": 9720.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 31.714,
- "total_deaths": 242.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 108.529,
- "new_cases_per_million": 0.167,
- "new_cases_smoothed_per_million": 0.354,
- "total_deaths_per_million": 2.702,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.029,
- "new_tests": 398.0,
- "new_tests_per_thousand": 0.004,
- "new_tests_smoothed": 354.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_per_case": 11.162,
- "positive_rate": 0.09,
- "tests_units": "samples tested",
- "stringency_index": 37.04
- },
- {
- "date": "2020-08-20",
- "total_cases": 9740.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 29.0,
- "total_deaths": 245.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 108.752,
- "new_cases_per_million": 0.223,
- "new_cases_smoothed_per_million": 0.324,
- "total_deaths_per_million": 2.736,
- "new_deaths_per_million": 0.033,
- "new_deaths_smoothed_per_million": 0.032,
- "new_tests": 309.0,
- "new_tests_per_thousand": 0.003,
- "new_tests_smoothed": 351.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_per_case": 12.103,
- "positive_rate": 0.083,
- "tests_units": "samples tested",
- "stringency_index": 37.04
- },
- {
- "date": "2020-08-21",
- "total_cases": 9756.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 24.0,
- "total_deaths": 246.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 108.931,
- "new_cases_per_million": 0.179,
- "new_cases_smoothed_per_million": 0.268,
- "total_deaths_per_million": 2.747,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.019,
- "new_tests": 254.0,
- "new_tests_per_thousand": 0.003,
- "new_tests_smoothed": 319.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_per_case": 13.292,
- "positive_rate": 0.075,
- "tests_units": "samples tested",
- "stringency_index": 37.04
- },
- {
- "date": "2020-08-22",
- "total_cases": 9801.0,
- "new_cases": 45.0,
- "new_cases_smoothed": 28.143,
- "total_deaths": 247.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 109.433,
- "new_cases_per_million": 0.502,
- "new_cases_smoothed_per_million": 0.314,
- "total_deaths_per_million": 2.758,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.014,
- "new_tests": 422.0,
- "new_tests_per_thousand": 0.005,
- "new_tests_smoothed": 317.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_per_case": 11.264000000000001,
- "positive_rate": 0.08900000000000001,
- "tests_units": "samples tested",
- "stringency_index": 37.04
- },
- {
- "date": "2020-08-23",
- "total_cases": 9810.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 24.714,
- "total_deaths": 250.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 109.534,
- "new_cases_per_million": 0.1,
- "new_cases_smoothed_per_million": 0.276,
- "total_deaths_per_million": 2.791,
- "new_deaths_per_million": 0.033,
- "new_deaths_smoothed_per_million": 0.018,
- "new_tests": 154.0,
- "new_tests_per_thousand": 0.002,
- "new_tests_smoothed": 309.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "tests_per_case": 12.503,
- "positive_rate": 0.08,
- "tests_units": "samples tested",
- "stringency_index": 37.04
- },
- {
- "date": "2020-08-24",
- "total_cases": 9829.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 22.0,
- "total_deaths": 250.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 109.746,
- "new_cases_per_million": 0.212,
- "new_cases_smoothed_per_million": 0.246,
- "total_deaths_per_million": 2.791,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.018,
- "new_tests": 184.0,
- "new_tests_per_thousand": 0.002,
- "new_tests_smoothed": 288.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "tests_per_case": 13.091,
- "positive_rate": 0.076,
- "tests_units": "samples tested",
- "stringency_index": 37.04
- },
- {
- "date": "2020-08-25",
- "total_cases": 9841.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 19.429,
- "total_deaths": 250.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 109.88,
- "new_cases_per_million": 0.134,
- "new_cases_smoothed_per_million": 0.217,
- "total_deaths_per_million": 2.791,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 217.0,
- "new_tests_per_thousand": 0.002,
- "new_tests_smoothed": 277.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "tests_per_case": 14.257,
- "positive_rate": 0.07,
- "tests_units": "samples tested",
- "stringency_index": 37.04
- },
- {
- "date": "2020-08-26",
- "total_cases": 9890.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 24.286,
- "total_deaths": 250.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 110.427,
- "new_cases_per_million": 0.547,
- "new_cases_smoothed_per_million": 0.271,
- "total_deaths_per_million": 2.791,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 148.0,
- "new_tests_per_thousand": 0.002,
- "new_tests_smoothed": 241.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "tests_per_case": 9.924,
- "positive_rate": 0.10099999999999999,
- "tests_units": "samples tested",
- "stringency_index": 42.59
- },
- {
- "date": "2020-08-27",
- "total_cases": 9911.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 24.429,
- "total_deaths": 253.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 110.662,
- "new_cases_per_million": 0.234,
- "new_cases_smoothed_per_million": 0.273,
- "total_deaths_per_million": 2.825,
- "new_deaths_per_million": 0.033,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 296.0,
- "new_tests_per_thousand": 0.003,
- "new_tests_smoothed": 239.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "tests_per_case": 9.783999999999999,
- "positive_rate": 0.102,
- "tests_units": "samples tested",
- "stringency_index": 42.59
- },
- {
- "date": "2020-08-28",
- "total_cases": 9914.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 22.571,
- "total_deaths": 254.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 110.695,
- "new_cases_per_million": 0.033,
- "new_cases_smoothed_per_million": 0.252,
- "total_deaths_per_million": 2.836,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 151.0,
- "new_tests_per_thousand": 0.002,
- "new_tests_smoothed": 225.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "tests_per_case": 9.968,
- "positive_rate": 0.1,
- "tests_units": "samples tested",
- "stringency_index": 42.59
- },
- {
- "date": "2020-08-29",
- "total_cases": 9993.0,
- "new_cases": 79.0,
- "new_cases_smoothed": 27.429,
- "total_deaths": 254.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 111.577,
- "new_cases_per_million": 0.882,
- "new_cases_smoothed_per_million": 0.306,
- "total_deaths_per_million": 2.836,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 339.0,
- "new_tests_per_thousand": 0.004,
- "new_tests_smoothed": 213.0,
- "new_tests_smoothed_per_thousand": 0.002,
- "tests_per_case": 7.766,
- "positive_rate": 0.129,
- "tests_units": "samples tested",
- "stringency_index": 42.59
- },
- {
- "date": "2020-08-30",
- "total_cases": 10007.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 28.143,
- "total_deaths": 257.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 111.733,
- "new_cases_per_million": 0.156,
- "new_cases_smoothed_per_million": 0.314,
- "total_deaths_per_million": 2.87,
- "new_deaths_per_million": 0.033,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 327.0,
- "new_tests_per_thousand": 0.004,
- "new_tests_smoothed": 237.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "tests_per_case": 8.421,
- "positive_rate": 0.11900000000000001,
- "tests_units": "samples tested",
- "stringency_index": 42.59
- },
- {
- "date": "2020-08-31",
- "total_cases": 10044.0,
- "new_cases": 37.0,
- "new_cases_smoothed": 30.714,
- "total_deaths": 257.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 112.147,
- "new_cases_per_million": 0.413,
- "new_cases_smoothed_per_million": 0.343,
- "total_deaths_per_million": 2.87,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 135.0,
- "new_tests_per_thousand": 0.002,
- "new_tests_smoothed": 230.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "tests_per_case": 7.4879999999999995,
- "positive_rate": 0.134,
- "tests_units": "samples tested",
- "stringency_index": 42.59
- },
- {
- "date": "2020-09-01",
- "total_cases": 10096.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 36.429,
- "total_deaths": 257.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 112.727,
- "new_cases_per_million": 0.581,
- "new_cases_smoothed_per_million": 0.407,
- "total_deaths_per_million": 2.87,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "tests_units": "samples tested",
- "stringency_index": 42.59
- },
- {
- "date": "2020-09-02",
- "total_cases": 10103.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 30.429,
- "total_deaths": 258.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 112.805,
- "new_cases_per_million": 0.078,
- "new_cases_smoothed_per_million": 0.34,
- "total_deaths_per_million": 2.881,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 266.0,
- "new_tests_per_thousand": 0.003,
- "tests_units": "samples tested",
- "stringency_index": 42.59
- },
- {
- "date": "2020-09-03",
- "total_cases": 10113.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 28.857,
- "total_deaths": 258.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 112.917,
- "new_cases_per_million": 0.112,
- "new_cases_smoothed_per_million": 0.322,
- "total_deaths_per_million": 2.881,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.008,
- "new_tests": 187.0,
- "new_tests_per_thousand": 0.002,
- "tests_units": "samples tested",
- "stringency_index": 42.59
- },
- {
- "date": "2020-09-04",
- "total_cases": 10125.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 30.143,
- "total_deaths": 258.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 113.051,
- "new_cases_per_million": 0.134,
- "new_cases_smoothed_per_million": 0.337,
- "total_deaths_per_million": 2.881,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.006,
- "new_tests": 434.0,
- "new_tests_per_thousand": 0.005,
- "tests_units": "samples tested",
- "stringency_index": 42.59
- },
- {
- "date": "2020-09-05",
- "total_cases": 10148.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 22.143,
- "total_deaths": 258.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 113.308,
- "new_cases_per_million": 0.257,
- "new_cases_smoothed_per_million": 0.247,
- "total_deaths_per_million": 2.881,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.006,
- "new_tests": 339.0,
- "new_tests_per_thousand": 0.004,
- "tests_units": "samples tested",
- "stringency_index": 42.59
- },
- {
- "date": "2020-09-06",
- "total_cases": 10178.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 24.429,
- "total_deaths": 258.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 113.643,
- "new_cases_per_million": 0.335,
- "new_cases_smoothed_per_million": 0.273,
- "total_deaths_per_million": 2.881,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.002,
- "new_tests": 128.0,
- "new_tests_per_thousand": 0.001,
- "tests_units": "samples tested",
- "stringency_index": 42.59
- },
- {
- "date": "2020-09-07",
- "total_cases": 10209.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 23.571,
- "total_deaths": 259.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 113.989,
- "new_cases_per_million": 0.346,
- "new_cases_smoothed_per_million": 0.263,
- "total_deaths_per_million": 2.892,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.003,
- "new_tests": 272.0,
- "new_tests_per_thousand": 0.003,
- "tests_units": "samples tested",
- "stringency_index": 42.59
- },
- {
- "date": "2020-09-08",
- "total_cases": 10232.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 19.429,
- "total_deaths": 259.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 114.246,
- "new_cases_per_million": 0.257,
- "new_cases_smoothed_per_million": 0.217,
- "total_deaths_per_million": 2.892,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.003,
- "new_tests": 250.0,
- "new_tests_per_thousand": 0.003,
- "new_tests_smoothed": 268.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "tests_per_case": 13.794,
- "positive_rate": 0.07200000000000001,
- "tests_units": "samples tested",
- "stringency_index": 42.59
- },
- {
- "date": "2020-09-09",
- "total_cases": 10291.0,
- "new_cases": 59.0,
- "new_cases_smoothed": 26.857,
- "total_deaths": 259.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 114.904,
- "new_cases_per_million": 0.659,
- "new_cases_smoothed_per_million": 0.3,
- "total_deaths_per_million": 2.892,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.002,
- "new_tests": 195.0,
- "new_tests_per_thousand": 0.002,
- "new_tests_smoothed": 258.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "tests_per_case": 9.606,
- "positive_rate": 0.10400000000000001,
- "tests_units": "samples tested",
- "stringency_index": 42.59
- },
- {
- "date": "2020-09-10",
- "total_cases": 10323.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 30.0,
- "total_deaths": 259.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 115.262,
- "new_cases_per_million": 0.357,
- "new_cases_smoothed_per_million": 0.335,
- "total_deaths_per_million": 2.892,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.002,
- "new_tests": 396.0,
- "new_tests_per_thousand": 0.004,
- "new_tests_smoothed": 288.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "tests_per_case": 9.6,
- "positive_rate": 0.10400000000000001,
- "tests_units": "samples tested",
- "stringency_index": 42.59
- },
- {
- "date": "2020-09-11",
- "total_cases": 10342.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 31.0,
- "total_deaths": 261.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 115.474,
- "new_cases_per_million": 0.212,
- "new_cases_smoothed_per_million": 0.346,
- "total_deaths_per_million": 2.914,
- "new_deaths_per_million": 0.022,
- "new_deaths_smoothed_per_million": 0.005,
- "new_tests": 273.0,
- "new_tests_per_thousand": 0.003,
- "new_tests_smoothed": 265.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "tests_per_case": 8.548,
- "positive_rate": 0.11699999999999999,
- "tests_units": "samples tested",
- "stringency_index": 42.59
- },
- {
- "date": "2020-09-12",
- "total_cases": 10360.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 30.286,
- "total_deaths": 261.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 115.675,
- "new_cases_per_million": 0.201,
- "new_cases_smoothed_per_million": 0.338,
- "total_deaths_per_million": 2.914,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "new_tests": 230.0,
- "new_tests_per_thousand": 0.003,
- "new_tests_smoothed": 249.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "tests_per_case": 8.222000000000001,
- "positive_rate": 0.122,
- "tests_units": "samples tested",
- "stringency_index": 42.59
- },
- {
- "date": "2020-09-13",
- "total_cases": 10384.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 29.429,
- "total_deaths": 261.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 115.943,
- "new_cases_per_million": 0.268,
- "new_cases_smoothed_per_million": 0.329,
- "total_deaths_per_million": 2.914,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "new_tests": 36.0,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 236.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "tests_per_case": 8.019,
- "positive_rate": 0.125,
- "tests_units": "samples tested",
- "stringency_index": 42.59
- },
- {
- "date": "2020-09-14",
- "total_cases": 10389.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 25.714,
- "total_deaths": 264.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 115.999,
- "new_cases_per_million": 0.056,
- "new_cases_smoothed_per_million": 0.287,
- "total_deaths_per_million": 2.948,
- "new_deaths_per_million": 0.033,
- "new_deaths_smoothed_per_million": 0.008,
- "new_tests": 189.0,
- "new_tests_per_thousand": 0.002,
- "new_tests_smoothed": 224.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "tests_per_case": 8.711,
- "positive_rate": 0.115,
- "tests_units": "samples tested",
- "stringency_index": 42.59
- },
- {
- "date": "2020-09-15",
- "total_cases": 10389.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 22.429,
- "total_deaths": 264.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 115.999,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.25,
- "total_deaths_per_million": 2.948,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.008,
- "new_tests": 272.0,
- "new_tests_per_thousand": 0.003,
- "new_tests_smoothed": 227.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "tests_per_case": 10.121,
- "positive_rate": 0.099,
- "tests_units": "samples tested",
- "stringency_index": 42.59
- },
- {
- "date": "2020-09-16",
- "total_cases": 10401.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 15.714,
- "total_deaths": 267.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 116.133,
- "new_cases_per_million": 0.134,
- "new_cases_smoothed_per_million": 0.175,
- "total_deaths_per_million": 2.981,
- "new_deaths_per_million": 0.033,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 313.0,
- "new_tests_per_thousand": 0.003,
- "new_tests_smoothed": 244.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "tests_per_case": 15.527000000000001,
- "positive_rate": 0.064,
- "tests_units": "samples tested",
- "stringency_index": 42.59
- },
- {
- "date": "2020-09-17",
- "total_cases": 10401.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 11.143,
- "total_deaths": 267.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 116.133,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.124,
- "total_deaths_per_million": 2.981,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 392.0,
- "new_tests_per_thousand": 0.004,
- "new_tests_smoothed": 244.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "tests_per_case": 21.897,
- "positive_rate": 0.046,
- "tests_units": "samples tested",
- "stringency_index": 42.59
- },
- {
- "date": "2020-09-18",
- "total_cases": 10442.0,
- "new_cases": 41.0,
- "new_cases_smoothed": 14.286,
- "total_deaths": 267.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 116.59,
- "new_cases_per_million": 0.458,
- "new_cases_smoothed_per_million": 0.16,
- "total_deaths_per_million": 2.981,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.01,
- "new_tests": 251.0,
- "new_tests_per_thousand": 0.003,
- "new_tests_smoothed": 240.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "tests_per_case": 16.8,
- "positive_rate": 0.06,
- "tests_units": "samples tested",
- "stringency_index": 42.59
- },
- {
- "date": "2020-09-19",
- "total_cases": 10456.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 13.714,
- "total_deaths": 268.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 116.747,
- "new_cases_per_million": 0.156,
- "new_cases_smoothed_per_million": 0.153,
- "total_deaths_per_million": 2.992,
- "new_deaths_per_million": 0.011,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 188.0,
- "new_tests_per_thousand": 0.002,
- "new_tests_smoothed": 234.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "tests_per_case": 17.062,
- "positive_rate": 0.059000000000000004,
- "tests_units": "samples tested",
- "stringency_index": 42.59
- },
- {
- "date": "2020-09-20",
- "total_cases": 10488.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 14.857,
- "total_deaths": 268.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 117.104,
- "new_cases_per_million": 0.357,
- "new_cases_smoothed_per_million": 0.166,
- "total_deaths_per_million": 2.992,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 99.0,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 243.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "tests_per_case": 16.355999999999998,
- "positive_rate": 0.061,
- "tests_units": "samples tested",
- "stringency_index": 42.59
- },
- {
- "date": "2020-09-21",
- "total_cases": 10514.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 17.857,
- "total_deaths": 270.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 117.394,
- "new_cases_per_million": 0.29,
- "new_cases_smoothed_per_million": 0.199,
- "total_deaths_per_million": 3.015,
- "new_deaths_per_million": 0.022,
- "new_deaths_smoothed_per_million": 0.01,
- "new_tests": 128.0,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 235.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "tests_per_case": 13.16,
- "positive_rate": 0.076,
- "tests_units": "samples tested",
- "stringency_index": 42.59
- },
- {
- "date": "2020-09-22",
- "total_cases": 10518.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 18.429,
- "total_deaths": 270.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 117.439,
- "new_cases_per_million": 0.045,
- "new_cases_smoothed_per_million": 0.206,
- "total_deaths_per_million": 3.015,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.01,
- "new_tests": 238.0,
- "new_tests_per_thousand": 0.003,
- "new_tests_smoothed": 230.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "tests_per_case": 12.481,
- "positive_rate": 0.08,
- "tests_units": "samples tested",
- "stringency_index": 42.59
- },
- {
- "date": "2020-09-23",
- "total_cases": 10522.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 17.286,
- "total_deaths": 270.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 117.484,
- "new_cases_per_million": 0.045,
- "new_cases_smoothed_per_million": 0.193,
- "total_deaths_per_million": 3.015,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "stringency_index": 42.59
- },
- {
- "date": "2020-09-24",
- "total_cases": 10536.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 19.286,
- "total_deaths": 270.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 117.64,
- "new_cases_per_million": 0.156,
- "new_cases_smoothed_per_million": 0.215,
- "total_deaths_per_million": 3.015,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005,
- "stringency_index": 42.59
- },
- {
- "date": "2020-09-25",
- "total_cases": 10554.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 16.0,
- "total_deaths": 270.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 117.841,
- "new_cases_per_million": 0.201,
- "new_cases_smoothed_per_million": 0.179,
- "total_deaths_per_million": 3.015,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.005
- }
- ]
- },
- "COG": {
- "continent": "Africa",
- "location": "Congo",
- "population": 5518092.0,
- "population_density": 15.405,
- "median_age": 19.0,
- "aged_65_older": 3.402,
- "aged_70_older": 2.063,
- "gdp_per_capita": 4881.406,
- "extreme_poverty": 37.0,
- "cardiovasc_death_rate": 344.094,
- "diabetes_prevalence": 7.2,
- "female_smokers": 1.7,
- "male_smokers": 52.3,
- "handwashing_facilities": 47.964,
- "life_expectancy": 64.57,
- "human_development_index": 0.606,
- "data": [
- {
- "date": "2020-03-16",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.181,
- "new_cases_per_million": 0.181,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-17",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.181,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-18",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.181,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-19",
- "total_cases": 3.0,
- "new_cases": 2.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.544,
- "new_cases_per_million": 0.362,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-20",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.544,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-21",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.544,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 16.67
- },
- {
- "date": "2020-03-22",
- "total_cases": 4.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.725,
- "new_cases_per_million": 0.181,
- "new_cases_smoothed_per_million": 0.104,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 16.67
- },
- {
- "date": "2020-03-23",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.725,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.078,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 16.67
- },
- {
- "date": "2020-03-24",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.725,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.078,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 16.67
- },
- {
- "date": "2020-03-25",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.725,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.078,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 16.67
- },
- {
- "date": "2020-03-26",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.725,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.026,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 16.67
- },
- {
- "date": "2020-03-27",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.725,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.026,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 16.67
- },
- {
- "date": "2020-03-28",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.725,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.026,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 80.56
- },
- {
- "date": "2020-03-29",
- "total_cases": 19.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.443,
- "new_cases_per_million": 2.718,
- "new_cases_smoothed_per_million": 0.388,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 80.56
- },
- {
- "date": "2020-03-30",
- "total_cases": 19.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.443,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.388,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 86.11
- },
- {
- "date": "2020-03-31",
- "total_cases": 19.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.443,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.388,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 97.22
- },
- {
- "date": "2020-04-01",
- "total_cases": 22.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 2.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3.987,
- "new_cases_per_million": 0.544,
- "new_cases_smoothed_per_million": 0.466,
- "total_deaths_per_million": 0.362,
- "new_deaths_per_million": 0.362,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 97.22
- },
- {
- "date": "2020-04-02",
- "total_cases": 22.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3.987,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.466,
- "total_deaths_per_million": 0.362,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 97.22
- },
- {
- "date": "2020-04-03",
- "total_cases": 41.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 5.286,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 7.43,
- "new_cases_per_million": 3.443,
- "new_cases_smoothed_per_million": 0.958,
- "total_deaths_per_million": 0.544,
- "new_deaths_per_million": 0.181,
- "new_deaths_smoothed_per_million": 0.078,
- "stringency_index": 97.22
- },
- {
- "date": "2020-04-04",
- "total_cases": 41.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 7.43,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.958,
- "total_deaths_per_million": 0.544,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.078,
- "stringency_index": 97.22
- },
- {
- "date": "2020-04-05",
- "total_cases": 45.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 5.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 8.155,
- "new_cases_per_million": 0.725,
- "new_cases_smoothed_per_million": 0.673,
- "total_deaths_per_million": 0.906,
- "new_deaths_per_million": 0.362,
- "new_deaths_smoothed_per_million": 0.129,
- "stringency_index": 97.22
- },
- {
- "date": "2020-04-06",
- "total_cases": 45.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 8.155,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.673,
- "total_deaths_per_million": 0.906,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.129,
- "stringency_index": 97.22
- },
- {
- "date": "2020-04-07",
- "total_cases": 45.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 8.155,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.673,
- "total_deaths_per_million": 0.906,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.129,
- "stringency_index": 97.22
- },
- {
- "date": "2020-04-08",
- "total_cases": 45.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 8.155,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.595,
- "total_deaths_per_million": 0.906,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.078,
- "stringency_index": 97.22
- },
- {
- "date": "2020-04-09",
- "total_cases": 60.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 10.873,
- "new_cases_per_million": 2.718,
- "new_cases_smoothed_per_million": 0.984,
- "total_deaths_per_million": 0.906,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.078,
- "stringency_index": 97.22
- },
- {
- "date": "2020-04-10",
- "total_cases": 60.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 10.873,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.492,
- "total_deaths_per_million": 0.906,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 97.22
- },
- {
- "date": "2020-04-11",
- "total_cases": 60.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 10.873,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.492,
- "total_deaths_per_million": 0.906,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 97.22
- },
- {
- "date": "2020-04-12",
- "total_cases": 60.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.873,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.388,
- "total_deaths_per_million": 0.906,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 97.22
- },
- {
- "date": "2020-04-13",
- "total_cases": 70.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 3.571,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.686,
- "new_cases_per_million": 1.812,
- "new_cases_smoothed_per_million": 0.647,
- "total_deaths_per_million": 0.906,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 97.22
- },
- {
- "date": "2020-04-14",
- "total_cases": 70.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.571,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.686,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.647,
- "total_deaths_per_million": 0.906,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 97.22
- },
- {
- "date": "2020-04-15",
- "total_cases": 74.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 13.41,
- "new_cases_per_million": 0.725,
- "new_cases_smoothed_per_million": 0.751,
- "total_deaths_per_million": 0.906,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 97.22
- },
- {
- "date": "2020-04-16",
- "total_cases": 117.0,
- "new_cases": 43.0,
- "new_cases_smoothed": 8.143,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 21.203,
- "new_cases_per_million": 7.793,
- "new_cases_smoothed_per_million": 1.476,
- "total_deaths_per_million": 0.906,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 97.22
- },
- {
- "date": "2020-04-17",
- "total_cases": 117.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 8.143,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 21.203,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.476,
- "total_deaths_per_million": 0.906,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 97.22
- },
- {
- "date": "2020-04-18",
- "total_cases": 143.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 11.857,
- "total_deaths": 6.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 25.915,
- "new_cases_per_million": 4.712,
- "new_cases_smoothed_per_million": 2.149,
- "total_deaths_per_million": 1.087,
- "new_deaths_per_million": 0.181,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 97.22
- },
- {
- "date": "2020-04-19",
- "total_cases": 143.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 11.857,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 25.915,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.149,
- "total_deaths_per_million": 1.087,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 97.22
- },
- {
- "date": "2020-04-20",
- "total_cases": 160.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 12.857,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 28.996,
- "new_cases_per_million": 3.081,
- "new_cases_smoothed_per_million": 2.33,
- "total_deaths_per_million": 1.087,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 97.22
- },
- {
- "date": "2020-04-21",
- "total_cases": 160.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 12.857,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 28.996,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.33,
- "total_deaths_per_million": 1.087,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 97.22
- },
- {
- "date": "2020-04-22",
- "total_cases": 165.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 13.0,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 29.902,
- "new_cases_per_million": 0.906,
- "new_cases_smoothed_per_million": 2.356,
- "total_deaths_per_million": 1.087,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 97.22
- },
- {
- "date": "2020-04-23",
- "total_cases": 186.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 9.857,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 33.707,
- "new_cases_per_million": 3.806,
- "new_cases_smoothed_per_million": 1.786,
- "total_deaths_per_million": 1.087,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 97.22
- },
- {
- "date": "2020-04-24",
- "total_cases": 186.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 9.857,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 33.707,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.786,
- "total_deaths_per_million": 1.087,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 97.22
- },
- {
- "date": "2020-04-25",
- "total_cases": 200.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 8.143,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 36.244,
- "new_cases_per_million": 2.537,
- "new_cases_smoothed_per_million": 1.476,
- "total_deaths_per_million": 1.087,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 97.22
- },
- {
- "date": "2020-04-26",
- "total_cases": 200.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 8.143,
- "total_deaths": 8.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 36.244,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.476,
- "total_deaths_per_million": 1.45,
- "new_deaths_per_million": 0.362,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 97.22
- },
- {
- "date": "2020-04-27",
- "total_cases": 200.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.714,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 36.244,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.036,
- "total_deaths_per_million": 1.45,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 97.22
- },
- {
- "date": "2020-04-28",
- "total_cases": 207.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 6.714,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 37.513,
- "new_cases_per_million": 1.269,
- "new_cases_smoothed_per_million": 1.217,
- "total_deaths_per_million": 1.45,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 97.22
- },
- {
- "date": "2020-04-29",
- "total_cases": 207.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.0,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 37.513,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.087,
- "total_deaths_per_million": 1.45,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 97.22
- },
- {
- "date": "2020-04-30",
- "total_cases": 220.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 4.857,
- "total_deaths": 9.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 39.869,
- "new_cases_per_million": 2.356,
- "new_cases_smoothed_per_million": 0.88,
- "total_deaths_per_million": 1.631,
- "new_deaths_per_million": 0.181,
- "new_deaths_smoothed_per_million": 0.078,
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-01",
- "total_cases": 220.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.857,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 39.869,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.88,
- "total_deaths_per_million": 1.631,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.078,
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-02",
- "total_cases": 229.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 10.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 41.5,
- "new_cases_per_million": 1.631,
- "new_cases_smoothed_per_million": 0.751,
- "total_deaths_per_million": 1.812,
- "new_deaths_per_million": 0.181,
- "new_deaths_smoothed_per_million": 0.104,
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-03",
- "total_cases": 229.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 41.5,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.751,
- "total_deaths_per_million": 1.812,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-04",
- "total_cases": 229.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 41.5,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.751,
- "total_deaths_per_million": 1.812,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-05",
- "total_cases": 236.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 42.768,
- "new_cases_per_million": 1.269,
- "new_cases_smoothed_per_million": 0.751,
- "total_deaths_per_million": 1.812,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-06",
- "total_cases": 236.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 42.768,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.751,
- "total_deaths_per_million": 1.812,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-07",
- "total_cases": 264.0,
- "new_cases": 28.0,
- "new_cases_smoothed": 6.286,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 47.843,
- "new_cases_per_million": 5.074,
- "new_cases_smoothed_per_million": 1.139,
- "total_deaths_per_million": 1.812,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-08",
- "total_cases": 274.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 7.714,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 49.655,
- "new_cases_per_million": 1.812,
- "new_cases_smoothed_per_million": 1.398,
- "total_deaths_per_million": 1.812,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-09",
- "total_cases": 287.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 8.286,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 52.011,
- "new_cases_per_million": 2.356,
- "new_cases_smoothed_per_million": 1.502,
- "total_deaths_per_million": 1.812,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-10",
- "total_cases": 287.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 8.286,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 52.011,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.502,
- "total_deaths_per_million": 1.812,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-11",
- "total_cases": 287.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 8.286,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 52.011,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.502,
- "total_deaths_per_million": 1.812,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-12",
- "total_cases": 333.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 13.857,
- "total_deaths": 11.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 60.347,
- "new_cases_per_million": 8.336,
- "new_cases_smoothed_per_million": 2.511,
- "total_deaths_per_million": 1.993,
- "new_deaths_per_million": 0.181,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-13",
- "total_cases": 333.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 13.857,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 60.347,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.511,
- "total_deaths_per_million": 1.993,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-14",
- "total_cases": 341.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 11.0,
- "total_deaths": 11.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 61.797,
- "new_cases_per_million": 1.45,
- "new_cases_smoothed_per_million": 1.993,
- "total_deaths_per_million": 1.993,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-15",
- "total_cases": 391.0,
- "new_cases": 50.0,
- "new_cases_smoothed": 16.714,
- "total_deaths": 15.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 70.858,
- "new_cases_per_million": 9.061,
- "new_cases_smoothed_per_million": 3.029,
- "total_deaths_per_million": 2.718,
- "new_deaths_per_million": 0.725,
- "new_deaths_smoothed_per_million": 0.129,
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-16",
- "total_cases": 391.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 14.857,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 70.858,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.692,
- "total_deaths_per_million": 2.718,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.129,
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-17",
- "total_cases": 412.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 17.857,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 74.663,
- "new_cases_per_million": 3.806,
- "new_cases_smoothed_per_million": 3.236,
- "total_deaths_per_million": 2.718,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.129,
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-18",
- "total_cases": 412.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 17.857,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 74.663,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.236,
- "total_deaths_per_million": 2.718,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.129,
- "stringency_index": 82.41
- },
- {
- "date": "2020-05-19",
- "total_cases": 412.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 11.286,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 74.663,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.045,
- "total_deaths_per_million": 2.718,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.104,
- "stringency_index": 82.41
- },
- {
- "date": "2020-05-20",
- "total_cases": 420.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 12.429,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 76.113,
- "new_cases_per_million": 1.45,
- "new_cases_smoothed_per_million": 2.252,
- "total_deaths_per_million": 2.718,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.104,
- "stringency_index": 82.41
- },
- {
- "date": "2020-05-21",
- "total_cases": 420.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 11.286,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 76.113,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.045,
- "total_deaths_per_million": 2.718,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.104,
- "stringency_index": 82.41
- },
- {
- "date": "2020-05-22",
- "total_cases": 469.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 11.143,
- "total_deaths": 16.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 84.993,
- "new_cases_per_million": 8.88,
- "new_cases_smoothed_per_million": 2.019,
- "total_deaths_per_million": 2.9,
- "new_deaths_per_million": 0.181,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 82.41
- },
- {
- "date": "2020-05-23",
- "total_cases": 469.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 11.143,
- "total_deaths": 16.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 84.993,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.019,
- "total_deaths_per_million": 2.9,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 82.41
- },
- {
- "date": "2020-05-24",
- "total_cases": 487.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 10.714,
- "total_deaths": 16.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 88.255,
- "new_cases_per_million": 3.262,
- "new_cases_smoothed_per_million": 1.942,
- "total_deaths_per_million": 2.9,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 82.41
- },
- {
- "date": "2020-05-25",
- "total_cases": 487.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 10.714,
- "total_deaths": 16.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 88.255,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.942,
- "total_deaths_per_million": 2.9,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 82.41
- },
- {
- "date": "2020-05-26",
- "total_cases": 531.0,
- "new_cases": 44.0,
- "new_cases_smoothed": 17.0,
- "total_deaths": 17.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 96.229,
- "new_cases_per_million": 7.974,
- "new_cases_smoothed_per_million": 3.081,
- "total_deaths_per_million": 3.081,
- "new_deaths_per_million": 0.181,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 82.41
- },
- {
- "date": "2020-05-27",
- "total_cases": 569.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 21.286,
- "total_deaths": 19.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 103.115,
- "new_cases_per_million": 6.886,
- "new_cases_smoothed_per_million": 3.857,
- "total_deaths_per_million": 3.443,
- "new_deaths_per_million": 0.362,
- "new_deaths_smoothed_per_million": 0.104,
- "stringency_index": 82.41
- },
- {
- "date": "2020-05-28",
- "total_cases": 571.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 21.571,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 103.478,
- "new_cases_per_million": 0.362,
- "new_cases_smoothed_per_million": 3.909,
- "total_deaths_per_million": 3.443,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.104,
- "stringency_index": 82.41
- },
- {
- "date": "2020-05-29",
- "total_cases": 571.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 14.571,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 103.478,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.641,
- "total_deaths_per_million": 3.443,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.078,
- "stringency_index": 82.41
- },
- {
- "date": "2020-05-30",
- "total_cases": 587.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 16.857,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 106.377,
- "new_cases_per_million": 2.9,
- "new_cases_smoothed_per_million": 3.055,
- "total_deaths_per_million": 3.443,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.078,
- "stringency_index": 82.41
- },
- {
- "date": "2020-05-31",
- "total_cases": 587.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 14.286,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 106.377,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.589,
- "total_deaths_per_million": 3.443,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.078,
- "stringency_index": 82.41
- },
- {
- "date": "2020-06-01",
- "total_cases": 611.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 17.714,
- "total_deaths": 20.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 110.727,
- "new_cases_per_million": 4.349,
- "new_cases_smoothed_per_million": 3.21,
- "total_deaths_per_million": 3.624,
- "new_deaths_per_million": 0.181,
- "new_deaths_smoothed_per_million": 0.104,
- "stringency_index": 82.41
- },
- {
- "date": "2020-06-02",
- "total_cases": 611.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 11.429,
- "total_deaths": 20.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 110.727,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.071,
- "total_deaths_per_million": 3.624,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.078,
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-03",
- "total_cases": 611.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.0,
- "total_deaths": 20.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 110.727,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.087,
- "total_deaths_per_million": 3.624,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-04",
- "total_cases": 618.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 6.714,
- "total_deaths": 20.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 111.995,
- "new_cases_per_million": 1.269,
- "new_cases_smoothed_per_million": 1.217,
- "total_deaths_per_million": 3.624,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-05",
- "total_cases": 635.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 9.143,
- "total_deaths": 20.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 115.076,
- "new_cases_per_million": 3.081,
- "new_cases_smoothed_per_million": 1.657,
- "total_deaths_per_million": 3.624,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-06",
- "total_cases": 639.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 7.429,
- "total_deaths": 20.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 115.801,
- "new_cases_per_million": 0.725,
- "new_cases_smoothed_per_million": 1.346,
- "total_deaths_per_million": 3.624,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-07",
- "total_cases": 683.0,
- "new_cases": 44.0,
- "new_cases_smoothed": 13.714,
- "total_deaths": 22.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 123.775,
- "new_cases_per_million": 7.974,
- "new_cases_smoothed_per_million": 2.485,
- "total_deaths_per_million": 3.987,
- "new_deaths_per_million": 0.362,
- "new_deaths_smoothed_per_million": 0.078,
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-08",
- "total_cases": 683.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 10.286,
- "total_deaths": 22.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 123.775,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.864,
- "total_deaths_per_million": 3.987,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-09",
- "total_cases": 683.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 10.286,
- "total_deaths": 22.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 123.775,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.864,
- "total_deaths_per_million": 3.987,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-10",
- "total_cases": 728.0,
- "new_cases": 45.0,
- "new_cases_smoothed": 16.714,
- "total_deaths": 24.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 131.93,
- "new_cases_per_million": 8.155,
- "new_cases_smoothed_per_million": 3.029,
- "total_deaths_per_million": 4.349,
- "new_deaths_per_million": 0.362,
- "new_deaths_smoothed_per_million": 0.104,
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-11",
- "total_cases": 745.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 18.143,
- "total_deaths": 25.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 135.01,
- "new_cases_per_million": 3.081,
- "new_cases_smoothed_per_million": 3.288,
- "total_deaths_per_million": 4.531,
- "new_deaths_per_million": 0.181,
- "new_deaths_smoothed_per_million": 0.129,
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-12",
- "total_cases": 745.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 15.714,
- "total_deaths": 25.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 135.01,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.848,
- "total_deaths_per_million": 4.531,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.129,
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-13",
- "total_cases": 745.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 15.143,
- "total_deaths": 25.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 135.01,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.744,
- "total_deaths_per_million": 4.531,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.129,
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-14",
- "total_cases": 779.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 13.714,
- "total_deaths": 25.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 141.172,
- "new_cases_per_million": 6.162,
- "new_cases_smoothed_per_million": 2.485,
- "total_deaths_per_million": 4.531,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.078,
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-15",
- "total_cases": 779.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 13.714,
- "total_deaths": 25.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 141.172,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.485,
- "total_deaths_per_million": 4.531,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.078,
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-16",
- "total_cases": 883.0,
- "new_cases": 104.0,
- "new_cases_smoothed": 28.571,
- "total_deaths": 27.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 160.019,
- "new_cases_per_million": 18.847,
- "new_cases_smoothed_per_million": 5.178,
- "total_deaths_per_million": 4.893,
- "new_deaths_per_million": 0.362,
- "new_deaths_smoothed_per_million": 0.129,
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-17",
- "total_cases": 883.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 22.143,
- "total_deaths": 27.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 160.019,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.013,
- "total_deaths_per_million": 4.893,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.078,
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-18",
- "total_cases": 883.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 19.714,
- "total_deaths": 27.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 160.019,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.573,
- "total_deaths_per_million": 4.893,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-19",
- "total_cases": 883.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 19.714,
- "total_deaths": 27.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 160.019,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.573,
- "total_deaths_per_million": 4.893,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-20",
- "total_cases": 883.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 19.714,
- "total_deaths": 27.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 160.019,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.573,
- "total_deaths_per_million": 4.893,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-21",
- "total_cases": 1013.0,
- "new_cases": 130.0,
- "new_cases_smoothed": 33.429,
- "total_deaths": 28.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 183.578,
- "new_cases_per_million": 23.559,
- "new_cases_smoothed_per_million": 6.058,
- "total_deaths_per_million": 5.074,
- "new_deaths_per_million": 0.181,
- "new_deaths_smoothed_per_million": 0.078,
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-22",
- "total_cases": 1013.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 33.429,
- "total_deaths": 28.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 183.578,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.058,
- "total_deaths_per_million": 5.074,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.078,
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-23",
- "total_cases": 1087.0,
- "new_cases": 74.0,
- "new_cases_smoothed": 29.143,
- "total_deaths": 37.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 196.988,
- "new_cases_per_million": 13.41,
- "new_cases_smoothed_per_million": 5.281,
- "total_deaths_per_million": 6.705,
- "new_deaths_per_million": 1.631,
- "new_deaths_smoothed_per_million": 0.259,
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-24",
- "total_cases": 1087.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 29.143,
- "total_deaths": 37.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 196.988,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.281,
- "total_deaths_per_million": 6.705,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.259,
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-25",
- "total_cases": 1087.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 29.143,
- "total_deaths": 37.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 196.988,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.281,
- "total_deaths_per_million": 6.705,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.259,
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-26",
- "total_cases": 1204.0,
- "new_cases": 117.0,
- "new_cases_smoothed": 45.857,
- "total_deaths": 38.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 218.191,
- "new_cases_per_million": 21.203,
- "new_cases_smoothed_per_million": 8.31,
- "total_deaths_per_million": 6.886,
- "new_deaths_per_million": 0.181,
- "new_deaths_smoothed_per_million": 0.285,
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-27",
- "total_cases": 1204.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 45.857,
- "total_deaths": 38.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 218.191,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.31,
- "total_deaths_per_million": 6.886,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.285,
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-28",
- "total_cases": 1245.0,
- "new_cases": 41.0,
- "new_cases_smoothed": 33.143,
- "total_deaths": 40.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 225.621,
- "new_cases_per_million": 7.43,
- "new_cases_smoothed_per_million": 6.006,
- "total_deaths_per_million": 7.249,
- "new_deaths_per_million": 0.362,
- "new_deaths_smoothed_per_million": 0.311,
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-29",
- "total_cases": 1245.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 33.143,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 225.621,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.006,
- "total_deaths_per_million": 7.249,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.311,
- "stringency_index": 73.15
- },
- {
- "date": "2020-06-30",
- "total_cases": 1245.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 22.571,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 225.621,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.09,
- "total_deaths_per_million": 7.249,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.078,
- "stringency_index": 73.15
- },
- {
- "date": "2020-07-01",
- "total_cases": 1245.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 22.571,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 225.621,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.09,
- "total_deaths_per_million": 7.249,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.078,
- "stringency_index": 73.15
- },
- {
- "date": "2020-07-02",
- "total_cases": 1382.0,
- "new_cases": 137.0,
- "new_cases_smoothed": 42.143,
- "total_deaths": 41.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 250.449,
- "new_cases_per_million": 24.827,
- "new_cases_smoothed_per_million": 7.637,
- "total_deaths_per_million": 7.43,
- "new_deaths_per_million": 0.181,
- "new_deaths_smoothed_per_million": 0.104,
- "stringency_index": 73.15
- },
- {
- "date": "2020-07-03",
- "total_cases": 1382.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 25.429,
- "total_deaths": 41.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 250.449,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.608,
- "total_deaths_per_million": 7.43,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.078,
- "stringency_index": 73.15
- },
- {
- "date": "2020-07-04",
- "total_cases": 1557.0,
- "new_cases": 175.0,
- "new_cases_smoothed": 50.429,
- "total_deaths": 44.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 282.163,
- "new_cases_per_million": 31.714,
- "new_cases_smoothed_per_million": 9.139,
- "total_deaths_per_million": 7.974,
- "new_deaths_per_million": 0.544,
- "new_deaths_smoothed_per_million": 0.155,
- "stringency_index": 73.15
- },
- {
- "date": "2020-07-05",
- "total_cases": 1557.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 44.571,
- "total_deaths": 44.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 282.163,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.077,
- "total_deaths_per_million": 7.974,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.104,
- "stringency_index": 73.15
- },
- {
- "date": "2020-07-06",
- "total_cases": 1557.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 44.571,
- "total_deaths": 44.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 282.163,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.077,
- "total_deaths_per_million": 7.974,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.104,
- "stringency_index": 73.15
- },
- {
- "date": "2020-07-07",
- "total_cases": 1557.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 44.571,
- "total_deaths": 44.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 282.163,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.077,
- "total_deaths_per_million": 7.974,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.104,
- "stringency_index": 73.15
- },
- {
- "date": "2020-07-08",
- "total_cases": 1557.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 44.571,
- "total_deaths": 44.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 282.163,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.077,
- "total_deaths_per_million": 7.974,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.104,
- "stringency_index": 73.15
- },
- {
- "date": "2020-07-09",
- "total_cases": 1821.0,
- "new_cases": 264.0,
- "new_cases_smoothed": 62.714,
- "total_deaths": 47.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 330.005,
- "new_cases_per_million": 47.843,
- "new_cases_smoothed_per_million": 11.365,
- "total_deaths_per_million": 8.517,
- "new_deaths_per_million": 0.544,
- "new_deaths_smoothed_per_million": 0.155,
- "stringency_index": 73.15
- },
- {
- "date": "2020-07-10",
- "total_cases": 1821.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 62.714,
- "total_deaths": 47.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 330.005,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 11.365,
- "total_deaths_per_million": 8.517,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.155,
- "stringency_index": 73.15
- },
- {
- "date": "2020-07-11",
- "total_cases": 2028.0,
- "new_cases": 207.0,
- "new_cases_smoothed": 67.286,
- "total_deaths": 47.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 367.518,
- "new_cases_per_million": 37.513,
- "new_cases_smoothed_per_million": 12.194,
- "total_deaths_per_million": 8.517,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.078,
- "stringency_index": 73.15
- },
- {
- "date": "2020-07-12",
- "total_cases": 2028.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 67.286,
- "total_deaths": 47.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 367.518,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 12.194,
- "total_deaths_per_million": 8.517,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.078,
- "stringency_index": 73.15
- },
- {
- "date": "2020-07-13",
- "total_cases": 2103.0,
- "new_cases": 75.0,
- "new_cases_smoothed": 78.0,
- "total_deaths": 47.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 381.11,
- "new_cases_per_million": 13.592,
- "new_cases_smoothed_per_million": 14.135,
- "total_deaths_per_million": 8.517,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.078,
- "stringency_index": 73.15
- },
- {
- "date": "2020-07-14",
- "total_cases": 2103.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 78.0,
- "total_deaths": 47.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 381.11,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 14.135,
- "total_deaths_per_million": 8.517,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.078,
- "stringency_index": 73.15
- },
- {
- "date": "2020-07-15",
- "total_cases": 2222.0,
- "new_cases": 119.0,
- "new_cases_smoothed": 95.0,
- "total_deaths": 47.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 402.675,
- "new_cases_per_million": 21.565,
- "new_cases_smoothed_per_million": 17.216,
- "total_deaths_per_million": 8.517,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.078,
- "stringency_index": 73.15
- },
- {
- "date": "2020-07-16",
- "total_cases": 2358.0,
- "new_cases": 136.0,
- "new_cases_smoothed": 76.714,
- "total_deaths": 48.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 427.322,
- "new_cases_per_million": 24.646,
- "new_cases_smoothed_per_million": 13.902,
- "total_deaths_per_million": 8.699,
- "new_deaths_per_million": 0.181,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 73.15
- },
- {
- "date": "2020-07-17",
- "total_cases": 2358.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 76.714,
- "total_deaths": 48.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 427.322,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 13.902,
- "total_deaths_per_million": 8.699,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 73.15
- },
- {
- "date": "2020-07-18",
- "total_cases": 2633.0,
- "new_cases": 275.0,
- "new_cases_smoothed": 86.429,
- "total_deaths": 49.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 477.158,
- "new_cases_per_million": 49.836,
- "new_cases_smoothed_per_million": 15.663,
- "total_deaths_per_million": 8.88,
- "new_deaths_per_million": 0.181,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 73.15
- },
- {
- "date": "2020-07-19",
- "total_cases": 2633.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 86.429,
- "total_deaths": 49.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 477.158,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 15.663,
- "total_deaths_per_million": 8.88,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 73.15
- },
- {
- "date": "2020-07-20",
- "total_cases": 2633.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 75.714,
- "total_deaths": 49.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 477.158,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 13.721,
- "total_deaths_per_million": 8.88,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 73.15
- },
- {
- "date": "2020-07-21",
- "total_cases": 2851.0,
- "new_cases": 218.0,
- "new_cases_smoothed": 106.857,
- "total_deaths": 50.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 516.664,
- "new_cases_per_million": 39.506,
- "new_cases_smoothed_per_million": 19.365,
- "total_deaths_per_million": 9.061,
- "new_deaths_per_million": 0.181,
- "new_deaths_smoothed_per_million": 0.078,
- "stringency_index": 62.04
- },
- {
- "date": "2020-07-22",
- "total_cases": 2851.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 89.857,
- "total_deaths": 50.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 516.664,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 16.284,
- "total_deaths_per_million": 9.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.078,
- "stringency_index": 62.04
- },
- {
- "date": "2020-07-23",
- "total_cases": 2851.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 70.429,
- "total_deaths": 50.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 516.664,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 12.763,
- "total_deaths_per_million": 9.061,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 62.04
- },
- {
- "date": "2020-07-24",
- "total_cases": 3038.0,
- "new_cases": 187.0,
- "new_cases_smoothed": 97.143,
- "total_deaths": 51.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 550.553,
- "new_cases_per_million": 33.889,
- "new_cases_smoothed_per_million": 17.604,
- "total_deaths_per_million": 9.242,
- "new_deaths_per_million": 0.181,
- "new_deaths_smoothed_per_million": 0.078,
- "stringency_index": 62.04
- },
- {
- "date": "2020-07-25",
- "total_cases": 3038.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 57.857,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 550.553,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.485,
- "total_deaths_per_million": 9.242,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 62.04
- },
- {
- "date": "2020-07-26",
- "total_cases": 3038.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 57.857,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 550.553,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.485,
- "total_deaths_per_million": 9.242,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 62.04
- },
- {
- "date": "2020-07-27",
- "total_cases": 3038.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 57.857,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 550.553,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.485,
- "total_deaths_per_million": 9.242,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 62.04
- },
- {
- "date": "2020-07-28",
- "total_cases": 3200.0,
- "new_cases": 162.0,
- "new_cases_smoothed": 49.857,
- "total_deaths": 54.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 579.911,
- "new_cases_per_million": 29.358,
- "new_cases_smoothed_per_million": 9.035,
- "total_deaths_per_million": 9.786,
- "new_deaths_per_million": 0.544,
- "new_deaths_smoothed_per_million": 0.104,
- "stringency_index": 62.04
- },
- {
- "date": "2020-07-29",
- "total_cases": 3200.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 49.857,
- "total_deaths": 54.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 579.911,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.035,
- "total_deaths_per_million": 9.786,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.104,
- "stringency_index": 62.04
- },
- {
- "date": "2020-07-30",
- "total_cases": 3200.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 49.857,
- "total_deaths": 54.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 579.911,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.035,
- "total_deaths_per_million": 9.786,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.104,
- "stringency_index": 62.04
- },
- {
- "date": "2020-07-31",
- "total_cases": 3376.0,
- "new_cases": 176.0,
- "new_cases_smoothed": 48.286,
- "total_deaths": 56.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 611.806,
- "new_cases_per_million": 31.895,
- "new_cases_smoothed_per_million": 8.75,
- "total_deaths_per_million": 10.148,
- "new_deaths_per_million": 0.362,
- "new_deaths_smoothed_per_million": 0.129,
- "stringency_index": 62.04
- },
- {
- "date": "2020-08-01",
- "total_cases": 3376.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 48.286,
- "total_deaths": 56.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 611.806,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.75,
- "total_deaths_per_million": 10.148,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.129,
- "stringency_index": 62.04
- },
- {
- "date": "2020-08-02",
- "total_cases": 3387.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 49.857,
- "total_deaths": 56.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 613.799,
- "new_cases_per_million": 1.993,
- "new_cases_smoothed_per_million": 9.035,
- "total_deaths_per_million": 10.148,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.129,
- "stringency_index": 62.04
- },
- {
- "date": "2020-08-03",
- "total_cases": 3387.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 49.857,
- "total_deaths": 56.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 613.799,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.035,
- "total_deaths_per_million": 10.148,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.129,
- "stringency_index": 62.04
- },
- {
- "date": "2020-08-04",
- "total_cases": 3546.0,
- "new_cases": 159.0,
- "new_cases_smoothed": 49.429,
- "total_deaths": 58.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 642.613,
- "new_cases_per_million": 28.814,
- "new_cases_smoothed_per_million": 8.958,
- "total_deaths_per_million": 10.511,
- "new_deaths_per_million": 0.362,
- "new_deaths_smoothed_per_million": 0.104,
- "stringency_index": 67.59
- },
- {
- "date": "2020-08-05",
- "total_cases": 3546.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 49.429,
- "total_deaths": 58.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 642.613,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.958,
- "total_deaths_per_million": 10.511,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.104,
- "stringency_index": 67.59
- },
- {
- "date": "2020-08-06",
- "total_cases": 3546.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 49.429,
- "total_deaths": 58.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 642.613,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.958,
- "total_deaths_per_million": 10.511,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.104,
- "stringency_index": 67.59
- },
- {
- "date": "2020-08-07",
- "total_cases": 3637.0,
- "new_cases": 91.0,
- "new_cases_smoothed": 37.286,
- "total_deaths": 58.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 659.105,
- "new_cases_per_million": 16.491,
- "new_cases_smoothed_per_million": 6.757,
- "total_deaths_per_million": 10.511,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 67.59
- },
- {
- "date": "2020-08-08",
- "total_cases": 3637.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 37.286,
- "total_deaths": 58.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 659.105,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.757,
- "total_deaths_per_million": 10.511,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 67.59
- },
- {
- "date": "2020-08-09",
- "total_cases": 3664.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 39.571,
- "total_deaths": 58.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 663.998,
- "new_cases_per_million": 4.893,
- "new_cases_smoothed_per_million": 7.171,
- "total_deaths_per_million": 10.511,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 67.59
- },
- {
- "date": "2020-08-10",
- "total_cases": 3664.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 39.571,
- "total_deaths": 58.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 663.998,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.171,
- "total_deaths_per_million": 10.511,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 67.59
- },
- {
- "date": "2020-08-11",
- "total_cases": 3664.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 16.857,
- "total_deaths": 58.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 663.998,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.055,
- "total_deaths_per_million": 10.511,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 67.59
- },
- {
- "date": "2020-08-12",
- "total_cases": 3745.0,
- "new_cases": 81.0,
- "new_cases_smoothed": 28.429,
- "total_deaths": 60.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 678.677,
- "new_cases_per_million": 14.679,
- "new_cases_smoothed_per_million": 5.152,
- "total_deaths_per_million": 10.873,
- "new_deaths_per_million": 0.362,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 67.59
- },
- {
- "date": "2020-08-13",
- "total_cases": 3745.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 28.429,
- "total_deaths": 60.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 678.677,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.152,
- "total_deaths_per_million": 10.873,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 67.59
- },
- {
- "date": "2020-08-14",
- "total_cases": 3745.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 15.429,
- "total_deaths": 60.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 678.677,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.796,
- "total_deaths_per_million": 10.873,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 67.59
- },
- {
- "date": "2020-08-15",
- "total_cases": 3745.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 15.429,
- "total_deaths": 60.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 678.677,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.796,
- "total_deaths_per_million": 10.873,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 67.59
- },
- {
- "date": "2020-08-16",
- "total_cases": 3745.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 11.571,
- "total_deaths": 60.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 678.677,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.097,
- "total_deaths_per_million": 10.873,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 67.59
- },
- {
- "date": "2020-08-17",
- "total_cases": 3835.0,
- "new_cases": 90.0,
- "new_cases_smoothed": 24.429,
- "total_deaths": 76.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 694.987,
- "new_cases_per_million": 16.31,
- "new_cases_smoothed_per_million": 4.427,
- "total_deaths_per_million": 13.773,
- "new_deaths_per_million": 2.9,
- "new_deaths_smoothed_per_million": 0.466,
- "stringency_index": 67.59
- },
- {
- "date": "2020-08-18",
- "total_cases": 3835.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 24.429,
- "total_deaths": 76.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 694.987,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.427,
- "total_deaths_per_million": 13.773,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.466,
- "stringency_index": 67.59
- },
- {
- "date": "2020-08-19",
- "total_cases": 3835.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 12.857,
- "total_deaths": 76.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 694.987,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.33,
- "total_deaths_per_million": 13.773,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.414,
- "stringency_index": 67.59
- },
- {
- "date": "2020-08-20",
- "total_cases": 3850.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 15.0,
- "total_deaths": 77.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 697.705,
- "new_cases_per_million": 2.718,
- "new_cases_smoothed_per_million": 2.718,
- "total_deaths_per_million": 13.954,
- "new_deaths_per_million": 0.181,
- "new_deaths_smoothed_per_million": 0.44,
- "stringency_index": 67.59
- },
- {
- "date": "2020-08-21",
- "total_cases": 3850.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 15.0,
- "total_deaths": 77.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 697.705,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.718,
- "total_deaths_per_million": 13.954,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.44,
- "stringency_index": 67.59
- },
- {
- "date": "2020-08-22",
- "total_cases": 3850.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 15.0,
- "total_deaths": 77.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 697.705,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.718,
- "total_deaths_per_million": 13.954,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.44,
- "stringency_index": 67.59
- },
- {
- "date": "2020-08-23",
- "total_cases": 3850.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 15.0,
- "total_deaths": 77.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 697.705,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.718,
- "total_deaths_per_million": 13.954,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.44,
- "stringency_index": 67.59
- },
- {
- "date": "2020-08-24",
- "total_cases": 3850.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 77.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 697.705,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.388,
- "total_deaths_per_million": 13.954,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 62.04
- },
- {
- "date": "2020-08-25",
- "total_cases": 3850.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 77.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 697.705,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.388,
- "total_deaths_per_million": 13.954,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 50.93
- },
- {
- "date": "2020-08-26",
- "total_cases": 3979.0,
- "new_cases": 129.0,
- "new_cases_smoothed": 20.571,
- "total_deaths": 78.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 721.083,
- "new_cases_per_million": 23.378,
- "new_cases_smoothed_per_million": 3.728,
- "total_deaths_per_million": 14.135,
- "new_deaths_per_million": 0.181,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 50.93
- },
- {
- "date": "2020-08-27",
- "total_cases": 3979.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 18.429,
- "total_deaths": 78.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 721.083,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.34,
- "total_deaths_per_million": 14.135,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 50.93
- },
- {
- "date": "2020-08-28",
- "total_cases": 3979.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 18.429,
- "total_deaths": 78.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 721.083,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.34,
- "total_deaths_per_million": 14.135,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 50.93
- },
- {
- "date": "2020-08-29",
- "total_cases": 3979.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 18.429,
- "total_deaths": 78.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 721.083,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.34,
- "total_deaths_per_million": 14.135,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 50.93
- },
- {
- "date": "2020-08-30",
- "total_cases": 3979.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 18.429,
- "total_deaths": 78.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 721.083,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.34,
- "total_deaths_per_million": 14.135,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 50.93
- },
- {
- "date": "2020-08-31",
- "total_cases": 3979.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 18.429,
- "total_deaths": 78.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 721.083,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.34,
- "total_deaths_per_million": 14.135,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-01",
- "total_cases": 3979.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 18.429,
- "total_deaths": 78.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 721.083,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.34,
- "total_deaths_per_million": 14.135,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-02",
- "total_cases": 4628.0,
- "new_cases": 649.0,
- "new_cases_smoothed": 92.714,
- "total_deaths": 82.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 838.696,
- "new_cases_per_million": 117.613,
- "new_cases_smoothed_per_million": 16.802,
- "total_deaths_per_million": 14.86,
- "new_deaths_per_million": 0.725,
- "new_deaths_smoothed_per_million": 0.104,
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-03",
- "total_cases": 4628.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 92.714,
- "total_deaths": 82.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 838.696,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 16.802,
- "total_deaths_per_million": 14.86,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.104,
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-04",
- "total_cases": 4628.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 92.714,
- "total_deaths": 82.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 838.696,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 16.802,
- "total_deaths_per_million": 14.86,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.104,
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-05",
- "total_cases": 4628.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 92.714,
- "total_deaths": 82.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 838.696,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 16.802,
- "total_deaths_per_million": 14.86,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.104,
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-06",
- "total_cases": 4628.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 92.714,
- "total_deaths": 82.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 838.696,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 16.802,
- "total_deaths_per_million": 14.86,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.104,
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-07",
- "total_cases": 4628.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 92.714,
- "total_deaths": 82.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 838.696,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 16.802,
- "total_deaths_per_million": 14.86,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.104,
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-08",
- "total_cases": 4891.0,
- "new_cases": 263.0,
- "new_cases_smoothed": 130.286,
- "total_deaths": 83.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 886.357,
- "new_cases_per_million": 47.661,
- "new_cases_smoothed_per_million": 23.611,
- "total_deaths_per_million": 15.041,
- "new_deaths_per_million": 0.181,
- "new_deaths_smoothed_per_million": 0.129,
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-09",
- "total_cases": 4891.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 37.571,
- "total_deaths": 83.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 886.357,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.809,
- "total_deaths_per_million": 15.041,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-10",
- "total_cases": 4891.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 37.571,
- "total_deaths": 83.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 886.357,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.809,
- "total_deaths_per_million": 15.041,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-11",
- "total_cases": 4891.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 37.571,
- "total_deaths": 83.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 886.357,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.809,
- "total_deaths_per_million": 15.041,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-12",
- "total_cases": 4928.0,
- "new_cases": 37.0,
- "new_cases_smoothed": 42.857,
- "total_deaths": 88.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 893.062,
- "new_cases_per_million": 6.705,
- "new_cases_smoothed_per_million": 7.767,
- "total_deaths_per_million": 15.948,
- "new_deaths_per_million": 0.906,
- "new_deaths_smoothed_per_million": 0.155,
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-13",
- "total_cases": 4928.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 42.857,
- "total_deaths": 88.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 893.062,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.767,
- "total_deaths_per_million": 15.948,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.155,
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-14",
- "total_cases": 4934.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 43.714,
- "total_deaths": 88.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 894.15,
- "new_cases_per_million": 1.087,
- "new_cases_smoothed_per_million": 7.922,
- "total_deaths_per_million": 15.948,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.155,
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-15",
- "total_cases": 4934.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.143,
- "total_deaths": 88.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 894.15,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.113,
- "total_deaths_per_million": 15.948,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.129,
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-16",
- "total_cases": 4934.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.143,
- "total_deaths": 88.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 894.15,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.113,
- "total_deaths_per_million": 15.948,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.129,
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-17",
- "total_cases": 4934.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.143,
- "total_deaths": 88.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 894.15,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.113,
- "total_deaths_per_million": 15.948,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.129,
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-18",
- "total_cases": 4980.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 12.714,
- "total_deaths": 89.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 902.486,
- "new_cases_per_million": 8.336,
- "new_cases_smoothed_per_million": 2.304,
- "total_deaths_per_million": 16.129,
- "new_deaths_per_million": 0.181,
- "new_deaths_smoothed_per_million": 0.155,
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-19",
- "total_cases": 4980.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.429,
- "total_deaths": 89.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 902.486,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.346,
- "total_deaths_per_million": 16.129,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-20",
- "total_cases": 4986.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 8.286,
- "total_deaths": 89.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 903.573,
- "new_cases_per_million": 1.087,
- "new_cases_smoothed_per_million": 1.502,
- "total_deaths_per_million": 16.129,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 50.93
- },
- {
- "date": "2020-09-21",
- "total_cases": 4986.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.429,
- "total_deaths": 89.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 903.573,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.346,
- "total_deaths_per_million": 16.129,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026
- },
- {
- "date": "2020-09-22",
- "total_cases": 5002.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 9.714,
- "total_deaths": 89.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 906.473,
- "new_cases_per_million": 2.9,
- "new_cases_smoothed_per_million": 1.76,
- "total_deaths_per_million": 16.129,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026
- },
- {
- "date": "2020-09-23",
- "total_cases": 5002.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 9.714,
- "total_deaths": 89.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 906.473,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.76,
- "total_deaths_per_million": 16.129,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026
- },
- {
- "date": "2020-09-24",
- "total_cases": 5005.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 10.143,
- "total_deaths": 89.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 907.016,
- "new_cases_per_million": 0.544,
- "new_cases_smoothed_per_million": 1.838,
- "total_deaths_per_million": 16.129,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.026
- },
- {
- "date": "2020-09-25",
- "total_cases": 5005.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.571,
- "total_deaths": 89.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 907.016,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.647,
- "total_deaths_per_million": 16.129,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- }
- ]
- },
- "COL": {
- "continent": "South America",
- "location": "Colombia",
- "population": 50882884.0,
- "population_density": 44.223,
- "median_age": 32.2,
- "aged_65_older": 7.646,
- "aged_70_older": 4.312,
- "gdp_per_capita": 13254.949,
- "extreme_poverty": 4.5,
- "cardiovasc_death_rate": 124.24,
- "diabetes_prevalence": 7.44,
- "female_smokers": 4.7,
- "male_smokers": 13.5,
- "handwashing_facilities": 65.386,
- "hospital_beds_per_thousand": 1.71,
- "life_expectancy": 77.29,
- "human_development_index": 0.747,
- "data": [
- {
- "date": "2020-03-05",
- "total_tests": 636.0,
- "total_tests_per_thousand": 0.012,
- "tests_units": "samples tested",
- "stringency_index": 12.04
- },
- {
- "date": "2020-03-06",
- "new_tests": 103.0,
- "total_tests": 739.0,
- "total_tests_per_thousand": 0.015,
- "new_tests_per_thousand": 0.002,
- "tests_units": "samples tested",
- "stringency_index": 12.04
- },
- {
- "date": "2020-03-07",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.02,
- "new_cases_per_million": 0.02,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_tests": 71.0,
- "total_tests": 810.0,
- "total_tests_per_thousand": 0.016,
- "new_tests_per_thousand": 0.001,
- "tests_units": "samples tested",
- "stringency_index": 12.04
- },
- {
- "date": "2020-03-08",
- "new_tests": 3.0,
- "total_tests": 813.0,
- "total_tests_per_thousand": 0.016,
- "new_tests_per_thousand": 0.0,
- "tests_units": "samples tested",
- "stringency_index": 12.04
- },
- {
- "date": "2020-03-09",
- "new_tests": 38.0,
- "total_tests": 851.0,
- "total_tests_per_thousand": 0.017,
- "new_tests_per_thousand": 0.001,
- "tests_units": "samples tested",
- "stringency_index": 14.81
- },
- {
- "date": "2020-03-10",
- "total_cases": 3.0,
- "new_cases": 2.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.059,
- "new_cases_per_million": 0.039,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_tests": 76.0,
- "total_tests": 927.0,
- "total_tests_per_thousand": 0.018,
- "new_tests_per_thousand": 0.001,
- "tests_units": "samples tested",
- "stringency_index": 14.81
- },
- {
- "date": "2020-03-11",
- "new_tests": 206.0,
- "total_tests": 1133.0,
- "total_tests_per_thousand": 0.022,
- "new_tests_per_thousand": 0.004,
- "tests_units": "samples tested",
- "stringency_index": 14.81
- },
- {
- "date": "2020-03-12",
- "total_cases": 9.0,
- "new_cases": 6.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.177,
- "new_cases_per_million": 0.118,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_tests": 260.0,
- "total_tests": 1393.0,
- "total_tests_per_thousand": 0.027,
- "new_tests_per_thousand": 0.005,
- "new_tests_smoothed": 108.0,
- "new_tests_smoothed_per_thousand": 0.002,
- "tests_units": "samples tested",
- "stringency_index": 34.26
- },
- {
- "date": "2020-03-13",
- "new_cases_smoothed": 1.286,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.025,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 361.0,
- "total_tests": 1754.0,
- "total_tests_per_thousand": 0.034,
- "new_tests_per_thousand": 0.007,
- "new_tests_smoothed": 145.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "tests_units": "samples tested",
- "stringency_index": 34.26
- },
- {
- "date": "2020-03-14",
- "total_cases": 16.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.314,
- "new_cases_per_million": 0.138,
- "new_cases_smoothed_per_million": 0.042,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 589.0,
- "total_tests": 2343.0,
- "total_tests_per_thousand": 0.046,
- "new_tests_per_thousand": 0.012,
- "new_tests_smoothed": 219.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_units": "samples tested",
- "stringency_index": 34.26
- },
- {
- "date": "2020-03-15",
- "total_cases": 34.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 4.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.668,
- "new_cases_per_million": 0.354,
- "new_cases_smoothed_per_million": 0.093,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 833.0,
- "total_tests": 3176.0,
- "total_tests_per_thousand": 0.062,
- "new_tests_per_thousand": 0.016,
- "new_tests_smoothed": 338.0,
- "new_tests_smoothed_per_thousand": 0.007,
- "tests_units": "samples tested",
- "stringency_index": 34.26
- },
- {
- "date": "2020-03-16",
- "total_cases": 45.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 6.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.884,
- "new_cases_per_million": 0.216,
- "new_cases_smoothed_per_million": 0.124,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 431.0,
- "total_tests": 3607.0,
- "total_tests_per_thousand": 0.071,
- "new_tests_per_thousand": 0.008,
- "new_tests_smoothed": 394.0,
- "new_tests_smoothed_per_thousand": 0.008,
- "tests_units": "samples tested",
- "stringency_index": 45.37
- },
- {
- "date": "2020-03-17",
- "total_cases": 57.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 7.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.12,
- "new_cases_per_million": 0.236,
- "new_cases_smoothed_per_million": 0.152,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 324.0,
- "total_tests": 3931.0,
- "total_tests_per_thousand": 0.077,
- "new_tests_per_thousand": 0.006,
- "new_tests_smoothed": 429.0,
- "new_tests_smoothed_per_thousand": 0.008,
- "tests_units": "samples tested",
- "stringency_index": 50.93
- },
- {
- "date": "2020-03-18",
- "total_cases": 65.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 8.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.277,
- "new_cases_per_million": 0.157,
- "new_cases_smoothed_per_million": 0.174,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 759.0,
- "total_tests": 4690.0,
- "total_tests_per_thousand": 0.092,
- "new_tests_per_thousand": 0.015,
- "new_tests_smoothed": 508.0,
- "new_tests_smoothed_per_thousand": 0.01,
- "tests_units": "samples tested",
- "stringency_index": 50.93
- },
- {
- "date": "2020-03-19",
- "total_cases": 102.0,
- "new_cases": 37.0,
- "new_cases_smoothed": 13.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.005,
- "new_cases_per_million": 0.727,
- "new_cases_smoothed_per_million": 0.261,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 673.0,
- "total_tests": 5363.0,
- "total_tests_per_thousand": 0.105,
- "new_tests_per_thousand": 0.013,
- "new_tests_smoothed": 567.0,
- "new_tests_smoothed_per_thousand": 0.011,
- "tests_units": "samples tested",
- "stringency_index": 50.93
- },
- {
- "date": "2020-03-20",
- "total_cases": 128.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 17.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.516,
- "new_cases_per_million": 0.511,
- "new_cases_smoothed_per_million": 0.334,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 403.0,
- "total_tests": 5766.0,
- "total_tests_per_thousand": 0.113,
- "new_tests_per_thousand": 0.008,
- "new_tests_smoothed": 573.0,
- "new_tests_smoothed_per_thousand": 0.011,
- "tests_units": "samples tested",
- "stringency_index": 50.93
- },
- {
- "date": "2020-03-21",
- "total_cases": 158.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 20.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.105,
- "new_cases_per_million": 0.59,
- "new_cases_smoothed_per_million": 0.399,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 298.0,
- "total_tests": 6064.0,
- "total_tests_per_thousand": 0.119,
- "new_tests_per_thousand": 0.006,
- "new_tests_smoothed": 532.0,
- "new_tests_smoothed_per_thousand": 0.01,
- "tests_units": "samples tested",
- "stringency_index": 50.93
- },
- {
- "date": "2020-03-22",
- "total_cases": 210.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 25.143,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 4.127,
- "new_cases_per_million": 1.022,
- "new_cases_smoothed_per_million": 0.494,
- "total_deaths_per_million": 0.02,
- "new_deaths_per_million": 0.02,
- "new_deaths_smoothed_per_million": 0.003,
- "new_tests": 846.0,
- "total_tests": 6910.0,
- "total_tests_per_thousand": 0.136,
- "new_tests_per_thousand": 0.017,
- "new_tests_smoothed": 533.0,
- "new_tests_smoothed_per_thousand": 0.01,
- "tests_units": "samples tested",
- "stringency_index": 50.93
- },
- {
- "date": "2020-03-23",
- "total_cases": 235.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 27.143,
- "total_deaths": 2.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 4.618,
- "new_cases_per_million": 0.491,
- "new_cases_smoothed_per_million": 0.533,
- "total_deaths_per_million": 0.039,
- "new_deaths_per_million": 0.02,
- "new_deaths_smoothed_per_million": 0.006,
- "new_tests": 375.0,
- "total_tests": 7285.0,
- "total_tests_per_thousand": 0.143,
- "new_tests_per_thousand": 0.007,
- "new_tests_smoothed": 525.0,
- "new_tests_smoothed_per_thousand": 0.01,
- "tests_units": "samples tested",
- "stringency_index": 53.7
- },
- {
- "date": "2020-03-24",
- "total_cases": 306.0,
- "new_cases": 71.0,
- "new_cases_smoothed": 35.571,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 6.014,
- "new_cases_per_million": 1.395,
- "new_cases_smoothed_per_million": 0.699,
- "total_deaths_per_million": 0.059,
- "new_deaths_per_million": 0.02,
- "new_deaths_smoothed_per_million": 0.008,
- "new_tests": 766.0,
- "total_tests": 8051.0,
- "total_tests_per_thousand": 0.158,
- "new_tests_per_thousand": 0.015,
- "new_tests_smoothed": 589.0,
- "new_tests_smoothed_per_thousand": 0.012,
- "tests_units": "samples tested",
- "stringency_index": 53.7
- },
- {
- "date": "2020-03-25",
- "total_cases": 378.0,
- "new_cases": 72.0,
- "new_cases_smoothed": 44.714,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 7.429,
- "new_cases_per_million": 1.415,
- "new_cases_smoothed_per_million": 0.879,
- "total_deaths_per_million": 0.059,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.008,
- "new_tests": 746.0,
- "total_tests": 8797.0,
- "total_tests_per_thousand": 0.173,
- "new_tests_per_thousand": 0.015,
- "new_tests_smoothed": 587.0,
- "new_tests_smoothed_per_thousand": 0.012,
- "tests_units": "samples tested",
- "stringency_index": 87.96
- },
- {
- "date": "2020-03-26",
- "total_cases": 470.0,
- "new_cases": 92.0,
- "new_cases_smoothed": 52.571,
- "total_deaths": 4.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 9.237,
- "new_cases_per_million": 1.808,
- "new_cases_smoothed_per_million": 1.033,
- "total_deaths_per_million": 0.079,
- "new_deaths_per_million": 0.02,
- "new_deaths_smoothed_per_million": 0.011,
- "new_tests": 431.0,
- "total_tests": 9228.0,
- "total_tests_per_thousand": 0.181,
- "new_tests_per_thousand": 0.008,
- "new_tests_smoothed": 552.0,
- "new_tests_smoothed_per_thousand": 0.011,
- "tests_units": "samples tested",
- "stringency_index": 87.96
- },
- {
- "date": "2020-03-27",
- "total_cases": 491.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 51.857,
- "total_deaths": 6.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 9.65,
- "new_cases_per_million": 0.413,
- "new_cases_smoothed_per_million": 1.019,
- "total_deaths_per_million": 0.118,
- "new_deaths_per_million": 0.039,
- "new_deaths_smoothed_per_million": 0.017,
- "new_tests": 258.0,
- "total_tests": 9486.0,
- "total_tests_per_thousand": 0.186,
- "new_tests_per_thousand": 0.005,
- "new_tests_smoothed": 531.0,
- "new_tests_smoothed_per_thousand": 0.01,
- "tests_units": "samples tested",
- "stringency_index": 87.96
- },
- {
- "date": "2020-03-28",
- "total_cases": 539.0,
- "new_cases": 48.0,
- "new_cases_smoothed": 54.429,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 10.593,
- "new_cases_per_million": 0.943,
- "new_cases_smoothed_per_million": 1.07,
- "total_deaths_per_million": 0.118,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.017,
- "new_tests": 1365.0,
- "total_tests": 10851.0,
- "total_tests_per_thousand": 0.213,
- "new_tests_per_thousand": 0.027,
- "new_tests_smoothed": 684.0,
- "new_tests_smoothed_per_thousand": 0.013,
- "tests_units": "samples tested",
- "stringency_index": 87.96
- },
- {
- "date": "2020-03-29",
- "total_cases": 608.0,
- "new_cases": 69.0,
- "new_cases_smoothed": 56.857,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 11.949,
- "new_cases_per_million": 1.356,
- "new_cases_smoothed_per_million": 1.117,
- "total_deaths_per_million": 0.118,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.014,
- "new_tests": 1474.0,
- "total_tests": 12325.0,
- "total_tests_per_thousand": 0.242,
- "new_tests_per_thousand": 0.029,
- "new_tests_smoothed": 774.0,
- "new_tests_smoothed_per_thousand": 0.015,
- "tests_units": "samples tested",
- "stringency_index": 87.96
- },
- {
- "date": "2020-03-30",
- "total_cases": 702.0,
- "new_cases": 94.0,
- "new_cases_smoothed": 66.714,
- "total_deaths": 10.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 13.796,
- "new_cases_per_million": 1.847,
- "new_cases_smoothed_per_million": 1.311,
- "total_deaths_per_million": 0.197,
- "new_deaths_per_million": 0.079,
- "new_deaths_smoothed_per_million": 0.022,
- "new_tests": 1491.0,
- "total_tests": 13816.0,
- "total_tests_per_thousand": 0.272,
- "new_tests_per_thousand": 0.029,
- "new_tests_smoothed": 933.0,
- "new_tests_smoothed_per_thousand": 0.018,
- "tests_units": "samples tested",
- "stringency_index": 87.96
- },
- {
- "date": "2020-03-31",
- "total_cases": 798.0,
- "new_cases": 96.0,
- "new_cases_smoothed": 70.286,
- "total_deaths": 14.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 15.683,
- "new_cases_per_million": 1.887,
- "new_cases_smoothed_per_million": 1.381,
- "total_deaths_per_million": 0.275,
- "new_deaths_per_million": 0.079,
- "new_deaths_smoothed_per_million": 0.031,
- "new_tests": 4047.0,
- "total_tests": 17863.0,
- "total_tests_per_thousand": 0.351,
- "new_tests_per_thousand": 0.08,
- "new_tests_smoothed": 1402.0,
- "new_tests_smoothed_per_thousand": 0.028,
- "tests_units": "samples tested",
- "stringency_index": 87.96
- },
- {
- "date": "2020-04-01",
- "total_cases": 906.0,
- "new_cases": 108.0,
- "new_cases_smoothed": 75.429,
- "total_deaths": 16.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 17.806,
- "new_cases_per_million": 2.123,
- "new_cases_smoothed_per_million": 1.482,
- "total_deaths_per_million": 0.314,
- "new_deaths_per_million": 0.039,
- "new_deaths_smoothed_per_million": 0.036,
- "new_tests": 2390.0,
- "total_tests": 20253.0,
- "total_tests_per_thousand": 0.398,
- "new_tests_per_thousand": 0.047,
- "new_tests_smoothed": 1637.0,
- "new_tests_smoothed_per_thousand": 0.032,
- "tests_units": "samples tested",
- "stringency_index": 87.96
- },
- {
- "date": "2020-04-02",
- "total_cases": 1065.0,
- "new_cases": 159.0,
- "new_cases_smoothed": 85.0,
- "total_deaths": 17.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 20.93,
- "new_cases_per_million": 3.125,
- "new_cases_smoothed_per_million": 1.671,
- "total_deaths_per_million": 0.334,
- "new_deaths_per_million": 0.02,
- "new_deaths_smoothed_per_million": 0.036,
- "new_tests": 1159.0,
- "total_tests": 21412.0,
- "total_tests_per_thousand": 0.421,
- "new_tests_per_thousand": 0.023,
- "new_tests_smoothed": 1741.0,
- "new_tests_smoothed_per_thousand": 0.034,
- "tests_units": "samples tested",
- "stringency_index": 87.96
- },
- {
- "date": "2020-04-03",
- "total_cases": 1161.0,
- "new_cases": 96.0,
- "new_cases_smoothed": 95.714,
- "total_deaths": 19.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 22.817,
- "new_cases_per_million": 1.887,
- "new_cases_smoothed_per_million": 1.881,
- "total_deaths_per_million": 0.373,
- "new_deaths_per_million": 0.039,
- "new_deaths_smoothed_per_million": 0.036,
- "new_tests": 1340.0,
- "total_tests": 22752.0,
- "total_tests_per_thousand": 0.447,
- "new_tests_per_thousand": 0.026,
- "new_tests_smoothed": 1895.0,
- "new_tests_smoothed_per_thousand": 0.037,
- "tests_units": "samples tested",
- "stringency_index": 87.96
- },
- {
- "date": "2020-04-04",
- "total_cases": 1267.0,
- "new_cases": 106.0,
- "new_cases_smoothed": 104.0,
- "total_deaths": 25.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 24.9,
- "new_cases_per_million": 2.083,
- "new_cases_smoothed_per_million": 2.044,
- "total_deaths_per_million": 0.491,
- "new_deaths_per_million": 0.118,
- "new_deaths_smoothed_per_million": 0.053,
- "new_tests": 1104.0,
- "total_tests": 23856.0,
- "total_tests_per_thousand": 0.469,
- "new_tests_per_thousand": 0.022,
- "new_tests_smoothed": 1858.0,
- "new_tests_smoothed_per_thousand": 0.037,
- "tests_units": "samples tested",
- "stringency_index": 87.96
- },
- {
- "date": "2020-04-05",
- "total_cases": 1406.0,
- "new_cases": 139.0,
- "new_cases_smoothed": 114.0,
- "total_deaths": 32.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 27.632,
- "new_cases_per_million": 2.732,
- "new_cases_smoothed_per_million": 2.24,
- "total_deaths_per_million": 0.629,
- "new_deaths_per_million": 0.138,
- "new_deaths_smoothed_per_million": 0.073,
- "new_tests": 1691.0,
- "total_tests": 25547.0,
- "total_tests_per_thousand": 0.502,
- "new_tests_per_thousand": 0.033,
- "new_tests_smoothed": 1889.0,
- "new_tests_smoothed_per_thousand": 0.037,
- "tests_units": "samples tested",
- "stringency_index": 87.96
- },
- {
- "date": "2020-04-06",
- "total_cases": 1485.0,
- "new_cases": 79.0,
- "new_cases_smoothed": 111.857,
- "total_deaths": 35.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 29.185,
- "new_cases_per_million": 1.553,
- "new_cases_smoothed_per_million": 2.198,
- "total_deaths_per_million": 0.688,
- "new_deaths_per_million": 0.059,
- "new_deaths_smoothed_per_million": 0.07,
- "new_tests": 2421.0,
- "total_tests": 27968.0,
- "total_tests_per_thousand": 0.55,
- "new_tests_per_thousand": 0.048,
- "new_tests_smoothed": 2022.0,
- "new_tests_smoothed_per_thousand": 0.04,
- "tests_units": "samples tested",
- "stringency_index": 87.96
- },
- {
- "date": "2020-04-07",
- "total_cases": 1579.0,
- "new_cases": 94.0,
- "new_cases_smoothed": 111.571,
- "total_deaths": 46.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 31.032,
- "new_cases_per_million": 1.847,
- "new_cases_smoothed_per_million": 2.193,
- "total_deaths_per_million": 0.904,
- "new_deaths_per_million": 0.216,
- "new_deaths_smoothed_per_million": 0.09,
- "new_tests": 2760.0,
- "total_tests": 30728.0,
- "total_tests_per_thousand": 0.604,
- "new_tests_per_thousand": 0.054,
- "new_tests_smoothed": 1838.0,
- "new_tests_smoothed_per_thousand": 0.036,
- "tests_units": "samples tested",
- "stringency_index": 87.96
- },
- {
- "date": "2020-04-08",
- "total_cases": 1780.0,
- "new_cases": 201.0,
- "new_cases_smoothed": 124.857,
- "total_deaths": 50.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 34.982,
- "new_cases_per_million": 3.95,
- "new_cases_smoothed_per_million": 2.454,
- "total_deaths_per_million": 0.983,
- "new_deaths_per_million": 0.079,
- "new_deaths_smoothed_per_million": 0.095,
- "new_tests": 3130.0,
- "total_tests": 33858.0,
- "total_tests_per_thousand": 0.665,
- "new_tests_per_thousand": 0.062,
- "new_tests_smoothed": 1944.0,
- "new_tests_smoothed_per_thousand": 0.038,
- "tests_units": "samples tested",
- "stringency_index": 87.96
- },
- {
- "date": "2020-04-09",
- "total_cases": 2054.0,
- "new_cases": 274.0,
- "new_cases_smoothed": 141.286,
- "total_deaths": 55.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.429,
- "total_cases_per_million": 40.367,
- "new_cases_per_million": 5.385,
- "new_cases_smoothed_per_million": 2.777,
- "total_deaths_per_million": 1.081,
- "new_deaths_per_million": 0.098,
- "new_deaths_smoothed_per_million": 0.107,
- "new_tests": 1335.0,
- "total_tests": 35193.0,
- "total_tests_per_thousand": 0.692,
- "new_tests_per_thousand": 0.026,
- "new_tests_smoothed": 1969.0,
- "new_tests_smoothed_per_thousand": 0.039,
- "tests_units": "samples tested",
- "stringency_index": 87.96
- },
- {
- "date": "2020-04-10",
- "total_cases": 2223.0,
- "new_cases": 169.0,
- "new_cases_smoothed": 151.714,
- "total_deaths": 69.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 7.143,
- "total_cases_per_million": 43.689,
- "new_cases_per_million": 3.321,
- "new_cases_smoothed_per_million": 2.982,
- "total_deaths_per_million": 1.356,
- "new_deaths_per_million": 0.275,
- "new_deaths_smoothed_per_million": 0.14,
- "new_tests": 2683.0,
- "total_tests": 37876.0,
- "total_tests_per_thousand": 0.744,
- "new_tests_per_thousand": 0.053,
- "new_tests_smoothed": 2161.0,
- "new_tests_smoothed_per_thousand": 0.042,
- "tests_units": "samples tested",
- "stringency_index": 87.96
- },
- {
- "date": "2020-04-11",
- "total_cases": 2473.0,
- "new_cases": 250.0,
- "new_cases_smoothed": 172.286,
- "total_deaths": 80.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 7.857,
- "total_cases_per_million": 48.602,
- "new_cases_per_million": 4.913,
- "new_cases_smoothed_per_million": 3.386,
- "total_deaths_per_million": 1.572,
- "new_deaths_per_million": 0.216,
- "new_deaths_smoothed_per_million": 0.154,
- "new_tests": 2742.0,
- "total_tests": 40618.0,
- "total_tests_per_thousand": 0.798,
- "new_tests_per_thousand": 0.054,
- "new_tests_smoothed": 2395.0,
- "new_tests_smoothed_per_thousand": 0.047,
- "tests_units": "samples tested",
- "stringency_index": 87.96
- },
- {
- "date": "2020-04-12",
- "total_cases": 2709.0,
- "new_cases": 236.0,
- "new_cases_smoothed": 186.143,
- "total_deaths": 100.0,
- "new_deaths": 20.0,
- "new_deaths_smoothed": 9.714,
- "total_cases_per_million": 53.24,
- "new_cases_per_million": 4.638,
- "new_cases_smoothed_per_million": 3.658,
- "total_deaths_per_million": 1.965,
- "new_deaths_per_million": 0.393,
- "new_deaths_smoothed_per_million": 0.191,
- "new_tests": 1162.0,
- "total_tests": 41780.0,
- "total_tests_per_thousand": 0.821,
- "new_tests_per_thousand": 0.023,
- "new_tests_smoothed": 2319.0,
- "new_tests_smoothed_per_thousand": 0.046,
- "tests_units": "samples tested",
- "stringency_index": 87.96
- },
- {
- "date": "2020-04-13",
- "total_cases": 2776.0,
- "new_cases": 67.0,
- "new_cases_smoothed": 184.429,
- "total_deaths": 109.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 10.571,
- "total_cases_per_million": 54.557,
- "new_cases_per_million": 1.317,
- "new_cases_smoothed_per_million": 3.625,
- "total_deaths_per_million": 2.142,
- "new_deaths_per_million": 0.177,
- "new_deaths_smoothed_per_million": 0.208,
- "new_tests": 1256.0,
- "total_tests": 43036.0,
- "total_tests_per_thousand": 0.846,
- "new_tests_per_thousand": 0.025,
- "new_tests_smoothed": 2153.0,
- "new_tests_smoothed_per_thousand": 0.042,
- "tests_units": "samples tested",
- "stringency_index": 87.96
- },
- {
- "date": "2020-04-14",
- "total_cases": 2852.0,
- "new_cases": 76.0,
- "new_cases_smoothed": 181.857,
- "total_deaths": 112.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 9.429,
- "total_cases_per_million": 56.05,
- "new_cases_per_million": 1.494,
- "new_cases_smoothed_per_million": 3.574,
- "total_deaths_per_million": 2.201,
- "new_deaths_per_million": 0.059,
- "new_deaths_smoothed_per_million": 0.185,
- "new_tests": 2315.0,
- "total_tests": 45351.0,
- "total_tests_per_thousand": 0.891,
- "new_tests_per_thousand": 0.045,
- "new_tests_smoothed": 2089.0,
- "new_tests_smoothed_per_thousand": 0.041,
- "tests_units": "samples tested",
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-15",
- "total_cases": 2979.0,
- "new_cases": 127.0,
- "new_cases_smoothed": 171.286,
- "total_deaths": 127.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 11.0,
- "total_cases_per_million": 58.546,
- "new_cases_per_million": 2.496,
- "new_cases_smoothed_per_million": 3.366,
- "total_deaths_per_million": 2.496,
- "new_deaths_per_million": 0.295,
- "new_deaths_smoothed_per_million": 0.216,
- "new_tests": 3205.0,
- "total_tests": 48556.0,
- "total_tests_per_thousand": 0.954,
- "new_tests_per_thousand": 0.063,
- "new_tests_smoothed": 2100.0,
- "new_tests_smoothed_per_thousand": 0.041,
- "tests_units": "samples tested",
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-16",
- "total_cases": 3105.0,
- "new_cases": 126.0,
- "new_cases_smoothed": 150.143,
- "total_deaths": 131.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 10.857,
- "total_cases_per_million": 61.022,
- "new_cases_per_million": 2.476,
- "new_cases_smoothed_per_million": 2.951,
- "total_deaths_per_million": 2.575,
- "new_deaths_per_million": 0.079,
- "new_deaths_smoothed_per_million": 0.213,
- "new_tests": 3457.0,
- "total_tests": 52013.0,
- "total_tests_per_thousand": 1.022,
- "new_tests_per_thousand": 0.068,
- "new_tests_smoothed": 2403.0,
- "new_tests_smoothed_per_thousand": 0.047,
- "tests_units": "samples tested",
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-17",
- "total_cases": 3233.0,
- "new_cases": 128.0,
- "new_cases_smoothed": 144.286,
- "total_deaths": 144.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 10.714,
- "total_cases_per_million": 63.538,
- "new_cases_per_million": 2.516,
- "new_cases_smoothed_per_million": 2.836,
- "total_deaths_per_million": 2.83,
- "new_deaths_per_million": 0.255,
- "new_deaths_smoothed_per_million": 0.211,
- "new_tests": 3488.0,
- "total_tests": 55501.0,
- "total_tests_per_thousand": 1.091,
- "new_tests_per_thousand": 0.069,
- "new_tests_smoothed": 2518.0,
- "new_tests_smoothed_per_thousand": 0.049,
- "tests_units": "samples tested",
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-18",
- "total_cases": 3439.0,
- "new_cases": 206.0,
- "new_cases_smoothed": 138.0,
- "total_deaths": 153.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 10.429,
- "total_cases_per_million": 67.587,
- "new_cases_per_million": 4.049,
- "new_cases_smoothed_per_million": 2.712,
- "total_deaths_per_million": 3.007,
- "new_deaths_per_million": 0.177,
- "new_deaths_smoothed_per_million": 0.205,
- "new_tests": 3429.0,
- "total_tests": 58930.0,
- "total_tests_per_thousand": 1.158,
- "new_tests_per_thousand": 0.067,
- "new_tests_smoothed": 2616.0,
- "new_tests_smoothed_per_thousand": 0.051,
- "tests_units": "samples tested",
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-19",
- "total_cases": 3621.0,
- "new_cases": 182.0,
- "new_cases_smoothed": 130.286,
- "total_deaths": 166.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 9.429,
- "total_cases_per_million": 71.163,
- "new_cases_per_million": 3.577,
- "new_cases_smoothed_per_million": 2.561,
- "total_deaths_per_million": 3.262,
- "new_deaths_per_million": 0.255,
- "new_deaths_smoothed_per_million": 0.185,
- "new_tests": 3744.0,
- "total_tests": 62674.0,
- "total_tests_per_thousand": 1.232,
- "new_tests_per_thousand": 0.074,
- "new_tests_smoothed": 2985.0,
- "new_tests_smoothed_per_thousand": 0.059,
- "tests_units": "samples tested",
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-20",
- "total_cases": 3792.0,
- "new_cases": 171.0,
- "new_cases_smoothed": 145.143,
- "total_deaths": 179.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 10.0,
- "total_cases_per_million": 74.524,
- "new_cases_per_million": 3.361,
- "new_cases_smoothed_per_million": 2.852,
- "total_deaths_per_million": 3.518,
- "new_deaths_per_million": 0.255,
- "new_deaths_smoothed_per_million": 0.197,
- "new_tests": 2423.0,
- "total_tests": 65097.0,
- "total_tests_per_thousand": 1.279,
- "new_tests_per_thousand": 0.048,
- "new_tests_smoothed": 3152.0,
- "new_tests_smoothed_per_thousand": 0.062,
- "tests_units": "samples tested",
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-21",
- "total_cases": 3977.0,
- "new_cases": 185.0,
- "new_cases_smoothed": 160.714,
- "total_deaths": 189.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 11.0,
- "total_cases_per_million": 78.16,
- "new_cases_per_million": 3.636,
- "new_cases_smoothed_per_million": 3.159,
- "total_deaths_per_million": 3.714,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.216,
- "new_tests": 3259.0,
- "total_tests": 68356.0,
- "total_tests_per_thousand": 1.343,
- "new_tests_per_thousand": 0.064,
- "new_tests_smoothed": 3286.0,
- "new_tests_smoothed_per_thousand": 0.065,
- "tests_units": "samples tested",
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-22",
- "total_cases": 4149.0,
- "new_cases": 172.0,
- "new_cases_smoothed": 167.143,
- "total_deaths": 196.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 9.857,
- "total_cases_per_million": 81.54,
- "new_cases_per_million": 3.38,
- "new_cases_smoothed_per_million": 3.285,
- "total_deaths_per_million": 3.852,
- "new_deaths_per_million": 0.138,
- "new_deaths_smoothed_per_million": 0.194,
- "new_tests": 3051.0,
- "total_tests": 71407.0,
- "total_tests_per_thousand": 1.403,
- "new_tests_per_thousand": 0.06,
- "new_tests_smoothed": 3264.0,
- "new_tests_smoothed_per_thousand": 0.064,
- "tests_units": "samples tested",
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-23",
- "total_cases": 4356.0,
- "new_cases": 207.0,
- "new_cases_smoothed": 178.714,
- "total_deaths": 206.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 10.714,
- "total_cases_per_million": 85.608,
- "new_cases_per_million": 4.068,
- "new_cases_smoothed_per_million": 3.512,
- "total_deaths_per_million": 4.049,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.211,
- "new_tests": 3457.0,
- "total_tests": 74864.0,
- "total_tests_per_thousand": 1.471,
- "new_tests_per_thousand": 0.068,
- "new_tests_smoothed": 3264.0,
- "new_tests_smoothed_per_thousand": 0.064,
- "tests_units": "samples tested",
- "stringency_index": 84.26
- },
- {
- "date": "2020-04-24",
- "total_cases": 4561.0,
- "new_cases": 205.0,
- "new_cases_smoothed": 189.714,
- "total_deaths": 215.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 10.143,
- "total_cases_per_million": 89.637,
- "new_cases_per_million": 4.029,
- "new_cases_smoothed_per_million": 3.728,
- "total_deaths_per_million": 4.225,
- "new_deaths_per_million": 0.177,
- "new_deaths_smoothed_per_million": 0.199,
- "new_tests": 3121.0,
- "total_tests": 77985.0,
- "total_tests_per_thousand": 1.533,
- "new_tests_per_thousand": 0.061,
- "new_tests_smoothed": 3212.0,
- "new_tests_smoothed_per_thousand": 0.063,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-04-25",
- "total_cases": 4881.0,
- "new_cases": 320.0,
- "new_cases_smoothed": 206.0,
- "total_deaths": 225.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 10.286,
- "total_cases_per_million": 95.926,
- "new_cases_per_million": 6.289,
- "new_cases_smoothed_per_million": 4.049,
- "total_deaths_per_million": 4.422,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.202,
- "new_tests": 3068.0,
- "total_tests": 81053.0,
- "total_tests_per_thousand": 1.593,
- "new_tests_per_thousand": 0.06,
- "new_tests_smoothed": 3160.0,
- "new_tests_smoothed_per_thousand": 0.062,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-04-26",
- "total_cases": 5142.0,
- "new_cases": 261.0,
- "new_cases_smoothed": 217.286,
- "total_deaths": 233.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 9.571,
- "total_cases_per_million": 101.056,
- "new_cases_per_million": 5.129,
- "new_cases_smoothed_per_million": 4.27,
- "total_deaths_per_million": 4.579,
- "new_deaths_per_million": 0.157,
- "new_deaths_smoothed_per_million": 0.188,
- "new_tests": 6053.0,
- "total_tests": 87106.0,
- "total_tests_per_thousand": 1.712,
- "new_tests_per_thousand": 0.119,
- "new_tests_smoothed": 3490.0,
- "new_tests_smoothed_per_thousand": 0.069,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-04-27",
- "total_cases": 5379.0,
- "new_cases": 237.0,
- "new_cases_smoothed": 226.714,
- "total_deaths": 243.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 9.143,
- "total_cases_per_million": 105.713,
- "new_cases_per_million": 4.658,
- "new_cases_smoothed_per_million": 4.456,
- "total_deaths_per_million": 4.776,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.18,
- "new_tests": 3793.0,
- "total_tests": 90899.0,
- "total_tests_per_thousand": 1.786,
- "new_tests_per_thousand": 0.075,
- "new_tests_smoothed": 3686.0,
- "new_tests_smoothed_per_thousand": 0.072,
- "tests_units": "samples tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-28",
- "total_cases": 5597.0,
- "new_cases": 218.0,
- "new_cases_smoothed": 231.429,
- "total_deaths": 253.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 9.143,
- "total_cases_per_million": 109.998,
- "new_cases_per_million": 4.284,
- "new_cases_smoothed_per_million": 4.548,
- "total_deaths_per_million": 4.972,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.18,
- "new_tests": 4186.0,
- "total_tests": 95085.0,
- "total_tests_per_thousand": 1.869,
- "new_tests_per_thousand": 0.082,
- "new_tests_smoothed": 3818.0,
- "new_tests_smoothed_per_thousand": 0.075,
- "tests_units": "samples tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-29",
- "total_cases": 5949.0,
- "new_cases": 352.0,
- "new_cases_smoothed": 257.143,
- "total_deaths": 269.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 10.429,
- "total_cases_per_million": 116.916,
- "new_cases_per_million": 6.918,
- "new_cases_smoothed_per_million": 5.054,
- "total_deaths_per_million": 5.287,
- "new_deaths_per_million": 0.314,
- "new_deaths_smoothed_per_million": 0.205,
- "new_tests": 5068.0,
- "total_tests": 100153.0,
- "total_tests_per_thousand": 1.968,
- "new_tests_per_thousand": 0.1,
- "new_tests_smoothed": 4107.0,
- "new_tests_smoothed_per_thousand": 0.081,
- "tests_units": "samples tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-30",
- "total_cases": 6211.0,
- "new_cases": 262.0,
- "new_cases_smoothed": 265.0,
- "total_deaths": 278.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 10.286,
- "total_cases_per_million": 122.065,
- "new_cases_per_million": 5.149,
- "new_cases_smoothed_per_million": 5.208,
- "total_deaths_per_million": 5.464,
- "new_deaths_per_million": 0.177,
- "new_deaths_smoothed_per_million": 0.202,
- "new_tests": 4504.0,
- "total_tests": 104657.0,
- "total_tests_per_thousand": 2.057,
- "new_tests_per_thousand": 0.089,
- "new_tests_smoothed": 4256.0,
- "new_tests_smoothed_per_thousand": 0.084,
- "tests_units": "samples tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-01",
- "total_cases": 6507.0,
- "new_cases": 296.0,
- "new_cases_smoothed": 278.0,
- "total_deaths": 293.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 11.143,
- "total_cases_per_million": 127.882,
- "new_cases_per_million": 5.817,
- "new_cases_smoothed_per_million": 5.464,
- "total_deaths_per_million": 5.758,
- "new_deaths_per_million": 0.295,
- "new_deaths_smoothed_per_million": 0.219,
- "new_tests": 4293.0,
- "total_tests": 108950.0,
- "total_tests_per_thousand": 2.141,
- "new_tests_per_thousand": 0.084,
- "new_tests_smoothed": 4424.0,
- "new_tests_smoothed_per_thousand": 0.087,
- "tests_units": "samples tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-02",
- "total_cases": 7006.0,
- "new_cases": 499.0,
- "new_cases_smoothed": 303.571,
- "total_deaths": 314.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 12.714,
- "total_cases_per_million": 137.689,
- "new_cases_per_million": 9.807,
- "new_cases_smoothed_per_million": 5.966,
- "total_deaths_per_million": 6.171,
- "new_deaths_per_million": 0.413,
- "new_deaths_smoothed_per_million": 0.25,
- "new_tests": 5652.0,
- "total_tests": 114602.0,
- "total_tests_per_thousand": 2.252,
- "new_tests_per_thousand": 0.111,
- "new_tests_smoothed": 4793.0,
- "new_tests_smoothed_per_thousand": 0.094,
- "tests_units": "samples tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-03",
- "total_cases": 7285.0,
- "new_cases": 279.0,
- "new_cases_smoothed": 306.143,
- "total_deaths": 324.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 13.0,
- "total_cases_per_million": 143.172,
- "new_cases_per_million": 5.483,
- "new_cases_smoothed_per_million": 6.017,
- "total_deaths_per_million": 6.368,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.255,
- "new_tests": 4199.0,
- "total_tests": 118801.0,
- "total_tests_per_thousand": 2.335,
- "new_tests_per_thousand": 0.083,
- "new_tests_smoothed": 4528.0,
- "new_tests_smoothed_per_thousand": 0.089,
- "tests_units": "samples tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-04",
- "total_cases": 7668.0,
- "new_cases": 383.0,
- "new_cases_smoothed": 327.0,
- "total_deaths": 340.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 13.857,
- "total_cases_per_million": 150.699,
- "new_cases_per_million": 7.527,
- "new_cases_smoothed_per_million": 6.427,
- "total_deaths_per_million": 6.682,
- "new_deaths_per_million": 0.314,
- "new_deaths_smoothed_per_million": 0.272,
- "new_tests": 4228.0,
- "total_tests": 123029.0,
- "total_tests_per_thousand": 2.418,
- "new_tests_per_thousand": 0.083,
- "new_tests_smoothed": 4590.0,
- "new_tests_smoothed_per_thousand": 0.09,
- "tests_units": "samples tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-05",
- "total_cases": 7973.0,
- "new_cases": 305.0,
- "new_cases_smoothed": 339.429,
- "total_deaths": 358.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 15.0,
- "total_cases_per_million": 156.693,
- "new_cases_per_million": 5.994,
- "new_cases_smoothed_per_million": 6.671,
- "total_deaths_per_million": 7.036,
- "new_deaths_per_million": 0.354,
- "new_deaths_smoothed_per_million": 0.295,
- "new_tests": 4076.0,
- "total_tests": 127105.0,
- "total_tests_per_thousand": 2.498,
- "new_tests_per_thousand": 0.08,
- "new_tests_smoothed": 4574.0,
- "new_tests_smoothed_per_thousand": 0.09,
- "tests_units": "samples tested",
- "stringency_index": 90.74
- },
- {
- "date": "2020-05-06",
- "total_cases": 8613.0,
- "new_cases": 640.0,
- "new_cases_smoothed": 380.571,
- "total_deaths": 378.0,
- "new_deaths": 20.0,
- "new_deaths_smoothed": 15.571,
- "total_cases_per_million": 169.271,
- "new_cases_per_million": 12.578,
- "new_cases_smoothed_per_million": 7.479,
- "total_deaths_per_million": 7.429,
- "new_deaths_per_million": 0.393,
- "new_deaths_smoothed_per_million": 0.306,
- "new_tests": 4005.0,
- "total_tests": 131110.0,
- "total_tests_per_thousand": 2.577,
- "new_tests_per_thousand": 0.079,
- "new_tests_smoothed": 4422.0,
- "new_tests_smoothed_per_thousand": 0.087,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-05-07",
- "total_cases": 8959.0,
- "new_cases": 346.0,
- "new_cases_smoothed": 392.571,
- "total_deaths": 397.0,
- "new_deaths": 19.0,
- "new_deaths_smoothed": 17.0,
- "total_cases_per_million": 176.071,
- "new_cases_per_million": 6.8,
- "new_cases_smoothed_per_million": 7.715,
- "total_deaths_per_million": 7.802,
- "new_deaths_per_million": 0.373,
- "new_deaths_smoothed_per_million": 0.334,
- "new_tests": 4242.0,
- "total_tests": 135352.0,
- "total_tests_per_thousand": 2.66,
- "new_tests_per_thousand": 0.083,
- "new_tests_smoothed": 4385.0,
- "new_tests_smoothed_per_thousand": 0.086,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-05-08",
- "total_cases": 9456.0,
- "new_cases": 497.0,
- "new_cases_smoothed": 421.286,
- "total_deaths": 407.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 16.286,
- "total_cases_per_million": 185.839,
- "new_cases_per_million": 9.768,
- "new_cases_smoothed_per_million": 8.28,
- "total_deaths_per_million": 7.999,
- "new_deaths_per_million": 0.197,
- "new_deaths_smoothed_per_million": 0.32,
- "new_tests": 4387.0,
- "total_tests": 139739.0,
- "total_tests_per_thousand": 2.746,
- "new_tests_per_thousand": 0.086,
- "new_tests_smoothed": 4398.0,
- "new_tests_smoothed_per_thousand": 0.086,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-05-09",
- "total_cases": 10051.0,
- "new_cases": 595.0,
- "new_cases_smoothed": 435.0,
- "total_deaths": 428.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 16.286,
- "total_cases_per_million": 197.532,
- "new_cases_per_million": 11.694,
- "new_cases_smoothed_per_million": 8.549,
- "total_deaths_per_million": 8.411,
- "new_deaths_per_million": 0.413,
- "new_deaths_smoothed_per_million": 0.32,
- "new_tests": 5173.0,
- "total_tests": 144912.0,
- "total_tests_per_thousand": 2.848,
- "new_tests_per_thousand": 0.102,
- "new_tests_smoothed": 4330.0,
- "new_tests_smoothed_per_thousand": 0.085,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-05-10",
- "total_cases": 10495.0,
- "new_cases": 444.0,
- "new_cases_smoothed": 458.571,
- "total_deaths": 445.0,
- "new_deaths": 17.0,
- "new_deaths_smoothed": 17.286,
- "total_cases_per_million": 206.258,
- "new_cases_per_million": 8.726,
- "new_cases_smoothed_per_million": 9.012,
- "total_deaths_per_million": 8.746,
- "new_deaths_per_million": 0.334,
- "new_deaths_smoothed_per_million": 0.34,
- "new_tests": 6484.0,
- "total_tests": 151396.0,
- "total_tests_per_thousand": 2.975,
- "new_tests_per_thousand": 0.127,
- "new_tests_smoothed": 4656.0,
- "new_tests_smoothed_per_thousand": 0.092,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-05-11",
- "total_cases": 11063.0,
- "new_cases": 568.0,
- "new_cases_smoothed": 485.0,
- "total_deaths": 463.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 17.571,
- "total_cases_per_million": 217.421,
- "new_cases_per_million": 11.163,
- "new_cases_smoothed_per_million": 9.532,
- "total_deaths_per_million": 9.099,
- "new_deaths_per_million": 0.354,
- "new_deaths_smoothed_per_million": 0.345,
- "new_tests": 7537.0,
- "total_tests": 158933.0,
- "total_tests_per_thousand": 3.124,
- "new_tests_per_thousand": 0.148,
- "new_tests_smoothed": 5129.0,
- "new_tests_smoothed_per_thousand": 0.101,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-05-12",
- "total_cases": 11613.0,
- "new_cases": 550.0,
- "new_cases_smoothed": 520.0,
- "total_deaths": 479.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 17.286,
- "total_cases_per_million": 228.23,
- "new_cases_per_million": 10.809,
- "new_cases_smoothed_per_million": 10.22,
- "total_deaths_per_million": 9.414,
- "new_deaths_per_million": 0.314,
- "new_deaths_smoothed_per_million": 0.34,
- "new_tests": 6805.0,
- "total_tests": 165738.0,
- "total_tests_per_thousand": 3.257,
- "new_tests_per_thousand": 0.134,
- "new_tests_smoothed": 5519.0,
- "new_tests_smoothed_per_thousand": 0.108,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-05-13",
- "total_cases": 12272.0,
- "new_cases": 659.0,
- "new_cases_smoothed": 522.714,
- "total_deaths": 493.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 16.429,
- "total_cases_per_million": 241.181,
- "new_cases_per_million": 12.951,
- "new_cases_smoothed_per_million": 10.273,
- "total_deaths_per_million": 9.689,
- "new_deaths_per_million": 0.275,
- "new_deaths_smoothed_per_million": 0.323,
- "new_tests": 6061.0,
- "total_tests": 171799.0,
- "total_tests_per_thousand": 3.376,
- "new_tests_per_thousand": 0.119,
- "new_tests_smoothed": 5813.0,
- "new_tests_smoothed_per_thousand": 0.114,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-05-14",
- "total_cases": 12930.0,
- "new_cases": 658.0,
- "new_cases_smoothed": 567.286,
- "total_deaths": 509.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 16.0,
- "total_cases_per_million": 254.113,
- "new_cases_per_million": 12.932,
- "new_cases_smoothed_per_million": 11.149,
- "total_deaths_per_million": 10.003,
- "new_deaths_per_million": 0.314,
- "new_deaths_smoothed_per_million": 0.314,
- "new_tests": 5251.0,
- "total_tests": 177050.0,
- "total_tests_per_thousand": 3.48,
- "new_tests_per_thousand": 0.103,
- "new_tests_smoothed": 5957.0,
- "new_tests_smoothed_per_thousand": 0.117,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-05-15",
- "total_cases": 13610.0,
- "new_cases": 680.0,
- "new_cases_smoothed": 593.429,
- "total_deaths": 525.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 16.857,
- "total_cases_per_million": 267.477,
- "new_cases_per_million": 13.364,
- "new_cases_smoothed_per_million": 11.663,
- "total_deaths_per_million": 10.318,
- "new_deaths_per_million": 0.314,
- "new_deaths_smoothed_per_million": 0.331,
- "new_tests": 6062.0,
- "total_tests": 183112.0,
- "total_tests_per_thousand": 3.599,
- "new_tests_per_thousand": 0.119,
- "new_tests_smoothed": 6196.0,
- "new_tests_smoothed_per_thousand": 0.122,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-05-16",
- "total_cases": 14216.0,
- "new_cases": 606.0,
- "new_cases_smoothed": 595.0,
- "total_deaths": 546.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 16.857,
- "total_cases_per_million": 279.387,
- "new_cases_per_million": 11.91,
- "new_cases_smoothed_per_million": 11.694,
- "total_deaths_per_million": 10.731,
- "new_deaths_per_million": 0.413,
- "new_deaths_smoothed_per_million": 0.331,
- "new_tests": 7002.0,
- "total_tests": 190114.0,
- "total_tests_per_thousand": 3.736,
- "new_tests_per_thousand": 0.138,
- "new_tests_smoothed": 6457.0,
- "new_tests_smoothed_per_thousand": 0.127,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-05-17",
- "total_cases": 14939.0,
- "new_cases": 723.0,
- "new_cases_smoothed": 634.857,
- "total_deaths": 562.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 16.714,
- "total_cases_per_million": 293.596,
- "new_cases_per_million": 14.209,
- "new_cases_smoothed_per_million": 12.477,
- "total_deaths_per_million": 11.045,
- "new_deaths_per_million": 0.314,
- "new_deaths_smoothed_per_million": 0.328,
- "new_tests": 6303.0,
- "total_tests": 196417.0,
- "total_tests_per_thousand": 3.86,
- "new_tests_per_thousand": 0.124,
- "new_tests_smoothed": 6432.0,
- "new_tests_smoothed_per_thousand": 0.126,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-05-18",
- "total_cases": 15574.0,
- "new_cases": 635.0,
- "new_cases_smoothed": 644.429,
- "total_deaths": 574.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 15.857,
- "total_cases_per_million": 306.075,
- "new_cases_per_million": 12.48,
- "new_cases_smoothed_per_million": 12.665,
- "total_deaths_per_million": 11.281,
- "new_deaths_per_million": 0.236,
- "new_deaths_smoothed_per_million": 0.312,
- "new_tests": 5391.0,
- "total_tests": 201808.0,
- "total_tests_per_thousand": 3.966,
- "new_tests_per_thousand": 0.106,
- "new_tests_smoothed": 6125.0,
- "new_tests_smoothed_per_thousand": 0.12,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-05-19",
- "total_cases": 16295.0,
- "new_cases": 721.0,
- "new_cases_smoothed": 668.857,
- "total_deaths": 592.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 16.143,
- "total_cases_per_million": 320.245,
- "new_cases_per_million": 14.17,
- "new_cases_smoothed_per_million": 13.145,
- "total_deaths_per_million": 11.635,
- "new_deaths_per_million": 0.354,
- "new_deaths_smoothed_per_million": 0.317,
- "new_tests": 6238.0,
- "total_tests": 208046.0,
- "total_tests_per_thousand": 4.089,
- "new_tests_per_thousand": 0.123,
- "new_tests_smoothed": 6044.0,
- "new_tests_smoothed_per_thousand": 0.119,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-05-20",
- "total_cases": 16935.0,
- "new_cases": 640.0,
- "new_cases_smoothed": 666.143,
- "total_deaths": 613.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 17.143,
- "total_cases_per_million": 332.823,
- "new_cases_per_million": 12.578,
- "new_cases_smoothed_per_million": 13.092,
- "total_deaths_per_million": 12.047,
- "new_deaths_per_million": 0.413,
- "new_deaths_smoothed_per_million": 0.337,
- "new_tests": 6490.0,
- "total_tests": 214536.0,
- "total_tests_per_thousand": 4.216,
- "new_tests_per_thousand": 0.128,
- "new_tests_smoothed": 6105.0,
- "new_tests_smoothed_per_thousand": 0.12,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-05-21",
- "total_cases": 17687.0,
- "new_cases": 752.0,
- "new_cases_smoothed": 679.571,
- "total_deaths": 630.0,
- "new_deaths": 17.0,
- "new_deaths_smoothed": 17.286,
- "total_cases_per_million": 347.602,
- "new_cases_per_million": 14.779,
- "new_cases_smoothed_per_million": 13.356,
- "total_deaths_per_million": 12.381,
- "new_deaths_per_million": 0.334,
- "new_deaths_smoothed_per_million": 0.34,
- "new_tests": 7674.0,
- "total_tests": 222210.0,
- "total_tests_per_thousand": 4.367,
- "new_tests_per_thousand": 0.151,
- "new_tests_smoothed": 6451.0,
- "new_tests_smoothed_per_thousand": 0.127,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-05-22",
- "total_cases": 18330.0,
- "new_cases": 643.0,
- "new_cases_smoothed": 674.286,
- "total_deaths": 652.0,
- "new_deaths": 22.0,
- "new_deaths_smoothed": 18.143,
- "total_cases_per_million": 360.239,
- "new_cases_per_million": 12.637,
- "new_cases_smoothed_per_million": 13.252,
- "total_deaths_per_million": 12.814,
- "new_deaths_per_million": 0.432,
- "new_deaths_smoothed_per_million": 0.357,
- "new_tests": 13738.0,
- "total_tests": 235948.0,
- "total_tests_per_thousand": 4.637,
- "new_tests_per_thousand": 0.27,
- "new_tests_smoothed": 7548.0,
- "new_tests_smoothed_per_thousand": 0.148,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-05-23",
- "total_cases": 19131.0,
- "new_cases": 801.0,
- "new_cases_smoothed": 702.143,
- "total_deaths": 682.0,
- "new_deaths": 30.0,
- "new_deaths_smoothed": 19.429,
- "total_cases_per_million": 375.981,
- "new_cases_per_million": 15.742,
- "new_cases_smoothed_per_million": 13.799,
- "total_deaths_per_million": 13.403,
- "new_deaths_per_million": 0.59,
- "new_deaths_smoothed_per_million": 0.382,
- "new_tests": 7171.0,
- "total_tests": 243119.0,
- "total_tests_per_thousand": 4.778,
- "new_tests_per_thousand": 0.141,
- "new_tests_smoothed": 7572.0,
- "new_tests_smoothed_per_thousand": 0.149,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-05-24",
- "total_cases": 20177.0,
- "new_cases": 1046.0,
- "new_cases_smoothed": 748.286,
- "total_deaths": 705.0,
- "new_deaths": 23.0,
- "new_deaths_smoothed": 20.429,
- "total_cases_per_million": 396.538,
- "new_cases_per_million": 20.557,
- "new_cases_smoothed_per_million": 14.706,
- "total_deaths_per_million": 13.855,
- "new_deaths_per_million": 0.452,
- "new_deaths_smoothed_per_million": 0.401,
- "new_tests": 9623.0,
- "total_tests": 252742.0,
- "total_tests_per_thousand": 4.967,
- "new_tests_per_thousand": 0.189,
- "new_tests_smoothed": 8046.0,
- "new_tests_smoothed_per_thousand": 0.158,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-05-25",
- "total_cases": 21175.0,
- "new_cases": 998.0,
- "new_cases_smoothed": 800.143,
- "total_deaths": 727.0,
- "new_deaths": 22.0,
- "new_deaths_smoothed": 21.857,
- "total_cases_per_million": 416.152,
- "new_cases_per_million": 19.614,
- "new_cases_smoothed_per_million": 15.725,
- "total_deaths_per_million": 14.288,
- "new_deaths_per_million": 0.432,
- "new_deaths_smoothed_per_million": 0.43,
- "new_tests": 8070.0,
- "total_tests": 260812.0,
- "total_tests_per_thousand": 5.126,
- "new_tests_per_thousand": 0.159,
- "new_tests_smoothed": 8429.0,
- "new_tests_smoothed_per_thousand": 0.166,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-05-26",
- "total_cases": 21981.0,
- "new_cases": 806.0,
- "new_cases_smoothed": 812.286,
- "total_deaths": 750.0,
- "new_deaths": 23.0,
- "new_deaths_smoothed": 22.571,
- "total_cases_per_million": 431.992,
- "new_cases_per_million": 15.84,
- "new_cases_smoothed_per_million": 15.964,
- "total_deaths_per_million": 14.74,
- "new_deaths_per_million": 0.452,
- "new_deaths_smoothed_per_million": 0.444,
- "new_tests": 10306.0,
- "total_tests": 271118.0,
- "total_tests_per_thousand": 5.328,
- "new_tests_per_thousand": 0.203,
- "new_tests_smoothed": 9010.0,
- "new_tests_smoothed_per_thousand": 0.177,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-05-27",
- "total_cases": 23003.0,
- "new_cases": 1022.0,
- "new_cases_smoothed": 866.857,
- "total_deaths": 776.0,
- "new_deaths": 26.0,
- "new_deaths_smoothed": 23.286,
- "total_cases_per_million": 452.077,
- "new_cases_per_million": 20.085,
- "new_cases_smoothed_per_million": 17.036,
- "total_deaths_per_million": 15.251,
- "new_deaths_per_million": 0.511,
- "new_deaths_smoothed_per_million": 0.458,
- "new_tests": 12366.0,
- "total_tests": 283484.0,
- "total_tests_per_thousand": 5.571,
- "new_tests_per_thousand": 0.243,
- "new_tests_smoothed": 9850.0,
- "new_tests_smoothed_per_thousand": 0.194,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-05-28",
- "total_cases": 24104.0,
- "new_cases": 1101.0,
- "new_cases_smoothed": 916.714,
- "total_deaths": 803.0,
- "new_deaths": 27.0,
- "new_deaths_smoothed": 24.714,
- "total_cases_per_million": 473.715,
- "new_cases_per_million": 21.638,
- "new_cases_smoothed_per_million": 18.016,
- "total_deaths_per_million": 15.781,
- "new_deaths_per_million": 0.531,
- "new_deaths_smoothed_per_million": 0.486,
- "new_tests": 12130.0,
- "total_tests": 295614.0,
- "total_tests_per_thousand": 5.81,
- "new_tests_per_thousand": 0.238,
- "new_tests_smoothed": 10486.0,
- "new_tests_smoothed_per_thousand": 0.206,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-05-29",
- "total_cases": 25366.0,
- "new_cases": 1262.0,
- "new_cases_smoothed": 1005.143,
- "total_deaths": 822.0,
- "new_deaths": 19.0,
- "new_deaths_smoothed": 24.286,
- "total_cases_per_million": 498.517,
- "new_cases_per_million": 24.802,
- "new_cases_smoothed_per_million": 19.754,
- "total_deaths_per_million": 16.155,
- "new_deaths_per_million": 0.373,
- "new_deaths_smoothed_per_million": 0.477,
- "new_tests": 10797.0,
- "total_tests": 306411.0,
- "total_tests_per_thousand": 6.022,
- "new_tests_per_thousand": 0.212,
- "new_tests_smoothed": 10066.0,
- "new_tests_smoothed_per_thousand": 0.198,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-05-30",
- "total_cases": 26688.0,
- "new_cases": 1322.0,
- "new_cases_smoothed": 1079.571,
- "total_deaths": 853.0,
- "new_deaths": 31.0,
- "new_deaths_smoothed": 24.429,
- "total_cases_per_million": 524.499,
- "new_cases_per_million": 25.981,
- "new_cases_smoothed_per_million": 21.217,
- "total_deaths_per_million": 16.764,
- "new_deaths_per_million": 0.609,
- "new_deaths_smoothed_per_million": 0.48,
- "new_tests": 13368.0,
- "total_tests": 319779.0,
- "total_tests_per_thousand": 6.285,
- "new_tests_per_thousand": 0.263,
- "new_tests_smoothed": 10951.0,
- "new_tests_smoothed_per_thousand": 0.215,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-05-31",
- "total_cases": 28236.0,
- "new_cases": 1548.0,
- "new_cases_smoothed": 1151.286,
- "total_deaths": 890.0,
- "new_deaths": 37.0,
- "new_deaths_smoothed": 26.429,
- "total_cases_per_million": 554.921,
- "new_cases_per_million": 30.423,
- "new_cases_smoothed_per_million": 22.626,
- "total_deaths_per_million": 17.491,
- "new_deaths_per_million": 0.727,
- "new_deaths_smoothed_per_million": 0.519,
- "new_tests": 12038.0,
- "total_tests": 331817.0,
- "total_tests_per_thousand": 6.521,
- "new_tests_per_thousand": 0.237,
- "new_tests_smoothed": 11296.0,
- "new_tests_smoothed_per_thousand": 0.222,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-06-01",
- "total_cases": 29383.0,
- "new_cases": 1147.0,
- "new_cases_smoothed": 1172.571,
- "total_deaths": 939.0,
- "new_deaths": 49.0,
- "new_deaths_smoothed": 30.286,
- "total_cases_per_million": 577.463,
- "new_cases_per_million": 22.542,
- "new_cases_smoothed_per_million": 23.045,
- "total_deaths_per_million": 18.454,
- "new_deaths_per_million": 0.963,
- "new_deaths_smoothed_per_million": 0.595,
- "new_tests": 9325.0,
- "total_tests": 341142.0,
- "total_tests_per_thousand": 6.704,
- "new_tests_per_thousand": 0.183,
- "new_tests_smoothed": 11476.0,
- "new_tests_smoothed_per_thousand": 0.226,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-06-02",
- "total_cases": 30493.0,
- "new_cases": 1110.0,
- "new_cases_smoothed": 1216.0,
- "total_deaths": 969.0,
- "new_deaths": 30.0,
- "new_deaths_smoothed": 31.286,
- "total_cases_per_million": 599.278,
- "new_cases_per_million": 21.815,
- "new_cases_smoothed_per_million": 23.898,
- "total_deaths_per_million": 19.044,
- "new_deaths_per_million": 0.59,
- "new_deaths_smoothed_per_million": 0.615,
- "new_tests": 9071.0,
- "total_tests": 350213.0,
- "total_tests_per_thousand": 6.883,
- "new_tests_per_thousand": 0.178,
- "new_tests_smoothed": 11299.0,
- "new_tests_smoothed_per_thousand": 0.222,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-06-03",
- "total_cases": 31833.0,
- "new_cases": 1340.0,
- "new_cases_smoothed": 1261.429,
- "total_deaths": 1009.0,
- "new_deaths": 40.0,
- "new_deaths_smoothed": 33.286,
- "total_cases_per_million": 625.613,
- "new_cases_per_million": 26.335,
- "new_cases_smoothed_per_million": 24.791,
- "total_deaths_per_million": 19.83,
- "new_deaths_per_million": 0.786,
- "new_deaths_smoothed_per_million": 0.654,
- "new_tests": 12219.0,
- "total_tests": 362432.0,
- "total_tests_per_thousand": 7.123,
- "new_tests_per_thousand": 0.24,
- "new_tests_smoothed": 11278.0,
- "new_tests_smoothed_per_thousand": 0.222,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-06-04",
- "total_cases": 33354.0,
- "new_cases": 1521.0,
- "new_cases_smoothed": 1321.429,
- "total_deaths": 1045.0,
- "new_deaths": 36.0,
- "new_deaths_smoothed": 34.571,
- "total_cases_per_million": 655.505,
- "new_cases_per_million": 29.892,
- "new_cases_smoothed_per_million": 25.97,
- "total_deaths_per_million": 20.537,
- "new_deaths_per_million": 0.708,
- "new_deaths_smoothed_per_million": 0.679,
- "new_tests": 12160.0,
- "total_tests": 374592.0,
- "total_tests_per_thousand": 7.362,
- "new_tests_per_thousand": 0.239,
- "new_tests_smoothed": 11283.0,
- "new_tests_smoothed_per_thousand": 0.222,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-06-05",
- "total_cases": 35120.0,
- "new_cases": 1766.0,
- "new_cases_smoothed": 1393.429,
- "total_deaths": 1087.0,
- "new_deaths": 42.0,
- "new_deaths_smoothed": 37.857,
- "total_cases_per_million": 690.212,
- "new_cases_per_million": 34.707,
- "new_cases_smoothed_per_million": 27.385,
- "total_deaths_per_million": 21.363,
- "new_deaths_per_million": 0.825,
- "new_deaths_smoothed_per_million": 0.744,
- "new_tests": 12346.0,
- "total_tests": 386938.0,
- "total_tests_per_thousand": 7.604,
- "new_tests_per_thousand": 0.243,
- "new_tests_smoothed": 11504.0,
- "new_tests_smoothed_per_thousand": 0.226,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-06-06",
- "total_cases": 36635.0,
- "new_cases": 1515.0,
- "new_cases_smoothed": 1421.0,
- "total_deaths": 1145.0,
- "new_deaths": 58.0,
- "new_deaths_smoothed": 41.714,
- "total_cases_per_million": 719.987,
- "new_cases_per_million": 29.774,
- "new_cases_smoothed_per_million": 27.927,
- "total_deaths_per_million": 22.503,
- "new_deaths_per_million": 1.14,
- "new_deaths_smoothed_per_million": 0.82,
- "new_tests": 12567.0,
- "total_tests": 399505.0,
- "total_tests_per_thousand": 7.851,
- "new_tests_per_thousand": 0.247,
- "new_tests_smoothed": 11389.0,
- "new_tests_smoothed_per_thousand": 0.224,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-06-07",
- "total_cases": 38027.0,
- "new_cases": 1392.0,
- "new_cases_smoothed": 1398.714,
- "total_deaths": 1205.0,
- "new_deaths": 60.0,
- "new_deaths_smoothed": 45.0,
- "total_cases_per_million": 747.344,
- "new_cases_per_million": 27.357,
- "new_cases_smoothed_per_million": 27.489,
- "total_deaths_per_million": 23.682,
- "new_deaths_per_million": 1.179,
- "new_deaths_smoothed_per_million": 0.884,
- "new_tests": 11214.0,
- "total_tests": 410719.0,
- "total_tests_per_thousand": 8.072,
- "new_tests_per_thousand": 0.22,
- "new_tests_smoothed": 11272.0,
- "new_tests_smoothed_per_thousand": 0.222,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-06-08",
- "total_cases": 39236.0,
- "new_cases": 1209.0,
- "new_cases_smoothed": 1407.571,
- "total_deaths": 1259.0,
- "new_deaths": 54.0,
- "new_deaths_smoothed": 45.714,
- "total_cases_per_million": 771.104,
- "new_cases_per_million": 23.76,
- "new_cases_smoothed_per_million": 27.663,
- "total_deaths_per_million": 24.743,
- "new_deaths_per_million": 1.061,
- "new_deaths_smoothed_per_million": 0.898,
- "new_tests": 11004.0,
- "total_tests": 421723.0,
- "total_tests_per_thousand": 8.288,
- "new_tests_per_thousand": 0.216,
- "new_tests_smoothed": 11512.0,
- "new_tests_smoothed_per_thousand": 0.226,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-06-09",
- "total_cases": 40719.0,
- "new_cases": 1483.0,
- "new_cases_smoothed": 1460.857,
- "total_deaths": 1308.0,
- "new_deaths": 49.0,
- "new_deaths_smoothed": 48.429,
- "total_cases_per_million": 800.249,
- "new_cases_per_million": 29.145,
- "new_cases_smoothed_per_million": 28.71,
- "total_deaths_per_million": 25.706,
- "new_deaths_per_million": 0.963,
- "new_deaths_smoothed_per_million": 0.952,
- "new_tests": 11147.0,
- "total_tests": 432870.0,
- "total_tests_per_thousand": 8.507,
- "new_tests_per_thousand": 0.219,
- "new_tests_smoothed": 11808.0,
- "new_tests_smoothed_per_thousand": 0.232,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-06-10",
- "total_cases": 42078.0,
- "new_cases": 1359.0,
- "new_cases_smoothed": 1463.571,
- "total_deaths": 1372.0,
- "new_deaths": 64.0,
- "new_deaths_smoothed": 51.857,
- "total_cases_per_million": 826.958,
- "new_cases_per_million": 26.708,
- "new_cases_smoothed_per_million": 28.764,
- "total_deaths_per_million": 26.964,
- "new_deaths_per_million": 1.258,
- "new_deaths_smoothed_per_million": 1.019,
- "new_tests": 12063.0,
- "total_tests": 444933.0,
- "total_tests_per_thousand": 8.744,
- "new_tests_per_thousand": 0.237,
- "new_tests_smoothed": 11786.0,
- "new_tests_smoothed_per_thousand": 0.232,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-06-11",
- "total_cases": 43682.0,
- "new_cases": 1604.0,
- "new_cases_smoothed": 1475.429,
- "total_deaths": 1433.0,
- "new_deaths": 61.0,
- "new_deaths_smoothed": 55.429,
- "total_cases_per_million": 858.481,
- "new_cases_per_million": 31.523,
- "new_cases_smoothed_per_million": 28.997,
- "total_deaths_per_million": 28.163,
- "new_deaths_per_million": 1.199,
- "new_deaths_smoothed_per_million": 1.089,
- "new_tests": 13391.0,
- "total_tests": 458324.0,
- "total_tests_per_thousand": 9.007,
- "new_tests_per_thousand": 0.263,
- "new_tests_smoothed": 11962.0,
- "new_tests_smoothed_per_thousand": 0.235,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-06-12",
- "total_cases": 43682.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1223.143,
- "total_deaths": 1433.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 49.429,
- "total_cases_per_million": 858.481,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 24.038,
- "total_deaths_per_million": 28.163,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.971,
- "new_tests": 12027.0,
- "total_tests": 470351.0,
- "total_tests_per_thousand": 9.244,
- "new_tests_per_thousand": 0.236,
- "new_tests_smoothed": 11916.0,
- "new_tests_smoothed_per_thousand": 0.234,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-06-13",
- "total_cases": 46858.0,
- "new_cases": 3176.0,
- "new_cases_smoothed": 1460.429,
- "total_deaths": 1545.0,
- "new_deaths": 112.0,
- "new_deaths_smoothed": 57.143,
- "total_cases_per_million": 920.899,
- "new_cases_per_million": 62.418,
- "new_cases_smoothed_per_million": 28.702,
- "total_deaths_per_million": 30.364,
- "new_deaths_per_million": 2.201,
- "new_deaths_smoothed_per_million": 1.123,
- "new_tests": 12481.0,
- "total_tests": 482832.0,
- "total_tests_per_thousand": 9.489,
- "new_tests_per_thousand": 0.245,
- "new_tests_smoothed": 11904.0,
- "new_tests_smoothed_per_thousand": 0.234,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-06-14",
- "total_cases": 48746.0,
- "new_cases": 1888.0,
- "new_cases_smoothed": 1531.286,
- "total_deaths": 1592.0,
- "new_deaths": 47.0,
- "new_deaths_smoothed": 55.286,
- "total_cases_per_million": 958.004,
- "new_cases_per_million": 37.105,
- "new_cases_smoothed_per_million": 30.094,
- "total_deaths_per_million": 31.288,
- "new_deaths_per_million": 0.924,
- "new_deaths_smoothed_per_million": 1.087,
- "new_tests": 12192.0,
- "total_tests": 495024.0,
- "total_tests_per_thousand": 9.729,
- "new_tests_per_thousand": 0.24,
- "new_tests_smoothed": 12044.0,
- "new_tests_smoothed_per_thousand": 0.237,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-06-15",
- "total_cases": 50939.0,
- "new_cases": 2193.0,
- "new_cases_smoothed": 1671.857,
- "total_deaths": 1667.0,
- "new_deaths": 75.0,
- "new_deaths_smoothed": 58.286,
- "total_cases_per_million": 1001.103,
- "new_cases_per_million": 43.099,
- "new_cases_smoothed_per_million": 32.857,
- "total_deaths_per_million": 32.762,
- "new_deaths_per_million": 1.474,
- "new_deaths_smoothed_per_million": 1.145,
- "new_tests": 12564.0,
- "total_tests": 507588.0,
- "total_tests_per_thousand": 9.976,
- "new_tests_per_thousand": 0.247,
- "new_tests_smoothed": 12266.0,
- "new_tests_smoothed_per_thousand": 0.241,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-06-16",
- "total_cases": 53063.0,
- "new_cases": 2124.0,
- "new_cases_smoothed": 1763.429,
- "total_deaths": 1726.0,
- "new_deaths": 59.0,
- "new_deaths_smoothed": 59.714,
- "total_cases_per_million": 1042.846,
- "new_cases_per_million": 41.743,
- "new_cases_smoothed_per_million": 34.657,
- "total_deaths_per_million": 33.921,
- "new_deaths_per_million": 1.16,
- "new_deaths_smoothed_per_million": 1.174,
- "new_tests": 12402.0,
- "total_tests": 519990.0,
- "total_tests_per_thousand": 10.219,
- "new_tests_per_thousand": 0.244,
- "new_tests_smoothed": 12446.0,
- "new_tests_smoothed_per_thousand": 0.245,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-06-17",
- "total_cases": 54931.0,
- "new_cases": 1868.0,
- "new_cases_smoothed": 1836.143,
- "total_deaths": 1801.0,
- "new_deaths": 75.0,
- "new_deaths_smoothed": 61.286,
- "total_cases_per_million": 1079.558,
- "new_cases_per_million": 36.712,
- "new_cases_smoothed_per_million": 36.086,
- "total_deaths_per_million": 35.395,
- "new_deaths_per_million": 1.474,
- "new_deaths_smoothed_per_million": 1.204,
- "new_tests": 15230.0,
- "total_tests": 535220.0,
- "total_tests_per_thousand": 10.519,
- "new_tests_per_thousand": 0.299,
- "new_tests_smoothed": 12898.0,
- "new_tests_smoothed_per_thousand": 0.253,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-06-18",
- "total_cases": 57046.0,
- "new_cases": 2115.0,
- "new_cases_smoothed": 1909.143,
- "total_deaths": 1864.0,
- "new_deaths": 63.0,
- "new_deaths_smoothed": 61.571,
- "total_cases_per_million": 1121.124,
- "new_cases_per_million": 41.566,
- "new_cases_smoothed_per_million": 37.52,
- "total_deaths_per_million": 36.633,
- "new_deaths_per_million": 1.238,
- "new_deaths_smoothed_per_million": 1.21,
- "new_tests": 15391.0,
- "total_tests": 550611.0,
- "total_tests_per_thousand": 10.821,
- "new_tests_per_thousand": 0.302,
- "new_tests_smoothed": 13184.0,
- "new_tests_smoothed_per_thousand": 0.259,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-06-19",
- "total_cases": 60217.0,
- "new_cases": 3171.0,
- "new_cases_smoothed": 2362.143,
- "total_deaths": 1950.0,
- "new_deaths": 86.0,
- "new_deaths_smoothed": 73.857,
- "total_cases_per_million": 1183.443,
- "new_cases_per_million": 62.32,
- "new_cases_smoothed_per_million": 46.423,
- "total_deaths_per_million": 38.323,
- "new_deaths_per_million": 1.69,
- "new_deaths_smoothed_per_million": 1.452,
- "new_tests": 17713.0,
- "total_tests": 568324.0,
- "total_tests_per_thousand": 11.169,
- "new_tests_per_thousand": 0.348,
- "new_tests_smoothed": 13996.0,
- "new_tests_smoothed_per_thousand": 0.275,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-06-20",
- "total_cases": 63276.0,
- "new_cases": 3059.0,
- "new_cases_smoothed": 2345.429,
- "total_deaths": 2045.0,
- "new_deaths": 95.0,
- "new_deaths_smoothed": 71.429,
- "total_cases_per_million": 1243.562,
- "new_cases_per_million": 60.118,
- "new_cases_smoothed_per_million": 46.095,
- "total_deaths_per_million": 40.19,
- "new_deaths_per_million": 1.867,
- "new_deaths_smoothed_per_million": 1.404,
- "new_tests": 17498.0,
- "total_tests": 585822.0,
- "total_tests_per_thousand": 11.513,
- "new_tests_per_thousand": 0.344,
- "new_tests_smoothed": 14713.0,
- "new_tests_smoothed_per_thousand": 0.289,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-06-21",
- "total_cases": 65633.0,
- "new_cases": 2357.0,
- "new_cases_smoothed": 2412.429,
- "total_deaths": 2126.0,
- "new_deaths": 81.0,
- "new_deaths_smoothed": 76.286,
- "total_cases_per_million": 1289.884,
- "new_cases_per_million": 46.322,
- "new_cases_smoothed_per_million": 47.411,
- "total_deaths_per_million": 41.782,
- "new_deaths_per_million": 1.592,
- "new_deaths_smoothed_per_million": 1.499,
- "new_tests": 18451.0,
- "total_tests": 604273.0,
- "total_tests_per_thousand": 11.876,
- "new_tests_per_thousand": 0.363,
- "new_tests_smoothed": 15607.0,
- "new_tests_smoothed_per_thousand": 0.307,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-06-22",
- "total_cases": 68652.0,
- "new_cases": 3019.0,
- "new_cases_smoothed": 2530.429,
- "total_deaths": 2237.0,
- "new_deaths": 111.0,
- "new_deaths_smoothed": 81.429,
- "total_cases_per_million": 1349.216,
- "new_cases_per_million": 59.332,
- "new_cases_smoothed_per_million": 49.73,
- "total_deaths_per_million": 43.964,
- "new_deaths_per_million": 2.181,
- "new_deaths_smoothed_per_million": 1.6,
- "new_tests": 16015.0,
- "total_tests": 620288.0,
- "total_tests_per_thousand": 12.191,
- "new_tests_per_thousand": 0.315,
- "new_tests_smoothed": 16100.0,
- "new_tests_smoothed_per_thousand": 0.316,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-06-23",
- "total_cases": 71183.0,
- "new_cases": 2531.0,
- "new_cases_smoothed": 2588.571,
- "total_deaths": 2310.0,
- "new_deaths": 73.0,
- "new_deaths_smoothed": 83.429,
- "total_cases_per_million": 1398.958,
- "new_cases_per_million": 49.742,
- "new_cases_smoothed_per_million": 50.873,
- "total_deaths_per_million": 45.398,
- "new_deaths_per_million": 1.435,
- "new_deaths_smoothed_per_million": 1.64,
- "new_tests": 14323.0,
- "total_tests": 634611.0,
- "total_tests_per_thousand": 12.472,
- "new_tests_per_thousand": 0.281,
- "new_tests_smoothed": 16374.0,
- "new_tests_smoothed_per_thousand": 0.322,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-06-24",
- "total_cases": 73572.0,
- "new_cases": 2389.0,
- "new_cases_smoothed": 2663.0,
- "total_deaths": 2404.0,
- "new_deaths": 94.0,
- "new_deaths_smoothed": 86.143,
- "total_cases_per_million": 1445.909,
- "new_cases_per_million": 46.951,
- "new_cases_smoothed_per_million": 52.336,
- "total_deaths_per_million": 47.246,
- "new_deaths_per_million": 1.847,
- "new_deaths_smoothed_per_million": 1.693,
- "new_tests": 16981.0,
- "total_tests": 651592.0,
- "total_tests_per_thousand": 12.806,
- "new_tests_per_thousand": 0.334,
- "new_tests_smoothed": 16625.0,
- "new_tests_smoothed_per_thousand": 0.327,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-06-25",
- "total_cases": 77113.0,
- "new_cases": 3541.0,
- "new_cases_smoothed": 2866.714,
- "total_deaths": 2491.0,
- "new_deaths": 87.0,
- "new_deaths_smoothed": 89.571,
- "total_cases_per_million": 1515.5,
- "new_cases_per_million": 69.591,
- "new_cases_smoothed_per_million": 56.339,
- "total_deaths_per_million": 48.956,
- "new_deaths_per_million": 1.71,
- "new_deaths_smoothed_per_million": 1.76,
- "new_tests": 18501.0,
- "total_tests": 670093.0,
- "total_tests_per_thousand": 13.169,
- "new_tests_per_thousand": 0.364,
- "new_tests_smoothed": 17069.0,
- "new_tests_smoothed_per_thousand": 0.335,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-06-26",
- "total_cases": 80599.0,
- "new_cases": 3486.0,
- "new_cases_smoothed": 2911.714,
- "total_deaths": 2654.0,
- "new_deaths": 163.0,
- "new_deaths_smoothed": 100.571,
- "total_cases_per_million": 1584.01,
- "new_cases_per_million": 68.51,
- "new_cases_smoothed_per_million": 57.224,
- "total_deaths_per_million": 52.159,
- "new_deaths_per_million": 3.203,
- "new_deaths_smoothed_per_million": 1.977,
- "new_tests": 18866.0,
- "total_tests": 688959.0,
- "total_tests_per_thousand": 13.54,
- "new_tests_per_thousand": 0.371,
- "new_tests_smoothed": 17234.0,
- "new_tests_smoothed_per_thousand": 0.339,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-06-27",
- "total_cases": 84442.0,
- "new_cases": 3843.0,
- "new_cases_smoothed": 3023.714,
- "total_deaths": 2811.0,
- "new_deaths": 157.0,
- "new_deaths_smoothed": 109.429,
- "total_cases_per_million": 1659.536,
- "new_cases_per_million": 75.526,
- "new_cases_smoothed_per_million": 59.425,
- "total_deaths_per_million": 55.245,
- "new_deaths_per_million": 3.086,
- "new_deaths_smoothed_per_million": 2.151,
- "new_tests": 18729.0,
- "total_tests": 707688.0,
- "total_tests_per_thousand": 13.908,
- "new_tests_per_thousand": 0.368,
- "new_tests_smoothed": 17409.0,
- "new_tests_smoothed_per_thousand": 0.342,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-06-28",
- "total_cases": 88591.0,
- "new_cases": 4149.0,
- "new_cases_smoothed": 3279.714,
- "total_deaths": 2939.0,
- "new_deaths": 128.0,
- "new_deaths_smoothed": 116.143,
- "total_cases_per_million": 1741.077,
- "new_cases_per_million": 81.54,
- "new_cases_smoothed_per_million": 64.456,
- "total_deaths_per_million": 57.76,
- "new_deaths_per_million": 2.516,
- "new_deaths_smoothed_per_million": 2.283,
- "new_tests": 18140.0,
- "total_tests": 725828.0,
- "total_tests_per_thousand": 14.265,
- "new_tests_per_thousand": 0.357,
- "new_tests_smoothed": 17365.0,
- "new_tests_smoothed_per_thousand": 0.341,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-06-29",
- "total_cases": 91769.0,
- "new_cases": 3178.0,
- "new_cases_smoothed": 3302.429,
- "total_deaths": 3106.0,
- "new_deaths": 167.0,
- "new_deaths_smoothed": 124.143,
- "total_cases_per_million": 1803.534,
- "new_cases_per_million": 62.457,
- "new_cases_smoothed_per_million": 64.903,
- "total_deaths_per_million": 61.042,
- "new_deaths_per_million": 3.282,
- "new_deaths_smoothed_per_million": 2.44,
- "new_tests": 17609.0,
- "total_tests": 743437.0,
- "total_tests_per_thousand": 14.611,
- "new_tests_per_thousand": 0.346,
- "new_tests_smoothed": 17593.0,
- "new_tests_smoothed_per_thousand": 0.346,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-06-30",
- "total_cases": 95043.0,
- "new_cases": 3274.0,
- "new_cases_smoothed": 3408.571,
- "total_deaths": 3223.0,
- "new_deaths": 117.0,
- "new_deaths_smoothed": 130.429,
- "total_cases_per_million": 1867.878,
- "new_cases_per_million": 64.344,
- "new_cases_smoothed_per_million": 66.989,
- "total_deaths_per_million": 63.342,
- "new_deaths_per_million": 2.299,
- "new_deaths_smoothed_per_million": 2.563,
- "new_tests": 17282.0,
- "total_tests": 760719.0,
- "total_tests_per_thousand": 14.95,
- "new_tests_per_thousand": 0.34,
- "new_tests_smoothed": 18015.0,
- "new_tests_smoothed_per_thousand": 0.354,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-07-01",
- "total_cases": 97846.0,
- "new_cases": 2803.0,
- "new_cases_smoothed": 3467.714,
- "total_deaths": 3334.0,
- "new_deaths": 111.0,
- "new_deaths_smoothed": 132.857,
- "total_cases_per_million": 1922.965,
- "new_cases_per_million": 55.087,
- "new_cases_smoothed_per_million": 68.151,
- "total_deaths_per_million": 65.523,
- "new_deaths_per_million": 2.181,
- "new_deaths_smoothed_per_million": 2.611,
- "new_tests": 18054.0,
- "total_tests": 778773.0,
- "total_tests_per_thousand": 15.305,
- "new_tests_per_thousand": 0.355,
- "new_tests_smoothed": 18169.0,
- "new_tests_smoothed_per_thousand": 0.357,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-07-02",
- "total_cases": 102009.0,
- "new_cases": 4163.0,
- "new_cases_smoothed": 3556.571,
- "total_deaths": 3470.0,
- "new_deaths": 136.0,
- "new_deaths_smoothed": 139.857,
- "total_cases_per_million": 2004.78,
- "new_cases_per_million": 81.815,
- "new_cases_smoothed_per_million": 69.897,
- "total_deaths_per_million": 68.196,
- "new_deaths_per_million": 2.673,
- "new_deaths_smoothed_per_million": 2.749,
- "new_tests": 19335.0,
- "total_tests": 798108.0,
- "total_tests_per_thousand": 15.685,
- "new_tests_per_thousand": 0.38,
- "new_tests_smoothed": 18288.0,
- "new_tests_smoothed_per_thousand": 0.359,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-07-03",
- "total_cases": 106110.0,
- "new_cases": 4101.0,
- "new_cases_smoothed": 3644.429,
- "total_deaths": 3641.0,
- "new_deaths": 171.0,
- "new_deaths_smoothed": 141.0,
- "total_cases_per_million": 2085.377,
- "new_cases_per_million": 80.597,
- "new_cases_smoothed_per_million": 71.624,
- "total_deaths_per_million": 71.556,
- "new_deaths_per_million": 3.361,
- "new_deaths_smoothed_per_million": 2.771,
- "new_tests": 20595.0,
- "total_tests": 818703.0,
- "total_tests_per_thousand": 16.09,
- "new_tests_per_thousand": 0.405,
- "new_tests_smoothed": 18535.0,
- "new_tests_smoothed_per_thousand": 0.364,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-07-04",
- "total_cases": 109505.0,
- "new_cases": 3395.0,
- "new_cases_smoothed": 3580.429,
- "total_deaths": 3777.0,
- "new_deaths": 136.0,
- "new_deaths_smoothed": 138.0,
- "total_cases_per_million": 2152.099,
- "new_cases_per_million": 66.722,
- "new_cases_smoothed_per_million": 70.366,
- "total_deaths_per_million": 74.229,
- "new_deaths_per_million": 2.673,
- "new_deaths_smoothed_per_million": 2.712,
- "new_tests": 21028.0,
- "total_tests": 839731.0,
- "total_tests_per_thousand": 16.503,
- "new_tests_per_thousand": 0.413,
- "new_tests_smoothed": 18863.0,
- "new_tests_smoothed_per_thousand": 0.371,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-07-05",
- "total_cases": 113389.0,
- "new_cases": 3884.0,
- "new_cases_smoothed": 3542.571,
- "total_deaths": 3942.0,
- "new_deaths": 165.0,
- "new_deaths_smoothed": 143.286,
- "total_cases_per_million": 2228.431,
- "new_cases_per_million": 76.332,
- "new_cases_smoothed_per_million": 69.622,
- "total_deaths_per_million": 77.472,
- "new_deaths_per_million": 3.243,
- "new_deaths_smoothed_per_million": 2.816,
- "new_tests": 21000.0,
- "total_tests": 860731.0,
- "total_tests_per_thousand": 16.916,
- "new_tests_per_thousand": 0.413,
- "new_tests_smoothed": 19272.0,
- "new_tests_smoothed_per_thousand": 0.379,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-07-06",
- "total_cases": 117110.0,
- "new_cases": 3721.0,
- "new_cases_smoothed": 3620.143,
- "total_deaths": 4064.0,
- "new_deaths": 122.0,
- "new_deaths_smoothed": 136.857,
- "total_cases_per_million": 2301.56,
- "new_cases_per_million": 73.129,
- "new_cases_smoothed_per_million": 71.147,
- "total_deaths_per_million": 79.87,
- "new_deaths_per_million": 2.398,
- "new_deaths_smoothed_per_million": 2.69,
- "new_tests": 20459.0,
- "total_tests": 881190.0,
- "total_tests_per_thousand": 17.318,
- "new_tests_per_thousand": 0.402,
- "new_tests_smoothed": 19679.0,
- "new_tests_smoothed_per_thousand": 0.387,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-07-07",
- "total_cases": 120281.0,
- "new_cases": 3171.0,
- "new_cases_smoothed": 3605.429,
- "total_deaths": 4210.0,
- "new_deaths": 146.0,
- "new_deaths_smoothed": 141.0,
- "total_cases_per_million": 2363.879,
- "new_cases_per_million": 62.32,
- "new_cases_smoothed_per_million": 70.857,
- "total_deaths_per_million": 82.739,
- "new_deaths_per_million": 2.869,
- "new_deaths_smoothed_per_million": 2.771,
- "new_tests": 21115.0,
- "total_tests": 902305.0,
- "total_tests_per_thousand": 17.733,
- "new_tests_per_thousand": 0.415,
- "new_tests_smoothed": 20227.0,
- "new_tests_smoothed_per_thousand": 0.398,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-07-08",
- "total_cases": 124494.0,
- "new_cases": 4213.0,
- "new_cases_smoothed": 3806.857,
- "total_deaths": 4359.0,
- "new_deaths": 149.0,
- "new_deaths_smoothed": 146.429,
- "total_cases_per_million": 2446.677,
- "new_cases_per_million": 82.798,
- "new_cases_smoothed_per_million": 74.816,
- "total_deaths_per_million": 85.667,
- "new_deaths_per_million": 2.928,
- "new_deaths_smoothed_per_million": 2.878,
- "new_tests": 21409.0,
- "total_tests": 923714.0,
- "total_tests_per_thousand": 18.154,
- "new_tests_per_thousand": 0.421,
- "new_tests_smoothed": 20706.0,
- "new_tests_smoothed_per_thousand": 0.407,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-07-09",
- "total_cases": 128638.0,
- "new_cases": 4144.0,
- "new_cases_smoothed": 3804.143,
- "total_deaths": 4527.0,
- "new_deaths": 168.0,
- "new_deaths_smoothed": 151.0,
- "total_cases_per_million": 2528.119,
- "new_cases_per_million": 81.442,
- "new_cases_smoothed_per_million": 74.763,
- "total_deaths_per_million": 88.969,
- "new_deaths_per_million": 3.302,
- "new_deaths_smoothed_per_million": 2.968,
- "new_tests": 21526.0,
- "total_tests": 945240.0,
- "total_tests_per_thousand": 18.577,
- "new_tests_per_thousand": 0.423,
- "new_tests_smoothed": 21019.0,
- "new_tests_smoothed_per_thousand": 0.413,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-07-10",
- "total_cases": 133973.0,
- "new_cases": 5335.0,
- "new_cases_smoothed": 3980.429,
- "total_deaths": 4714.0,
- "new_deaths": 187.0,
- "new_deaths_smoothed": 153.286,
- "total_cases_per_million": 2632.968,
- "new_cases_per_million": 104.849,
- "new_cases_smoothed_per_million": 78.227,
- "total_deaths_per_million": 92.644,
- "new_deaths_per_million": 3.675,
- "new_deaths_smoothed_per_million": 3.013,
- "new_tests": 23225.0,
- "total_tests": 968465.0,
- "total_tests_per_thousand": 19.033,
- "new_tests_per_thousand": 0.456,
- "new_tests_smoothed": 21395.0,
- "new_tests_smoothed_per_thousand": 0.42,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-07-11",
- "total_cases": 140776.0,
- "new_cases": 6803.0,
- "new_cases_smoothed": 4467.286,
- "total_deaths": 4925.0,
- "new_deaths": 211.0,
- "new_deaths_smoothed": 164.0,
- "total_cases_per_million": 2766.667,
- "new_cases_per_million": 133.699,
- "new_cases_smoothed_per_million": 87.795,
- "total_deaths_per_million": 96.791,
- "new_deaths_per_million": 4.147,
- "new_deaths_smoothed_per_million": 3.223,
- "new_tests": 37628.0,
- "total_tests": 1006093.0,
- "total_tests_per_thousand": 19.773,
- "new_tests_per_thousand": 0.74,
- "new_tests_smoothed": 23766.0,
- "new_tests_smoothed_per_thousand": 0.467,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-07-12",
- "total_cases": 145362.0,
- "new_cases": 4586.0,
- "new_cases_smoothed": 4567.571,
- "total_deaths": 5119.0,
- "new_deaths": 194.0,
- "new_deaths_smoothed": 168.143,
- "total_cases_per_million": 2856.796,
- "new_cases_per_million": 90.129,
- "new_cases_smoothed_per_million": 89.766,
- "total_deaths_per_million": 100.604,
- "new_deaths_per_million": 3.813,
- "new_deaths_smoothed_per_million": 3.305,
- "new_tests": 25137.0,
- "total_tests": 1031230.0,
- "total_tests_per_thousand": 20.267,
- "new_tests_per_thousand": 0.494,
- "new_tests_smoothed": 24357.0,
- "new_tests_smoothed_per_thousand": 0.479,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-07-13",
- "total_cases": 150445.0,
- "new_cases": 5083.0,
- "new_cases_smoothed": 4762.143,
- "total_deaths": 5307.0,
- "new_deaths": 188.0,
- "new_deaths_smoothed": 177.571,
- "total_cases_per_million": 2956.692,
- "new_cases_per_million": 99.896,
- "new_cases_smoothed_per_million": 93.59,
- "total_deaths_per_million": 104.298,
- "new_deaths_per_million": 3.695,
- "new_deaths_smoothed_per_million": 3.49,
- "new_tests": 25584.0,
- "total_tests": 1056814.0,
- "total_tests_per_thousand": 20.77,
- "new_tests_per_thousand": 0.503,
- "new_tests_smoothed": 25089.0,
- "new_tests_smoothed_per_thousand": 0.493,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-07-14",
- "total_cases": 154227.0,
- "new_cases": 3782.0,
- "new_cases_smoothed": 4849.429,
- "total_deaths": 5455.0,
- "new_deaths": 148.0,
- "new_deaths_smoothed": 177.857,
- "total_cases_per_million": 3031.019,
- "new_cases_per_million": 74.328,
- "new_cases_smoothed_per_million": 95.306,
- "total_deaths_per_million": 107.207,
- "new_deaths_per_million": 2.909,
- "new_deaths_smoothed_per_million": 3.495,
- "new_tests": 25601.0,
- "total_tests": 1082415.0,
- "total_tests_per_thousand": 21.273,
- "new_tests_per_thousand": 0.503,
- "new_tests_smoothed": 25730.0,
- "new_tests_smoothed_per_thousand": 0.506,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-07-15",
- "total_cases": 159898.0,
- "new_cases": 5671.0,
- "new_cases_smoothed": 5057.714,
- "total_deaths": 5625.0,
- "new_deaths": 170.0,
- "new_deaths_smoothed": 180.857,
- "total_cases_per_million": 3142.471,
- "new_cases_per_million": 111.452,
- "new_cases_smoothed_per_million": 99.399,
- "total_deaths_per_million": 110.548,
- "new_deaths_per_million": 3.341,
- "new_deaths_smoothed_per_million": 3.554,
- "new_tests": 25733.0,
- "total_tests": 1108148.0,
- "total_tests_per_thousand": 21.778,
- "new_tests_per_thousand": 0.506,
- "new_tests_smoothed": 26348.0,
- "new_tests_smoothed_per_thousand": 0.518,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-07-16",
- "total_cases": 165169.0,
- "new_cases": 5271.0,
- "new_cases_smoothed": 5218.714,
- "total_deaths": 5814.0,
- "new_deaths": 189.0,
- "new_deaths_smoothed": 183.857,
- "total_cases_per_million": 3246.062,
- "new_cases_per_million": 103.591,
- "new_cases_smoothed_per_million": 102.563,
- "total_deaths_per_million": 114.262,
- "new_deaths_per_million": 3.714,
- "new_deaths_smoothed_per_million": 3.613,
- "new_tests": 25359.0,
- "total_tests": 1133507.0,
- "total_tests_per_thousand": 22.277,
- "new_tests_per_thousand": 0.498,
- "new_tests_smoothed": 26895.0,
- "new_tests_smoothed_per_thousand": 0.529,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-07-17",
- "total_cases": 173206.0,
- "new_cases": 8037.0,
- "new_cases_smoothed": 5604.714,
- "total_deaths": 6029.0,
- "new_deaths": 215.0,
- "new_deaths_smoothed": 187.857,
- "total_cases_per_million": 3404.013,
- "new_cases_per_million": 157.951,
- "new_cases_smoothed_per_million": 110.149,
- "total_deaths_per_million": 118.488,
- "new_deaths_per_million": 4.225,
- "new_deaths_smoothed_per_million": 3.692,
- "new_tests": 26055.0,
- "total_tests": 1159562.0,
- "total_tests_per_thousand": 22.789,
- "new_tests_per_thousand": 0.512,
- "new_tests_smoothed": 27300.0,
- "new_tests_smoothed_per_thousand": 0.537,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-07-18",
- "total_cases": 182140.0,
- "new_cases": 8934.0,
- "new_cases_smoothed": 5909.143,
- "total_deaths": 6288.0,
- "new_deaths": 259.0,
- "new_deaths_smoothed": 194.714,
- "total_cases_per_million": 3579.593,
- "new_cases_per_million": 175.58,
- "new_cases_smoothed_per_million": 116.132,
- "total_deaths_per_million": 123.578,
- "new_deaths_per_million": 5.09,
- "new_deaths_smoothed_per_million": 3.827,
- "new_tests": 26422.0,
- "total_tests": 1185984.0,
- "total_tests_per_thousand": 23.308,
- "new_tests_per_thousand": 0.519,
- "new_tests_smoothed": 25699.0,
- "new_tests_smoothed_per_thousand": 0.505,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-07-19",
- "total_cases": 190700.0,
- "new_cases": 8560.0,
- "new_cases_smoothed": 6476.857,
- "total_deaths": 6516.0,
- "new_deaths": 228.0,
- "new_deaths_smoothed": 199.571,
- "total_cases_per_million": 3747.822,
- "new_cases_per_million": 168.229,
- "new_cases_smoothed_per_million": 127.29,
- "total_deaths_per_million": 128.059,
- "new_deaths_per_million": 4.481,
- "new_deaths_smoothed_per_million": 3.922,
- "new_tests": 24079.0,
- "total_tests": 1210063.0,
- "total_tests_per_thousand": 23.781,
- "new_tests_per_thousand": 0.473,
- "new_tests_smoothed": 25548.0,
- "new_tests_smoothed_per_thousand": 0.502,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-07-20",
- "total_cases": 197278.0,
- "new_cases": 6578.0,
- "new_cases_smoothed": 6690.429,
- "total_deaths": 6736.0,
- "new_deaths": 220.0,
- "new_deaths_smoothed": 204.143,
- "total_cases_per_million": 3877.099,
- "new_cases_per_million": 129.277,
- "new_cases_smoothed_per_million": 131.487,
- "total_deaths_per_million": 132.382,
- "new_deaths_per_million": 4.324,
- "new_deaths_smoothed_per_million": 4.012,
- "new_tests": 26473.0,
- "total_tests": 1236536.0,
- "total_tests_per_thousand": 24.302,
- "new_tests_per_thousand": 0.52,
- "new_tests_smoothed": 25675.0,
- "new_tests_smoothed_per_thousand": 0.505,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-07-21",
- "total_cases": 204005.0,
- "new_cases": 6727.0,
- "new_cases_smoothed": 7111.143,
- "total_deaths": 6929.0,
- "new_deaths": 193.0,
- "new_deaths_smoothed": 210.571,
- "total_cases_per_million": 4009.305,
- "new_cases_per_million": 132.206,
- "new_cases_smoothed_per_million": 139.755,
- "total_deaths_per_million": 136.175,
- "new_deaths_per_million": 3.793,
- "new_deaths_smoothed_per_million": 4.138,
- "new_tests": 27164.0,
- "total_tests": 1263700.0,
- "total_tests_per_thousand": 24.835,
- "new_tests_per_thousand": 0.534,
- "new_tests_smoothed": 25898.0,
- "new_tests_smoothed_per_thousand": 0.509,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-07-22",
- "total_cases": 211038.0,
- "new_cases": 7033.0,
- "new_cases_smoothed": 7305.714,
- "total_deaths": 7166.0,
- "new_deaths": 237.0,
- "new_deaths_smoothed": 220.143,
- "total_cases_per_million": 4147.524,
- "new_cases_per_million": 138.219,
- "new_cases_smoothed_per_million": 143.579,
- "total_deaths_per_million": 140.833,
- "new_deaths_per_million": 4.658,
- "new_deaths_smoothed_per_million": 4.326,
- "new_tests": 28801.0,
- "total_tests": 1292501.0,
- "total_tests_per_thousand": 25.401,
- "new_tests_per_thousand": 0.566,
- "new_tests_smoothed": 26336.0,
- "new_tests_smoothed_per_thousand": 0.518,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-07-23",
- "total_cases": 218428.0,
- "new_cases": 7390.0,
- "new_cases_smoothed": 7608.429,
- "total_deaths": 7373.0,
- "new_deaths": 207.0,
- "new_deaths_smoothed": 222.714,
- "total_cases_per_million": 4292.76,
- "new_cases_per_million": 145.235,
- "new_cases_smoothed_per_million": 149.528,
- "total_deaths_per_million": 144.901,
- "new_deaths_per_million": 4.068,
- "new_deaths_smoothed_per_million": 4.377,
- "new_tests": 28434.0,
- "total_tests": 1320935.0,
- "total_tests_per_thousand": 25.96,
- "new_tests_per_thousand": 0.559,
- "new_tests_smoothed": 26775.0,
- "new_tests_smoothed_per_thousand": 0.526,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-07-24",
- "total_cases": 226373.0,
- "new_cases": 7945.0,
- "new_cases_smoothed": 7595.286,
- "total_deaths": 7688.0,
- "new_deaths": 315.0,
- "new_deaths_smoothed": 237.0,
- "total_cases_per_million": 4448.903,
- "new_cases_per_million": 156.143,
- "new_cases_smoothed_per_million": 149.27,
- "total_deaths_per_million": 151.092,
- "new_deaths_per_million": 6.191,
- "new_deaths_smoothed_per_million": 4.658,
- "new_tests": 28567.0,
- "total_tests": 1349502.0,
- "total_tests_per_thousand": 26.522,
- "new_tests_per_thousand": 0.561,
- "new_tests_smoothed": 27134.0,
- "new_tests_smoothed_per_thousand": 0.533,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-07-25",
- "total_cases": 233541.0,
- "new_cases": 7168.0,
- "new_cases_smoothed": 7343.0,
- "total_deaths": 7975.0,
- "new_deaths": 287.0,
- "new_deaths_smoothed": 241.0,
- "total_cases_per_million": 4589.775,
- "new_cases_per_million": 140.873,
- "new_cases_smoothed_per_million": 144.312,
- "total_deaths_per_million": 156.732,
- "new_deaths_per_million": 5.64,
- "new_deaths_smoothed_per_million": 4.736,
- "new_tests": 29541.0,
- "total_tests": 1379043.0,
- "total_tests_per_thousand": 27.102,
- "new_tests_per_thousand": 0.581,
- "new_tests_smoothed": 27580.0,
- "new_tests_smoothed_per_thousand": 0.542,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-07-26",
- "total_cases": 240795.0,
- "new_cases": 7254.0,
- "new_cases_smoothed": 7156.429,
- "total_deaths": 8269.0,
- "new_deaths": 294.0,
- "new_deaths_smoothed": 250.429,
- "total_cases_per_million": 4732.338,
- "new_cases_per_million": 142.563,
- "new_cases_smoothed_per_million": 140.645,
- "total_deaths_per_million": 162.51,
- "new_deaths_per_million": 5.778,
- "new_deaths_smoothed_per_million": 4.922,
- "new_tests": 30081.0,
- "total_tests": 1409124.0,
- "total_tests_per_thousand": 27.693,
- "new_tests_per_thousand": 0.591,
- "new_tests_smoothed": 28437.0,
- "new_tests_smoothed_per_thousand": 0.559,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-07-27",
- "total_cases": 248976.0,
- "new_cases": 8181.0,
- "new_cases_smoothed": 7385.429,
- "total_deaths": 8525.0,
- "new_deaths": 256.0,
- "new_deaths_smoothed": 255.571,
- "total_cases_per_million": 4893.119,
- "new_cases_per_million": 160.781,
- "new_cases_smoothed_per_million": 145.146,
- "total_deaths_per_million": 167.542,
- "new_deaths_per_million": 5.031,
- "new_deaths_smoothed_per_million": 5.023,
- "new_tests": 30312.0,
- "total_tests": 1439436.0,
- "total_tests_per_thousand": 28.289,
- "new_tests_per_thousand": 0.596,
- "new_tests_smoothed": 28986.0,
- "new_tests_smoothed_per_thousand": 0.57,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-07-28",
- "total_cases": 257101.0,
- "new_cases": 8125.0,
- "new_cases_smoothed": 7585.143,
- "total_deaths": 8777.0,
- "new_deaths": 252.0,
- "new_deaths_smoothed": 264.0,
- "total_cases_per_million": 5052.799,
- "new_cases_per_million": 159.68,
- "new_cases_smoothed_per_million": 149.071,
- "total_deaths_per_million": 172.494,
- "new_deaths_per_million": 4.953,
- "new_deaths_smoothed_per_million": 5.188,
- "new_tests": 31177.0,
- "total_tests": 1470613.0,
- "total_tests_per_thousand": 28.902,
- "new_tests_per_thousand": 0.613,
- "new_tests_smoothed": 29559.0,
- "new_tests_smoothed_per_thousand": 0.581,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-07-29",
- "total_cases": 267385.0,
- "new_cases": 10284.0,
- "new_cases_smoothed": 8049.571,
- "total_deaths": 9074.0,
- "new_deaths": 297.0,
- "new_deaths_smoothed": 272.571,
- "total_cases_per_million": 5254.91,
- "new_cases_per_million": 202.111,
- "new_cases_smoothed_per_million": 158.198,
- "total_deaths_per_million": 178.331,
- "new_deaths_per_million": 5.837,
- "new_deaths_smoothed_per_million": 5.357,
- "new_tests": 32196.0,
- "total_tests": 1502809.0,
- "total_tests_per_thousand": 29.535,
- "new_tests_per_thousand": 0.633,
- "new_tests_smoothed": 30044.0,
- "new_tests_smoothed_per_thousand": 0.59,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-07-30",
- "total_cases": 276055.0,
- "new_cases": 8670.0,
- "new_cases_smoothed": 8232.429,
- "total_deaths": 9454.0,
- "new_deaths": 380.0,
- "new_deaths_smoothed": 297.286,
- "total_cases_per_million": 5425.302,
- "new_cases_per_million": 170.391,
- "new_cases_smoothed_per_million": 161.792,
- "total_deaths_per_million": 185.799,
- "new_deaths_per_million": 7.468,
- "new_deaths_smoothed_per_million": 5.843,
- "new_tests": 34880.0,
- "total_tests": 1537689.0,
- "total_tests_per_thousand": 30.22,
- "new_tests_per_thousand": 0.685,
- "new_tests_smoothed": 30965.0,
- "new_tests_smoothed_per_thousand": 0.609,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-07-31",
- "total_cases": 286020.0,
- "new_cases": 9965.0,
- "new_cases_smoothed": 8521.0,
- "total_deaths": 9810.0,
- "new_deaths": 356.0,
- "new_deaths_smoothed": 303.143,
- "total_cases_per_million": 5621.144,
- "new_cases_per_million": 195.842,
- "new_cases_smoothed_per_million": 167.463,
- "total_deaths_per_million": 192.796,
- "new_deaths_per_million": 6.996,
- "new_deaths_smoothed_per_million": 5.958,
- "new_tests": 35990.0,
- "total_tests": 1573679.0,
- "total_tests_per_thousand": 30.927,
- "new_tests_per_thousand": 0.707,
- "new_tests_smoothed": 32025.0,
- "new_tests_smoothed_per_thousand": 0.629,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-08-01",
- "total_cases": 295508.0,
- "new_cases": 9488.0,
- "new_cases_smoothed": 8852.429,
- "total_deaths": 10105.0,
- "new_deaths": 295.0,
- "new_deaths_smoothed": 304.286,
- "total_cases_per_million": 5807.611,
- "new_cases_per_million": 186.467,
- "new_cases_smoothed_per_million": 173.977,
- "total_deaths_per_million": 198.593,
- "new_deaths_per_million": 5.798,
- "new_deaths_smoothed_per_million": 5.98,
- "new_tests": 36050.0,
- "total_tests": 1609729.0,
- "total_tests_per_thousand": 31.636,
- "new_tests_per_thousand": 0.708,
- "new_tests_smoothed": 32955.0,
- "new_tests_smoothed_per_thousand": 0.648,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-08-02",
- "total_cases": 306181.0,
- "new_cases": 10673.0,
- "new_cases_smoothed": 9340.857,
- "total_deaths": 10330.0,
- "new_deaths": 225.0,
- "new_deaths_smoothed": 294.429,
- "total_cases_per_million": 6017.367,
- "new_cases_per_million": 209.756,
- "new_cases_smoothed_per_million": 183.576,
- "total_deaths_per_million": 203.015,
- "new_deaths_per_million": 4.422,
- "new_deaths_smoothed_per_million": 5.786,
- "new_tests": 37666.0,
- "total_tests": 1647395.0,
- "total_tests_per_thousand": 32.376,
- "new_tests_per_thousand": 0.74,
- "new_tests_smoothed": 34039.0,
- "new_tests_smoothed_per_thousand": 0.669,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-08-03",
- "total_cases": 317651.0,
- "new_cases": 11470.0,
- "new_cases_smoothed": 9810.714,
- "total_deaths": 10650.0,
- "new_deaths": 320.0,
- "new_deaths_smoothed": 303.571,
- "total_cases_per_million": 6242.787,
- "new_cases_per_million": 225.42,
- "new_cases_smoothed_per_million": 192.81,
- "total_deaths_per_million": 209.304,
- "new_deaths_per_million": 6.289,
- "new_deaths_smoothed_per_million": 5.966,
- "new_tests": 38135.0,
- "total_tests": 1685530.0,
- "total_tests_per_thousand": 33.126,
- "new_tests_per_thousand": 0.749,
- "new_tests_smoothed": 35156.0,
- "new_tests_smoothed_per_thousand": 0.691,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-08-04",
- "total_cases": 327850.0,
- "new_cases": 10199.0,
- "new_cases_smoothed": 10107.0,
- "total_deaths": 11017.0,
- "new_deaths": 367.0,
- "new_deaths_smoothed": 320.0,
- "total_cases_per_million": 6443.228,
- "new_cases_per_million": 200.441,
- "new_cases_smoothed_per_million": 198.633,
- "total_deaths_per_million": 216.517,
- "new_deaths_per_million": 7.213,
- "new_deaths_smoothed_per_million": 6.289,
- "new_tests": 37978.0,
- "total_tests": 1723508.0,
- "total_tests_per_thousand": 33.872,
- "new_tests_per_thousand": 0.746,
- "new_tests_smoothed": 36128.0,
- "new_tests_smoothed_per_thousand": 0.71,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-08-05",
- "total_cases": 334979.0,
- "new_cases": 7129.0,
- "new_cases_smoothed": 9656.286,
- "total_deaths": 11315.0,
- "new_deaths": 298.0,
- "new_deaths_smoothed": 320.143,
- "total_cases_per_million": 6583.334,
- "new_cases_per_million": 140.106,
- "new_cases_smoothed_per_million": 189.775,
- "total_deaths_per_million": 222.373,
- "new_deaths_per_million": 5.857,
- "new_deaths_smoothed_per_million": 6.292,
- "new_tests": 38264.0,
- "total_tests": 1761772.0,
- "total_tests_per_thousand": 34.624,
- "new_tests_per_thousand": 0.752,
- "new_tests_smoothed": 36995.0,
- "new_tests_smoothed_per_thousand": 0.727,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-08-06",
- "total_cases": 345714.0,
- "new_cases": 10735.0,
- "new_cases_smoothed": 9951.286,
- "total_deaths": 11624.0,
- "new_deaths": 309.0,
- "new_deaths_smoothed": 310.0,
- "total_cases_per_million": 6794.308,
- "new_cases_per_million": 210.975,
- "new_cases_smoothed_per_million": 195.572,
- "total_deaths_per_million": 228.446,
- "new_deaths_per_million": 6.073,
- "new_deaths_smoothed_per_million": 6.092,
- "new_tests": 40063.0,
- "total_tests": 1801835.0,
- "total_tests_per_thousand": 35.411,
- "new_tests_per_thousand": 0.787,
- "new_tests_smoothed": 37735.0,
- "new_tests_smoothed_per_thousand": 0.742,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-08-07",
- "total_cases": 357710.0,
- "new_cases": 11996.0,
- "new_cases_smoothed": 10241.429,
- "total_deaths": 11939.0,
- "new_deaths": 315.0,
- "new_deaths_smoothed": 304.143,
- "total_cases_per_million": 7030.065,
- "new_cases_per_million": 235.757,
- "new_cases_smoothed_per_million": 201.275,
- "total_deaths_per_million": 234.637,
- "new_deaths_per_million": 6.191,
- "new_deaths_smoothed_per_million": 5.977,
- "new_tests": 40457.0,
- "total_tests": 1842292.0,
- "total_tests_per_thousand": 36.207,
- "new_tests_per_thousand": 0.795,
- "new_tests_smoothed": 38373.0,
- "new_tests_smoothed_per_thousand": 0.754,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-08-08",
- "total_cases": 367196.0,
- "new_cases": 9486.0,
- "new_cases_smoothed": 10241.143,
- "total_deaths": 12250.0,
- "new_deaths": 311.0,
- "new_deaths_smoothed": 306.429,
- "total_cases_per_million": 7216.493,
- "new_cases_per_million": 186.428,
- "new_cases_smoothed_per_million": 201.269,
- "total_deaths_per_million": 240.749,
- "new_deaths_per_million": 6.112,
- "new_deaths_smoothed_per_million": 6.022,
- "new_tests": 35076.0,
- "total_tests": 1877368.0,
- "total_tests_per_thousand": 36.896,
- "new_tests_per_thousand": 0.689,
- "new_tests_smoothed": 38234.0,
- "new_tests_smoothed_per_thousand": 0.751,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-08-09",
- "total_cases": 376870.0,
- "new_cases": 9674.0,
- "new_cases_smoothed": 10098.429,
- "total_deaths": 12540.0,
- "new_deaths": 290.0,
- "new_deaths_smoothed": 315.714,
- "total_cases_per_million": 7406.616,
- "new_cases_per_million": 190.123,
- "new_cases_smoothed_per_million": 198.464,
- "total_deaths_per_million": 246.448,
- "new_deaths_per_million": 5.699,
- "new_deaths_smoothed_per_million": 6.205,
- "new_tests": 31743.0,
- "total_tests": 1909111.0,
- "total_tests_per_thousand": 37.52,
- "new_tests_per_thousand": 0.624,
- "new_tests_smoothed": 37388.0,
- "new_tests_smoothed_per_thousand": 0.735,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-08-10",
- "total_cases": 387481.0,
- "new_cases": 10611.0,
- "new_cases_smoothed": 9975.714,
- "total_deaths": 12842.0,
- "new_deaths": 302.0,
- "new_deaths_smoothed": 313.143,
- "total_cases_per_million": 7615.154,
- "new_cases_per_million": 208.538,
- "new_cases_smoothed_per_million": 196.052,
- "total_deaths_per_million": 252.383,
- "new_deaths_per_million": 5.935,
- "new_deaths_smoothed_per_million": 6.154,
- "new_tests": 33619.0,
- "total_tests": 1942730.0,
- "total_tests_per_thousand": 38.18,
- "new_tests_per_thousand": 0.661,
- "new_tests_smoothed": 36743.0,
- "new_tests_smoothed_per_thousand": 0.722,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-08-11",
- "total_cases": 397623.0,
- "new_cases": 10142.0,
- "new_cases_smoothed": 9967.571,
- "total_deaths": 13154.0,
- "new_deaths": 312.0,
- "new_deaths_smoothed": 305.286,
- "total_cases_per_million": 7814.475,
- "new_cases_per_million": 199.32,
- "new_cases_smoothed_per_million": 195.892,
- "total_deaths_per_million": 258.515,
- "new_deaths_per_million": 6.132,
- "new_deaths_smoothed_per_million": 6.0,
- "new_tests": 40101.0,
- "total_tests": 1982831.0,
- "total_tests_per_thousand": 38.969,
- "new_tests_per_thousand": 0.788,
- "new_tests_smoothed": 37046.0,
- "new_tests_smoothed_per_thousand": 0.728,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-08-12",
- "total_cases": 410453.0,
- "new_cases": 12830.0,
- "new_cases_smoothed": 10782.0,
- "total_deaths": 13475.0,
- "new_deaths": 321.0,
- "new_deaths_smoothed": 308.571,
- "total_cases_per_million": 8066.622,
- "new_cases_per_million": 252.148,
- "new_cases_smoothed_per_million": 211.898,
- "total_deaths_per_million": 264.824,
- "new_deaths_per_million": 6.309,
- "new_deaths_smoothed_per_million": 6.064,
- "new_tests": 40425.0,
- "total_tests": 2023256.0,
- "total_tests_per_thousand": 39.763,
- "new_tests_per_thousand": 0.794,
- "new_tests_smoothed": 37355.0,
- "new_tests_smoothed_per_thousand": 0.734,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-08-13",
- "total_cases": 422519.0,
- "new_cases": 12066.0,
- "new_cases_smoothed": 10972.143,
- "total_deaths": 13837.0,
- "new_deaths": 362.0,
- "new_deaths_smoothed": 316.143,
- "total_cases_per_million": 8303.755,
- "new_cases_per_million": 237.133,
- "new_cases_smoothed_per_million": 215.635,
- "total_deaths_per_million": 271.938,
- "new_deaths_per_million": 7.114,
- "new_deaths_smoothed_per_million": 6.213,
- "new_tests": 40076.0,
- "total_tests": 2063332.0,
- "total_tests_per_thousand": 40.551,
- "new_tests_per_thousand": 0.788,
- "new_tests_smoothed": 37357.0,
- "new_tests_smoothed_per_thousand": 0.734,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-08-14",
- "total_cases": 433805.0,
- "new_cases": 11286.0,
- "new_cases_smoothed": 10870.714,
- "total_deaths": 14145.0,
- "new_deaths": 308.0,
- "new_deaths_smoothed": 315.143,
- "total_cases_per_million": 8525.558,
- "new_cases_per_million": 221.803,
- "new_cases_smoothed_per_million": 213.642,
- "total_deaths_per_million": 277.991,
- "new_deaths_per_million": 6.053,
- "new_deaths_smoothed_per_million": 6.193,
- "new_tests": 41434.0,
- "total_tests": 2104766.0,
- "total_tests_per_thousand": 41.365,
- "new_tests_per_thousand": 0.814,
- "new_tests_smoothed": 37496.0,
- "new_tests_smoothed_per_thousand": 0.737,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-08-15",
- "total_cases": 445111.0,
- "new_cases": 11306.0,
- "new_cases_smoothed": 11130.714,
- "total_deaths": 14492.0,
- "new_deaths": 347.0,
- "new_deaths_smoothed": 320.286,
- "total_cases_per_million": 8747.755,
- "new_cases_per_million": 222.197,
- "new_cases_smoothed_per_million": 218.752,
- "total_deaths_per_million": 284.811,
- "new_deaths_per_million": 6.82,
- "new_deaths_smoothed_per_million": 6.295,
- "new_tests": 38331.0,
- "total_tests": 2143097.0,
- "total_tests_per_thousand": 42.118,
- "new_tests_per_thousand": 0.753,
- "new_tests_smoothed": 37961.0,
- "new_tests_smoothed_per_thousand": 0.746,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-08-16",
- "total_cases": 456689.0,
- "new_cases": 11578.0,
- "new_cases_smoothed": 11402.714,
- "total_deaths": 14810.0,
- "new_deaths": 318.0,
- "new_deaths_smoothed": 324.286,
- "total_cases_per_million": 8975.297,
- "new_cases_per_million": 227.542,
- "new_cases_smoothed_per_million": 224.097,
- "total_deaths_per_million": 291.061,
- "new_deaths_per_million": 6.25,
- "new_deaths_smoothed_per_million": 6.373,
- "new_tests": 34892.0,
- "total_tests": 2177989.0,
- "total_tests_per_thousand": 42.804,
- "new_tests_per_thousand": 0.686,
- "new_tests_smoothed": 38411.0,
- "new_tests_smoothed_per_thousand": 0.755,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-08-17",
- "total_cases": 468332.0,
- "new_cases": 11643.0,
- "new_cases_smoothed": 11550.143,
- "total_deaths": 15097.0,
- "new_deaths": 287.0,
- "new_deaths_smoothed": 322.143,
- "total_cases_per_million": 9204.117,
- "new_cases_per_million": 228.82,
- "new_cases_smoothed_per_million": 226.995,
- "total_deaths_per_million": 296.701,
- "new_deaths_per_million": 5.64,
- "new_deaths_smoothed_per_million": 6.331,
- "new_tests": 32723.0,
- "total_tests": 2210712.0,
- "total_tests_per_thousand": 43.447,
- "new_tests_per_thousand": 0.643,
- "new_tests_smoothed": 38283.0,
- "new_tests_smoothed_per_thousand": 0.752,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-08-18",
- "total_cases": 476660.0,
- "new_cases": 8328.0,
- "new_cases_smoothed": 11291.0,
- "total_deaths": 15372.0,
- "new_deaths": 275.0,
- "new_deaths_smoothed": 316.857,
- "total_cases_per_million": 9367.787,
- "new_cases_per_million": 163.67,
- "new_cases_smoothed_per_million": 221.902,
- "total_deaths_per_million": 302.106,
- "new_deaths_per_million": 5.405,
- "new_deaths_smoothed_per_million": 6.227,
- "new_tests": 35883.0,
- "total_tests": 2246595.0,
- "total_tests_per_thousand": 44.152,
- "new_tests_per_thousand": 0.705,
- "new_tests_smoothed": 37681.0,
- "new_tests_smoothed_per_thousand": 0.741,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-08-19",
- "total_cases": 489122.0,
- "new_cases": 12462.0,
- "new_cases_smoothed": 11238.429,
- "total_deaths": 15619.0,
- "new_deaths": 247.0,
- "new_deaths_smoothed": 306.286,
- "total_cases_per_million": 9612.702,
- "new_cases_per_million": 244.915,
- "new_cases_smoothed_per_million": 220.869,
- "total_deaths_per_million": 306.96,
- "new_deaths_per_million": 4.854,
- "new_deaths_smoothed_per_million": 6.019,
- "new_tests": 30920.0,
- "total_tests": 2277515.0,
- "total_tests_per_thousand": 44.76,
- "new_tests_per_thousand": 0.608,
- "new_tests_smoothed": 36323.0,
- "new_tests_smoothed_per_thousand": 0.714,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-08-20",
- "total_cases": 502178.0,
- "new_cases": 13056.0,
- "new_cases_smoothed": 11379.857,
- "total_deaths": 15979.0,
- "new_deaths": 360.0,
- "new_deaths_smoothed": 306.0,
- "total_cases_per_million": 9869.291,
- "new_cases_per_million": 256.589,
- "new_cases_smoothed_per_million": 223.648,
- "total_deaths_per_million": 314.035,
- "new_deaths_per_million": 7.075,
- "new_deaths_smoothed_per_million": 6.014,
- "new_tests": 31932.0,
- "total_tests": 2309447.0,
- "total_tests_per_thousand": 45.388,
- "new_tests_per_thousand": 0.628,
- "new_tests_smoothed": 35159.0,
- "new_tests_smoothed_per_thousand": 0.691,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-08-21",
- "total_cases": 513719.0,
- "new_cases": 11541.0,
- "new_cases_smoothed": 11416.286,
- "total_deaths": 16183.0,
- "new_deaths": 204.0,
- "new_deaths_smoothed": 291.143,
- "total_cases_per_million": 10096.106,
- "new_cases_per_million": 226.815,
- "new_cases_smoothed_per_million": 224.364,
- "total_deaths_per_million": 318.044,
- "new_deaths_per_million": 4.009,
- "new_deaths_smoothed_per_million": 5.722,
- "new_tests": 30654.0,
- "total_tests": 2340101.0,
- "total_tests_per_thousand": 45.99,
- "new_tests_per_thousand": 0.602,
- "new_tests_smoothed": 33619.0,
- "new_tests_smoothed_per_thousand": 0.661,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-08-22",
- "total_cases": 522138.0,
- "new_cases": 8419.0,
- "new_cases_smoothed": 11003.857,
- "total_deaths": 16568.0,
- "new_deaths": 385.0,
- "new_deaths_smoothed": 296.571,
- "total_cases_per_million": 10261.565,
- "new_cases_per_million": 165.458,
- "new_cases_smoothed_per_million": 216.259,
- "total_deaths_per_million": 325.61,
- "new_deaths_per_million": 7.566,
- "new_deaths_smoothed_per_million": 5.829,
- "new_tests": 33967.0,
- "total_tests": 2374068.0,
- "total_tests_per_thousand": 46.657,
- "new_tests_per_thousand": 0.668,
- "new_tests_smoothed": 32996.0,
- "new_tests_smoothed_per_thousand": 0.648,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-08-23",
- "total_cases": 533103.0,
- "new_cases": 10965.0,
- "new_cases_smoothed": 10916.286,
- "total_deaths": 16968.0,
- "new_deaths": 400.0,
- "new_deaths_smoothed": 308.286,
- "total_cases_per_million": 10477.059,
- "new_cases_per_million": 215.495,
- "new_cases_smoothed_per_million": 214.537,
- "total_deaths_per_million": 333.472,
- "new_deaths_per_million": 7.861,
- "new_deaths_smoothed_per_million": 6.059,
- "new_tests": 22824.0,
- "total_tests": 2396892.0,
- "total_tests_per_thousand": 47.106,
- "new_tests_per_thousand": 0.449,
- "new_tests_smoothed": 31272.0,
- "new_tests_smoothed_per_thousand": 0.615,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-08-24",
- "total_cases": 541147.0,
- "new_cases": 8044.0,
- "new_cases_smoothed": 10402.143,
- "total_deaths": 17316.0,
- "new_deaths": 348.0,
- "new_deaths_smoothed": 317.0,
- "total_cases_per_million": 10635.148,
- "new_cases_per_million": 158.089,
- "new_cases_smoothed_per_million": 204.433,
- "total_deaths_per_million": 340.311,
- "new_deaths_per_million": 6.839,
- "new_deaths_smoothed_per_million": 6.23,
- "new_tests": 31049.0,
- "total_tests": 2427941.0,
- "total_tests_per_thousand": 47.716,
- "new_tests_per_thousand": 0.61,
- "new_tests_smoothed": 31033.0,
- "new_tests_smoothed_per_thousand": 0.61,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-08-25",
- "total_cases": 551696.0,
- "new_cases": 10549.0,
- "new_cases_smoothed": 10719.429,
- "total_deaths": 17612.0,
- "new_deaths": 296.0,
- "new_deaths_smoothed": 320.0,
- "total_cases_per_million": 10842.467,
- "new_cases_per_million": 207.319,
- "new_cases_smoothed_per_million": 210.669,
- "total_deaths_per_million": 346.128,
- "new_deaths_per_million": 5.817,
- "new_deaths_smoothed_per_million": 6.289,
- "new_tests": 30925.0,
- "total_tests": 2458866.0,
- "total_tests_per_thousand": 48.324,
- "new_tests_per_thousand": 0.608,
- "new_tests_smoothed": 30324.0,
- "new_tests_smoothed_per_thousand": 0.596,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-08-26",
- "total_cases": 562128.0,
- "new_cases": 10432.0,
- "new_cases_smoothed": 10429.429,
- "total_deaths": 17889.0,
- "new_deaths": 277.0,
- "new_deaths_smoothed": 324.286,
- "total_cases_per_million": 11047.487,
- "new_cases_per_million": 205.02,
- "new_cases_smoothed_per_million": 204.969,
- "total_deaths_per_million": 351.572,
- "new_deaths_per_million": 5.444,
- "new_deaths_smoothed_per_million": 6.373,
- "new_tests": 30564.0,
- "total_tests": 2489430.0,
- "total_tests_per_thousand": 48.925,
- "new_tests_per_thousand": 0.601,
- "new_tests_smoothed": 30274.0,
- "new_tests_smoothed_per_thousand": 0.595,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-08-27",
- "total_cases": 572270.0,
- "new_cases": 10142.0,
- "new_cases_smoothed": 10013.143,
- "total_deaths": 18184.0,
- "new_deaths": 295.0,
- "new_deaths_smoothed": 315.0,
- "total_cases_per_million": 11246.807,
- "new_cases_per_million": 199.32,
- "new_cases_smoothed_per_million": 196.788,
- "total_deaths_per_million": 357.37,
- "new_deaths_per_million": 5.798,
- "new_deaths_smoothed_per_million": 6.191,
- "new_tests": 30079.0,
- "total_tests": 2519509.0,
- "total_tests_per_thousand": 49.516,
- "new_tests_per_thousand": 0.591,
- "new_tests_smoothed": 30009.0,
- "new_tests_smoothed_per_thousand": 0.59,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-08-28",
- "total_cases": 582022.0,
- "new_cases": 9752.0,
- "new_cases_smoothed": 9757.571,
- "total_deaths": 18468.0,
- "new_deaths": 284.0,
- "new_deaths_smoothed": 326.429,
- "total_cases_per_million": 11438.463,
- "new_cases_per_million": 191.656,
- "new_cases_smoothed_per_million": 191.765,
- "total_deaths_per_million": 362.951,
- "new_deaths_per_million": 5.581,
- "new_deaths_smoothed_per_million": 6.415,
- "new_tests": 28349.0,
- "total_tests": 2547858.0,
- "total_tests_per_thousand": 50.073,
- "new_tests_per_thousand": 0.557,
- "new_tests_smoothed": 29680.0,
- "new_tests_smoothed_per_thousand": 0.583,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-08-29",
- "total_cases": 590520.0,
- "new_cases": 8498.0,
- "new_cases_smoothed": 9768.857,
- "total_deaths": 18767.0,
- "new_deaths": 299.0,
- "new_deaths_smoothed": 314.143,
- "total_cases_per_million": 11605.474,
- "new_cases_per_million": 167.011,
- "new_cases_smoothed_per_million": 191.987,
- "total_deaths_per_million": 368.827,
- "new_deaths_per_million": 5.876,
- "new_deaths_smoothed_per_million": 6.174,
- "new_tests": 24966.0,
- "total_tests": 2572824.0,
- "total_tests_per_thousand": 50.564,
- "new_tests_per_thousand": 0.491,
- "new_tests_smoothed": 28394.0,
- "new_tests_smoothed_per_thousand": 0.558,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-08-30",
- "total_cases": 599914.0,
- "new_cases": 9394.0,
- "new_cases_smoothed": 9544.429,
- "total_deaths": 19064.0,
- "new_deaths": 297.0,
- "new_deaths_smoothed": 299.429,
- "total_cases_per_million": 11790.094,
- "new_cases_per_million": 184.62,
- "new_cases_smoothed_per_million": 187.576,
- "total_deaths_per_million": 374.664,
- "new_deaths_per_million": 5.837,
- "new_deaths_smoothed_per_million": 5.885,
- "new_tests": 26879.0,
- "total_tests": 2599703.0,
- "total_tests_per_thousand": 51.092,
- "new_tests_per_thousand": 0.528,
- "new_tests_smoothed": 28973.0,
- "new_tests_smoothed_per_thousand": 0.569,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-08-31",
- "total_cases": 607938.0,
- "new_cases": 8024.0,
- "new_cases_smoothed": 9541.571,
- "total_deaths": 19364.0,
- "new_deaths": 300.0,
- "new_deaths_smoothed": 292.571,
- "total_cases_per_million": 11947.79,
- "new_cases_per_million": 157.695,
- "new_cases_smoothed_per_million": 187.52,
- "total_deaths_per_million": 380.56,
- "new_deaths_per_million": 5.896,
- "new_deaths_smoothed_per_million": 5.75,
- "new_tests": 25349.0,
- "total_tests": 2625052.0,
- "total_tests_per_thousand": 51.59,
- "new_tests_per_thousand": 0.498,
- "new_tests_smoothed": 28159.0,
- "new_tests_smoothed_per_thousand": 0.553,
- "tests_units": "samples tested",
- "stringency_index": 87.04
- },
- {
- "date": "2020-09-01",
- "total_cases": 615168.0,
- "new_cases": 7230.0,
- "new_cases_smoothed": 9067.429,
- "total_deaths": 19663.0,
- "new_deaths": 299.0,
- "new_deaths_smoothed": 293.0,
- "total_cases_per_million": 12089.881,
- "new_cases_per_million": 142.091,
- "new_cases_smoothed_per_million": 178.202,
- "total_deaths_per_million": 386.436,
- "new_deaths_per_million": 5.876,
- "new_deaths_smoothed_per_million": 5.758,
- "new_tests": 22650.0,
- "total_tests": 2647702.0,
- "total_tests_per_thousand": 52.035,
- "new_tests_per_thousand": 0.445,
- "new_tests_smoothed": 26977.0,
- "new_tests_smoothed_per_thousand": 0.53,
- "tests_units": "samples tested",
- "stringency_index": 62.04
- },
- {
- "date": "2020-09-02",
- "total_cases": 624069.0,
- "new_cases": 8901.0,
- "new_cases_smoothed": 8848.714,
- "total_deaths": 20052.0,
- "new_deaths": 389.0,
- "new_deaths_smoothed": 309.0,
- "total_cases_per_million": 12264.812,
- "new_cases_per_million": 174.931,
- "new_cases_smoothed_per_million": 173.904,
- "total_deaths_per_million": 394.081,
- "new_deaths_per_million": 7.645,
- "new_deaths_smoothed_per_million": 6.073,
- "new_tests": 28452.0,
- "total_tests": 2676154.0,
- "total_tests_per_thousand": 52.594,
- "new_tests_per_thousand": 0.559,
- "new_tests_smoothed": 26675.0,
- "new_tests_smoothed_per_thousand": 0.524,
- "tests_units": "samples tested",
- "stringency_index": 62.04
- },
- {
- "date": "2020-09-03",
- "total_cases": 633339.0,
- "new_cases": 9270.0,
- "new_cases_smoothed": 8724.143,
- "total_deaths": 20348.0,
- "new_deaths": 296.0,
- "new_deaths_smoothed": 309.143,
- "total_cases_per_million": 12446.995,
- "new_cases_per_million": 182.183,
- "new_cases_smoothed_per_million": 171.455,
- "total_deaths_per_million": 399.899,
- "new_deaths_per_million": 5.817,
- "new_deaths_smoothed_per_million": 6.076,
- "new_tests": 23735.0,
- "total_tests": 2699889.0,
- "total_tests_per_thousand": 53.061,
- "new_tests_per_thousand": 0.466,
- "new_tests_smoothed": 25769.0,
- "new_tests_smoothed_per_thousand": 0.506,
- "tests_units": "samples tested",
- "stringency_index": 62.04
- },
- {
- "date": "2020-09-04",
- "total_cases": 641574.0,
- "new_cases": 8235.0,
- "new_cases_smoothed": 8507.429,
- "total_deaths": 20618.0,
- "new_deaths": 270.0,
- "new_deaths_smoothed": 307.143,
- "total_cases_per_million": 12608.837,
- "new_cases_per_million": 161.842,
- "new_cases_smoothed_per_million": 167.196,
- "total_deaths_per_million": 405.205,
- "new_deaths_per_million": 5.306,
- "new_deaths_smoothed_per_million": 6.036,
- "new_tests": 28534.0,
- "total_tests": 2728423.0,
- "total_tests_per_thousand": 53.622,
- "new_tests_per_thousand": 0.561,
- "new_tests_smoothed": 25795.0,
- "new_tests_smoothed_per_thousand": 0.507,
- "tests_units": "samples tested",
- "stringency_index": 62.04
- },
- {
- "date": "2020-09-05",
- "total_cases": 650062.0,
- "new_cases": 8488.0,
- "new_cases_smoothed": 8506.0,
- "total_deaths": 20888.0,
- "new_deaths": 270.0,
- "new_deaths_smoothed": 303.0,
- "total_cases_per_million": 12775.652,
- "new_cases_per_million": 166.814,
- "new_cases_smoothed_per_million": 167.168,
- "total_deaths_per_million": 410.511,
- "new_deaths_per_million": 5.306,
- "new_deaths_smoothed_per_million": 5.955,
- "new_tests": 24609.0,
- "total_tests": 2753032.0,
- "total_tests_per_thousand": 54.105,
- "new_tests_per_thousand": 0.484,
- "new_tests_smoothed": 25744.0,
- "new_tests_smoothed_per_thousand": 0.506,
- "tests_units": "samples tested",
- "stringency_index": 62.04
- },
- {
- "date": "2020-09-06",
- "total_cases": 658456.0,
- "new_cases": 8394.0,
- "new_cases_smoothed": 8363.143,
- "total_deaths": 21156.0,
- "new_deaths": 268.0,
- "new_deaths_smoothed": 298.857,
- "total_cases_per_million": 12940.619,
- "new_cases_per_million": 164.967,
- "new_cases_smoothed_per_million": 164.361,
- "total_deaths_per_million": 415.778,
- "new_deaths_per_million": 5.267,
- "new_deaths_smoothed_per_million": 5.873,
- "new_tests": 23112.0,
- "total_tests": 2776144.0,
- "total_tests_per_thousand": 54.559,
- "new_tests_per_thousand": 0.454,
- "new_tests_smoothed": 25206.0,
- "new_tests_smoothed_per_thousand": 0.495,
- "tests_units": "samples tested",
- "stringency_index": 62.04
- },
- {
- "date": "2020-09-07",
- "total_cases": 666521.0,
- "new_cases": 8065.0,
- "new_cases_smoothed": 8369.0,
- "total_deaths": 21412.0,
- "new_deaths": 256.0,
- "new_deaths_smoothed": 292.571,
- "total_cases_per_million": 13099.12,
- "new_cases_per_million": 158.501,
- "new_cases_smoothed_per_million": 164.476,
- "total_deaths_per_million": 420.809,
- "new_deaths_per_million": 5.031,
- "new_deaths_smoothed_per_million": 5.75,
- "new_tests": 21856.0,
- "total_tests": 2798000.0,
- "total_tests_per_thousand": 54.989,
- "new_tests_per_thousand": 0.43,
- "new_tests_smoothed": 24707.0,
- "new_tests_smoothed_per_thousand": 0.486,
- "tests_units": "samples tested",
- "stringency_index": 62.04
- },
- {
- "date": "2020-09-08",
- "total_cases": 671848.0,
- "new_cases": 5327.0,
- "new_cases_smoothed": 8097.143,
- "total_deaths": 21615.0,
- "new_deaths": 203.0,
- "new_deaths_smoothed": 278.857,
- "total_cases_per_million": 13203.811,
- "new_cases_per_million": 104.691,
- "new_cases_smoothed_per_million": 159.133,
- "total_deaths_per_million": 424.799,
- "new_deaths_per_million": 3.99,
- "new_deaths_smoothed_per_million": 5.48,
- "new_tests": 21479.0,
- "total_tests": 2819479.0,
- "total_tests_per_thousand": 55.411,
- "new_tests_per_thousand": 0.422,
- "new_tests_smoothed": 24540.0,
- "new_tests_smoothed_per_thousand": 0.482,
- "tests_units": "samples tested",
- "stringency_index": 62.04
- },
- {
- "date": "2020-09-09",
- "total_cases": 679513.0,
- "new_cases": 7665.0,
- "new_cases_smoothed": 7920.571,
- "total_deaths": 21817.0,
- "new_deaths": 202.0,
- "new_deaths_smoothed": 252.143,
- "total_cases_per_million": 13354.451,
- "new_cases_per_million": 150.64,
- "new_cases_smoothed_per_million": 155.663,
- "total_deaths_per_million": 428.769,
- "new_deaths_per_million": 3.97,
- "new_deaths_smoothed_per_million": 4.955,
- "new_tests": 24030.0,
- "total_tests": 2843509.0,
- "total_tests_per_thousand": 55.883,
- "new_tests_per_thousand": 0.472,
- "new_tests_smoothed": 23908.0,
- "new_tests_smoothed_per_thousand": 0.47,
- "tests_units": "samples tested",
- "stringency_index": 62.04
- },
- {
- "date": "2020-09-10",
- "total_cases": 686856.0,
- "new_cases": 7343.0,
- "new_cases_smoothed": 7645.286,
- "total_deaths": 22053.0,
- "new_deaths": 236.0,
- "new_deaths_smoothed": 243.571,
- "total_cases_per_million": 13498.763,
- "new_cases_per_million": 144.312,
- "new_cases_smoothed_per_million": 150.253,
- "total_deaths_per_million": 433.407,
- "new_deaths_per_million": 4.638,
- "new_deaths_smoothed_per_million": 4.787,
- "new_tests": 24782.0,
- "total_tests": 2868291.0,
- "total_tests_per_thousand": 56.37,
- "new_tests_per_thousand": 0.487,
- "new_tests_smoothed": 24057.0,
- "new_tests_smoothed_per_thousand": 0.473,
- "tests_units": "samples tested",
- "stringency_index": 62.04
- },
- {
- "date": "2020-09-11",
- "total_cases": 694664.0,
- "new_cases": 7808.0,
- "new_cases_smoothed": 7584.286,
- "total_deaths": 22275.0,
- "new_deaths": 222.0,
- "new_deaths_smoothed": 236.714,
- "total_cases_per_million": 13652.214,
- "new_cases_per_million": 153.45,
- "new_cases_smoothed_per_million": 149.054,
- "total_deaths_per_million": 437.77,
- "new_deaths_per_million": 4.363,
- "new_deaths_smoothed_per_million": 4.652,
- "new_tests": 28683.0,
- "total_tests": 2896974.0,
- "total_tests_per_thousand": 56.934,
- "new_tests_per_thousand": 0.564,
- "new_tests_smoothed": 24079.0,
- "new_tests_smoothed_per_thousand": 0.473,
- "tests_units": "samples tested",
- "stringency_index": 62.04
- },
- {
- "date": "2020-09-12",
- "total_cases": 702088.0,
- "new_cases": 7424.0,
- "new_cases_smoothed": 7432.286,
- "total_deaths": 22518.0,
- "new_deaths": 243.0,
- "new_deaths_smoothed": 232.857,
- "total_cases_per_million": 13798.117,
- "new_cases_per_million": 145.904,
- "new_cases_smoothed_per_million": 146.067,
- "total_deaths_per_million": 442.546,
- "new_deaths_per_million": 4.776,
- "new_deaths_smoothed_per_million": 4.576,
- "new_tests": 24370.0,
- "total_tests": 2921344.0,
- "total_tests_per_thousand": 57.413,
- "new_tests_per_thousand": 0.479,
- "new_tests_smoothed": 24045.0,
- "new_tests_smoothed_per_thousand": 0.473,
- "tests_units": "samples tested",
- "stringency_index": 62.04
- },
- {
- "date": "2020-09-13",
- "total_cases": 708964.0,
- "new_cases": 6876.0,
- "new_cases_smoothed": 7215.429,
- "total_deaths": 22734.0,
- "new_deaths": 216.0,
- "new_deaths_smoothed": 225.429,
- "total_cases_per_million": 13933.251,
- "new_cases_per_million": 135.134,
- "new_cases_smoothed_per_million": 141.805,
- "total_deaths_per_million": 446.791,
- "new_deaths_per_million": 4.245,
- "new_deaths_smoothed_per_million": 4.43,
- "new_tests": 26530.0,
- "total_tests": 2947874.0,
- "total_tests_per_thousand": 57.934,
- "new_tests_per_thousand": 0.521,
- "new_tests_smoothed": 24533.0,
- "new_tests_smoothed_per_thousand": 0.482,
- "tests_units": "samples tested",
- "stringency_index": 62.04
- },
- {
- "date": "2020-09-14",
- "total_cases": 716319.0,
- "new_cases": 7355.0,
- "new_cases_smoothed": 7114.0,
- "total_deaths": 22924.0,
- "new_deaths": 190.0,
- "new_deaths_smoothed": 216.0,
- "total_cases_per_million": 14077.799,
- "new_cases_per_million": 144.548,
- "new_cases_smoothed_per_million": 139.811,
- "total_deaths_per_million": 450.525,
- "new_deaths_per_million": 3.734,
- "new_deaths_smoothed_per_million": 4.245,
- "new_tests": 22386.0,
- "total_tests": 2970260.0,
- "total_tests_per_thousand": 58.374,
- "new_tests_per_thousand": 0.44,
- "new_tests_smoothed": 24609.0,
- "new_tests_smoothed_per_thousand": 0.484,
- "tests_units": "samples tested",
- "stringency_index": 62.04
- },
- {
- "date": "2020-09-15",
- "total_cases": 721892.0,
- "new_cases": 5573.0,
- "new_cases_smoothed": 7149.143,
- "total_deaths": 23123.0,
- "new_deaths": 199.0,
- "new_deaths_smoothed": 215.429,
- "total_cases_per_million": 14187.325,
- "new_cases_per_million": 109.526,
- "new_cases_smoothed_per_million": 140.502,
- "total_deaths_per_million": 454.436,
- "new_deaths_per_million": 3.911,
- "new_deaths_smoothed_per_million": 4.234,
- "new_tests": 23949.0,
- "total_tests": 2994209.0,
- "total_tests_per_thousand": 58.845,
- "new_tests_per_thousand": 0.471,
- "new_tests_smoothed": 24961.0,
- "new_tests_smoothed_per_thousand": 0.491,
- "tests_units": "samples tested",
- "stringency_index": 62.04
- },
- {
- "date": "2020-09-16",
- "total_cases": 728590.0,
- "new_cases": 6698.0,
- "new_cases_smoothed": 7011.0,
- "total_deaths": 23288.0,
- "new_deaths": 165.0,
- "new_deaths_smoothed": 210.143,
- "total_cases_per_million": 14318.96,
- "new_cases_per_million": 131.636,
- "new_cases_smoothed_per_million": 137.787,
- "total_deaths_per_million": 457.678,
- "new_deaths_per_million": 3.243,
- "new_deaths_smoothed_per_million": 4.13,
- "new_tests": 24737.0,
- "total_tests": 3018946.0,
- "total_tests_per_thousand": 59.331,
- "new_tests_per_thousand": 0.486,
- "new_tests_smoothed": 25062.0,
- "new_tests_smoothed_per_thousand": 0.493,
- "tests_units": "samples tested",
- "stringency_index": 62.04
- },
- {
- "date": "2020-09-17",
- "total_cases": 736377.0,
- "new_cases": 7787.0,
- "new_cases_smoothed": 7074.429,
- "total_deaths": 23478.0,
- "new_deaths": 190.0,
- "new_deaths_smoothed": 203.571,
- "total_cases_per_million": 14471.998,
- "new_cases_per_million": 153.038,
- "new_cases_smoothed_per_million": 139.034,
- "total_deaths_per_million": 461.413,
- "new_deaths_per_million": 3.734,
- "new_deaths_smoothed_per_million": 4.001,
- "new_tests": 24771.0,
- "total_tests": 3043717.0,
- "total_tests_per_thousand": 59.818,
- "new_tests_per_thousand": 0.487,
- "new_tests_smoothed": 25061.0,
- "new_tests_smoothed_per_thousand": 0.493,
- "tests_units": "samples tested",
- "stringency_index": 62.04
- },
- {
- "date": "2020-09-18",
- "total_cases": 743945.0,
- "new_cases": 7568.0,
- "new_cases_smoothed": 7040.143,
- "total_deaths": 23665.0,
- "new_deaths": 187.0,
- "new_deaths_smoothed": 198.571,
- "total_cases_per_million": 14620.732,
- "new_cases_per_million": 148.734,
- "new_cases_smoothed_per_million": 138.36,
- "total_deaths_per_million": 465.088,
- "new_deaths_per_million": 3.675,
- "new_deaths_smoothed_per_million": 3.903,
- "new_tests": 21673.0,
- "total_tests": 3065390.0,
- "total_tests_per_thousand": 60.244,
- "new_tests_per_thousand": 0.426,
- "new_tests_smoothed": 24059.0,
- "new_tests_smoothed_per_thousand": 0.473,
- "tests_units": "samples tested"
- },
- {
- "date": "2020-09-19",
- "total_cases": 750471.0,
- "new_cases": 6526.0,
- "new_cases_smoothed": 6911.857,
- "total_deaths": 23850.0,
- "new_deaths": 185.0,
- "new_deaths_smoothed": 190.286,
- "total_cases_per_million": 14748.987,
- "new_cases_per_million": 128.255,
- "new_cases_smoothed_per_million": 135.839,
- "total_deaths_per_million": 468.723,
- "new_deaths_per_million": 3.636,
- "new_deaths_smoothed_per_million": 3.74,
- "new_tests": 22386.0,
- "total_tests": 3087776.0,
- "total_tests_per_thousand": 60.684,
- "new_tests_per_thousand": 0.44,
- "new_tests_smoothed": 23776.0,
- "new_tests_smoothed_per_thousand": 0.467,
- "tests_units": "samples tested"
- },
- {
- "date": "2020-09-20",
- "total_cases": 758398.0,
- "new_cases": 7927.0,
- "new_cases_smoothed": 7062.0,
- "total_deaths": 24039.0,
- "new_deaths": 189.0,
- "new_deaths_smoothed": 186.429,
- "total_cases_per_million": 14904.776,
- "new_cases_per_million": 155.789,
- "new_cases_smoothed_per_million": 138.789,
- "total_deaths_per_million": 472.438,
- "new_deaths_per_million": 3.714,
- "new_deaths_smoothed_per_million": 3.664,
- "new_tests": 24691.0,
- "total_tests": 3112467.0,
- "total_tests_per_thousand": 61.169,
- "new_tests_per_thousand": 0.485,
- "new_tests_smoothed": 23513.0,
- "new_tests_smoothed_per_thousand": 0.462,
- "tests_units": "samples tested"
- },
- {
- "date": "2020-09-21",
- "total_cases": 765076.0,
- "new_cases": 6678.0,
- "new_cases_smoothed": 6965.286,
- "total_deaths": 24208.0,
- "new_deaths": 169.0,
- "new_deaths_smoothed": 183.429,
- "total_cases_per_million": 15036.019,
- "new_cases_per_million": 131.243,
- "new_cases_smoothed_per_million": 136.889,
- "total_deaths_per_million": 475.759,
- "new_deaths_per_million": 3.321,
- "new_deaths_smoothed_per_million": 3.605,
- "new_tests": 23776.0,
- "total_tests": 3136243.0,
- "total_tests_per_thousand": 61.637,
- "new_tests_per_thousand": 0.467,
- "new_tests_smoothed": 23712.0,
- "new_tests_smoothed_per_thousand": 0.466,
- "tests_units": "samples tested"
- },
- {
- "date": "2020-09-22",
- "total_cases": 770435.0,
- "new_cases": 5359.0,
- "new_cases_smoothed": 6934.714,
- "total_deaths": 24397.0,
- "new_deaths": 189.0,
- "new_deaths_smoothed": 182.0,
- "total_cases_per_million": 15141.339,
- "new_cases_per_million": 105.32,
- "new_cases_smoothed_per_million": 136.288,
- "total_deaths_per_million": 479.474,
- "new_deaths_per_million": 3.714,
- "new_deaths_smoothed_per_million": 3.577,
- "new_tests": 24348.0,
- "total_tests": 3160591.0,
- "total_tests_per_thousand": 62.115,
- "new_tests_per_thousand": 0.479,
- "new_tests_smoothed": 23769.0,
- "new_tests_smoothed_per_thousand": 0.467,
- "tests_units": "samples tested"
- },
- {
- "date": "2020-09-23",
- "total_cases": 777537.0,
- "new_cases": 7102.0,
- "new_cases_smoothed": 6992.429,
- "total_deaths": 24570.0,
- "new_deaths": 173.0,
- "new_deaths_smoothed": 183.143,
- "total_cases_per_million": 15280.915,
- "new_cases_per_million": 139.575,
- "new_cases_smoothed_per_million": 137.422,
- "total_deaths_per_million": 482.874,
- "new_deaths_per_million": 3.4,
- "new_deaths_smoothed_per_million": 3.599
- },
- {
- "date": "2020-09-24",
- "total_cases": 784268.0,
- "new_cases": 6731.0,
- "new_cases_smoothed": 6841.571,
- "total_deaths": 24746.0,
- "new_deaths": 176.0,
- "new_deaths_smoothed": 181.143,
- "total_cases_per_million": 15413.199,
- "new_cases_per_million": 132.284,
- "new_cases_smoothed_per_million": 134.457,
- "total_deaths_per_million": 486.332,
- "new_deaths_per_million": 3.459,
- "new_deaths_smoothed_per_million": 3.56
- },
- {
- "date": "2020-09-25",
- "total_cases": 790823.0,
- "new_cases": 6555.0,
- "new_cases_smoothed": 6696.857,
- "total_deaths": 24924.0,
- "new_deaths": 178.0,
- "new_deaths_smoothed": 179.857,
- "total_cases_per_million": 15542.024,
- "new_cases_per_million": 128.825,
- "new_cases_smoothed_per_million": 131.613,
- "total_deaths_per_million": 489.831,
- "new_deaths_per_million": 3.498,
- "new_deaths_smoothed_per_million": 3.535
- }
- ]
- },
- "COM": {
- "continent": "Africa",
- "location": "Comoros",
- "population": 869595.0,
- "population_density": 437.352,
- "median_age": 20.4,
- "aged_65_older": 2.963,
- "aged_70_older": 1.726,
- "gdp_per_capita": 1413.89,
- "extreme_poverty": 18.1,
- "cardiovasc_death_rate": 261.516,
- "diabetes_prevalence": 11.88,
- "female_smokers": 4.4,
- "male_smokers": 23.6,
- "handwashing_facilities": 15.574,
- "hospital_beds_per_thousand": 2.2,
- "life_expectancy": 64.32,
- "human_development_index": 0.503,
- "data": [
- {
- "date": "2020-05-02",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 1.15,
- "new_cases_per_million": 1.15,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-05-03",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 1.15,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-05-04",
- "total_cases": 3.0,
- "new_cases": 2.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 3.45,
- "new_cases_per_million": 2.3,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-05-05",
- "total_cases": 4.0,
- "new_cases": 1.0,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "total_cases_per_million": 4.6,
- "new_cases_per_million": 1.15,
- "total_deaths_per_million": 1.15,
- "new_deaths_per_million": 1.15
- },
- {
- "date": "2020-05-06",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 4.6,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 1.15,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-05-07",
- "total_cases": 8.0,
- "new_cases": 4.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 9.2,
- "new_cases_per_million": 4.6,
- "total_deaths_per_million": 1.15,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-05-08",
- "total_cases": 8.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 9.2,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.314,
- "total_deaths_per_million": 1.15,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.164
- },
- {
- "date": "2020-05-09",
- "total_cases": 8.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 9.2,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.15,
- "total_deaths_per_million": 1.15,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.164
- },
- {
- "date": "2020-05-10",
- "total_cases": 11.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 12.65,
- "new_cases_per_million": 3.45,
- "new_cases_smoothed_per_million": 1.643,
- "total_deaths_per_million": 1.15,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.164
- },
- {
- "date": "2020-05-11",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 12.65,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.314,
- "total_deaths_per_million": 1.15,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.164
- },
- {
- "date": "2020-05-12",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.65,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.15,
- "total_deaths_per_million": 1.15,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-13",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.65,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.15,
- "total_deaths_per_million": 1.15,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-14",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.65,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.493,
- "total_deaths_per_million": 1.15,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-15",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.65,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.493,
- "total_deaths_per_million": 1.15,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-16",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.65,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.493,
- "total_deaths_per_million": 1.15,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-17",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.65,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 1.15,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-18",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.65,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 1.15,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-19",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.65,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 1.15,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-20",
- "total_cases": 34.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 39.099,
- "new_cases_per_million": 26.449,
- "new_cases_smoothed_per_million": 3.778,
- "total_deaths_per_million": 1.15,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-21",
- "total_cases": 34.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 39.099,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.778,
- "total_deaths_per_million": 1.15,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-22",
- "total_cases": 34.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 39.099,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.778,
- "total_deaths_per_million": 1.15,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-23",
- "total_cases": 78.0,
- "new_cases": 44.0,
- "new_cases_smoothed": 9.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 89.697,
- "new_cases_per_million": 50.598,
- "new_cases_smoothed_per_million": 11.007,
- "total_deaths_per_million": 1.15,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-24",
- "total_cases": 78.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 9.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 89.697,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 11.007,
- "total_deaths_per_million": 1.15,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-25",
- "total_cases": 87.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 10.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 100.047,
- "new_cases_per_million": 10.35,
- "new_cases_smoothed_per_million": 12.485,
- "total_deaths_per_million": 1.15,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-26",
- "total_cases": 87.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 10.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 100.047,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 12.485,
- "total_deaths_per_million": 1.15,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-27",
- "total_cases": 87.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 100.047,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.707,
- "total_deaths_per_million": 1.15,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-28",
- "total_cases": 87.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.571,
- "total_deaths": 2.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 100.047,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.707,
- "total_deaths_per_million": 2.3,
- "new_deaths_per_million": 1.15,
- "new_deaths_smoothed_per_million": 0.164
- },
- {
- "date": "2020-05-29",
- "total_cases": 87.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.571,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 100.047,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.707,
- "total_deaths_per_million": 2.3,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.164
- },
- {
- "date": "2020-05-30",
- "total_cases": 87.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 100.047,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.479,
- "total_deaths_per_million": 2.3,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.164
- },
- {
- "date": "2020-05-31",
- "total_cases": 106.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 4.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 121.896,
- "new_cases_per_million": 21.849,
- "new_cases_smoothed_per_million": 4.6,
- "total_deaths_per_million": 2.3,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.164
- },
- {
- "date": "2020-06-01",
- "total_cases": 106.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 121.896,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.121,
- "total_deaths_per_million": 2.3,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.164
- },
- {
- "date": "2020-06-02",
- "total_cases": 106.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 121.896,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.121,
- "total_deaths_per_million": 2.3,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.164
- },
- {
- "date": "2020-06-03",
- "total_cases": 132.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 6.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 151.795,
- "new_cases_per_million": 29.899,
- "new_cases_smoothed_per_million": 7.393,
- "total_deaths_per_million": 2.3,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.164
- },
- {
- "date": "2020-06-04",
- "total_cases": 132.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 151.795,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.393,
- "total_deaths_per_million": 2.3,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-05",
- "total_cases": 132.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 151.795,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.393,
- "total_deaths_per_million": 2.3,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-06",
- "total_cases": 132.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 151.795,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.393,
- "total_deaths_per_million": 2.3,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-07",
- "total_cases": 141.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 5.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 162.144,
- "new_cases_per_million": 10.35,
- "new_cases_smoothed_per_million": 5.75,
- "total_deaths_per_million": 2.3,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-08",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 162.144,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.75,
- "total_deaths_per_million": 2.3,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-09",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 162.144,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.75,
- "total_deaths_per_million": 2.3,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-10",
- "total_cases": 162.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 4.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 186.294,
- "new_cases_per_million": 24.149,
- "new_cases_smoothed_per_million": 4.928,
- "total_deaths_per_million": 2.3,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-11",
- "total_cases": 162.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 186.294,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.928,
- "total_deaths_per_million": 2.3,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-12",
- "total_cases": 162.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 186.294,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.928,
- "total_deaths_per_million": 2.3,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-13",
- "total_cases": 162.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 186.294,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.928,
- "total_deaths_per_million": 2.3,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-14",
- "total_cases": 176.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 5.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 202.393,
- "new_cases_per_million": 16.099,
- "new_cases_smoothed_per_million": 5.75,
- "total_deaths_per_million": 2.3,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-15",
- "total_cases": 176.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 202.393,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.75,
- "total_deaths_per_million": 2.3,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-16",
- "total_cases": 176.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 202.393,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.75,
- "total_deaths_per_million": 2.3,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-17",
- "total_cases": 197.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 5.0,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 226.542,
- "new_cases_per_million": 24.149,
- "new_cases_smoothed_per_million": 5.75,
- "total_deaths_per_million": 3.45,
- "new_deaths_per_million": 1.15,
- "new_deaths_smoothed_per_million": 0.164
- },
- {
- "date": "2020-06-18",
- "total_cases": 197.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 226.542,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.75,
- "total_deaths_per_million": 3.45,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.164
- },
- {
- "date": "2020-06-19",
- "total_cases": 210.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 6.857,
- "total_deaths": 5.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 241.492,
- "new_cases_per_million": 14.949,
- "new_cases_smoothed_per_million": 7.885,
- "total_deaths_per_million": 5.75,
- "new_deaths_per_million": 2.3,
- "new_deaths_smoothed_per_million": 0.493
- },
- {
- "date": "2020-06-20",
- "total_cases": 210.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.857,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 241.492,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.885,
- "total_deaths_per_million": 5.75,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.493
- },
- {
- "date": "2020-06-21",
- "total_cases": 247.0,
- "new_cases": 37.0,
- "new_cases_smoothed": 10.143,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 284.04,
- "new_cases_per_million": 42.549,
- "new_cases_smoothed_per_million": 11.664,
- "total_deaths_per_million": 5.75,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.493
- },
- {
- "date": "2020-06-22",
- "total_cases": 247.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 10.143,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 284.04,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 11.664,
- "total_deaths_per_million": 5.75,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.493
- },
- {
- "date": "2020-06-23",
- "total_cases": 247.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 10.143,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 284.04,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 11.664,
- "total_deaths_per_million": 5.75,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.493
- },
- {
- "date": "2020-06-24",
- "total_cases": 247.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.143,
- "total_deaths": 7.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 284.04,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.214,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 2.3,
- "new_deaths_smoothed_per_million": 0.657
- },
- {
- "date": "2020-06-25",
- "total_cases": 247.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 284.04,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.214,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.657
- },
- {
- "date": "2020-06-26",
- "total_cases": 247.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 284.04,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.078,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.329
- },
- {
- "date": "2020-06-27",
- "total_cases": 247.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 284.04,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.078,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.329
- },
- {
- "date": "2020-06-28",
- "total_cases": 247.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 284.04,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.329
- },
- {
- "date": "2020-06-29",
- "total_cases": 272.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 3.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 312.789,
- "new_cases_per_million": 28.749,
- "new_cases_smoothed_per_million": 4.107,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.329
- },
- {
- "date": "2020-06-30",
- "total_cases": 272.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 312.789,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.107,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.329
- },
- {
- "date": "2020-07-01",
- "total_cases": 303.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 8.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 348.438,
- "new_cases_per_million": 35.649,
- "new_cases_smoothed_per_million": 9.2,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-02",
- "total_cases": 303.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 8.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 348.438,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.2,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-03",
- "total_cases": 303.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 8.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 348.438,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 9.2,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-04",
- "total_cases": 309.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 8.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 355.338,
- "new_cases_per_million": 6.9,
- "new_cases_smoothed_per_million": 10.185,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-05",
- "total_cases": 309.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 8.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 355.338,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.185,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-06",
- "total_cases": 311.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 357.638,
- "new_cases_per_million": 2.3,
- "new_cases_smoothed_per_million": 6.407,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-07",
- "total_cases": 311.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 357.638,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.407,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-08",
- "total_cases": 313.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 359.938,
- "new_cases_per_million": 2.3,
- "new_cases_smoothed_per_million": 1.643,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-09",
- "total_cases": 313.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 359.938,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.643,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-10",
- "total_cases": 313.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 359.938,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.643,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-11",
- "total_cases": 313.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 359.938,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.657,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-12",
- "total_cases": 317.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 364.538,
- "new_cases_per_million": 4.6,
- "new_cases_smoothed_per_million": 1.314,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-13",
- "total_cases": 317.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 364.538,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.986,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-14",
- "total_cases": 317.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 364.538,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.986,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-15",
- "total_cases": 317.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 364.538,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.657,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-16",
- "total_cases": 321.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 369.137,
- "new_cases_per_million": 4.6,
- "new_cases_smoothed_per_million": 1.314,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-17",
- "total_cases": 328.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 377.187,
- "new_cases_per_million": 8.05,
- "new_cases_smoothed_per_million": 2.464,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-18",
- "total_cases": 328.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 377.187,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.464,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-19",
- "total_cases": 328.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 377.187,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.807,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-20",
- "total_cases": 334.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 384.087,
- "new_cases_per_million": 6.9,
- "new_cases_smoothed_per_million": 2.793,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-21",
- "total_cases": 334.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 384.087,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.793,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-22",
- "total_cases": 337.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 387.537,
- "new_cases_per_million": 3.45,
- "new_cases_smoothed_per_million": 3.286,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-23",
- "total_cases": 337.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 387.537,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.628,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-24",
- "total_cases": 340.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 390.987,
- "new_cases_per_million": 3.45,
- "new_cases_smoothed_per_million": 1.971,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-25",
- "total_cases": 340.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 390.987,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.971,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-26",
- "total_cases": 340.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 390.987,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.971,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-27",
- "total_cases": 340.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 390.987,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.986,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-28",
- "total_cases": 340.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 390.987,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.986,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-29",
- "total_cases": 340.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 390.987,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.493,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-30",
- "total_cases": 378.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 5.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 434.685,
- "new_cases_per_million": 43.699,
- "new_cases_smoothed_per_million": 6.735,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-31",
- "total_cases": 378.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 434.685,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.243,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-01",
- "total_cases": 382.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 6.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 439.285,
- "new_cases_per_million": 4.6,
- "new_cases_smoothed_per_million": 6.9,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-02",
- "total_cases": 386.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 6.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 443.885,
- "new_cases_per_million": 4.6,
- "new_cases_smoothed_per_million": 7.557,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-03",
- "total_cases": 386.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 443.885,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.557,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-04",
- "total_cases": 386.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 443.885,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.557,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-05",
- "total_cases": 388.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 6.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 446.185,
- "new_cases_per_million": 2.3,
- "new_cases_smoothed_per_million": 7.885,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-06",
- "total_cases": 388.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 446.185,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.643,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-07",
- "total_cases": 396.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 455.384,
- "new_cases_per_million": 9.2,
- "new_cases_smoothed_per_million": 2.957,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-08",
- "total_cases": 396.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 455.384,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.3,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-09",
- "total_cases": 399.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 458.834,
- "new_cases_per_million": 3.45,
- "new_cases_smoothed_per_million": 2.136,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-10",
- "total_cases": 399.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 458.834,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.136,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-11",
- "total_cases": 399.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 458.834,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.136,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-12",
- "total_cases": 399.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 458.834,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.807,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-13",
- "total_cases": 399.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 458.834,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.807,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-14",
- "total_cases": 399.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 458.834,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.493,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-15",
- "total_cases": 399.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 458.834,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.493,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-16",
- "total_cases": 403.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 463.434,
- "new_cases_per_million": 4.6,
- "new_cases_smoothed_per_million": 0.657,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-17",
- "total_cases": 405.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 465.734,
- "new_cases_per_million": 2.3,
- "new_cases_smoothed_per_million": 0.986,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-18",
- "total_cases": 405.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 465.734,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.986,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-19",
- "total_cases": 405.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 465.734,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.986,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-20",
- "total_cases": 405.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 465.734,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.986,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-21",
- "total_cases": 406.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 466.884,
- "new_cases_per_million": 1.15,
- "new_cases_smoothed_per_million": 1.15,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-22",
- "total_cases": 406.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 466.884,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.15,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-23",
- "total_cases": 406.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 466.884,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.493,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-24",
- "total_cases": 417.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 479.534,
- "new_cases_per_million": 12.65,
- "new_cases_smoothed_per_million": 1.971,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-25",
- "total_cases": 417.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 479.534,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.971,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-26",
- "total_cases": 417.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 479.534,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.971,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-27",
- "total_cases": 417.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 479.534,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.971,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-28",
- "total_cases": 417.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 479.534,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.807,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-29",
- "total_cases": 417.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 479.534,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.807,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-30",
- "total_cases": 422.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 485.283,
- "new_cases_per_million": 5.75,
- "new_cases_smoothed_per_million": 2.628,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-31",
- "total_cases": 423.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 486.433,
- "new_cases_per_million": 1.15,
- "new_cases_smoothed_per_million": 0.986,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-01",
- "total_cases": 423.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 486.433,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.986,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-02",
- "total_cases": 423.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 486.433,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.986,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-03",
- "total_cases": 427.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 491.033,
- "new_cases_per_million": 4.6,
- "new_cases_smoothed_per_million": 1.643,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-04",
- "total_cases": 448.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 4.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 515.182,
- "new_cases_per_million": 24.149,
- "new_cases_smoothed_per_million": 5.093,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-05",
- "total_cases": 448.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 515.182,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.093,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-06",
- "total_cases": 448.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 515.182,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.271,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-07",
- "total_cases": 452.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 519.782,
- "new_cases_per_million": 4.6,
- "new_cases_smoothed_per_million": 4.764,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-08",
- "total_cases": 452.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 519.782,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.764,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-09",
- "total_cases": 452.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 519.782,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.764,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-10",
- "total_cases": 456.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 524.382,
- "new_cases_per_million": 4.6,
- "new_cases_smoothed_per_million": 4.764,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-11",
- "total_cases": 456.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 524.382,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.314,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-12",
- "total_cases": 456.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 524.382,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.314,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-13",
- "total_cases": 456.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 524.382,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.314,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-14",
- "total_cases": 456.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 524.382,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.657,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-15",
- "total_cases": 456.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 524.382,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.657,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-16",
- "total_cases": 457.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 525.532,
- "new_cases_per_million": 1.15,
- "new_cases_smoothed_per_million": 0.821,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-17",
- "total_cases": 457.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 525.532,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.164,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-18",
- "total_cases": 467.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 537.032,
- "new_cases_per_million": 11.5,
- "new_cases_smoothed_per_million": 1.807,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-19",
- "total_cases": 470.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 540.481,
- "new_cases_per_million": 3.45,
- "new_cases_smoothed_per_million": 2.3,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-20",
- "total_cases": 470.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 540.481,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.3,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-21",
- "total_cases": 470.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 540.481,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.3,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-22",
- "total_cases": 470.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 540.481,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.3,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-23",
- "total_cases": 470.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 540.481,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.136,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-24",
- "total_cases": 470.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 540.481,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.136,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-25",
- "total_cases": 474.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 545.081,
- "new_cases_per_million": 4.6,
- "new_cases_smoothed_per_million": 1.15,
- "total_deaths_per_million": 8.05,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- }
- ]
- },
- "CPV": {
- "continent": "Africa",
- "location": "Cape Verde",
- "population": 555988.0,
- "population_density": 135.58,
- "median_age": 25.7,
- "aged_65_older": 4.46,
- "aged_70_older": 3.437,
- "gdp_per_capita": 6222.554,
- "cardiovasc_death_rate": 182.219,
- "diabetes_prevalence": 2.42,
- "female_smokers": 2.1,
- "male_smokers": 16.5,
- "hospital_beds_per_thousand": 2.1,
- "life_expectancy": 72.98,
- "human_development_index": 0.654,
- "data": [
- {
- "date": "2020-03-21",
- "total_cases": 2.0,
- "new_cases": 2.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 3.597,
- "new_cases_per_million": 3.597,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 43.52
- },
- {
- "date": "2020-03-22",
- "total_cases": 3.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 5.396,
- "new_cases_per_million": 1.799,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 43.52
- },
- {
- "date": "2020-03-23",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 5.396,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 50.93
- },
- {
- "date": "2020-03-24",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 5.396,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 50.93
- },
- {
- "date": "2020-03-25",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "total_cases_per_million": 5.396,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 1.799,
- "stringency_index": 50.93
- },
- {
- "date": "2020-03-26",
- "total_cases": 4.0,
- "new_cases": 1.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 7.194,
- "new_cases_per_million": 1.799,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "stringency_index": 50.93
- },
- {
- "date": "2020-03-27",
- "total_cases": 5.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 8.993,
- "new_cases_per_million": 1.799,
- "new_cases_smoothed_per_million": 1.285,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 53.7
- },
- {
- "date": "2020-03-28",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 8.993,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.771,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 74.07
- },
- {
- "date": "2020-03-29",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 8.993,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.514,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 74.07
- },
- {
- "date": "2020-03-30",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 8.993,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.514,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 74.07
- },
- {
- "date": "2020-03-31",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 8.993,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.514,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 74.07
- },
- {
- "date": "2020-04-01",
- "total_cases": 6.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.792,
- "new_cases_per_million": 1.799,
- "new_cases_smoothed_per_million": 0.771,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-02",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.792,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.514,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-03",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.792,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.257,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-04",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.792,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.257,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-05",
- "total_cases": 7.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.59,
- "new_cases_per_million": 1.799,
- "new_cases_smoothed_per_million": 0.514,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-06",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.59,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.514,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-07",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.59,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.514,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-08",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.59,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.257,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-09",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.59,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.257,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-10",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.59,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.257,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-11",
- "total_cases": 7.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.59,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.257,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-12",
- "total_cases": 8.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 14.389,
- "new_cases_per_million": 1.799,
- "new_cases_smoothed_per_million": 0.257,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-13",
- "total_cases": 10.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 17.986,
- "new_cases_per_million": 3.597,
- "new_cases_smoothed_per_million": 0.771,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-14",
- "total_cases": 10.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 17.986,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.771,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-15",
- "total_cases": 11.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 19.785,
- "new_cases_per_million": 1.799,
- "new_cases_smoothed_per_million": 1.028,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-16",
- "total_cases": 55.0,
- "new_cases": 44.0,
- "new_cases_smoothed": 6.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 98.923,
- "new_cases_per_million": 79.138,
- "new_cases_smoothed_per_million": 12.333,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-17",
- "total_cases": 55.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 98.923,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 12.333,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-18",
- "total_cases": 56.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 7.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 100.722,
- "new_cases_per_million": 1.799,
- "new_cases_smoothed_per_million": 12.59,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-19",
- "total_cases": 58.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 7.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 104.319,
- "new_cases_per_million": 3.597,
- "new_cases_smoothed_per_million": 12.847,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-20",
- "total_cases": 61.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 7.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 109.715,
- "new_cases_per_million": 5.396,
- "new_cases_smoothed_per_million": 13.104,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-21",
- "total_cases": 67.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 8.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 120.506,
- "new_cases_per_million": 10.792,
- "new_cases_smoothed_per_million": 14.646,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-22",
- "total_cases": 67.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 8.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 120.506,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 14.389,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-23",
- "total_cases": 73.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 131.298,
- "new_cases_per_million": 10.792,
- "new_cases_smoothed_per_million": 4.625,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-24",
- "total_cases": 82.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 3.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 147.485,
- "new_cases_per_million": 16.187,
- "new_cases_smoothed_per_million": 6.937,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-25",
- "total_cases": 88.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 4.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 158.277,
- "new_cases_per_million": 10.792,
- "new_cases_smoothed_per_million": 8.222,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-26",
- "total_cases": 90.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 4.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 161.874,
- "new_cases_per_million": 3.597,
- "new_cases_smoothed_per_million": 8.222,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-27",
- "total_cases": 106.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 6.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 190.652,
- "new_cases_per_million": 28.778,
- "new_cases_smoothed_per_million": 11.562,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-28",
- "total_cases": 109.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 6.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 196.047,
- "new_cases_per_million": 5.396,
- "new_cases_smoothed_per_million": 10.792,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-29",
- "total_cases": 113.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 6.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 203.242,
- "new_cases_per_million": 7.194,
- "new_cases_smoothed_per_million": 11.819,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-30",
- "total_cases": 113.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 203.242,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.278,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-05-01",
- "total_cases": 121.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 217.631,
- "new_cases_per_million": 14.389,
- "new_cases_smoothed_per_million": 10.021,
- "total_deaths_per_million": 1.799,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-05-02",
- "total_cases": 123.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 5.0,
- "total_deaths": 2.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 221.228,
- "new_cases_per_million": 3.597,
- "new_cases_smoothed_per_million": 8.993,
- "total_deaths_per_million": 3.597,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 87.96
- },
- {
- "date": "2020-05-03",
- "total_cases": 152.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 8.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 273.387,
- "new_cases_per_million": 52.159,
- "new_cases_smoothed_per_million": 15.93,
- "total_deaths_per_million": 3.597,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 87.96
- },
- {
- "date": "2020-05-04",
- "total_cases": 165.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 8.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 296.769,
- "new_cases_per_million": 23.382,
- "new_cases_smoothed_per_million": 15.16,
- "total_deaths_per_million": 3.597,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 87.96
- },
- {
- "date": "2020-05-05",
- "total_cases": 175.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 9.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 314.755,
- "new_cases_per_million": 17.986,
- "new_cases_smoothed_per_million": 16.958,
- "total_deaths_per_million": 3.597,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.63
- },
- {
- "date": "2020-05-06",
- "total_cases": 186.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 10.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 334.54,
- "new_cases_per_million": 19.785,
- "new_cases_smoothed_per_million": 18.757,
- "total_deaths_per_million": 3.597,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.63
- },
- {
- "date": "2020-05-07",
- "total_cases": 191.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 11.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 343.533,
- "new_cases_per_million": 8.993,
- "new_cases_smoothed_per_million": 20.042,
- "total_deaths_per_million": 3.597,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.63
- },
- {
- "date": "2020-05-08",
- "total_cases": 218.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 13.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 392.095,
- "new_cases_per_million": 48.562,
- "new_cases_smoothed_per_million": 24.923,
- "total_deaths_per_million": 3.597,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.63
- },
- {
- "date": "2020-05-09",
- "total_cases": 230.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 15.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 413.678,
- "new_cases_per_million": 21.583,
- "new_cases_smoothed_per_million": 27.493,
- "total_deaths_per_million": 3.597,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-05-10",
- "total_cases": 236.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 12.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 424.47,
- "new_cases_per_million": 10.792,
- "new_cases_smoothed_per_million": 21.583,
- "total_deaths_per_million": 3.597,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-05-11",
- "total_cases": 246.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 11.571,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 442.456,
- "new_cases_per_million": 17.986,
- "new_cases_smoothed_per_million": 20.812,
- "total_deaths_per_million": 3.597,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-05-12",
- "total_cases": 260.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 12.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 467.636,
- "new_cases_per_million": 25.18,
- "new_cases_smoothed_per_million": 21.84,
- "total_deaths_per_million": 3.597,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-05-13",
- "total_cases": 270.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 12.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 485.622,
- "new_cases_per_million": 17.986,
- "new_cases_smoothed_per_million": 21.583,
- "total_deaths_per_million": 3.597,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-05-14",
- "total_cases": 289.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 14.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 519.795,
- "new_cases_per_million": 34.173,
- "new_cases_smoothed_per_million": 25.18,
- "total_deaths_per_million": 3.597,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-05-15",
- "total_cases": 315.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 13.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 566.559,
- "new_cases_per_million": 46.764,
- "new_cases_smoothed_per_million": 24.923,
- "total_deaths_per_million": 3.597,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-05-16",
- "total_cases": 326.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 13.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 586.344,
- "new_cases_per_million": 19.785,
- "new_cases_smoothed_per_million": 24.667,
- "total_deaths_per_million": 3.597,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-05-17",
- "total_cases": 328.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 13.143,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 589.941,
- "new_cases_per_million": 3.597,
- "new_cases_smoothed_per_million": 23.639,
- "total_deaths_per_million": 5.396,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.63
- },
- {
- "date": "2020-05-18",
- "total_cases": 328.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 11.714,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 589.941,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 21.069,
- "total_deaths_per_million": 5.396,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.17
- },
- {
- "date": "2020-05-19",
- "total_cases": 328.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 9.714,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 589.941,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 17.472,
- "total_deaths_per_million": 5.396,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.17
- },
- {
- "date": "2020-05-20",
- "total_cases": 335.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 9.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 602.531,
- "new_cases_per_million": 12.59,
- "new_cases_smoothed_per_million": 16.701,
- "total_deaths_per_million": 5.396,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.17
- },
- {
- "date": "2020-05-21",
- "total_cases": 349.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 8.571,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 627.711,
- "new_cases_per_million": 25.18,
- "new_cases_smoothed_per_million": 15.417,
- "total_deaths_per_million": 5.396,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.17
- },
- {
- "date": "2020-05-22",
- "total_cases": 356.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 5.857,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 640.302,
- "new_cases_per_million": 12.59,
- "new_cases_smoothed_per_million": 10.535,
- "total_deaths_per_million": 5.396,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.17
- },
- {
- "date": "2020-05-23",
- "total_cases": 362.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 651.093,
- "new_cases_per_million": 10.792,
- "new_cases_smoothed_per_million": 9.25,
- "total_deaths_per_million": 5.396,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.17
- },
- {
- "date": "2020-05-24",
- "total_cases": 371.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 6.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 667.281,
- "new_cases_per_million": 16.187,
- "new_cases_smoothed_per_million": 11.049,
- "total_deaths_per_million": 5.396,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.17
- },
- {
- "date": "2020-05-25",
- "total_cases": 380.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 7.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 683.468,
- "new_cases_per_million": 16.187,
- "new_cases_smoothed_per_million": 13.361,
- "total_deaths_per_million": 5.396,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.17
- },
- {
- "date": "2020-05-26",
- "total_cases": 390.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 8.857,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 701.454,
- "new_cases_per_million": 17.986,
- "new_cases_smoothed_per_million": 15.93,
- "total_deaths_per_million": 5.396,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.17
- },
- {
- "date": "2020-05-27",
- "total_cases": 390.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.857,
- "total_deaths": 4.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 701.454,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 14.132,
- "total_deaths_per_million": 7.194,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.17
- },
- {
- "date": "2020-05-28",
- "total_cases": 390.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.857,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 701.454,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.535,
- "total_deaths_per_million": 7.194,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.17
- },
- {
- "date": "2020-05-29",
- "total_cases": 390.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.857,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 701.454,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.736,
- "total_deaths_per_million": 7.194,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.17
- },
- {
- "date": "2020-05-30",
- "total_cases": 405.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 6.143,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 728.433,
- "new_cases_per_million": 26.979,
- "new_cases_smoothed_per_million": 11.049,
- "total_deaths_per_million": 7.194,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.17
- },
- {
- "date": "2020-05-31",
- "total_cases": 421.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 7.143,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 757.211,
- "new_cases_per_million": 28.778,
- "new_cases_smoothed_per_million": 12.847,
- "total_deaths_per_million": 7.194,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.17
- },
- {
- "date": "2020-06-01",
- "total_cases": 435.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 7.857,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 782.391,
- "new_cases_per_million": 25.18,
- "new_cases_smoothed_per_million": 14.132,
- "total_deaths_per_million": 7.194,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.17
- },
- {
- "date": "2020-06-02",
- "total_cases": 458.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 9.714,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 823.759,
- "new_cases_per_million": 41.368,
- "new_cases_smoothed_per_million": 17.472,
- "total_deaths_per_million": 7.194,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.17
- },
- {
- "date": "2020-06-03",
- "total_cases": 466.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 10.857,
- "total_deaths": 5.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 838.148,
- "new_cases_per_million": 14.389,
- "new_cases_smoothed_per_million": 19.528,
- "total_deaths_per_million": 8.993,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.17
- },
- {
- "date": "2020-06-04",
- "total_cases": 477.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 12.429,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 857.932,
- "new_cases_per_million": 19.785,
- "new_cases_smoothed_per_million": 22.354,
- "total_deaths_per_million": 8.993,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.17
- },
- {
- "date": "2020-06-05",
- "total_cases": 502.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 16.0,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 902.897,
- "new_cases_per_million": 44.965,
- "new_cases_smoothed_per_million": 28.778,
- "total_deaths_per_million": 8.993,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.17
- },
- {
- "date": "2020-06-06",
- "total_cases": 536.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 18.714,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 964.05,
- "new_cases_per_million": 61.152,
- "new_cases_smoothed_per_million": 33.66,
- "total_deaths_per_million": 8.993,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.17
- },
- {
- "date": "2020-06-07",
- "total_cases": 542.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 17.286,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 974.841,
- "new_cases_per_million": 10.792,
- "new_cases_smoothed_per_million": 31.09,
- "total_deaths_per_million": 8.993,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.17
- },
- {
- "date": "2020-06-08",
- "total_cases": 554.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 17.0,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 996.424,
- "new_cases_per_million": 21.583,
- "new_cases_smoothed_per_million": 30.576,
- "total_deaths_per_million": 8.993,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.17
- },
- {
- "date": "2020-06-09",
- "total_cases": 567.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 15.571,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1019.806,
- "new_cases_per_million": 23.382,
- "new_cases_smoothed_per_million": 28.007,
- "total_deaths_per_million": 8.993,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.17
- },
- {
- "date": "2020-06-10",
- "total_cases": 585.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 17.0,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1052.181,
- "new_cases_per_million": 32.375,
- "new_cases_smoothed_per_million": 30.576,
- "total_deaths_per_million": 8.993,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.17
- },
- {
- "date": "2020-06-11",
- "total_cases": 615.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 19.714,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1106.139,
- "new_cases_per_million": 53.958,
- "new_cases_smoothed_per_million": 35.458,
- "total_deaths_per_million": 8.993,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.17
- },
- {
- "date": "2020-06-12",
- "total_cases": 657.0,
- "new_cases": 42.0,
- "new_cases_smoothed": 22.143,
- "total_deaths": 6.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1181.68,
- "new_cases_per_million": 75.541,
- "new_cases_smoothed_per_million": 39.826,
- "total_deaths_per_million": 10.792,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.17
- },
- {
- "date": "2020-06-13",
- "total_cases": 697.0,
- "new_cases": 40.0,
- "new_cases_smoothed": 23.0,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1253.624,
- "new_cases_per_million": 71.944,
- "new_cases_smoothed_per_million": 41.368,
- "total_deaths_per_million": 10.792,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.17
- },
- {
- "date": "2020-06-14",
- "total_cases": 726.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 26.286,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1305.784,
- "new_cases_per_million": 52.159,
- "new_cases_smoothed_per_million": 47.277,
- "total_deaths_per_million": 10.792,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.17
- },
- {
- "date": "2020-06-15",
- "total_cases": 750.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 28.0,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1348.95,
- "new_cases_per_million": 43.166,
- "new_cases_smoothed_per_million": 50.361,
- "total_deaths_per_million": 10.792,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.17
- },
- {
- "date": "2020-06-16",
- "total_cases": 760.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 27.571,
- "total_deaths": 7.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1366.936,
- "new_cases_per_million": 17.986,
- "new_cases_smoothed_per_million": 49.59,
- "total_deaths_per_million": 12.59,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 0.514,
- "stringency_index": 79.17
- },
- {
- "date": "2020-06-17",
- "total_cases": 781.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 28.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1404.707,
- "new_cases_per_million": 37.771,
- "new_cases_smoothed_per_million": 50.361,
- "total_deaths_per_million": 12.59,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.514,
- "stringency_index": 79.17
- },
- {
- "date": "2020-06-18",
- "total_cases": 792.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 25.286,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1424.491,
- "new_cases_per_million": 19.785,
- "new_cases_smoothed_per_million": 45.479,
- "total_deaths_per_million": 12.59,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.514,
- "stringency_index": 79.17
- },
- {
- "date": "2020-06-19",
- "total_cases": 823.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 23.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1480.248,
- "new_cases_per_million": 55.757,
- "new_cases_smoothed_per_million": 42.653,
- "total_deaths_per_million": 12.59,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.17
- },
- {
- "date": "2020-06-20",
- "total_cases": 848.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 21.571,
- "total_deaths": 8.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1525.213,
- "new_cases_per_million": 44.965,
- "new_cases_smoothed_per_million": 38.798,
- "total_deaths_per_million": 14.389,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 0.514,
- "stringency_index": 79.17
- },
- {
- "date": "2020-06-21",
- "total_cases": 863.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 19.571,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1552.192,
- "new_cases_per_million": 26.979,
- "new_cases_smoothed_per_million": 35.201,
- "total_deaths_per_million": 14.389,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.514,
- "stringency_index": 79.17
- },
- {
- "date": "2020-06-22",
- "total_cases": 890.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 20.0,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1600.754,
- "new_cases_per_million": 48.562,
- "new_cases_smoothed_per_million": 35.972,
- "total_deaths_per_million": 14.389,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.514,
- "stringency_index": 79.17
- },
- {
- "date": "2020-06-23",
- "total_cases": 944.0,
- "new_cases": 54.0,
- "new_cases_smoothed": 26.286,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1697.878,
- "new_cases_per_million": 97.124,
- "new_cases_smoothed_per_million": 47.277,
- "total_deaths_per_million": 14.389,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.17
- },
- {
- "date": "2020-06-24",
- "total_cases": 982.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 28.714,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1766.225,
- "new_cases_per_million": 68.347,
- "new_cases_smoothed_per_million": 51.646,
- "total_deaths_per_million": 14.389,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.17
- },
- {
- "date": "2020-06-25",
- "total_cases": 999.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 29.571,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1796.801,
- "new_cases_per_million": 30.576,
- "new_cases_smoothed_per_million": 53.187,
- "total_deaths_per_million": 14.389,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.17
- },
- {
- "date": "2020-06-26",
- "total_cases": 1003.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 25.714,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1803.996,
- "new_cases_per_million": 7.194,
- "new_cases_smoothed_per_million": 46.25,
- "total_deaths_per_million": 14.389,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 79.17
- },
- {
- "date": "2020-06-27",
- "total_cases": 1027.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 25.571,
- "total_deaths": 10.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1847.162,
- "new_cases_per_million": 43.166,
- "new_cases_smoothed_per_million": 45.993,
- "total_deaths_per_million": 17.986,
- "new_deaths_per_million": 3.597,
- "new_deaths_smoothed_per_million": 0.514,
- "stringency_index": 79.17
- },
- {
- "date": "2020-06-28",
- "total_cases": 1091.0,
- "new_cases": 64.0,
- "new_cases_smoothed": 32.571,
- "total_deaths": 12.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 1962.273,
- "new_cases_per_million": 115.11,
- "new_cases_smoothed_per_million": 58.583,
- "total_deaths_per_million": 21.583,
- "new_deaths_per_million": 3.597,
- "new_deaths_smoothed_per_million": 1.028,
- "stringency_index": 79.17
- },
- {
- "date": "2020-06-29",
- "total_cases": 1155.0,
- "new_cases": 64.0,
- "new_cases_smoothed": 37.857,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 2077.383,
- "new_cases_per_million": 115.11,
- "new_cases_smoothed_per_million": 68.09,
- "total_deaths_per_million": 21.583,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.028,
- "stringency_index": 79.17
- },
- {
- "date": "2020-06-30",
- "total_cases": 1165.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 31.571,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 2095.369,
- "new_cases_per_million": 17.986,
- "new_cases_smoothed_per_million": 56.784,
- "total_deaths_per_million": 21.583,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.028,
- "stringency_index": 79.17
- },
- {
- "date": "2020-07-01",
- "total_cases": 1227.0,
- "new_cases": 62.0,
- "new_cases_smoothed": 35.0,
- "total_deaths": 15.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 2206.882,
- "new_cases_per_million": 111.513,
- "new_cases_smoothed_per_million": 62.951,
- "total_deaths_per_million": 26.979,
- "new_deaths_per_million": 5.396,
- "new_deaths_smoothed_per_million": 1.799,
- "stringency_index": 79.17
- },
- {
- "date": "2020-07-02",
- "total_cases": 1267.0,
- "new_cases": 40.0,
- "new_cases_smoothed": 38.286,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 2278.826,
- "new_cases_per_million": 71.944,
- "new_cases_smoothed_per_million": 68.861,
- "total_deaths_per_million": 26.979,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.799,
- "stringency_index": 79.17
- },
- {
- "date": "2020-07-03",
- "total_cases": 1301.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 42.571,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 2339.979,
- "new_cases_per_million": 61.152,
- "new_cases_smoothed_per_million": 76.569,
- "total_deaths_per_million": 26.979,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.799,
- "stringency_index": 79.17
- },
- {
- "date": "2020-07-04",
- "total_cases": 1382.0,
- "new_cases": 81.0,
- "new_cases_smoothed": 50.714,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 2485.665,
- "new_cases_per_million": 145.687,
- "new_cases_smoothed_per_million": 91.215,
- "total_deaths_per_million": 26.979,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.285,
- "stringency_index": 79.17
- },
- {
- "date": "2020-07-05",
- "total_cases": 1420.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 47.0,
- "total_deaths": 16.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 2554.012,
- "new_cases_per_million": 68.347,
- "new_cases_smoothed_per_million": 84.534,
- "total_deaths_per_million": 28.778,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 1.028,
- "stringency_index": 79.17
- },
- {
- "date": "2020-07-06",
- "total_cases": 1451.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 42.286,
- "total_deaths": 17.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 2609.769,
- "new_cases_per_million": 55.757,
- "new_cases_smoothed_per_million": 76.055,
- "total_deaths_per_million": 30.576,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 1.285,
- "stringency_index": 79.17
- },
- {
- "date": "2020-07-07",
- "total_cases": 1463.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 42.571,
- "total_deaths": 17.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 2631.352,
- "new_cases_per_million": 21.583,
- "new_cases_smoothed_per_million": 76.569,
- "total_deaths_per_million": 30.576,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.285,
- "stringency_index": 79.17
- },
- {
- "date": "2020-07-08",
- "total_cases": 1499.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 38.857,
- "total_deaths": 18.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2696.101,
- "new_cases_per_million": 64.75,
- "new_cases_smoothed_per_million": 69.888,
- "total_deaths_per_million": 32.375,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 0.771,
- "stringency_index": 79.17
- },
- {
- "date": "2020-07-09",
- "total_cases": 1542.0,
- "new_cases": 43.0,
- "new_cases_smoothed": 39.286,
- "total_deaths": 18.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2773.441,
- "new_cases_per_million": 77.34,
- "new_cases_smoothed_per_million": 70.659,
- "total_deaths_per_million": 32.375,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.771,
- "stringency_index": 79.17
- },
- {
- "date": "2020-07-10",
- "total_cases": 1553.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 36.0,
- "total_deaths": 19.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 2793.226,
- "new_cases_per_million": 19.785,
- "new_cases_smoothed_per_million": 64.75,
- "total_deaths_per_million": 34.173,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 1.028,
- "stringency_index": 79.17
- },
- {
- "date": "2020-07-11",
- "total_cases": 1553.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 24.429,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 2793.226,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 43.937,
- "total_deaths_per_million": 34.173,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.028,
- "stringency_index": 79.17
- },
- {
- "date": "2020-07-12",
- "total_cases": 1591.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 24.429,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2861.573,
- "new_cases_per_million": 68.347,
- "new_cases_smoothed_per_million": 43.937,
- "total_deaths_per_million": 34.173,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.771,
- "stringency_index": 79.17
- },
- {
- "date": "2020-07-13",
- "total_cases": 1698.0,
- "new_cases": 107.0,
- "new_cases_smoothed": 35.286,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3054.023,
- "new_cases_per_million": 192.45,
- "new_cases_smoothed_per_million": 63.465,
- "total_deaths_per_million": 34.173,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.514,
- "stringency_index": 79.17
- },
- {
- "date": "2020-07-14",
- "total_cases": 1722.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 37.0,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3097.189,
- "new_cases_per_million": 43.166,
- "new_cases_smoothed_per_million": 66.548,
- "total_deaths_per_million": 34.173,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.514,
- "stringency_index": 79.17
- },
- {
- "date": "2020-07-15",
- "total_cases": 1780.0,
- "new_cases": 58.0,
- "new_cases_smoothed": 40.143,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 3201.508,
- "new_cases_per_million": 104.319,
- "new_cases_smoothed_per_million": 72.201,
- "total_deaths_per_million": 34.173,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 68.06
- },
- {
- "date": "2020-07-16",
- "total_cases": 1837.0,
- "new_cases": 57.0,
- "new_cases_smoothed": 42.143,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 3304.028,
- "new_cases_per_million": 102.52,
- "new_cases_smoothed_per_million": 75.798,
- "total_deaths_per_million": 34.173,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 68.06
- },
- {
- "date": "2020-07-17",
- "total_cases": 1894.0,
- "new_cases": 57.0,
- "new_cases_smoothed": 48.714,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3406.548,
- "new_cases_per_million": 102.52,
- "new_cases_smoothed_per_million": 87.618,
- "total_deaths_per_million": 34.173,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 68.06
- },
- {
- "date": "2020-07-18",
- "total_cases": 1939.0,
- "new_cases": 45.0,
- "new_cases_smoothed": 55.143,
- "total_deaths": 20.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 3487.485,
- "new_cases_per_million": 80.937,
- "new_cases_smoothed_per_million": 99.18,
- "total_deaths_per_million": 35.972,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 68.06
- },
- {
- "date": "2020-07-19",
- "total_cases": 2014.0,
- "new_cases": 75.0,
- "new_cases_smoothed": 60.429,
- "total_deaths": 21.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3622.38,
- "new_cases_per_million": 134.895,
- "new_cases_smoothed_per_million": 108.687,
- "total_deaths_per_million": 37.771,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 0.514,
- "stringency_index": 68.06
- },
- {
- "date": "2020-07-20",
- "total_cases": 2043.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 49.286,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3674.54,
- "new_cases_per_million": 52.159,
- "new_cases_smoothed_per_million": 88.645,
- "total_deaths_per_million": 37.771,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.514,
- "stringency_index": 68.06
- },
- {
- "date": "2020-07-21",
- "total_cases": 2071.0,
- "new_cases": 28.0,
- "new_cases_smoothed": 49.857,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3724.901,
- "new_cases_per_million": 50.361,
- "new_cases_smoothed_per_million": 89.673,
- "total_deaths_per_million": 37.771,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.514,
- "stringency_index": 68.06
- },
- {
- "date": "2020-07-22",
- "total_cases": 2107.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 46.714,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3789.65,
- "new_cases_per_million": 64.75,
- "new_cases_smoothed_per_million": 84.02,
- "total_deaths_per_million": 37.771,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.514,
- "stringency_index": 68.06
- },
- {
- "date": "2020-07-23",
- "total_cases": 2154.0,
- "new_cases": 47.0,
- "new_cases_smoothed": 45.286,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3874.184,
- "new_cases_per_million": 84.534,
- "new_cases_smoothed_per_million": 81.451,
- "total_deaths_per_million": 37.771,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.514,
- "stringency_index": 68.06
- },
- {
- "date": "2020-07-24",
- "total_cases": 2190.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 42.286,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3938.934,
- "new_cases_per_million": 64.75,
- "new_cases_smoothed_per_million": 76.055,
- "total_deaths_per_million": 37.771,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.514,
- "stringency_index": 68.06
- },
- {
- "date": "2020-07-25",
- "total_cases": 2220.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 40.143,
- "total_deaths": 22.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3992.892,
- "new_cases_per_million": 53.958,
- "new_cases_smoothed_per_million": 72.201,
- "total_deaths_per_million": 39.569,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 0.514,
- "stringency_index": 68.06
- },
- {
- "date": "2020-07-26",
- "total_cases": 2258.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 34.857,
- "total_deaths": 22.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 4061.239,
- "new_cases_per_million": 68.347,
- "new_cases_smoothed_per_million": 62.694,
- "total_deaths_per_million": 39.569,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 68.06
- },
- {
- "date": "2020-07-27",
- "total_cases": 2307.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 37.714,
- "total_deaths": 22.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 4149.37,
- "new_cases_per_million": 88.131,
- "new_cases_smoothed_per_million": 67.833,
- "total_deaths_per_million": 39.569,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 65.28
- },
- {
- "date": "2020-07-28",
- "total_cases": 2328.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 36.714,
- "total_deaths": 22.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 4187.141,
- "new_cases_per_million": 37.771,
- "new_cases_smoothed_per_million": 66.034,
- "total_deaths_per_million": 39.569,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 65.28
- },
- {
- "date": "2020-07-29",
- "total_cases": 2354.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 35.286,
- "total_deaths": 22.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 4233.904,
- "new_cases_per_million": 46.764,
- "new_cases_smoothed_per_million": 63.465,
- "total_deaths_per_million": 39.569,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 65.28
- },
- {
- "date": "2020-07-30",
- "total_cases": 2373.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 31.286,
- "total_deaths": 23.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 4268.078,
- "new_cases_per_million": 34.173,
- "new_cases_smoothed_per_million": 56.27,
- "total_deaths_per_million": 41.368,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 0.514,
- "stringency_index": 65.28
- },
- {
- "date": "2020-07-31",
- "total_cases": 2373.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 26.143,
- "total_deaths": 23.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 4268.078,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 47.021,
- "total_deaths_per_million": 41.368,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.514,
- "stringency_index": 65.28
- },
- {
- "date": "2020-08-01",
- "total_cases": 2451.0,
- "new_cases": 78.0,
- "new_cases_smoothed": 33.0,
- "total_deaths": 23.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 4408.369,
- "new_cases_per_million": 140.291,
- "new_cases_smoothed_per_million": 59.354,
- "total_deaths_per_million": 41.368,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 65.28
- },
- {
- "date": "2020-08-02",
- "total_cases": 2480.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 31.714,
- "total_deaths": 24.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 4460.528,
- "new_cases_per_million": 52.159,
- "new_cases_smoothed_per_million": 57.041,
- "total_deaths_per_million": 43.166,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 0.514,
- "stringency_index": 65.28
- },
- {
- "date": "2020-08-03",
- "total_cases": 2547.0,
- "new_cases": 67.0,
- "new_cases_smoothed": 34.286,
- "total_deaths": 24.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 4581.034,
- "new_cases_per_million": 120.506,
- "new_cases_smoothed_per_million": 61.666,
- "total_deaths_per_million": 43.166,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.514,
- "stringency_index": 65.28
- },
- {
- "date": "2020-08-04",
- "total_cases": 2583.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 36.429,
- "total_deaths": 25.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 4645.784,
- "new_cases_per_million": 64.75,
- "new_cases_smoothed_per_million": 65.52,
- "total_deaths_per_million": 44.965,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 0.771,
- "stringency_index": 65.28
- },
- {
- "date": "2020-08-05",
- "total_cases": 2631.0,
- "new_cases": 48.0,
- "new_cases_smoothed": 39.571,
- "total_deaths": 26.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 4732.117,
- "new_cases_per_million": 86.333,
- "new_cases_smoothed_per_million": 71.173,
- "total_deaths_per_million": 46.764,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 1.028,
- "stringency_index": 65.28
- },
- {
- "date": "2020-08-06",
- "total_cases": 2689.0,
- "new_cases": 58.0,
- "new_cases_smoothed": 45.143,
- "total_deaths": 27.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 4836.435,
- "new_cases_per_million": 104.319,
- "new_cases_smoothed_per_million": 81.194,
- "total_deaths_per_million": 48.562,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 1.028,
- "stringency_index": 65.28
- },
- {
- "date": "2020-08-07",
- "total_cases": 2734.0,
- "new_cases": 45.0,
- "new_cases_smoothed": 51.571,
- "total_deaths": 27.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 4917.372,
- "new_cases_per_million": 80.937,
- "new_cases_smoothed_per_million": 92.756,
- "total_deaths_per_million": 48.562,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.028,
- "stringency_index": 65.28
- },
- {
- "date": "2020-08-08",
- "total_cases": 2780.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 47.0,
- "total_deaths": 29.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 5000.108,
- "new_cases_per_million": 82.736,
- "new_cases_smoothed_per_million": 84.534,
- "total_deaths_per_million": 52.159,
- "new_deaths_per_million": 3.597,
- "new_deaths_smoothed_per_million": 1.542,
- "stringency_index": 65.28
- },
- {
- "date": "2020-08-09",
- "total_cases": 2835.0,
- "new_cases": 55.0,
- "new_cases_smoothed": 50.714,
- "total_deaths": 32.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 5099.031,
- "new_cases_per_million": 98.923,
- "new_cases_smoothed_per_million": 91.215,
- "total_deaths_per_million": 57.555,
- "new_deaths_per_million": 5.396,
- "new_deaths_smoothed_per_million": 2.056,
- "stringency_index": 65.28
- },
- {
- "date": "2020-08-10",
- "total_cases": 2858.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 44.429,
- "total_deaths": 32.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 5140.399,
- "new_cases_per_million": 41.368,
- "new_cases_smoothed_per_million": 79.909,
- "total_deaths_per_million": 57.555,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.056,
- "stringency_index": 65.28
- },
- {
- "date": "2020-08-11",
- "total_cases": 2883.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 42.857,
- "total_deaths": 32.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 5185.364,
- "new_cases_per_million": 44.965,
- "new_cases_smoothed_per_million": 77.083,
- "total_deaths_per_million": 57.555,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.799,
- "stringency_index": 65.28
- },
- {
- "date": "2020-08-12",
- "total_cases": 2920.0,
- "new_cases": 37.0,
- "new_cases_smoothed": 41.286,
- "total_deaths": 33.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 5251.912,
- "new_cases_per_million": 66.548,
- "new_cases_smoothed_per_million": 74.256,
- "total_deaths_per_million": 59.354,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 1.799,
- "stringency_index": 65.28
- },
- {
- "date": "2020-08-13",
- "total_cases": 3000.0,
- "new_cases": 80.0,
- "new_cases_smoothed": 44.429,
- "total_deaths": 33.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 5395.8,
- "new_cases_per_million": 143.888,
- "new_cases_smoothed_per_million": 79.909,
- "total_deaths_per_million": 59.354,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.542,
- "stringency_index": 65.28
- },
- {
- "date": "2020-08-14",
- "total_cases": 3073.0,
- "new_cases": 73.0,
- "new_cases_smoothed": 48.429,
- "total_deaths": 33.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 5527.098,
- "new_cases_per_million": 131.298,
- "new_cases_smoothed_per_million": 87.104,
- "total_deaths_per_million": 59.354,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.542,
- "stringency_index": 65.28
- },
- {
- "date": "2020-08-15",
- "total_cases": 3136.0,
- "new_cases": 63.0,
- "new_cases_smoothed": 50.857,
- "total_deaths": 33.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 5640.41,
- "new_cases_per_million": 113.312,
- "new_cases_smoothed_per_million": 91.472,
- "total_deaths_per_million": 59.354,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.028,
- "stringency_index": 65.28
- },
- {
- "date": "2020-08-16",
- "total_cases": 3163.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 46.857,
- "total_deaths": 34.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 5688.972,
- "new_cases_per_million": 48.562,
- "new_cases_smoothed_per_million": 84.277,
- "total_deaths_per_million": 61.152,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 0.514,
- "stringency_index": 65.28
- },
- {
- "date": "2020-08-17",
- "total_cases": 3179.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 45.857,
- "total_deaths": 35.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 5717.749,
- "new_cases_per_million": 28.778,
- "new_cases_smoothed_per_million": 82.479,
- "total_deaths_per_million": 62.951,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 0.771,
- "stringency_index": 65.28
- },
- {
- "date": "2020-08-18",
- "total_cases": 3203.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 45.714,
- "total_deaths": 36.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 5760.916,
- "new_cases_per_million": 43.166,
- "new_cases_smoothed_per_million": 82.222,
- "total_deaths_per_million": 64.75,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 1.028,
- "stringency_index": 65.28
- },
- {
- "date": "2020-08-19",
- "total_cases": 3253.0,
- "new_cases": 50.0,
- "new_cases_smoothed": 47.571,
- "total_deaths": 36.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 5850.846,
- "new_cases_per_million": 89.93,
- "new_cases_smoothed_per_million": 85.562,
- "total_deaths_per_million": 64.75,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.771,
- "stringency_index": 65.28
- },
- {
- "date": "2020-08-20",
- "total_cases": 3321.0,
- "new_cases": 68.0,
- "new_cases_smoothed": 45.857,
- "total_deaths": 36.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 5973.15,
- "new_cases_per_million": 122.305,
- "new_cases_smoothed_per_million": 82.479,
- "total_deaths_per_million": 64.75,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.771,
- "stringency_index": 65.28
- },
- {
- "date": "2020-08-21",
- "total_cases": 3368.0,
- "new_cases": 47.0,
- "new_cases_smoothed": 42.143,
- "total_deaths": 37.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 6057.685,
- "new_cases_per_million": 84.534,
- "new_cases_smoothed_per_million": 75.798,
- "total_deaths_per_million": 66.548,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 1.028,
- "stringency_index": 65.28
- },
- {
- "date": "2020-08-22",
- "total_cases": 3412.0,
- "new_cases": 44.0,
- "new_cases_smoothed": 39.429,
- "total_deaths": 37.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 6136.823,
- "new_cases_per_million": 79.138,
- "new_cases_smoothed_per_million": 70.916,
- "total_deaths_per_million": 66.548,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.028,
- "stringency_index": 65.28
- },
- {
- "date": "2020-08-23",
- "total_cases": 3455.0,
- "new_cases": 43.0,
- "new_cases_smoothed": 41.714,
- "total_deaths": 37.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 6214.163,
- "new_cases_per_million": 77.34,
- "new_cases_smoothed_per_million": 75.027,
- "total_deaths_per_million": 66.548,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.771,
- "stringency_index": 65.28
- },
- {
- "date": "2020-08-24",
- "total_cases": 3509.0,
- "new_cases": 54.0,
- "new_cases_smoothed": 47.143,
- "total_deaths": 37.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 6311.287,
- "new_cases_per_million": 97.124,
- "new_cases_smoothed_per_million": 84.791,
- "total_deaths_per_million": 66.548,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.514,
- "stringency_index": 65.28
- },
- {
- "date": "2020-08-25",
- "total_cases": 3532.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 47.0,
- "total_deaths": 37.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 6352.655,
- "new_cases_per_million": 41.368,
- "new_cases_smoothed_per_million": 84.534,
- "total_deaths_per_million": 66.548,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 65.28
- },
- {
- "date": "2020-08-26",
- "total_cases": 3568.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 45.0,
- "total_deaths": 37.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 6417.405,
- "new_cases_per_million": 64.75,
- "new_cases_smoothed_per_million": 80.937,
- "total_deaths_per_million": 66.548,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 65.28
- },
- {
- "date": "2020-08-27",
- "total_cases": 3630.0,
- "new_cases": 62.0,
- "new_cases_smoothed": 44.143,
- "total_deaths": 38.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 6528.918,
- "new_cases_per_million": 111.513,
- "new_cases_smoothed_per_million": 79.395,
- "total_deaths_per_million": 68.347,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 0.514,
- "stringency_index": 65.28
- },
- {
- "date": "2020-08-28",
- "total_cases": 3699.0,
- "new_cases": 69.0,
- "new_cases_smoothed": 47.286,
- "total_deaths": 38.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 6653.021,
- "new_cases_per_million": 124.103,
- "new_cases_smoothed_per_million": 85.048,
- "total_deaths_per_million": 68.347,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 65.28
- },
- {
- "date": "2020-08-29",
- "total_cases": 3745.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 47.571,
- "total_deaths": 38.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 6735.757,
- "new_cases_per_million": 82.736,
- "new_cases_smoothed_per_million": 85.562,
- "total_deaths_per_million": 68.347,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 65.28
- },
- {
- "date": "2020-08-30",
- "total_cases": 3778.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 46.143,
- "total_deaths": 39.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 6795.111,
- "new_cases_per_million": 59.354,
- "new_cases_smoothed_per_million": 82.993,
- "total_deaths_per_million": 70.145,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 0.514,
- "stringency_index": 65.28
- },
- {
- "date": "2020-08-31",
- "total_cases": 3852.0,
- "new_cases": 74.0,
- "new_cases_smoothed": 49.0,
- "total_deaths": 40.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 6928.207,
- "new_cases_per_million": 133.096,
- "new_cases_smoothed_per_million": 88.131,
- "total_deaths_per_million": 71.944,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 0.771,
- "stringency_index": 65.28
- },
- {
- "date": "2020-09-01",
- "total_cases": 3884.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 50.286,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 6985.762,
- "new_cases_per_million": 57.555,
- "new_cases_smoothed_per_million": 90.444,
- "total_deaths_per_million": 71.944,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.771,
- "stringency_index": 68.98
- },
- {
- "date": "2020-09-02",
- "total_cases": 3970.0,
- "new_cases": 86.0,
- "new_cases_smoothed": 57.429,
- "total_deaths": 40.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 7140.442,
- "new_cases_per_million": 154.68,
- "new_cases_smoothed_per_million": 103.291,
- "total_deaths_per_million": 71.944,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.771,
- "stringency_index": 68.98
- },
- {
- "date": "2020-09-03",
- "total_cases": 4048.0,
- "new_cases": 78.0,
- "new_cases_smoothed": 59.714,
- "total_deaths": 41.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 7280.733,
- "new_cases_per_million": 140.291,
- "new_cases_smoothed_per_million": 107.402,
- "total_deaths_per_million": 73.743,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 0.771,
- "stringency_index": 68.98
- },
- {
- "date": "2020-09-04",
- "total_cases": 4125.0,
- "new_cases": 77.0,
- "new_cases_smoothed": 60.857,
- "total_deaths": 41.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 7419.225,
- "new_cases_per_million": 138.492,
- "new_cases_smoothed_per_million": 109.458,
- "total_deaths_per_million": 73.743,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.771,
- "stringency_index": 68.98
- },
- {
- "date": "2020-09-05",
- "total_cases": 4200.0,
- "new_cases": 75.0,
- "new_cases_smoothed": 65.0,
- "total_deaths": 41.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 7554.12,
- "new_cases_per_million": 134.895,
- "new_cases_smoothed_per_million": 116.909,
- "total_deaths_per_million": 73.743,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.771,
- "stringency_index": 68.98
- },
- {
- "date": "2020-09-06",
- "total_cases": 4275.0,
- "new_cases": 75.0,
- "new_cases_smoothed": 71.0,
- "total_deaths": 42.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 7689.015,
- "new_cases_per_million": 134.895,
- "new_cases_smoothed_per_million": 127.701,
- "total_deaths_per_million": 75.541,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 0.771,
- "stringency_index": 68.98
- },
- {
- "date": "2020-09-07",
- "total_cases": 4330.0,
- "new_cases": 55.0,
- "new_cases_smoothed": 68.286,
- "total_deaths": 42.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 7787.938,
- "new_cases_per_million": 98.923,
- "new_cases_smoothed_per_million": 122.819,
- "total_deaths_per_million": 75.541,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.514,
- "stringency_index": 68.98
- },
- {
- "date": "2020-09-08",
- "total_cases": 4358.0,
- "new_cases": 28.0,
- "new_cases_smoothed": 67.714,
- "total_deaths": 42.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 7838.299,
- "new_cases_per_million": 50.361,
- "new_cases_smoothed_per_million": 121.791,
- "total_deaths_per_million": 75.541,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.514,
- "stringency_index": 68.98
- },
- {
- "date": "2020-09-09",
- "total_cases": 4400.0,
- "new_cases": 42.0,
- "new_cases_smoothed": 61.429,
- "total_deaths": 42.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 7913.84,
- "new_cases_per_million": 75.541,
- "new_cases_smoothed_per_million": 110.485,
- "total_deaths_per_million": 75.541,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.514,
- "stringency_index": 68.98
- },
- {
- "date": "2020-09-10",
- "total_cases": 4473.0,
- "new_cases": 73.0,
- "new_cases_smoothed": 60.714,
- "total_deaths": 43.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 8045.138,
- "new_cases_per_million": 131.298,
- "new_cases_smoothed_per_million": 109.201,
- "total_deaths_per_million": 77.34,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 0.514,
- "stringency_index": 68.98
- },
- {
- "date": "2020-09-11",
- "total_cases": 4557.0,
- "new_cases": 84.0,
- "new_cases_smoothed": 61.714,
- "total_deaths": 43.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 8196.22,
- "new_cases_per_million": 151.082,
- "new_cases_smoothed_per_million": 110.999,
- "total_deaths_per_million": 77.34,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.514,
- "stringency_index": 68.98
- },
- {
- "date": "2020-09-12",
- "total_cases": 4651.0,
- "new_cases": 94.0,
- "new_cases_smoothed": 64.429,
- "total_deaths": 44.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 8365.288,
- "new_cases_per_million": 169.068,
- "new_cases_smoothed_per_million": 115.881,
- "total_deaths_per_million": 79.138,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 0.771,
- "stringency_index": 68.98
- },
- {
- "date": "2020-09-13",
- "total_cases": 4711.0,
- "new_cases": 60.0,
- "new_cases_smoothed": 62.286,
- "total_deaths": 44.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 8473.204,
- "new_cases_per_million": 107.916,
- "new_cases_smoothed_per_million": 112.027,
- "total_deaths_per_million": 79.138,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.514,
- "stringency_index": 68.98
- },
- {
- "date": "2020-09-14",
- "total_cases": 4813.0,
- "new_cases": 102.0,
- "new_cases_smoothed": 69.0,
- "total_deaths": 44.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 8656.662,
- "new_cases_per_million": 183.457,
- "new_cases_smoothed_per_million": 124.103,
- "total_deaths_per_million": 79.138,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.514,
- "stringency_index": 68.98
- },
- {
- "date": "2020-09-15",
- "total_cases": 4839.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 68.714,
- "total_deaths": 45.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 8703.425,
- "new_cases_per_million": 46.764,
- "new_cases_smoothed_per_million": 123.59,
- "total_deaths_per_million": 80.937,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 0.771,
- "stringency_index": 68.98
- },
- {
- "date": "2020-09-16",
- "total_cases": 4904.0,
- "new_cases": 65.0,
- "new_cases_smoothed": 72.0,
- "total_deaths": 46.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 8820.334,
- "new_cases_per_million": 116.909,
- "new_cases_smoothed_per_million": 129.499,
- "total_deaths_per_million": 82.736,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 1.028,
- "stringency_index": 68.98
- },
- {
- "date": "2020-09-17",
- "total_cases": 4978.0,
- "new_cases": 74.0,
- "new_cases_smoothed": 72.143,
- "total_deaths": 47.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 8953.431,
- "new_cases_per_million": 133.096,
- "new_cases_smoothed_per_million": 129.756,
- "total_deaths_per_million": 84.534,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 1.028,
- "stringency_index": 68.98
- },
- {
- "date": "2020-09-18",
- "total_cases": 5063.0,
- "new_cases": 85.0,
- "new_cases_smoothed": 72.286,
- "total_deaths": 49.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 9106.312,
- "new_cases_per_million": 152.881,
- "new_cases_smoothed_per_million": 130.013,
- "total_deaths_per_million": 88.131,
- "new_deaths_per_million": 3.597,
- "new_deaths_smoothed_per_million": 1.542,
- "stringency_index": 68.98
- },
- {
- "date": "2020-09-19",
- "total_cases": 5141.0,
- "new_cases": 78.0,
- "new_cases_smoothed": 70.0,
- "total_deaths": 50.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 9246.602,
- "new_cases_per_million": 140.291,
- "new_cases_smoothed_per_million": 125.902,
- "total_deaths_per_million": 89.93,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 1.542,
- "stringency_index": 68.98
- },
- {
- "date": "2020-09-20",
- "total_cases": 5186.0,
- "new_cases": 45.0,
- "new_cases_smoothed": 67.857,
- "total_deaths": 50.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 9327.539,
- "new_cases_per_million": 80.937,
- "new_cases_smoothed_per_million": 122.048,
- "total_deaths_per_million": 89.93,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.542
- },
- {
- "date": "2020-09-21",
- "total_cases": 5257.0,
- "new_cases": 71.0,
- "new_cases_smoothed": 63.429,
- "total_deaths": 51.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 9455.24,
- "new_cases_per_million": 127.701,
- "new_cases_smoothed_per_million": 114.083,
- "total_deaths_per_million": 91.729,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 1.799
- },
- {
- "date": "2020-09-22",
- "total_cases": 5257.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 59.714,
- "total_deaths": 51.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 9455.24,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 107.402,
- "total_deaths_per_million": 91.729,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.542
- },
- {
- "date": "2020-09-23",
- "total_cases": 5281.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 53.857,
- "total_deaths": 52.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 9498.406,
- "new_cases_per_million": 43.166,
- "new_cases_smoothed_per_million": 96.867,
- "total_deaths_per_million": 93.527,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 1.542
- },
- {
- "date": "2020-09-24",
- "total_cases": 5412.0,
- "new_cases": 131.0,
- "new_cases_smoothed": 62.0,
- "total_deaths": 54.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 9734.023,
- "new_cases_per_million": 235.617,
- "new_cases_smoothed_per_million": 111.513,
- "total_deaths_per_million": 97.124,
- "new_deaths_per_million": 3.597,
- "new_deaths_smoothed_per_million": 1.799
- },
- {
- "date": "2020-09-25",
- "total_cases": 5479.0,
- "new_cases": 67.0,
- "new_cases_smoothed": 59.429,
- "total_deaths": 55.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 9854.529,
- "new_cases_per_million": 120.506,
- "new_cases_smoothed_per_million": 106.888,
- "total_deaths_per_million": 98.923,
- "new_deaths_per_million": 1.799,
- "new_deaths_smoothed_per_million": 1.542
- }
- ]
- },
- "CRI": {
- "continent": "North America",
- "location": "Costa Rica",
- "population": 5094114.0,
- "population_density": 96.079,
- "median_age": 33.6,
- "aged_65_older": 9.468,
- "aged_70_older": 5.694,
- "gdp_per_capita": 15524.995,
- "extreme_poverty": 1.3,
- "cardiovasc_death_rate": 137.973,
- "diabetes_prevalence": 8.78,
- "female_smokers": 6.4,
- "male_smokers": 17.4,
- "handwashing_facilities": 83.841,
- "hospital_beds_per_thousand": 1.13,
- "life_expectancy": 80.28,
- "human_development_index": 0.794,
- "data": [
- {
- "date": "2020-03-07",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.196,
- "new_cases_per_million": 0.196,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-09",
- "total_cases": 5.0,
- "new_cases": 4.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.982,
- "new_cases_per_million": 0.785,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-10",
- "total_cases": 9.0,
- "new_cases": 4.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 1.767,
- "new_cases_per_million": 0.785,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 29.63
- },
- {
- "date": "2020-03-11",
- "total_cases": 13.0,
- "new_cases": 4.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 2.552,
- "new_cases_per_million": 0.785,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_tests": 68.0,
- "total_tests": 68.0,
- "total_tests_per_thousand": 0.013,
- "new_tests_per_thousand": 0.013,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 29.63
- },
- {
- "date": "2020-03-12",
- "total_cases": 22.0,
- "new_cases": 9.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 4.319,
- "new_cases_per_million": 1.767,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_tests": 89.0,
- "total_tests": 157.0,
- "total_tests_per_thousand": 0.031,
- "new_tests_per_thousand": 0.017,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 37.04
- },
- {
- "date": "2020-03-13",
- "total_cases": 23.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 4.515,
- "new_cases_per_million": 0.196,
- "new_cases_smoothed_per_million": 0.645,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 86.0,
- "total_tests": 243.0,
- "total_tests_per_thousand": 0.048,
- "new_tests_per_thousand": 0.017,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 37.04
- },
- {
- "date": "2020-03-14",
- "total_cases": 26.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 3.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5.104,
- "new_cases_per_million": 0.589,
- "new_cases_smoothed_per_million": 0.701,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 127.0,
- "total_tests": 370.0,
- "total_tests_per_thousand": 0.073,
- "new_tests_per_thousand": 0.025,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 37.04
- },
- {
- "date": "2020-03-15",
- "total_cases": 27.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5.3,
- "new_cases_per_million": 0.196,
- "new_cases_smoothed_per_million": 0.729,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 43.0,
- "total_tests": 413.0,
- "total_tests_per_thousand": 0.081,
- "new_tests_per_thousand": 0.008,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 37.04
- },
- {
- "date": "2020-03-16",
- "total_cases": 35.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 4.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.871,
- "new_cases_per_million": 1.57,
- "new_cases_smoothed_per_million": 0.841,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 171.0,
- "total_tests": 584.0,
- "total_tests_per_thousand": 0.115,
- "new_tests_per_thousand": 0.034,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 37.04
- },
- {
- "date": "2020-03-17",
- "total_cases": 41.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 4.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 8.049,
- "new_cases_per_million": 1.178,
- "new_cases_smoothed_per_million": 0.897,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 114.0,
- "total_tests": 698.0,
- "total_tests_per_thousand": 0.137,
- "new_tests_per_thousand": 0.022,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 62.96
- },
- {
- "date": "2020-03-18",
- "total_cases": 50.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 5.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 9.815,
- "new_cases_per_million": 1.767,
- "new_cases_smoothed_per_million": 1.038,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 154.0,
- "total_tests": 852.0,
- "total_tests_per_thousand": 0.167,
- "new_tests_per_thousand": 0.03,
- "new_tests_smoothed": 112.0,
- "new_tests_smoothed_per_thousand": 0.022,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 62.96
- },
- {
- "date": "2020-03-19",
- "total_cases": 69.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 6.714,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 13.545,
- "new_cases_per_million": 3.73,
- "new_cases_smoothed_per_million": 1.318,
- "total_deaths_per_million": 0.196,
- "new_deaths_per_million": 0.196,
- "new_deaths_smoothed_per_million": 0.028,
- "new_tests": 116.0,
- "total_tests": 968.0,
- "total_tests_per_thousand": 0.19,
- "new_tests_per_thousand": 0.023,
- "new_tests_smoothed": 116.0,
- "new_tests_smoothed_per_thousand": 0.023,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 62.96
- },
- {
- "date": "2020-03-20",
- "total_cases": 87.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 9.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 17.079,
- "new_cases_per_million": 3.533,
- "new_cases_smoothed_per_million": 1.795,
- "total_deaths_per_million": 0.196,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.028,
- "new_tests": 119.0,
- "total_tests": 1087.0,
- "total_tests_per_thousand": 0.213,
- "new_tests_per_thousand": 0.023,
- "new_tests_smoothed": 121.0,
- "new_tests_smoothed_per_thousand": 0.024,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 62.96
- },
- {
- "date": "2020-03-21",
- "total_cases": 113.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 12.429,
- "total_deaths": 2.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 22.182,
- "new_cases_per_million": 5.104,
- "new_cases_smoothed_per_million": 2.44,
- "total_deaths_per_million": 0.393,
- "new_deaths_per_million": 0.196,
- "new_deaths_smoothed_per_million": 0.056,
- "new_tests": 148.0,
- "total_tests": 1235.0,
- "total_tests_per_thousand": 0.242,
- "new_tests_per_thousand": 0.029,
- "new_tests_smoothed": 124.0,
- "new_tests_smoothed_per_thousand": 0.024,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 71.3
- },
- {
- "date": "2020-03-22",
- "total_cases": 117.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 12.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 22.968,
- "new_cases_per_million": 0.785,
- "new_cases_smoothed_per_million": 2.524,
- "total_deaths_per_million": 0.393,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.056,
- "new_tests": 227.0,
- "total_tests": 1462.0,
- "total_tests_per_thousand": 0.287,
- "new_tests_per_thousand": 0.045,
- "new_tests_smoothed": 150.0,
- "new_tests_smoothed_per_thousand": 0.029,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 71.3
- },
- {
- "date": "2020-03-23",
- "total_cases": 134.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 14.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 26.305,
- "new_cases_per_million": 3.337,
- "new_cases_smoothed_per_million": 2.776,
- "total_deaths_per_million": 0.393,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.056,
- "new_tests": 157.0,
- "total_tests": 1619.0,
- "total_tests_per_thousand": 0.318,
- "new_tests_per_thousand": 0.031,
- "new_tests_smoothed": 148.0,
- "new_tests_smoothed_per_thousand": 0.029,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 71.3
- },
- {
- "date": "2020-03-24",
- "total_cases": 158.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 16.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 31.016,
- "new_cases_per_million": 4.711,
- "new_cases_smoothed_per_million": 3.281,
- "total_deaths_per_million": 0.393,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.056,
- "new_tests": 165.0,
- "total_tests": 1784.0,
- "total_tests_per_thousand": 0.35,
- "new_tests_per_thousand": 0.032,
- "new_tests_smoothed": 155.0,
- "new_tests_smoothed_per_thousand": 0.03,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 71.3
- },
- {
- "date": "2020-03-25",
- "total_cases": 177.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 18.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 34.746,
- "new_cases_per_million": 3.73,
- "new_cases_smoothed_per_million": 3.562,
- "total_deaths_per_million": 0.393,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.056,
- "new_tests": 89.0,
- "total_tests": 1873.0,
- "total_tests_per_thousand": 0.368,
- "new_tests_per_thousand": 0.017,
- "new_tests_smoothed": 146.0,
- "new_tests_smoothed_per_thousand": 0.029,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 71.3
- },
- {
- "date": "2020-03-26",
- "total_cases": 201.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 18.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 39.457,
- "new_cases_per_million": 4.711,
- "new_cases_smoothed_per_million": 3.702,
- "total_deaths_per_million": 0.393,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.028,
- "new_tests": 677.0,
- "total_tests": 2550.0,
- "total_tests_per_thousand": 0.501,
- "new_tests_per_thousand": 0.133,
- "new_tests_smoothed": 226.0,
- "new_tests_smoothed_per_thousand": 0.044,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 71.3
- },
- {
- "date": "2020-03-27",
- "total_cases": 231.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 20.571,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 45.346,
- "new_cases_per_million": 5.889,
- "new_cases_smoothed_per_million": 4.038,
- "total_deaths_per_million": 0.393,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.028,
- "new_tests": 487.0,
- "total_tests": 3037.0,
- "total_tests_per_thousand": 0.596,
- "new_tests_per_thousand": 0.096,
- "new_tests_smoothed": 279.0,
- "new_tests_smoothed_per_thousand": 0.055,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 71.3
- },
- {
- "date": "2020-03-28",
- "total_cases": 263.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 21.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 51.628,
- "new_cases_per_million": 6.282,
- "new_cases_smoothed_per_million": 4.207,
- "total_deaths_per_million": 0.393,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 158.0,
- "total_tests": 3195.0,
- "total_tests_per_thousand": 0.627,
- "new_tests_per_thousand": 0.031,
- "new_tests_smoothed": 280.0,
- "new_tests_smoothed_per_thousand": 0.055,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 71.3
- },
- {
- "date": "2020-03-29",
- "total_cases": 295.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 25.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 57.91,
- "new_cases_per_million": 6.282,
- "new_cases_smoothed_per_million": 4.992,
- "total_deaths_per_million": 0.393,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 222.0,
- "total_tests": 3417.0,
- "total_tests_per_thousand": 0.671,
- "new_tests_per_thousand": 0.044,
- "new_tests_smoothed": 279.0,
- "new_tests_smoothed_per_thousand": 0.055,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 71.3
- },
- {
- "date": "2020-03-30",
- "total_cases": 314.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 25.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 61.64,
- "new_cases_per_million": 3.73,
- "new_cases_smoothed_per_million": 5.048,
- "total_deaths_per_million": 0.393,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 263.0,
- "total_tests": 3680.0,
- "total_tests_per_thousand": 0.722,
- "new_tests_per_thousand": 0.052,
- "new_tests_smoothed": 294.0,
- "new_tests_smoothed_per_thousand": 0.058,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 71.3
- },
- {
- "date": "2020-03-31",
- "total_cases": 330.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 24.571,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 64.781,
- "new_cases_per_million": 3.141,
- "new_cases_smoothed_per_million": 4.823,
- "total_deaths_per_million": 0.393,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 153.0,
- "total_tests": 3833.0,
- "total_tests_per_thousand": 0.752,
- "new_tests_per_thousand": 0.03,
- "new_tests_smoothed": 293.0,
- "new_tests_smoothed_per_thousand": 0.058,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-01",
- "total_cases": 347.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 24.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 68.118,
- "new_cases_per_million": 3.337,
- "new_cases_smoothed_per_million": 4.767,
- "total_deaths_per_million": 0.393,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 373.0,
- "total_tests": 4206.0,
- "total_tests_per_thousand": 0.826,
- "new_tests_per_thousand": 0.073,
- "new_tests_smoothed": 333.0,
- "new_tests_smoothed_per_thousand": 0.065,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-02",
- "total_cases": 375.0,
- "new_cases": 28.0,
- "new_cases_smoothed": 24.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 73.614,
- "new_cases_per_million": 5.497,
- "new_cases_smoothed_per_million": 4.88,
- "total_deaths_per_million": 0.393,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 132.0,
- "total_tests": 4338.0,
- "total_tests_per_thousand": 0.852,
- "new_tests_per_thousand": 0.026,
- "new_tests_smoothed": 255.0,
- "new_tests_smoothed_per_thousand": 0.05,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-03",
- "total_cases": 396.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 23.571,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 77.737,
- "new_cases_per_million": 4.122,
- "new_cases_smoothed_per_million": 4.627,
- "total_deaths_per_million": 0.393,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 110.0,
- "total_tests": 4448.0,
- "total_tests_per_thousand": 0.873,
- "new_tests_per_thousand": 0.022,
- "new_tests_smoothed": 202.0,
- "new_tests_smoothed_per_thousand": 0.04,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-04",
- "total_cases": 416.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 21.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 81.663,
- "new_cases_per_million": 3.926,
- "new_cases_smoothed_per_million": 4.291,
- "total_deaths_per_million": 0.393,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 194.0,
- "total_tests": 4642.0,
- "total_tests_per_thousand": 0.911,
- "new_tests_per_thousand": 0.038,
- "new_tests_smoothed": 207.0,
- "new_tests_smoothed_per_thousand": 0.041,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-05",
- "total_cases": 435.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 20.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 85.393,
- "new_cases_per_million": 3.73,
- "new_cases_smoothed_per_million": 3.926,
- "total_deaths_per_million": 0.393,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 444.0,
- "total_tests": 5086.0,
- "total_tests_per_thousand": 0.998,
- "new_tests_per_thousand": 0.087,
- "new_tests_smoothed": 238.0,
- "new_tests_smoothed_per_thousand": 0.047,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-06",
- "total_cases": 454.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 20.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 89.122,
- "new_cases_per_million": 3.73,
- "new_cases_smoothed_per_million": 3.926,
- "total_deaths_per_million": 0.393,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 265.0,
- "total_tests": 5351.0,
- "total_tests_per_thousand": 1.05,
- "new_tests_per_thousand": 0.052,
- "new_tests_smoothed": 239.0,
- "new_tests_smoothed_per_thousand": 0.047,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-07",
- "total_cases": 467.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 19.571,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 91.674,
- "new_cases_per_million": 2.552,
- "new_cases_smoothed_per_million": 3.842,
- "total_deaths_per_million": 0.393,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 162.0,
- "total_tests": 5513.0,
- "total_tests_per_thousand": 1.082,
- "new_tests_per_thousand": 0.032,
- "new_tests_smoothed": 240.0,
- "new_tests_smoothed_per_thousand": 0.047,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 75.0
- },
- {
- "date": "2020-04-08",
- "total_cases": 483.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 19.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 94.815,
- "new_cases_per_million": 3.141,
- "new_cases_smoothed_per_million": 3.814,
- "total_deaths_per_million": 0.393,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 510.0,
- "total_tests": 6023.0,
- "total_tests_per_thousand": 1.182,
- "new_tests_per_thousand": 0.1,
- "new_tests_smoothed": 260.0,
- "new_tests_smoothed_per_thousand": 0.051,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 77.78
- },
- {
- "date": "2020-04-09",
- "total_cases": 502.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 18.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 98.545,
- "new_cases_per_million": 3.73,
- "new_cases_smoothed_per_million": 3.562,
- "total_deaths_per_million": 0.393,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 263.0,
- "total_tests": 6286.0,
- "total_tests_per_thousand": 1.234,
- "new_tests_per_thousand": 0.052,
- "new_tests_smoothed": 278.0,
- "new_tests_smoothed_per_thousand": 0.055,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 77.78
- },
- {
- "date": "2020-04-10",
- "total_cases": 539.0,
- "new_cases": 37.0,
- "new_cases_smoothed": 20.429,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 105.808,
- "new_cases_per_million": 7.263,
- "new_cases_smoothed_per_million": 4.01,
- "total_deaths_per_million": 0.589,
- "new_deaths_per_million": 0.196,
- "new_deaths_smoothed_per_million": 0.028,
- "new_tests": 154.0,
- "total_tests": 6440.0,
- "total_tests_per_thousand": 1.264,
- "new_tests_per_thousand": 0.03,
- "new_tests_smoothed": 285.0,
- "new_tests_smoothed_per_thousand": 0.056,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 77.78
- },
- {
- "date": "2020-04-11",
- "total_cases": 558.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 20.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 109.538,
- "new_cases_per_million": 3.73,
- "new_cases_smoothed_per_million": 3.982,
- "total_deaths_per_million": 0.589,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.028,
- "new_tests": 156.0,
- "total_tests": 6596.0,
- "total_tests_per_thousand": 1.295,
- "new_tests_per_thousand": 0.031,
- "new_tests_smoothed": 279.0,
- "new_tests_smoothed_per_thousand": 0.055,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 77.78
- },
- {
- "date": "2020-04-12",
- "total_cases": 577.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 20.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 113.268,
- "new_cases_per_million": 3.73,
- "new_cases_smoothed_per_million": 3.982,
- "total_deaths_per_million": 0.589,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.028,
- "new_tests": 154.0,
- "total_tests": 6750.0,
- "total_tests_per_thousand": 1.325,
- "new_tests_per_thousand": 0.03,
- "new_tests_smoothed": 238.0,
- "new_tests_smoothed_per_thousand": 0.047,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 77.78
- },
- {
- "date": "2020-04-13",
- "total_cases": 595.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 20.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 116.801,
- "new_cases_per_million": 3.533,
- "new_cases_smoothed_per_million": 3.954,
- "total_deaths_per_million": 0.589,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.028,
- "new_tests": 106.0,
- "total_tests": 6856.0,
- "total_tests_per_thousand": 1.346,
- "new_tests_per_thousand": 0.021,
- "new_tests_smoothed": 215.0,
- "new_tests_smoothed_per_thousand": 0.042,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 75.93
- },
- {
- "date": "2020-04-14",
- "total_cases": 612.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 20.714,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 120.139,
- "new_cases_per_million": 3.337,
- "new_cases_smoothed_per_million": 4.066,
- "total_deaths_per_million": 0.589,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.028,
- "new_tests": 76.0,
- "total_tests": 6932.0,
- "total_tests_per_thousand": 1.361,
- "new_tests_per_thousand": 0.015,
- "new_tests_smoothed": 203.0,
- "new_tests_smoothed_per_thousand": 0.04,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 75.93
- },
- {
- "date": "2020-04-15",
- "total_cases": 618.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 19.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 121.316,
- "new_cases_per_million": 1.178,
- "new_cases_smoothed_per_million": 3.786,
- "total_deaths_per_million": 0.589,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.028,
- "new_tests": 193.0,
- "total_tests": 7125.0,
- "total_tests_per_thousand": 1.399,
- "new_tests_per_thousand": 0.038,
- "new_tests_smoothed": 157.0,
- "new_tests_smoothed_per_thousand": 0.031,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 75.93
- },
- {
- "date": "2020-04-16",
- "total_cases": 626.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 17.714,
- "total_deaths": 4.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 122.887,
- "new_cases_per_million": 1.57,
- "new_cases_smoothed_per_million": 3.477,
- "total_deaths_per_million": 0.785,
- "new_deaths_per_million": 0.196,
- "new_deaths_smoothed_per_million": 0.056,
- "new_tests": 214.0,
- "total_tests": 7339.0,
- "total_tests_per_thousand": 1.441,
- "new_tests_per_thousand": 0.042,
- "new_tests_smoothed": 150.0,
- "new_tests_smoothed_per_thousand": 0.029,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 75.93
- },
- {
- "date": "2020-04-17",
- "total_cases": 642.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 14.714,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 126.028,
- "new_cases_per_million": 3.141,
- "new_cases_smoothed_per_million": 2.888,
- "total_deaths_per_million": 0.785,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.028,
- "new_tests": 172.0,
- "total_tests": 7511.0,
- "total_tests_per_thousand": 1.474,
- "new_tests_per_thousand": 0.034,
- "new_tests_smoothed": 153.0,
- "new_tests_smoothed_per_thousand": 0.03,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 75.93
- },
- {
- "date": "2020-04-18",
- "total_cases": 649.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 13.0,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 127.402,
- "new_cases_per_million": 1.374,
- "new_cases_smoothed_per_million": 2.552,
- "total_deaths_per_million": 0.785,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.028,
- "new_tests": 227.0,
- "total_tests": 7738.0,
- "total_tests_per_thousand": 1.519,
- "new_tests_per_thousand": 0.045,
- "new_tests_smoothed": 163.0,
- "new_tests_smoothed_per_thousand": 0.032,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 75.93
- },
- {
- "date": "2020-04-19",
- "total_cases": 655.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 11.143,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 128.58,
- "new_cases_per_million": 1.178,
- "new_cases_smoothed_per_million": 2.187,
- "total_deaths_per_million": 0.785,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.028,
- "new_tests": 52.0,
- "total_tests": 7790.0,
- "total_tests_per_thousand": 1.529,
- "new_tests_per_thousand": 0.01,
- "new_tests_smoothed": 149.0,
- "new_tests_smoothed_per_thousand": 0.029,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 75.93
- },
- {
- "date": "2020-04-20",
- "total_cases": 660.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 9.286,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 129.561,
- "new_cases_per_million": 0.982,
- "new_cases_smoothed_per_million": 1.823,
- "total_deaths_per_million": 0.785,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.028,
- "new_tests": 96.0,
- "total_tests": 7886.0,
- "total_tests_per_thousand": 1.548,
- "new_tests_per_thousand": 0.019,
- "new_tests_smoothed": 147.0,
- "new_tests_smoothed_per_thousand": 0.029,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 75.93
- },
- {
- "date": "2020-04-21",
- "total_cases": 662.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 7.143,
- "total_deaths": 6.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 129.954,
- "new_cases_per_million": 0.393,
- "new_cases_smoothed_per_million": 1.402,
- "total_deaths_per_million": 1.178,
- "new_deaths_per_million": 0.393,
- "new_deaths_smoothed_per_million": 0.084,
- "new_tests": 266.0,
- "total_tests": 8152.0,
- "total_tests_per_thousand": 1.6,
- "new_tests_per_thousand": 0.052,
- "new_tests_smoothed": 174.0,
- "new_tests_smoothed_per_thousand": 0.034,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 75.93
- },
- {
- "date": "2020-04-22",
- "total_cases": 669.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 7.286,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 131.328,
- "new_cases_per_million": 1.374,
- "new_cases_smoothed_per_million": 1.43,
- "total_deaths_per_million": 1.178,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.084,
- "new_tests": 301.0,
- "total_tests": 8453.0,
- "total_tests_per_thousand": 1.659,
- "new_tests_per_thousand": 0.059,
- "new_tests_smoothed": 190.0,
- "new_tests_smoothed_per_thousand": 0.037,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 75.93
- },
- {
- "date": "2020-04-23",
- "total_cases": 681.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 7.857,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 133.684,
- "new_cases_per_million": 2.356,
- "new_cases_smoothed_per_million": 1.542,
- "total_deaths_per_million": 1.178,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.056,
- "new_tests": 253.0,
- "total_tests": 8706.0,
- "total_tests_per_thousand": 1.709,
- "new_tests_per_thousand": 0.05,
- "new_tests_smoothed": 195.0,
- "new_tests_smoothed_per_thousand": 0.038,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 75.93
- },
- {
- "date": "2020-04-24",
- "total_cases": 687.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 6.429,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 134.862,
- "new_cases_per_million": 1.178,
- "new_cases_smoothed_per_million": 1.262,
- "total_deaths_per_million": 1.178,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.056,
- "new_tests": 102.0,
- "total_tests": 8808.0,
- "total_tests_per_thousand": 1.729,
- "new_tests_per_thousand": 0.02,
- "new_tests_smoothed": 185.0,
- "new_tests_smoothed_per_thousand": 0.036,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 75.93
- },
- {
- "date": "2020-04-25",
- "total_cases": 687.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 134.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.066,
- "total_deaths_per_million": 1.178,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.056,
- "new_tests": 87.0,
- "total_tests": 8895.0,
- "total_tests_per_thousand": 1.746,
- "new_tests_per_thousand": 0.017,
- "new_tests_smoothed": 165.0,
- "new_tests_smoothed_per_thousand": 0.032,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 75.93
- },
- {
- "date": "2020-04-26",
- "total_cases": 693.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 136.039,
- "new_cases_per_million": 1.178,
- "new_cases_smoothed_per_million": 1.066,
- "total_deaths_per_million": 1.178,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.056,
- "new_tests": 37.0,
- "total_tests": 8932.0,
- "total_tests_per_thousand": 1.753,
- "new_tests_per_thousand": 0.007,
- "new_tests_smoothed": 163.0,
- "new_tests_smoothed_per_thousand": 0.032,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 75.93
- },
- {
- "date": "2020-04-27",
- "total_cases": 695.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 5.0,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 136.432,
- "new_cases_per_million": 0.393,
- "new_cases_smoothed_per_million": 0.982,
- "total_deaths_per_million": 1.178,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.056,
- "new_tests": 58.0,
- "total_tests": 8990.0,
- "total_tests_per_thousand": 1.765,
- "new_tests_per_thousand": 0.011,
- "new_tests_smoothed": 158.0,
- "new_tests_smoothed_per_thousand": 0.031,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-28",
- "total_cases": 697.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 5.0,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 136.825,
- "new_cases_per_million": 0.393,
- "new_cases_smoothed_per_million": 0.982,
- "total_deaths_per_million": 1.178,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 59.0,
- "total_tests": 9049.0,
- "total_tests_per_thousand": 1.776,
- "new_tests_per_thousand": 0.012,
- "new_tests_smoothed": 128.0,
- "new_tests_smoothed_per_thousand": 0.025,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-29",
- "total_cases": 705.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 138.395,
- "new_cases_per_million": 1.57,
- "new_cases_smoothed_per_million": 1.01,
- "total_deaths_per_million": 1.178,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 237.0,
- "total_tests": 9286.0,
- "total_tests_per_thousand": 1.823,
- "new_tests_per_thousand": 0.047,
- "new_tests_smoothed": 119.0,
- "new_tests_smoothed_per_thousand": 0.023,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 81.48
- },
- {
- "date": "2020-04-30",
- "total_cases": 713.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 4.571,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 139.965,
- "new_cases_per_million": 1.57,
- "new_cases_smoothed_per_million": 0.897,
- "total_deaths_per_million": 1.178,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 109.0,
- "total_tests": 9395.0,
- "total_tests_per_thousand": 1.844,
- "new_tests_per_thousand": 0.021,
- "new_tests_smoothed": 98.0,
- "new_tests_smoothed_per_thousand": 0.019,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 81.48
- },
- {
- "date": "2020-05-01",
- "total_cases": 719.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 4.571,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 141.143,
- "new_cases_per_million": 1.178,
- "new_cases_smoothed_per_million": 0.897,
- "total_deaths_per_million": 1.178,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 167.0,
- "total_tests": 9562.0,
- "total_tests_per_thousand": 1.877,
- "new_tests_per_thousand": 0.033,
- "new_tests_smoothed": 108.0,
- "new_tests_smoothed_per_thousand": 0.021,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-02",
- "total_cases": 725.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 142.321,
- "new_cases_per_million": 1.178,
- "new_cases_smoothed_per_million": 1.066,
- "total_deaths_per_million": 1.178,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 91.0,
- "total_tests": 9653.0,
- "total_tests_per_thousand": 1.895,
- "new_tests_per_thousand": 0.018,
- "new_tests_smoothed": 108.0,
- "new_tests_smoothed_per_thousand": 0.021,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-03",
- "total_cases": 733.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 5.714,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 143.892,
- "new_cases_per_million": 1.57,
- "new_cases_smoothed_per_million": 1.122,
- "total_deaths_per_million": 1.178,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 120.0,
- "total_tests": 9773.0,
- "total_tests_per_thousand": 1.918,
- "new_tests_per_thousand": 0.024,
- "new_tests_smoothed": 120.0,
- "new_tests_smoothed_per_thousand": 0.024,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-04",
- "total_cases": 739.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 6.286,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 145.069,
- "new_cases_per_million": 1.178,
- "new_cases_smoothed_per_million": 1.234,
- "total_deaths_per_million": 1.178,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 106.0,
- "total_tests": 9879.0,
- "total_tests_per_thousand": 1.939,
- "new_tests_per_thousand": 0.021,
- "new_tests_smoothed": 127.0,
- "new_tests_smoothed_per_thousand": 0.025,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-05",
- "total_cases": 742.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 6.429,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 145.658,
- "new_cases_per_million": 0.589,
- "new_cases_smoothed_per_million": 1.262,
- "total_deaths_per_million": 1.178,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 73.0,
- "total_tests": 9952.0,
- "total_tests_per_thousand": 1.954,
- "new_tests_per_thousand": 0.014,
- "new_tests_smoothed": 129.0,
- "new_tests_smoothed_per_thousand": 0.025,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-06",
- "total_cases": 755.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 7.143,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 148.21,
- "new_cases_per_million": 2.552,
- "new_cases_smoothed_per_million": 1.402,
- "total_deaths_per_million": 1.178,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 209.0,
- "total_tests": 10161.0,
- "total_tests_per_thousand": 1.995,
- "new_tests_per_thousand": 0.041,
- "new_tests_smoothed": 125.0,
- "new_tests_smoothed_per_thousand": 0.025,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-07",
- "total_cases": 761.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 6.857,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 149.388,
- "new_cases_per_million": 1.178,
- "new_cases_smoothed_per_million": 1.346,
- "total_deaths_per_million": 1.178,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 274.0,
- "total_tests": 10435.0,
- "total_tests_per_thousand": 2.048,
- "new_tests_per_thousand": 0.054,
- "new_tests_smoothed": 149.0,
- "new_tests_smoothed_per_thousand": 0.029,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-08",
- "total_cases": 765.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 6.571,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 150.173,
- "new_cases_per_million": 0.785,
- "new_cases_smoothed_per_million": 1.29,
- "total_deaths_per_million": 1.178,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 452.0,
- "total_tests": 10887.0,
- "total_tests_per_thousand": 2.137,
- "new_tests_per_thousand": 0.089,
- "new_tests_smoothed": 189.0,
- "new_tests_smoothed_per_thousand": 0.037,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-09",
- "total_cases": 773.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 6.857,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 151.744,
- "new_cases_per_million": 1.57,
- "new_cases_smoothed_per_million": 1.346,
- "total_deaths_per_million": 1.178,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 449.0,
- "total_tests": 11336.0,
- "total_tests_per_thousand": 2.225,
- "new_tests_per_thousand": 0.088,
- "new_tests_smoothed": 240.0,
- "new_tests_smoothed_per_thousand": 0.047,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-10",
- "total_cases": 780.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 6.714,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 153.118,
- "new_cases_per_million": 1.374,
- "new_cases_smoothed_per_million": 1.318,
- "total_deaths_per_million": 1.178,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 592.0,
- "total_tests": 11928.0,
- "total_tests_per_thousand": 2.342,
- "new_tests_per_thousand": 0.116,
- "new_tests_smoothed": 308.0,
- "new_tests_smoothed_per_thousand": 0.06,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-11",
- "total_cases": 792.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 7.571,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 155.474,
- "new_cases_per_million": 2.356,
- "new_cases_smoothed_per_million": 1.486,
- "total_deaths_per_million": 1.178,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 120.0,
- "total_tests": 12048.0,
- "total_tests_per_thousand": 2.365,
- "new_tests_per_thousand": 0.024,
- "new_tests_smoothed": 310.0,
- "new_tests_smoothed_per_thousand": 0.061,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-12",
- "total_cases": 801.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 8.429,
- "total_deaths": 7.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 157.24,
- "new_cases_per_million": 1.767,
- "new_cases_smoothed_per_million": 1.655,
- "total_deaths_per_million": 1.374,
- "new_deaths_per_million": 0.196,
- "new_deaths_smoothed_per_million": 0.028,
- "new_tests": 73.0,
- "total_tests": 12121.0,
- "total_tests_per_thousand": 2.379,
- "new_tests_per_thousand": 0.014,
- "new_tests_smoothed": 310.0,
- "new_tests_smoothed_per_thousand": 0.061,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-13",
- "total_cases": 804.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 7.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 157.829,
- "new_cases_per_million": 0.589,
- "new_cases_smoothed_per_million": 1.374,
- "total_deaths_per_million": 1.374,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.028,
- "new_tests": 446.0,
- "total_tests": 12567.0,
- "total_tests_per_thousand": 2.467,
- "new_tests_per_thousand": 0.088,
- "new_tests_smoothed": 344.0,
- "new_tests_smoothed_per_thousand": 0.068,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-14",
- "total_cases": 815.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 7.714,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 159.989,
- "new_cases_per_million": 2.159,
- "new_cases_smoothed_per_million": 1.514,
- "total_deaths_per_million": 1.374,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.028,
- "new_tests": 315.0,
- "total_tests": 12882.0,
- "total_tests_per_thousand": 2.529,
- "new_tests_per_thousand": 0.062,
- "new_tests_smoothed": 350.0,
- "new_tests_smoothed_per_thousand": 0.069,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-15",
- "total_cases": 830.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 9.286,
- "total_deaths": 8.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 162.933,
- "new_cases_per_million": 2.945,
- "new_cases_smoothed_per_million": 1.823,
- "total_deaths_per_million": 1.57,
- "new_deaths_per_million": 0.196,
- "new_deaths_smoothed_per_million": 0.056,
- "new_tests": 209.0,
- "total_tests": 13091.0,
- "total_tests_per_thousand": 2.57,
- "new_tests_per_thousand": 0.041,
- "new_tests_smoothed": 315.0,
- "new_tests_smoothed_per_thousand": 0.062,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-16",
- "total_cases": 843.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 10.0,
- "total_deaths": 8.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 165.485,
- "new_cases_per_million": 2.552,
- "new_cases_smoothed_per_million": 1.963,
- "total_deaths_per_million": 1.57,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.056,
- "new_tests": 665.0,
- "total_tests": 13756.0,
- "total_tests_per_thousand": 2.7,
- "new_tests_per_thousand": 0.131,
- "new_tests_smoothed": 346.0,
- "new_tests_smoothed_per_thousand": 0.068,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-17",
- "total_cases": 853.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 10.429,
- "total_deaths": 10.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 167.448,
- "new_cases_per_million": 1.963,
- "new_cases_smoothed_per_million": 2.047,
- "total_deaths_per_million": 1.963,
- "new_deaths_per_million": 0.393,
- "new_deaths_smoothed_per_million": 0.112,
- "new_tests": 576.0,
- "total_tests": 14332.0,
- "total_tests_per_thousand": 2.813,
- "new_tests_per_thousand": 0.113,
- "new_tests_smoothed": 343.0,
- "new_tests_smoothed_per_thousand": 0.067,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-18",
- "total_cases": 863.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 10.143,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 169.411,
- "new_cases_per_million": 1.963,
- "new_cases_smoothed_per_million": 1.991,
- "total_deaths_per_million": 1.963,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.112,
- "new_tests": 206.0,
- "total_tests": 14538.0,
- "total_tests_per_thousand": 2.854,
- "new_tests_per_thousand": 0.04,
- "new_tests_smoothed": 356.0,
- "new_tests_smoothed_per_thousand": 0.07,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-19",
- "total_cases": 866.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 9.286,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 170.0,
- "new_cases_per_million": 0.589,
- "new_cases_smoothed_per_million": 1.823,
- "total_deaths_per_million": 1.963,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.084,
- "new_tests": 138.0,
- "total_tests": 14676.0,
- "total_tests_per_thousand": 2.881,
- "new_tests_per_thousand": 0.027,
- "new_tests_smoothed": 365.0,
- "new_tests_smoothed_per_thousand": 0.072,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-20",
- "total_cases": 882.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 11.143,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 173.141,
- "new_cases_per_million": 3.141,
- "new_cases_smoothed_per_million": 2.187,
- "total_deaths_per_million": 1.963,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.084,
- "new_tests": 434.0,
- "total_tests": 15110.0,
- "total_tests_per_thousand": 2.966,
- "new_tests_per_thousand": 0.085,
- "new_tests_smoothed": 363.0,
- "new_tests_smoothed_per_thousand": 0.071,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-21",
- "total_cases": 897.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 11.714,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 176.086,
- "new_cases_per_million": 2.945,
- "new_cases_smoothed_per_million": 2.3,
- "total_deaths_per_million": 1.963,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.084,
- "new_tests": 168.0,
- "total_tests": 15278.0,
- "total_tests_per_thousand": 2.999,
- "new_tests_per_thousand": 0.033,
- "new_tests_smoothed": 342.0,
- "new_tests_smoothed_per_thousand": 0.067,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-22",
- "total_cases": 903.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 10.429,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 177.263,
- "new_cases_per_million": 1.178,
- "new_cases_smoothed_per_million": 2.047,
- "total_deaths_per_million": 1.963,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.056,
- "new_tests": 486.0,
- "total_tests": 15764.0,
- "total_tests_per_thousand": 3.095,
- "new_tests_per_thousand": 0.095,
- "new_tests_smoothed": 382.0,
- "new_tests_smoothed_per_thousand": 0.075,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-23",
- "total_cases": 911.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 9.714,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 178.834,
- "new_cases_per_million": 1.57,
- "new_cases_smoothed_per_million": 1.907,
- "total_deaths_per_million": 1.963,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.056,
- "new_tests": 235.0,
- "total_tests": 15999.0,
- "total_tests_per_thousand": 3.141,
- "new_tests_per_thousand": 0.046,
- "new_tests_smoothed": 320.0,
- "new_tests_smoothed_per_thousand": 0.063,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-24",
- "total_cases": 918.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 9.286,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 180.208,
- "new_cases_per_million": 1.374,
- "new_cases_smoothed_per_million": 1.823,
- "total_deaths_per_million": 1.963,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 410.0,
- "total_tests": 16409.0,
- "total_tests_per_thousand": 3.221,
- "new_tests_per_thousand": 0.08,
- "new_tests_smoothed": 297.0,
- "new_tests_smoothed_per_thousand": 0.058,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-25",
- "total_cases": 930.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 9.571,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 182.564,
- "new_cases_per_million": 2.356,
- "new_cases_smoothed_per_million": 1.879,
- "total_deaths_per_million": 1.963,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 157.0,
- "total_tests": 16566.0,
- "total_tests_per_thousand": 3.252,
- "new_tests_per_thousand": 0.031,
- "new_tests_smoothed": 290.0,
- "new_tests_smoothed_per_thousand": 0.057,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-26",
- "total_cases": 951.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 12.143,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 186.686,
- "new_cases_per_million": 4.122,
- "new_cases_smoothed_per_million": 2.384,
- "total_deaths_per_million": 1.963,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 125.0,
- "total_tests": 16691.0,
- "total_tests_per_thousand": 3.277,
- "new_tests_per_thousand": 0.025,
- "new_tests_smoothed": 288.0,
- "new_tests_smoothed_per_thousand": 0.057,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-27",
- "total_cases": 956.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 10.571,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 187.668,
- "new_cases_per_million": 0.982,
- "new_cases_smoothed_per_million": 2.075,
- "total_deaths_per_million": 1.963,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 649.0,
- "total_tests": 17340.0,
- "total_tests_per_thousand": 3.404,
- "new_tests_per_thousand": 0.127,
- "new_tests_smoothed": 319.0,
- "new_tests_smoothed_per_thousand": 0.063,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-28",
- "total_cases": 984.0,
- "new_cases": 28.0,
- "new_cases_smoothed": 12.429,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 193.164,
- "new_cases_per_million": 5.497,
- "new_cases_smoothed_per_million": 2.44,
- "total_deaths_per_million": 1.963,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 374.0,
- "total_tests": 17714.0,
- "total_tests_per_thousand": 3.477,
- "new_tests_per_thousand": 0.073,
- "new_tests_smoothed": 348.0,
- "new_tests_smoothed_per_thousand": 0.068,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-29",
- "total_cases": 1000.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 13.857,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 196.305,
- "new_cases_per_million": 3.141,
- "new_cases_smoothed_per_million": 2.72,
- "total_deaths_per_million": 1.963,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 540.0,
- "total_tests": 18254.0,
- "total_tests_per_thousand": 3.583,
- "new_tests_per_thousand": 0.106,
- "new_tests_smoothed": 356.0,
- "new_tests_smoothed_per_thousand": 0.07,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-30",
- "total_cases": 1022.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 15.857,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 200.624,
- "new_cases_per_million": 4.319,
- "new_cases_smoothed_per_million": 3.113,
- "total_deaths_per_million": 1.963,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 467.0,
- "total_tests": 18721.0,
- "total_tests_per_thousand": 3.675,
- "new_tests_per_thousand": 0.092,
- "new_tests_smoothed": 389.0,
- "new_tests_smoothed_per_thousand": 0.076,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-31",
- "total_cases": 1047.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 18.429,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 205.531,
- "new_cases_per_million": 4.908,
- "new_cases_smoothed_per_million": 3.618,
- "total_deaths_per_million": 1.963,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 515.0,
- "total_tests": 19236.0,
- "total_tests_per_thousand": 3.776,
- "new_tests_per_thousand": 0.101,
- "new_tests_smoothed": 404.0,
- "new_tests_smoothed_per_thousand": 0.079,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-01",
- "total_cases": 1056.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 18.0,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 207.298,
- "new_cases_per_million": 1.767,
- "new_cases_smoothed_per_million": 3.533,
- "total_deaths_per_million": 1.963,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 267.0,
- "total_tests": 19503.0,
- "total_tests_per_thousand": 3.829,
- "new_tests_per_thousand": 0.052,
- "new_tests_smoothed": 420.0,
- "new_tests_smoothed_per_thousand": 0.082,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-02",
- "total_cases": 1084.0,
- "new_cases": 28.0,
- "new_cases_smoothed": 19.0,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 212.795,
- "new_cases_per_million": 5.497,
- "new_cases_smoothed_per_million": 3.73,
- "total_deaths_per_million": 1.963,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 264.0,
- "total_tests": 19767.0,
- "total_tests_per_thousand": 3.88,
- "new_tests_per_thousand": 0.052,
- "new_tests_smoothed": 439.0,
- "new_tests_smoothed_per_thousand": 0.086,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-03",
- "total_cases": 1105.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 21.286,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 216.917,
- "new_cases_per_million": 4.122,
- "new_cases_smoothed_per_million": 4.178,
- "total_deaths_per_million": 1.963,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 415.0,
- "total_tests": 20182.0,
- "total_tests_per_thousand": 3.962,
- "new_tests_per_thousand": 0.081,
- "new_tests_smoothed": 406.0,
- "new_tests_smoothed_per_thousand": 0.08,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-04",
- "total_cases": 1157.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 24.714,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 227.125,
- "new_cases_per_million": 10.208,
- "new_cases_smoothed_per_million": 4.852,
- "total_deaths_per_million": 1.963,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 376.0,
- "total_tests": 20558.0,
- "total_tests_per_thousand": 4.036,
- "new_tests_per_thousand": 0.074,
- "new_tests_smoothed": 406.0,
- "new_tests_smoothed_per_thousand": 0.08,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-05",
- "total_cases": 1194.0,
- "new_cases": 37.0,
- "new_cases_smoothed": 27.714,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 234.388,
- "new_cases_per_million": 7.263,
- "new_cases_smoothed_per_million": 5.44,
- "total_deaths_per_million": 1.963,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 443.0,
- "total_tests": 21001.0,
- "total_tests_per_thousand": 4.123,
- "new_tests_per_thousand": 0.087,
- "new_tests_smoothed": 392.0,
- "new_tests_smoothed_per_thousand": 0.077,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-06",
- "total_cases": 1228.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 29.429,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 241.063,
- "new_cases_per_million": 6.674,
- "new_cases_smoothed_per_million": 5.777,
- "total_deaths_per_million": 1.963,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 334.0,
- "total_tests": 21335.0,
- "total_tests_per_thousand": 4.188,
- "new_tests_per_thousand": 0.066,
- "new_tests_smoothed": 373.0,
- "new_tests_smoothed_per_thousand": 0.073,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-07",
- "total_cases": 1263.0,
- "new_cases": 35.0,
- "new_cases_smoothed": 30.857,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 247.933,
- "new_cases_per_million": 6.871,
- "new_cases_smoothed_per_million": 6.057,
- "total_deaths_per_million": 1.963,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 268.0,
- "total_tests": 21603.0,
- "total_tests_per_thousand": 4.241,
- "new_tests_per_thousand": 0.053,
- "new_tests_smoothed": 338.0,
- "new_tests_smoothed_per_thousand": 0.066,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-08",
- "total_cases": 1318.0,
- "new_cases": 55.0,
- "new_cases_smoothed": 37.429,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 258.73,
- "new_cases_per_million": 10.797,
- "new_cases_smoothed_per_million": 7.347,
- "total_deaths_per_million": 1.963,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 161.0,
- "total_tests": 21764.0,
- "total_tests_per_thousand": 4.272,
- "new_tests_per_thousand": 0.032,
- "new_tests_smoothed": 323.0,
- "new_tests_smoothed_per_thousand": 0.063,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-09",
- "total_cases": 1342.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 36.857,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 263.441,
- "new_cases_per_million": 4.711,
- "new_cases_smoothed_per_million": 7.235,
- "total_deaths_per_million": 1.963,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 229.0,
- "total_tests": 21993.0,
- "total_tests_per_thousand": 4.317,
- "new_tests_per_thousand": 0.045,
- "new_tests_smoothed": 318.0,
- "new_tests_smoothed_per_thousand": 0.062,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-10",
- "total_cases": 1375.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 38.571,
- "total_deaths": 11.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 269.919,
- "new_cases_per_million": 6.478,
- "new_cases_smoothed_per_million": 7.572,
- "total_deaths_per_million": 2.159,
- "new_deaths_per_million": 0.196,
- "new_deaths_smoothed_per_million": 0.028,
- "new_tests": 427.0,
- "total_tests": 22420.0,
- "total_tests_per_thousand": 4.401,
- "new_tests_per_thousand": 0.084,
- "new_tests_smoothed": 320.0,
- "new_tests_smoothed_per_thousand": 0.063,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-11",
- "total_cases": 1461.0,
- "new_cases": 86.0,
- "new_cases_smoothed": 43.429,
- "total_deaths": 12.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 286.802,
- "new_cases_per_million": 16.882,
- "new_cases_smoothed_per_million": 8.525,
- "total_deaths_per_million": 2.356,
- "new_deaths_per_million": 0.196,
- "new_deaths_smoothed_per_million": 0.056,
- "new_tests": 381.0,
- "total_tests": 22801.0,
- "total_tests_per_thousand": 4.476,
- "new_tests_per_thousand": 0.075,
- "new_tests_smoothed": 320.0,
- "new_tests_smoothed_per_thousand": 0.063,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-12",
- "total_cases": 1538.0,
- "new_cases": 77.0,
- "new_cases_smoothed": 49.143,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 301.917,
- "new_cases_per_million": 15.115,
- "new_cases_smoothed_per_million": 9.647,
- "total_deaths_per_million": 2.356,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.056,
- "new_tests": 483.0,
- "total_tests": 23284.0,
- "total_tests_per_thousand": 4.571,
- "new_tests_per_thousand": 0.095,
- "new_tests_smoothed": 326.0,
- "new_tests_smoothed_per_thousand": 0.064,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-13",
- "total_cases": 1612.0,
- "new_cases": 74.0,
- "new_cases_smoothed": 54.857,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 316.444,
- "new_cases_per_million": 14.527,
- "new_cases_smoothed_per_million": 10.769,
- "total_deaths_per_million": 2.356,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.056,
- "new_tests": 510.0,
- "total_tests": 23794.0,
- "total_tests_per_thousand": 4.671,
- "new_tests_per_thousand": 0.1,
- "new_tests_smoothed": 351.0,
- "new_tests_smoothed_per_thousand": 0.069,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-14",
- "total_cases": 1662.0,
- "new_cases": 50.0,
- "new_cases_smoothed": 57.0,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 326.259,
- "new_cases_per_million": 9.815,
- "new_cases_smoothed_per_million": 11.189,
- "total_deaths_per_million": 2.356,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.056,
- "new_tests": 308.0,
- "total_tests": 24102.0,
- "total_tests_per_thousand": 4.731,
- "new_tests_per_thousand": 0.06,
- "new_tests_smoothed": 357.0,
- "new_tests_smoothed_per_thousand": 0.07,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-15",
- "total_cases": 1715.0,
- "new_cases": 53.0,
- "new_cases_smoothed": 56.714,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 336.663,
- "new_cases_per_million": 10.404,
- "new_cases_smoothed_per_million": 11.133,
- "total_deaths_per_million": 2.356,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.056,
- "new_tests": 237.0,
- "total_tests": 24339.0,
- "total_tests_per_thousand": 4.778,
- "new_tests_per_thousand": 0.047,
- "new_tests_smoothed": 368.0,
- "new_tests_smoothed_per_thousand": 0.072,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-16",
- "total_cases": 1744.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 57.429,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 342.356,
- "new_cases_per_million": 5.693,
- "new_cases_smoothed_per_million": 11.274,
- "total_deaths_per_million": 2.356,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.056,
- "new_tests": 278.0,
- "total_tests": 24617.0,
- "total_tests_per_thousand": 4.832,
- "new_tests_per_thousand": 0.055,
- "new_tests_smoothed": 375.0,
- "new_tests_smoothed_per_thousand": 0.074,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-17",
- "total_cases": 1769.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 56.286,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 347.264,
- "new_cases_per_million": 4.908,
- "new_cases_smoothed_per_million": 11.049,
- "total_deaths_per_million": 2.356,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.028,
- "new_tests": 451.0,
- "total_tests": 25068.0,
- "total_tests_per_thousand": 4.921,
- "new_tests_per_thousand": 0.089,
- "new_tests_smoothed": 378.0,
- "new_tests_smoothed_per_thousand": 0.074,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-18",
- "total_cases": 1871.0,
- "new_cases": 102.0,
- "new_cases_smoothed": 58.571,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 367.287,
- "new_cases_per_million": 20.023,
- "new_cases_smoothed_per_million": 11.498,
- "total_deaths_per_million": 2.356,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 447.0,
- "total_tests": 25515.0,
- "total_tests_per_thousand": 5.009,
- "new_tests_per_thousand": 0.088,
- "new_tests_smoothed": 388.0,
- "new_tests_smoothed_per_thousand": 0.076,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-19",
- "total_cases": 1939.0,
- "new_cases": 68.0,
- "new_cases_smoothed": 57.286,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 380.635,
- "new_cases_per_million": 13.349,
- "new_cases_smoothed_per_million": 11.245,
- "total_deaths_per_million": 2.356,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 629.0,
- "total_tests": 26144.0,
- "total_tests_per_thousand": 5.132,
- "new_tests_per_thousand": 0.123,
- "new_tests_smoothed": 409.0,
- "new_tests_smoothed_per_thousand": 0.08,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-20",
- "total_cases": 2058.0,
- "new_cases": 119.0,
- "new_cases_smoothed": 63.714,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 403.996,
- "new_cases_per_million": 23.36,
- "new_cases_smoothed_per_million": 12.507,
- "total_deaths_per_million": 2.356,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 457.0,
- "total_tests": 26601.0,
- "total_tests_per_thousand": 5.222,
- "new_tests_per_thousand": 0.09,
- "new_tests_smoothed": 401.0,
- "new_tests_smoothed_per_thousand": 0.079,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-21",
- "total_cases": 2127.0,
- "new_cases": 69.0,
- "new_cases_smoothed": 66.429,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 417.541,
- "new_cases_per_million": 13.545,
- "new_cases_smoothed_per_million": 13.04,
- "total_deaths_per_million": 2.356,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 391.0,
- "total_tests": 26992.0,
- "total_tests_per_thousand": 5.299,
- "new_tests_per_thousand": 0.077,
- "new_tests_smoothed": 413.0,
- "new_tests_smoothed_per_thousand": 0.081,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-22",
- "total_cases": 2213.0,
- "new_cases": 86.0,
- "new_cases_smoothed": 71.143,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 434.423,
- "new_cases_per_million": 16.882,
- "new_cases_smoothed_per_million": 13.966,
- "total_deaths_per_million": 2.356,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 244.0,
- "total_tests": 27236.0,
- "total_tests_per_thousand": 5.347,
- "new_tests_per_thousand": 0.048,
- "new_tests_smoothed": 414.0,
- "new_tests_smoothed_per_thousand": 0.081,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-23",
- "total_cases": 2277.0,
- "new_cases": 64.0,
- "new_cases_smoothed": 76.143,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 446.986,
- "new_cases_per_million": 12.564,
- "new_cases_smoothed_per_million": 14.947,
- "total_deaths_per_million": 2.356,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 443.0,
- "total_tests": 27679.0,
- "total_tests_per_thousand": 5.434,
- "new_tests_per_thousand": 0.087,
- "new_tests_smoothed": 437.0,
- "new_tests_smoothed_per_thousand": 0.086,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-24",
- "total_cases": 2368.0,
- "new_cases": 91.0,
- "new_cases_smoothed": 85.571,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 464.85,
- "new_cases_per_million": 17.864,
- "new_cases_smoothed_per_million": 16.798,
- "total_deaths_per_million": 2.356,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 621.0,
- "total_tests": 28300.0,
- "total_tests_per_thousand": 5.555,
- "new_tests_per_thousand": 0.122,
- "new_tests_smoothed": 462.0,
- "new_tests_smoothed_per_thousand": 0.091,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-25",
- "total_cases": 2515.0,
- "new_cases": 147.0,
- "new_cases_smoothed": 92.0,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 493.707,
- "new_cases_per_million": 28.857,
- "new_cases_smoothed_per_million": 18.06,
- "total_deaths_per_million": 2.356,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 703.0,
- "total_tests": 29003.0,
- "total_tests_per_thousand": 5.693,
- "new_tests_per_thousand": 0.138,
- "new_tests_smoothed": 498.0,
- "new_tests_smoothed_per_thousand": 0.098,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-26",
- "total_cases": 2684.0,
- "new_cases": 169.0,
- "new_cases_smoothed": 106.429,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 526.883,
- "new_cases_per_million": 33.176,
- "new_cases_smoothed_per_million": 20.892,
- "total_deaths_per_million": 2.356,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 687.0,
- "total_tests": 29690.0,
- "total_tests_per_thousand": 5.828,
- "new_tests_per_thousand": 0.135,
- "new_tests_smoothed": 507.0,
- "new_tests_smoothed_per_thousand": 0.1,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-06-27",
- "total_cases": 2836.0,
- "new_cases": 152.0,
- "new_cases_smoothed": 111.143,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 556.721,
- "new_cases_per_million": 29.838,
- "new_cases_smoothed_per_million": 21.818,
- "total_deaths_per_million": 2.356,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 890.0,
- "total_tests": 30580.0,
- "total_tests_per_thousand": 6.003,
- "new_tests_per_thousand": 0.175,
- "new_tests_smoothed": 568.0,
- "new_tests_smoothed_per_thousand": 0.112,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-06-28",
- "total_cases": 2979.0,
- "new_cases": 143.0,
- "new_cases_smoothed": 121.714,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 584.793,
- "new_cases_per_million": 28.072,
- "new_cases_smoothed_per_million": 23.893,
- "total_deaths_per_million": 2.356,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 743.0,
- "total_tests": 31323.0,
- "total_tests_per_thousand": 6.149,
- "new_tests_per_thousand": 0.146,
- "new_tests_smoothed": 619.0,
- "new_tests_smoothed_per_thousand": 0.122,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-06-29",
- "total_cases": 3130.0,
- "new_cases": 151.0,
- "new_cases_smoothed": 131.0,
- "total_deaths": 15.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 614.435,
- "new_cases_per_million": 29.642,
- "new_cases_smoothed_per_million": 25.716,
- "total_deaths_per_million": 2.945,
- "new_deaths_per_million": 0.589,
- "new_deaths_smoothed_per_million": 0.084,
- "new_tests": 691.0,
- "total_tests": 32014.0,
- "total_tests_per_thousand": 6.285,
- "new_tests_per_thousand": 0.136,
- "new_tests_smoothed": 683.0,
- "new_tests_smoothed_per_thousand": 0.134,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-06-30",
- "total_cases": 3269.0,
- "new_cases": 139.0,
- "new_cases_smoothed": 141.714,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 641.721,
- "new_cases_per_million": 27.286,
- "new_cases_smoothed_per_million": 27.819,
- "total_deaths_per_million": 2.945,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.084,
- "new_tests": 594.0,
- "total_tests": 32608.0,
- "total_tests_per_thousand": 6.401,
- "new_tests_per_thousand": 0.117,
- "new_tests_smoothed": 704.0,
- "new_tests_smoothed_per_thousand": 0.138,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-07-01",
- "total_cases": 3459.0,
- "new_cases": 190.0,
- "new_cases_smoothed": 155.857,
- "total_deaths": 16.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 679.019,
- "new_cases_per_million": 37.298,
- "new_cases_smoothed_per_million": 30.596,
- "total_deaths_per_million": 3.141,
- "new_deaths_per_million": 0.196,
- "new_deaths_smoothed_per_million": 0.112,
- "new_tests": 853.0,
- "total_tests": 33461.0,
- "total_tests_per_thousand": 6.569,
- "new_tests_per_thousand": 0.167,
- "new_tests_smoothed": 737.0,
- "new_tests_smoothed_per_thousand": 0.145,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-07-02",
- "total_cases": 3753.0,
- "new_cases": 294.0,
- "new_cases_smoothed": 176.857,
- "total_deaths": 17.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 736.733,
- "new_cases_per_million": 57.714,
- "new_cases_smoothed_per_million": 34.718,
- "total_deaths_per_million": 3.337,
- "new_deaths_per_million": 0.196,
- "new_deaths_smoothed_per_million": 0.14,
- "new_tests": 1259.0,
- "total_tests": 34720.0,
- "total_tests_per_thousand": 6.816,
- "new_tests_per_thousand": 0.247,
- "new_tests_smoothed": 817.0,
- "new_tests_smoothed_per_thousand": 0.16,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-07-03",
- "total_cases": 4023.0,
- "new_cases": 270.0,
- "new_cases_smoothed": 191.286,
- "total_deaths": 17.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 789.735,
- "new_cases_per_million": 53.002,
- "new_cases_smoothed_per_million": 37.55,
- "total_deaths_per_million": 3.337,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.14,
- "new_tests": 933.0,
- "total_tests": 35653.0,
- "total_tests_per_thousand": 6.999,
- "new_tests_per_thousand": 0.183,
- "new_tests_smoothed": 852.0,
- "new_tests_smoothed_per_thousand": 0.167,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-07-04",
- "total_cases": 4311.0,
- "new_cases": 288.0,
- "new_cases_smoothed": 210.714,
- "total_deaths": 18.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 846.271,
- "new_cases_per_million": 56.536,
- "new_cases_smoothed_per_million": 41.364,
- "total_deaths_per_million": 3.533,
- "new_deaths_per_million": 0.196,
- "new_deaths_smoothed_per_million": 0.168,
- "new_tests": 998.0,
- "total_tests": 36651.0,
- "total_tests_per_thousand": 7.195,
- "new_tests_per_thousand": 0.196,
- "new_tests_smoothed": 867.0,
- "new_tests_smoothed_per_thousand": 0.17,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-07-05",
- "total_cases": 4621.0,
- "new_cases": 310.0,
- "new_cases_smoothed": 234.571,
- "total_deaths": 18.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 907.125,
- "new_cases_per_million": 60.855,
- "new_cases_smoothed_per_million": 46.048,
- "total_deaths_per_million": 3.533,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.168,
- "new_tests": 1197.0,
- "total_tests": 37848.0,
- "total_tests_per_thousand": 7.43,
- "new_tests_per_thousand": 0.235,
- "new_tests_smoothed": 932.0,
- "new_tests_smoothed_per_thousand": 0.183,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-07-06",
- "total_cases": 4996.0,
- "new_cases": 375.0,
- "new_cases_smoothed": 266.571,
- "total_deaths": 19.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 980.74,
- "new_cases_per_million": 73.614,
- "new_cases_smoothed_per_million": 52.329,
- "total_deaths_per_million": 3.73,
- "new_deaths_per_million": 0.196,
- "new_deaths_smoothed_per_million": 0.112,
- "new_tests": 1000.0,
- "total_tests": 38848.0,
- "total_tests_per_thousand": 7.626,
- "new_tests_per_thousand": 0.196,
- "new_tests_smoothed": 976.0,
- "new_tests_smoothed_per_thousand": 0.192,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-07-07",
- "total_cases": 5241.0,
- "new_cases": 245.0,
- "new_cases_smoothed": 281.714,
- "total_deaths": 23.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 1028.834,
- "new_cases_per_million": 48.095,
- "new_cases_smoothed_per_million": 55.302,
- "total_deaths_per_million": 4.515,
- "new_deaths_per_million": 0.785,
- "new_deaths_smoothed_per_million": 0.224,
- "new_tests": 1222.0,
- "total_tests": 40070.0,
- "total_tests_per_thousand": 7.866,
- "new_tests_per_thousand": 0.24,
- "new_tests_smoothed": 1066.0,
- "new_tests_smoothed_per_thousand": 0.209,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-07-08",
- "total_cases": 5486.0,
- "new_cases": 245.0,
- "new_cases_smoothed": 289.571,
- "total_deaths": 23.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 1076.929,
- "new_cases_per_million": 48.095,
- "new_cases_smoothed_per_million": 56.844,
- "total_deaths_per_million": 4.515,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.196,
- "new_tests": 1128.0,
- "total_tests": 41198.0,
- "total_tests_per_thousand": 8.087,
- "new_tests_per_thousand": 0.221,
- "new_tests_smoothed": 1105.0,
- "new_tests_smoothed_per_thousand": 0.217,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-07-09",
- "total_cases": 5836.0,
- "new_cases": 350.0,
- "new_cases_smoothed": 297.571,
- "total_deaths": 24.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 1145.636,
- "new_cases_per_million": 68.707,
- "new_cases_smoothed_per_million": 58.415,
- "total_deaths_per_million": 4.711,
- "new_deaths_per_million": 0.196,
- "new_deaths_smoothed_per_million": 0.196,
- "new_tests": 1750.0,
- "total_tests": 42948.0,
- "total_tests_per_thousand": 8.431,
- "new_tests_per_thousand": 0.344,
- "new_tests_smoothed": 1175.0,
- "new_tests_smoothed_per_thousand": 0.231,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-07-10",
- "total_cases": 6485.0,
- "new_cases": 649.0,
- "new_cases_smoothed": 351.714,
- "total_deaths": 25.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 1273.038,
- "new_cases_per_million": 127.402,
- "new_cases_smoothed_per_million": 69.043,
- "total_deaths_per_million": 4.908,
- "new_deaths_per_million": 0.196,
- "new_deaths_smoothed_per_million": 0.224,
- "new_tests": 1367.0,
- "total_tests": 44315.0,
- "total_tests_per_thousand": 8.699,
- "new_tests_per_thousand": 0.268,
- "new_tests_smoothed": 1237.0,
- "new_tests_smoothed_per_thousand": 0.243,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-07-11",
- "total_cases": 6845.0,
- "new_cases": 360.0,
- "new_cases_smoothed": 362.0,
- "total_deaths": 26.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 1343.708,
- "new_cases_per_million": 70.67,
- "new_cases_smoothed_per_million": 71.062,
- "total_deaths_per_million": 5.104,
- "new_deaths_per_million": 0.196,
- "new_deaths_smoothed_per_million": 0.224,
- "new_tests": 1595.0,
- "total_tests": 45910.0,
- "total_tests_per_thousand": 9.012,
- "new_tests_per_thousand": 0.313,
- "new_tests_smoothed": 1323.0,
- "new_tests_smoothed_per_thousand": 0.26,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-07-12",
- "total_cases": 7231.0,
- "new_cases": 386.0,
- "new_cases_smoothed": 372.857,
- "total_deaths": 28.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 1419.481,
- "new_cases_per_million": 75.774,
- "new_cases_smoothed_per_million": 73.194,
- "total_deaths_per_million": 5.497,
- "new_deaths_per_million": 0.393,
- "new_deaths_smoothed_per_million": 0.28,
- "new_tests": 1654.0,
- "total_tests": 47564.0,
- "total_tests_per_thousand": 9.337,
- "new_tests_per_thousand": 0.325,
- "new_tests_smoothed": 1388.0,
- "new_tests_smoothed_per_thousand": 0.272,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-07-13",
- "total_cases": 7596.0,
- "new_cases": 365.0,
- "new_cases_smoothed": 371.429,
- "total_deaths": 30.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 1491.133,
- "new_cases_per_million": 71.651,
- "new_cases_smoothed_per_million": 72.913,
- "total_deaths_per_million": 5.889,
- "new_deaths_per_million": 0.393,
- "new_deaths_smoothed_per_million": 0.308,
- "new_tests": 1989.0,
- "total_tests": 49553.0,
- "total_tests_per_thousand": 9.728,
- "new_tests_per_thousand": 0.39,
- "new_tests_smoothed": 1529.0,
- "new_tests_smoothed_per_thousand": 0.3,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-07-14",
- "total_cases": 8036.0,
- "new_cases": 440.0,
- "new_cases_smoothed": 399.286,
- "total_deaths": 31.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 1577.507,
- "new_cases_per_million": 86.374,
- "new_cases_smoothed_per_million": 78.382,
- "total_deaths_per_million": 6.085,
- "new_deaths_per_million": 0.196,
- "new_deaths_smoothed_per_million": 0.224,
- "new_tests": 1435.0,
- "total_tests": 50988.0,
- "total_tests_per_thousand": 10.009,
- "new_tests_per_thousand": 0.282,
- "new_tests_smoothed": 1560.0,
- "new_tests_smoothed_per_thousand": 0.306,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-07-15",
- "total_cases": 8482.0,
- "new_cases": 446.0,
- "new_cases_smoothed": 428.0,
- "total_deaths": 36.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 1665.059,
- "new_cases_per_million": 87.552,
- "new_cases_smoothed_per_million": 84.019,
- "total_deaths_per_million": 7.067,
- "new_deaths_per_million": 0.982,
- "new_deaths_smoothed_per_million": 0.365,
- "new_tests": 1393.0,
- "total_tests": 52381.0,
- "total_tests_per_thousand": 10.283,
- "new_tests_per_thousand": 0.273,
- "new_tests_smoothed": 1598.0,
- "new_tests_smoothed_per_thousand": 0.314,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-07-16",
- "total_cases": 8986.0,
- "new_cases": 504.0,
- "new_cases_smoothed": 450.0,
- "total_deaths": 40.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 1763.997,
- "new_cases_per_million": 98.938,
- "new_cases_smoothed_per_million": 88.337,
- "total_deaths_per_million": 7.852,
- "new_deaths_per_million": 0.785,
- "new_deaths_smoothed_per_million": 0.449,
- "new_tests": 1503.0,
- "total_tests": 53884.0,
- "total_tests_per_thousand": 10.578,
- "new_tests_per_thousand": 0.295,
- "new_tests_smoothed": 1562.0,
- "new_tests_smoothed_per_thousand": 0.307,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-07-17",
- "total_cases": 9546.0,
- "new_cases": 560.0,
- "new_cases_smoothed": 437.286,
- "total_deaths": 42.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 1873.927,
- "new_cases_per_million": 109.931,
- "new_cases_smoothed_per_million": 85.841,
- "total_deaths_per_million": 8.245,
- "new_deaths_per_million": 0.393,
- "new_deaths_smoothed_per_million": 0.477,
- "new_tests": 1568.0,
- "total_tests": 55452.0,
- "total_tests_per_thousand": 10.886,
- "new_tests_per_thousand": 0.308,
- "new_tests_smoothed": 1591.0,
- "new_tests_smoothed_per_thousand": 0.312,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-07-18",
- "total_cases": 9969.0,
- "new_cases": 423.0,
- "new_cases_smoothed": 446.286,
- "total_deaths": 47.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 1956.964,
- "new_cases_per_million": 83.037,
- "new_cases_smoothed_per_million": 87.608,
- "total_deaths_per_million": 9.226,
- "new_deaths_per_million": 0.982,
- "new_deaths_smoothed_per_million": 0.589,
- "new_tests": 1116.0,
- "total_tests": 56568.0,
- "total_tests_per_thousand": 11.105,
- "new_tests_per_thousand": 0.219,
- "new_tests_smoothed": 1523.0,
- "new_tests_smoothed_per_thousand": 0.299,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-07-19",
- "total_cases": 10551.0,
- "new_cases": 582.0,
- "new_cases_smoothed": 474.286,
- "total_deaths": 54.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 2071.214,
- "new_cases_per_million": 114.25,
- "new_cases_smoothed_per_million": 93.105,
- "total_deaths_per_million": 10.6,
- "new_deaths_per_million": 1.374,
- "new_deaths_smoothed_per_million": 0.729,
- "new_tests": 1524.0,
- "total_tests": 58092.0,
- "total_tests_per_thousand": 11.404,
- "new_tests_per_thousand": 0.299,
- "new_tests_smoothed": 1504.0,
- "new_tests_smoothed_per_thousand": 0.295,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-07-20",
- "total_cases": 11114.0,
- "new_cases": 563.0,
- "new_cases_smoothed": 502.571,
- "total_deaths": 62.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 2181.734,
- "new_cases_per_million": 110.52,
- "new_cases_smoothed_per_million": 98.657,
- "total_deaths_per_million": 12.171,
- "new_deaths_per_million": 1.57,
- "new_deaths_smoothed_per_million": 0.897,
- "new_tests": 1117.0,
- "total_tests": 59209.0,
- "total_tests_per_thousand": 11.623,
- "new_tests_per_thousand": 0.219,
- "new_tests_smoothed": 1379.0,
- "new_tests_smoothed_per_thousand": 0.271,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-07-21",
- "total_cases": 11534.0,
- "new_cases": 420.0,
- "new_cases_smoothed": 499.714,
- "total_deaths": 66.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 2264.182,
- "new_cases_per_million": 82.448,
- "new_cases_smoothed_per_million": 98.096,
- "total_deaths_per_million": 12.956,
- "new_deaths_per_million": 0.785,
- "new_deaths_smoothed_per_million": 0.982,
- "new_tests": 1104.0,
- "total_tests": 60313.0,
- "total_tests_per_thousand": 11.84,
- "new_tests_per_thousand": 0.217,
- "new_tests_smoothed": 1332.0,
- "new_tests_smoothed_per_thousand": 0.261,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-07-22",
- "total_cases": 11811.0,
- "new_cases": 277.0,
- "new_cases_smoothed": 475.571,
- "total_deaths": 68.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 2318.558,
- "new_cases_per_million": 54.376,
- "new_cases_smoothed_per_million": 93.357,
- "total_deaths_per_million": 13.349,
- "new_deaths_per_million": 0.393,
- "new_deaths_smoothed_per_million": 0.897,
- "new_tests": 1228.0,
- "total_tests": 61541.0,
- "total_tests_per_thousand": 12.081,
- "new_tests_per_thousand": 0.241,
- "new_tests_smoothed": 1309.0,
- "new_tests_smoothed_per_thousand": 0.257,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-07-23",
- "total_cases": 12361.0,
- "new_cases": 550.0,
- "new_cases_smoothed": 482.143,
- "total_deaths": 71.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 2426.526,
- "new_cases_per_million": 107.968,
- "new_cases_smoothed_per_million": 94.647,
- "total_deaths_per_million": 13.938,
- "new_deaths_per_million": 0.589,
- "new_deaths_smoothed_per_million": 0.869,
- "new_tests": 1829.0,
- "total_tests": 63370.0,
- "total_tests_per_thousand": 12.44,
- "new_tests_per_thousand": 0.359,
- "new_tests_smoothed": 1355.0,
- "new_tests_smoothed_per_thousand": 0.266,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-07-24",
- "total_cases": 13129.0,
- "new_cases": 768.0,
- "new_cases_smoothed": 511.857,
- "total_deaths": 80.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 5.429,
- "total_cases_per_million": 2577.288,
- "new_cases_per_million": 150.762,
- "new_cases_smoothed_per_million": 100.48,
- "total_deaths_per_million": 15.704,
- "new_deaths_per_million": 1.767,
- "new_deaths_smoothed_per_million": 1.066,
- "new_tests": 1510.0,
- "total_tests": 64880.0,
- "total_tests_per_thousand": 12.736,
- "new_tests_per_thousand": 0.296,
- "new_tests_smoothed": 1347.0,
- "new_tests_smoothed_per_thousand": 0.264,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-07-25",
- "total_cases": 13669.0,
- "new_cases": 540.0,
- "new_cases_smoothed": 528.571,
- "total_deaths": 87.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 5.714,
- "total_cases_per_million": 2683.293,
- "new_cases_per_million": 106.005,
- "new_cases_smoothed_per_million": 103.761,
- "total_deaths_per_million": 17.079,
- "new_deaths_per_million": 1.374,
- "new_deaths_smoothed_per_million": 1.122,
- "new_tests": 1842.0,
- "total_tests": 66722.0,
- "total_tests_per_thousand": 13.098,
- "new_tests_per_thousand": 0.362,
- "new_tests_smoothed": 1451.0,
- "new_tests_smoothed_per_thousand": 0.285,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-07-26",
- "total_cases": 14600.0,
- "new_cases": 931.0,
- "new_cases_smoothed": 578.429,
- "total_deaths": 98.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 6.286,
- "total_cases_per_million": 2866.053,
- "new_cases_per_million": 182.76,
- "new_cases_smoothed_per_million": 113.548,
- "total_deaths_per_million": 19.238,
- "new_deaths_per_million": 2.159,
- "new_deaths_smoothed_per_million": 1.234,
- "new_tests": 1564.0,
- "total_tests": 68286.0,
- "total_tests_per_thousand": 13.405,
- "new_tests_per_thousand": 0.307,
- "new_tests_smoothed": 1456.0,
- "new_tests_smoothed_per_thousand": 0.286,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-07-27",
- "total_cases": 15229.0,
- "new_cases": 629.0,
- "new_cases_smoothed": 587.857,
- "total_deaths": 104.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 6.0,
- "total_cases_per_million": 2989.529,
- "new_cases_per_million": 123.476,
- "new_cases_smoothed_per_million": 115.399,
- "total_deaths_per_million": 20.416,
- "new_deaths_per_million": 1.178,
- "new_deaths_smoothed_per_million": 1.178,
- "new_tests": 1701.0,
- "total_tests": 69987.0,
- "total_tests_per_thousand": 13.739,
- "new_tests_per_thousand": 0.334,
- "new_tests_smoothed": 1540.0,
- "new_tests_smoothed_per_thousand": 0.302,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-07-28",
- "total_cases": 15841.0,
- "new_cases": 612.0,
- "new_cases_smoothed": 615.286,
- "total_deaths": 115.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 7.0,
- "total_cases_per_million": 3109.667,
- "new_cases_per_million": 120.139,
- "new_cases_smoothed_per_million": 120.784,
- "total_deaths_per_million": 22.575,
- "new_deaths_per_million": 2.159,
- "new_deaths_smoothed_per_million": 1.374,
- "new_tests": 1501.0,
- "total_tests": 71488.0,
- "total_tests_per_thousand": 14.033,
- "new_tests_per_thousand": 0.295,
- "new_tests_smoothed": 1596.0,
- "new_tests_smoothed_per_thousand": 0.313,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-07-29",
- "total_cases": 16344.0,
- "new_cases": 503.0,
- "new_cases_smoothed": 647.571,
- "total_deaths": 125.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 3208.409,
- "new_cases_per_million": 98.741,
- "new_cases_smoothed_per_million": 127.122,
- "total_deaths_per_million": 24.538,
- "new_deaths_per_million": 1.963,
- "new_deaths_smoothed_per_million": 1.598,
- "new_tests": 1656.0,
- "total_tests": 73144.0,
- "total_tests_per_thousand": 14.359,
- "new_tests_per_thousand": 0.325,
- "new_tests_smoothed": 1658.0,
- "new_tests_smoothed_per_thousand": 0.325,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-07-30",
- "total_cases": 16800.0,
- "new_cases": 456.0,
- "new_cases_smoothed": 634.143,
- "total_deaths": 133.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 8.857,
- "total_cases_per_million": 3297.924,
- "new_cases_per_million": 89.515,
- "new_cases_smoothed_per_million": 124.485,
- "total_deaths_per_million": 26.109,
- "new_deaths_per_million": 1.57,
- "new_deaths_smoothed_per_million": 1.739,
- "new_tests": 1840.0,
- "total_tests": 74984.0,
- "total_tests_per_thousand": 14.72,
- "new_tests_per_thousand": 0.361,
- "new_tests_smoothed": 1659.0,
- "new_tests_smoothed_per_thousand": 0.326,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-07-31",
- "total_cases": 17290.0,
- "new_cases": 490.0,
- "new_cases_smoothed": 594.429,
- "total_deaths": 140.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 3394.113,
- "new_cases_per_million": 96.189,
- "new_cases_smoothed_per_million": 116.689,
- "total_deaths_per_million": 27.483,
- "new_deaths_per_million": 1.374,
- "new_deaths_smoothed_per_million": 1.683,
- "new_tests": 1744.0,
- "total_tests": 76728.0,
- "total_tests_per_thousand": 15.062,
- "new_tests_per_thousand": 0.342,
- "new_tests_smoothed": 1693.0,
- "new_tests_smoothed_per_thousand": 0.332,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 73.61
- },
- {
- "date": "2020-08-01",
- "total_cases": 17820.0,
- "new_cases": 530.0,
- "new_cases_smoothed": 593.0,
- "total_deaths": 150.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 9.0,
- "total_cases_per_million": 3498.155,
- "new_cases_per_million": 104.042,
- "new_cases_smoothed_per_million": 116.409,
- "total_deaths_per_million": 29.446,
- "new_deaths_per_million": 1.963,
- "new_deaths_smoothed_per_million": 1.767,
- "new_tests": 1663.0,
- "total_tests": 78391.0,
- "total_tests_per_thousand": 15.389,
- "new_tests_per_thousand": 0.326,
- "new_tests_smoothed": 1667.0,
- "new_tests_smoothed_per_thousand": 0.327,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 62.96
- },
- {
- "date": "2020-08-02",
- "total_cases": 18187.0,
- "new_cases": 367.0,
- "new_cases_smoothed": 512.429,
- "total_deaths": 154.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 8.0,
- "total_cases_per_million": 3570.199,
- "new_cases_per_million": 72.044,
- "new_cases_smoothed_per_million": 100.592,
- "total_deaths_per_million": 30.231,
- "new_deaths_per_million": 0.785,
- "new_deaths_smoothed_per_million": 1.57,
- "new_tests": 2015.0,
- "total_tests": 80406.0,
- "total_tests_per_thousand": 15.784,
- "new_tests_per_thousand": 0.396,
- "new_tests_smoothed": 1731.0,
- "new_tests_smoothed_per_thousand": 0.34,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 62.96
- },
- {
- "date": "2020-08-03",
- "total_cases": 18975.0,
- "new_cases": 788.0,
- "new_cases_smoothed": 535.143,
- "total_deaths": 162.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 8.286,
- "total_cases_per_million": 3724.887,
- "new_cases_per_million": 154.688,
- "new_cases_smoothed_per_million": 105.051,
- "total_deaths_per_million": 31.801,
- "new_deaths_per_million": 1.57,
- "new_deaths_smoothed_per_million": 1.627,
- "new_tests": 1550.0,
- "total_tests": 81956.0,
- "total_tests_per_thousand": 16.088,
- "new_tests_per_thousand": 0.304,
- "new_tests_smoothed": 1710.0,
- "new_tests_smoothed_per_thousand": 0.336,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 62.96
- },
- {
- "date": "2020-08-04",
- "total_cases": 19402.0,
- "new_cases": 427.0,
- "new_cases_smoothed": 508.714,
- "total_deaths": 171.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 8.0,
- "total_cases_per_million": 3808.709,
- "new_cases_per_million": 83.822,
- "new_cases_smoothed_per_million": 99.863,
- "total_deaths_per_million": 33.568,
- "new_deaths_per_million": 1.767,
- "new_deaths_smoothed_per_million": 1.57,
- "new_tests": 1584.0,
- "total_tests": 83540.0,
- "total_tests_per_thousand": 16.399,
- "new_tests_per_thousand": 0.311,
- "new_tests_smoothed": 1722.0,
- "new_tests_smoothed_per_thousand": 0.338,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 62.96
- },
- {
- "date": "2020-08-05",
- "total_cases": 19837.0,
- "new_cases": 435.0,
- "new_cases_smoothed": 499.0,
- "total_deaths": 181.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 8.0,
- "total_cases_per_million": 3894.102,
- "new_cases_per_million": 85.393,
- "new_cases_smoothed_per_million": 97.956,
- "total_deaths_per_million": 35.531,
- "new_deaths_per_million": 1.963,
- "new_deaths_smoothed_per_million": 1.57,
- "new_tests": 1799.0,
- "total_tests": 85339.0,
- "total_tests_per_thousand": 16.752,
- "new_tests_per_thousand": 0.353,
- "new_tests_smoothed": 1742.0,
- "new_tests_smoothed_per_thousand": 0.342,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 62.96
- },
- {
- "date": "2020-08-06",
- "total_cases": 20417.0,
- "new_cases": 580.0,
- "new_cases_smoothed": 516.714,
- "total_deaths": 191.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 8.286,
- "total_cases_per_million": 4007.959,
- "new_cases_per_million": 113.857,
- "new_cases_smoothed_per_million": 101.434,
- "total_deaths_per_million": 37.494,
- "new_deaths_per_million": 1.963,
- "new_deaths_smoothed_per_million": 1.627,
- "new_tests": 1885.0,
- "total_tests": 87224.0,
- "total_tests_per_thousand": 17.123,
- "new_tests_per_thousand": 0.37,
- "new_tests_smoothed": 1749.0,
- "new_tests_smoothed_per_thousand": 0.343,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 68.52
- },
- {
- "date": "2020-08-07",
- "total_cases": 21070.0,
- "new_cases": 653.0,
- "new_cases_smoothed": 540.0,
- "total_deaths": 200.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 4136.146,
- "new_cases_per_million": 128.187,
- "new_cases_smoothed_per_million": 106.005,
- "total_deaths_per_million": 39.261,
- "new_deaths_per_million": 1.767,
- "new_deaths_smoothed_per_million": 1.683,
- "new_tests": 1780.0,
- "total_tests": 89004.0,
- "total_tests_per_thousand": 17.472,
- "new_tests_per_thousand": 0.349,
- "new_tests_smoothed": 1754.0,
- "new_tests_smoothed_per_thousand": 0.344,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 68.52
- },
- {
- "date": "2020-08-08",
- "total_cases": 22081.0,
- "new_cases": 1011.0,
- "new_cases_smoothed": 608.714,
- "total_deaths": 218.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 9.714,
- "total_cases_per_million": 4334.61,
- "new_cases_per_million": 198.464,
- "new_cases_smoothed_per_million": 119.494,
- "total_deaths_per_million": 42.794,
- "new_deaths_per_million": 3.533,
- "new_deaths_smoothed_per_million": 1.907,
- "new_tests": 1687.0,
- "total_tests": 90691.0,
- "total_tests_per_thousand": 17.803,
- "new_tests_per_thousand": 0.331,
- "new_tests_smoothed": 1757.0,
- "new_tests_smoothed_per_thousand": 0.345,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 68.52
- },
- {
- "date": "2020-08-09",
- "total_cases": 22082.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 556.429,
- "total_deaths": 228.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 10.571,
- "total_cases_per_million": 4334.807,
- "new_cases_per_million": 0.196,
- "new_cases_smoothed_per_million": 109.23,
- "total_deaths_per_million": 44.758,
- "new_deaths_per_million": 1.963,
- "new_deaths_smoothed_per_million": 2.075,
- "new_tests": 1405.0,
- "total_tests": 92096.0,
- "total_tests_per_thousand": 18.079,
- "new_tests_per_thousand": 0.276,
- "new_tests_smoothed": 1670.0,
- "new_tests_smoothed_per_thousand": 0.328,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 68.52
- },
- {
- "date": "2020-08-10",
- "total_cases": 23286.0,
- "new_cases": 1204.0,
- "new_cases_smoothed": 615.857,
- "total_deaths": 235.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 10.429,
- "total_cases_per_million": 4571.158,
- "new_cases_per_million": 236.351,
- "new_cases_smoothed_per_million": 120.896,
- "total_deaths_per_million": 46.132,
- "new_deaths_per_million": 1.374,
- "new_deaths_smoothed_per_million": 2.047,
- "new_tests": 1457.0,
- "total_tests": 93553.0,
- "total_tests_per_thousand": 18.365,
- "new_tests_per_thousand": 0.286,
- "new_tests_smoothed": 1657.0,
- "new_tests_smoothed_per_thousand": 0.325,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-08-11",
- "total_cases": 23872.0,
- "new_cases": 586.0,
- "new_cases_smoothed": 638.571,
- "total_deaths": 244.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 10.429,
- "total_cases_per_million": 4686.193,
- "new_cases_per_million": 115.035,
- "new_cases_smoothed_per_million": 125.355,
- "total_deaths_per_million": 47.898,
- "new_deaths_per_million": 1.767,
- "new_deaths_smoothed_per_million": 2.047,
- "new_tests": 1251.0,
- "total_tests": 94804.0,
- "total_tests_per_thousand": 18.61,
- "new_tests_per_thousand": 0.246,
- "new_tests_smoothed": 1609.0,
- "new_tests_smoothed_per_thousand": 0.316,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-08-12",
- "total_cases": 24508.0,
- "new_cases": 636.0,
- "new_cases_smoothed": 667.286,
- "total_deaths": 255.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 10.571,
- "total_cases_per_million": 4811.043,
- "new_cases_per_million": 124.85,
- "new_cases_smoothed_per_million": 130.992,
- "total_deaths_per_million": 50.058,
- "new_deaths_per_million": 2.159,
- "new_deaths_smoothed_per_million": 2.075,
- "new_tests": 1664.0,
- "total_tests": 96468.0,
- "total_tests_per_thousand": 18.937,
- "new_tests_per_thousand": 0.327,
- "new_tests_smoothed": 1590.0,
- "new_tests_smoothed_per_thousand": 0.312,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-08-13",
- "total_cases": 25057.0,
- "new_cases": 549.0,
- "new_cases_smoothed": 662.857,
- "total_deaths": 263.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 10.286,
- "total_cases_per_million": 4918.814,
- "new_cases_per_million": 107.771,
- "new_cases_smoothed_per_million": 130.122,
- "total_deaths_per_million": 51.628,
- "new_deaths_per_million": 1.57,
- "new_deaths_smoothed_per_million": 2.019,
- "new_tests": 1997.0,
- "total_tests": 98465.0,
- "total_tests_per_thousand": 19.329,
- "new_tests_per_thousand": 0.392,
- "new_tests_smoothed": 1606.0,
- "new_tests_smoothed_per_thousand": 0.315,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-08-14",
- "total_cases": 26129.0,
- "new_cases": 1072.0,
- "new_cases_smoothed": 722.714,
- "total_deaths": 272.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 10.286,
- "total_cases_per_million": 5129.253,
- "new_cases_per_million": 210.439,
- "new_cases_smoothed_per_million": 141.872,
- "total_deaths_per_million": 53.395,
- "new_deaths_per_million": 1.767,
- "new_deaths_smoothed_per_million": 2.019,
- "new_tests": 2172.0,
- "total_tests": 100637.0,
- "total_tests_per_thousand": 19.756,
- "new_tests_per_thousand": 0.426,
- "new_tests_smoothed": 1662.0,
- "new_tests_smoothed_per_thousand": 0.326,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-08-15",
- "total_cases": 26931.0,
- "new_cases": 802.0,
- "new_cases_smoothed": 692.857,
- "total_deaths": 281.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 9.0,
- "total_cases_per_million": 5286.69,
- "new_cases_per_million": 157.437,
- "new_cases_smoothed_per_million": 136.011,
- "total_deaths_per_million": 55.162,
- "new_deaths_per_million": 1.767,
- "new_deaths_smoothed_per_million": 1.767,
- "new_tests": 2197.0,
- "total_tests": 102834.0,
- "total_tests_per_thousand": 20.187,
- "new_tests_per_thousand": 0.431,
- "new_tests_smoothed": 1735.0,
- "new_tests_smoothed_per_thousand": 0.341,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-08-16",
- "total_cases": 27737.0,
- "new_cases": 806.0,
- "new_cases_smoothed": 807.857,
- "total_deaths": 291.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 9.0,
- "total_cases_per_million": 5444.912,
- "new_cases_per_million": 158.222,
- "new_cases_smoothed_per_million": 158.586,
- "total_deaths_per_million": 57.125,
- "new_deaths_per_million": 1.963,
- "new_deaths_smoothed_per_million": 1.767,
- "new_tests": 2244.0,
- "total_tests": 105078.0,
- "total_tests_per_thousand": 20.627,
- "new_tests_per_thousand": 0.441,
- "new_tests_smoothed": 1855.0,
- "new_tests_smoothed_per_thousand": 0.364,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-08-17",
- "total_cases": 28465.0,
- "new_cases": 728.0,
- "new_cases_smoothed": 739.857,
- "total_deaths": 294.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 8.429,
- "total_cases_per_million": 5587.822,
- "new_cases_per_million": 142.91,
- "new_cases_smoothed_per_million": 145.238,
- "total_deaths_per_million": 57.714,
- "new_deaths_per_million": 0.589,
- "new_deaths_smoothed_per_million": 1.655,
- "new_tests": 1535.0,
- "total_tests": 106613.0,
- "total_tests_per_thousand": 20.929,
- "new_tests_per_thousand": 0.301,
- "new_tests_smoothed": 1866.0,
- "new_tests_smoothed_per_thousand": 0.366,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-08-18",
- "total_cases": 29084.0,
- "new_cases": 619.0,
- "new_cases_smoothed": 744.571,
- "total_deaths": 304.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 5709.334,
- "new_cases_per_million": 121.513,
- "new_cases_smoothed_per_million": 146.163,
- "total_deaths_per_million": 59.677,
- "new_deaths_per_million": 1.963,
- "new_deaths_smoothed_per_million": 1.683,
- "new_tests": 1059.0,
- "total_tests": 107672.0,
- "total_tests_per_thousand": 21.137,
- "new_tests_per_thousand": 0.208,
- "new_tests_smoothed": 1838.0,
- "new_tests_smoothed_per_thousand": 0.361,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-08-19",
- "total_cases": 29643.0,
- "new_cases": 559.0,
- "new_cases_smoothed": 733.571,
- "total_deaths": 314.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 8.429,
- "total_cases_per_million": 5819.069,
- "new_cases_per_million": 109.734,
- "new_cases_smoothed_per_million": 144.004,
- "total_deaths_per_million": 61.64,
- "new_deaths_per_million": 1.963,
- "new_deaths_smoothed_per_million": 1.655,
- "new_tests": 1535.0,
- "total_tests": 109207.0,
- "total_tests_per_thousand": 21.438,
- "new_tests_per_thousand": 0.301,
- "new_tests_smoothed": 1820.0,
- "new_tests_smoothed_per_thousand": 0.357,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-08-20",
- "total_cases": 30409.0,
- "new_cases": 766.0,
- "new_cases_smoothed": 764.571,
- "total_deaths": 321.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 8.286,
- "total_cases_per_million": 5969.438,
- "new_cases_per_million": 150.37,
- "new_cases_smoothed_per_million": 150.089,
- "total_deaths_per_million": 63.014,
- "new_deaths_per_million": 1.374,
- "new_deaths_smoothed_per_million": 1.627,
- "new_tests": 1195.0,
- "total_tests": 110402.0,
- "total_tests_per_thousand": 21.672,
- "new_tests_per_thousand": 0.235,
- "new_tests_smoothed": 1705.0,
- "new_tests_smoothed_per_thousand": 0.335,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-08-21",
- "total_cases": 31075.0,
- "new_cases": 666.0,
- "new_cases_smoothed": 706.571,
- "total_deaths": 333.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 8.714,
- "total_cases_per_million": 6100.178,
- "new_cases_per_million": 130.739,
- "new_cases_smoothed_per_million": 138.703,
- "total_deaths_per_million": 65.37,
- "new_deaths_per_million": 2.356,
- "new_deaths_smoothed_per_million": 1.711,
- "new_tests": 1838.0,
- "total_tests": 112240.0,
- "total_tests_per_thousand": 22.033,
- "new_tests_per_thousand": 0.361,
- "new_tests_smoothed": 1658.0,
- "new_tests_smoothed_per_thousand": 0.325,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-08-22",
- "total_cases": 32134.0,
- "new_cases": 1059.0,
- "new_cases_smoothed": 743.286,
- "total_deaths": 340.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 8.429,
- "total_cases_per_million": 6308.065,
- "new_cases_per_million": 207.887,
- "new_cases_smoothed_per_million": 145.911,
- "total_deaths_per_million": 66.744,
- "new_deaths_per_million": 1.374,
- "new_deaths_smoothed_per_million": 1.655,
- "new_tests": 2131.0,
- "total_tests": 114371.0,
- "total_tests_per_thousand": 22.452,
- "new_tests_per_thousand": 0.418,
- "new_tests_smoothed": 1648.0,
- "new_tests_smoothed_per_thousand": 0.324,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-08-23",
- "total_cases": 33084.0,
- "new_cases": 950.0,
- "new_cases_smoothed": 763.857,
- "total_deaths": 348.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 6494.554,
- "new_cases_per_million": 186.49,
- "new_cases_smoothed_per_million": 149.949,
- "total_deaths_per_million": 68.314,
- "new_deaths_per_million": 1.57,
- "new_deaths_smoothed_per_million": 1.598,
- "new_tests": 2093.0,
- "total_tests": 116464.0,
- "total_tests_per_thousand": 22.862,
- "new_tests_per_thousand": 0.411,
- "new_tests_smoothed": 1627.0,
- "new_tests_smoothed_per_thousand": 0.319,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-08-24",
- "total_cases": 33820.0,
- "new_cases": 736.0,
- "new_cases_smoothed": 765.0,
- "total_deaths": 355.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 8.714,
- "total_cases_per_million": 6639.035,
- "new_cases_per_million": 144.48,
- "new_cases_smoothed_per_million": 150.173,
- "total_deaths_per_million": 69.688,
- "new_deaths_per_million": 1.374,
- "new_deaths_smoothed_per_million": 1.711,
- "new_tests": 1533.0,
- "total_tests": 117997.0,
- "total_tests_per_thousand": 23.163,
- "new_tests_per_thousand": 0.301,
- "new_tests_smoothed": 1626.0,
- "new_tests_smoothed_per_thousand": 0.319,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-08-25",
- "total_cases": 34463.0,
- "new_cases": 643.0,
- "new_cases_smoothed": 768.429,
- "total_deaths": 362.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 8.286,
- "total_cases_per_million": 6765.259,
- "new_cases_per_million": 126.224,
- "new_cases_smoothed_per_million": 150.846,
- "total_deaths_per_million": 71.062,
- "new_deaths_per_million": 1.374,
- "new_deaths_smoothed_per_million": 1.627,
- "new_tests": 1304.0,
- "total_tests": 119301.0,
- "total_tests_per_thousand": 23.419,
- "new_tests_per_thousand": 0.256,
- "new_tests_smoothed": 1661.0,
- "new_tests_smoothed_per_thousand": 0.326,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-08-26",
- "total_cases": 35305.0,
- "new_cases": 842.0,
- "new_cases_smoothed": 808.857,
- "total_deaths": 376.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 8.857,
- "total_cases_per_million": 6930.548,
- "new_cases_per_million": 165.289,
- "new_cases_smoothed_per_million": 158.783,
- "total_deaths_per_million": 73.811,
- "new_deaths_per_million": 2.748,
- "new_deaths_smoothed_per_million": 1.739,
- "new_tests": 2048.0,
- "total_tests": 121349.0,
- "total_tests_per_thousand": 23.821,
- "new_tests_per_thousand": 0.402,
- "new_tests_smoothed": 1735.0,
- "new_tests_smoothed_per_thousand": 0.341,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-08-27",
- "total_cases": 36307.0,
- "new_cases": 1002.0,
- "new_cases_smoothed": 842.571,
- "total_deaths": 386.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 9.286,
- "total_cases_per_million": 7127.245,
- "new_cases_per_million": 196.698,
- "new_cases_smoothed_per_million": 165.401,
- "total_deaths_per_million": 75.774,
- "new_deaths_per_million": 1.963,
- "new_deaths_smoothed_per_million": 1.823,
- "new_tests": 1859.0,
- "total_tests": 123208.0,
- "total_tests_per_thousand": 24.186,
- "new_tests_per_thousand": 0.365,
- "new_tests_smoothed": 1829.0,
- "new_tests_smoothed_per_thousand": 0.359,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 72.22
- },
- {
- "date": "2020-08-28",
- "total_cases": 37292.0,
- "new_cases": 985.0,
- "new_cases_smoothed": 888.143,
- "total_deaths": 397.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 9.143,
- "total_cases_per_million": 7320.606,
- "new_cases_per_million": 193.36,
- "new_cases_smoothed_per_million": 174.347,
- "total_deaths_per_million": 77.933,
- "new_deaths_per_million": 2.159,
- "new_deaths_smoothed_per_million": 1.795,
- "new_tests": 2211.0,
- "total_tests": 125419.0,
- "total_tests_per_thousand": 24.62,
- "new_tests_per_thousand": 0.434,
- "new_tests_smoothed": 1883.0,
- "new_tests_smoothed_per_thousand": 0.37,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 61.11
- },
- {
- "date": "2020-08-29",
- "total_cases": 38485.0,
- "new_cases": 1193.0,
- "new_cases_smoothed": 907.286,
- "total_deaths": 407.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 9.571,
- "total_cases_per_million": 7554.798,
- "new_cases_per_million": 234.192,
- "new_cases_smoothed_per_million": 178.105,
- "total_deaths_per_million": 79.896,
- "new_deaths_per_million": 1.963,
- "new_deaths_smoothed_per_million": 1.879,
- "new_tests": 2633.0,
- "total_tests": 128052.0,
- "total_tests_per_thousand": 25.137,
- "new_tests_per_thousand": 0.517,
- "new_tests_smoothed": 1954.0,
- "new_tests_smoothed_per_thousand": 0.384,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 61.11
- },
- {
- "date": "2020-08-30",
- "total_cases": 39699.0,
- "new_cases": 1214.0,
- "new_cases_smoothed": 945.0,
- "total_deaths": 418.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 10.0,
- "total_cases_per_million": 7793.112,
- "new_cases_per_million": 238.314,
- "new_cases_smoothed_per_million": 185.508,
- "total_deaths_per_million": 82.055,
- "new_deaths_per_million": 2.159,
- "new_deaths_smoothed_per_million": 1.963,
- "new_tests": 804.0,
- "total_tests": 128856.0,
- "total_tests_per_thousand": 25.295,
- "new_tests_per_thousand": 0.158,
- "new_tests_smoothed": 1770.0,
- "new_tests_smoothed_per_thousand": 0.347,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 61.11
- },
- {
- "date": "2020-08-31",
- "total_cases": 39699.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 839.857,
- "total_deaths": 418.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 9.0,
- "total_cases_per_million": 7793.112,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 164.868,
- "total_deaths_per_million": 82.055,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.767,
- "new_tests": 2767.0,
- "total_tests": 131623.0,
- "total_tests_per_thousand": 25.838,
- "new_tests_per_thousand": 0.543,
- "new_tests_smoothed": 1947.0,
- "new_tests_smoothed_per_thousand": 0.382,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 61.11
- },
- {
- "date": "2020-09-01",
- "total_cases": 41287.0,
- "new_cases": 1588.0,
- "new_cases_smoothed": 974.857,
- "total_deaths": 436.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 10.571,
- "total_cases_per_million": 8104.844,
- "new_cases_per_million": 311.732,
- "new_cases_smoothed_per_million": 191.369,
- "total_deaths_per_million": 85.589,
- "new_deaths_per_million": 3.533,
- "new_deaths_smoothed_per_million": 2.075,
- "new_tests": 1488.0,
- "total_tests": 133111.0,
- "total_tests_per_thousand": 26.13,
- "new_tests_per_thousand": 0.292,
- "new_tests_smoothed": 1973.0,
- "new_tests_smoothed_per_thousand": 0.387,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 61.11
- },
- {
- "date": "2020-09-02",
- "total_cases": 42184.0,
- "new_cases": 897.0,
- "new_cases_smoothed": 982.714,
- "total_deaths": 443.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 9.571,
- "total_cases_per_million": 8280.93,
- "new_cases_per_million": 176.086,
- "new_cases_smoothed_per_million": 192.912,
- "total_deaths_per_million": 86.963,
- "new_deaths_per_million": 1.374,
- "new_deaths_smoothed_per_million": 1.879,
- "new_tests": 2119.0,
- "total_tests": 135230.0,
- "total_tests_per_thousand": 26.546,
- "new_tests_per_thousand": 0.416,
- "new_tests_smoothed": 1983.0,
- "new_tests_smoothed_per_thousand": 0.389,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 61.11
- },
- {
- "date": "2020-09-03",
- "total_cases": 43305.0,
- "new_cases": 1121.0,
- "new_cases_smoothed": 999.714,
- "total_deaths": 453.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 9.571,
- "total_cases_per_million": 8500.988,
- "new_cases_per_million": 220.058,
- "new_cases_smoothed_per_million": 196.249,
- "total_deaths_per_million": 88.926,
- "new_deaths_per_million": 1.963,
- "new_deaths_smoothed_per_million": 1.879,
- "new_tests": 2491.0,
- "total_tests": 137721.0,
- "total_tests_per_thousand": 27.035,
- "new_tests_per_thousand": 0.489,
- "new_tests_smoothed": 2073.0,
- "new_tests_smoothed_per_thousand": 0.407,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 61.11
- },
- {
- "date": "2020-09-04",
- "total_cases": 44458.0,
- "new_cases": 1153.0,
- "new_cases_smoothed": 1023.714,
- "total_deaths": 460.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 9.0,
- "total_cases_per_million": 8727.327,
- "new_cases_per_million": 226.34,
- "new_cases_smoothed_per_million": 200.96,
- "total_deaths_per_million": 90.3,
- "new_deaths_per_million": 1.374,
- "new_deaths_smoothed_per_million": 1.767,
- "new_tests": 2750.0,
- "total_tests": 140471.0,
- "total_tests_per_thousand": 27.575,
- "new_tests_per_thousand": 0.54,
- "new_tests_smoothed": 2150.0,
- "new_tests_smoothed_per_thousand": 0.422,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 61.11
- },
- {
- "date": "2020-09-05",
- "total_cases": 45680.0,
- "new_cases": 1222.0,
- "new_cases_smoothed": 1027.857,
- "total_deaths": 469.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 8.857,
- "total_cases_per_million": 8967.212,
- "new_cases_per_million": 239.885,
- "new_cases_smoothed_per_million": 201.773,
- "total_deaths_per_million": 92.067,
- "new_deaths_per_million": 1.767,
- "new_deaths_smoothed_per_million": 1.739,
- "new_tests": 2879.0,
- "total_tests": 143350.0,
- "total_tests_per_thousand": 28.14,
- "new_tests_per_thousand": 0.565,
- "new_tests_smoothed": 2185.0,
- "new_tests_smoothed_per_thousand": 0.429,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 61.11
- },
- {
- "date": "2020-09-06",
- "total_cases": 46920.0,
- "new_cases": 1240.0,
- "new_cases_smoothed": 1031.571,
- "total_deaths": 478.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 9210.63,
- "new_cases_per_million": 243.418,
- "new_cases_smoothed_per_million": 202.503,
- "total_deaths_per_million": 93.834,
- "new_deaths_per_million": 1.767,
- "new_deaths_smoothed_per_million": 1.683,
- "new_tests": 957.0,
- "total_tests": 144307.0,
- "total_tests_per_thousand": 28.328,
- "new_tests_per_thousand": 0.188,
- "new_tests_smoothed": 2207.0,
- "new_tests_smoothed_per_thousand": 0.433,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 61.11
- },
- {
- "date": "2020-09-07",
- "total_cases": 46920.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1031.571,
- "total_deaths": 478.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 9210.63,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 202.503,
- "total_deaths_per_million": 93.834,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.683,
- "new_tests": 2741.0,
- "total_tests": 147048.0,
- "total_tests_per_thousand": 28.866,
- "new_tests_per_thousand": 0.538,
- "new_tests_smoothed": 2204.0,
- "new_tests_smoothed_per_thousand": 0.433,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 61.11
- },
- {
- "date": "2020-09-08",
- "total_cases": 48780.0,
- "new_cases": 1860.0,
- "new_cases_smoothed": 1070.429,
- "total_deaths": 510.0,
- "new_deaths": 32.0,
- "new_deaths_smoothed": 10.571,
- "total_cases_per_million": 9575.757,
- "new_cases_per_million": 365.127,
- "new_cases_smoothed_per_million": 210.13,
- "total_deaths_per_million": 100.116,
- "new_deaths_per_million": 6.282,
- "new_deaths_smoothed_per_million": 2.075,
- "new_tests": 1978.0,
- "total_tests": 149026.0,
- "total_tests_per_thousand": 29.255,
- "new_tests_per_thousand": 0.388,
- "new_tests_smoothed": 2274.0,
- "new_tests_smoothed_per_thousand": 0.446,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 61.11
- },
- {
- "date": "2020-09-09",
- "total_cases": 49897.0,
- "new_cases": 1117.0,
- "new_cases_smoothed": 1101.857,
- "total_deaths": 531.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 12.571,
- "total_cases_per_million": 9795.03,
- "new_cases_per_million": 219.273,
- "new_cases_smoothed_per_million": 216.3,
- "total_deaths_per_million": 104.238,
- "new_deaths_per_million": 4.122,
- "new_deaths_smoothed_per_million": 2.468,
- "new_tests": 2517.0,
- "total_tests": 151543.0,
- "total_tests_per_thousand": 29.749,
- "new_tests_per_thousand": 0.494,
- "new_tests_smoothed": 2330.0,
- "new_tests_smoothed_per_thousand": 0.457,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 61.11
- },
- {
- "date": "2020-09-10",
- "total_cases": 51224.0,
- "new_cases": 1327.0,
- "new_cases_smoothed": 1131.286,
- "total_deaths": 543.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 12.857,
- "total_cases_per_million": 10055.527,
- "new_cases_per_million": 260.497,
- "new_cases_smoothed_per_million": 222.077,
- "total_deaths_per_million": 106.594,
- "new_deaths_per_million": 2.356,
- "new_deaths_smoothed_per_million": 2.524,
- "new_tests": 2615.0,
- "total_tests": 154158.0,
- "total_tests_per_thousand": 30.262,
- "new_tests_per_thousand": 0.513,
- "new_tests_smoothed": 2348.0,
- "new_tests_smoothed_per_thousand": 0.461,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 61.11
- },
- {
- "date": "2020-09-11",
- "total_cases": 52549.0,
- "new_cases": 1325.0,
- "new_cases_smoothed": 1155.857,
- "total_deaths": 567.0,
- "new_deaths": 24.0,
- "new_deaths_smoothed": 15.286,
- "total_cases_per_million": 10315.631,
- "new_cases_per_million": 260.104,
- "new_cases_smoothed_per_million": 226.901,
- "total_deaths_per_million": 111.305,
- "new_deaths_per_million": 4.711,
- "new_deaths_smoothed_per_million": 3.001,
- "new_tests": 3154.0,
- "total_tests": 157312.0,
- "total_tests_per_thousand": 30.881,
- "new_tests_per_thousand": 0.619,
- "new_tests_smoothed": 2406.0,
- "new_tests_smoothed_per_thousand": 0.472,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 61.11
- },
- {
- "date": "2020-09-12",
- "total_cases": 53969.0,
- "new_cases": 1420.0,
- "new_cases_smoothed": 1184.143,
- "total_deaths": 583.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 16.286,
- "total_cases_per_million": 10594.384,
- "new_cases_per_million": 278.753,
- "new_cases_smoothed_per_million": 232.453,
- "total_deaths_per_million": 114.446,
- "new_deaths_per_million": 3.141,
- "new_deaths_smoothed_per_million": 3.197,
- "new_tests": 2996.0,
- "total_tests": 160308.0,
- "total_tests_per_thousand": 31.469,
- "new_tests_per_thousand": 0.588,
- "new_tests_smoothed": 2423.0,
- "new_tests_smoothed_per_thousand": 0.476,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 61.11
- },
- {
- "date": "2020-09-13",
- "total_cases": 55454.0,
- "new_cases": 1485.0,
- "new_cases_smoothed": 1219.143,
- "total_deaths": 590.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 16.0,
- "total_cases_per_million": 10885.897,
- "new_cases_per_million": 291.513,
- "new_cases_smoothed_per_million": 239.324,
- "total_deaths_per_million": 115.82,
- "new_deaths_per_million": 1.374,
- "new_deaths_smoothed_per_million": 3.141,
- "new_tests": 911.0,
- "total_tests": 161219.0,
- "total_tests_per_thousand": 31.648,
- "new_tests_per_thousand": 0.179,
- "new_tests_smoothed": 2416.0,
- "new_tests_smoothed_per_thousand": 0.474,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 61.11
- },
- {
- "date": "2020-09-14",
- "total_cases": 55454.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1219.143,
- "total_deaths": 590.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 16.0,
- "total_cases_per_million": 10885.897,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 239.324,
- "total_deaths_per_million": 115.82,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 3.141,
- "new_tests": 3540.0,
- "total_tests": 164759.0,
- "total_tests_per_thousand": 32.343,
- "new_tests_per_thousand": 0.695,
- "new_tests_smoothed": 2530.0,
- "new_tests_smoothed_per_thousand": 0.497,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 62.96
- },
- {
- "date": "2020-09-15",
- "total_cases": 57351.0,
- "new_cases": 1897.0,
- "new_cases_smoothed": 1224.429,
- "total_deaths": 621.0,
- "new_deaths": 31.0,
- "new_deaths_smoothed": 15.857,
- "total_cases_per_million": 11258.288,
- "new_cases_per_million": 372.391,
- "new_cases_smoothed_per_million": 240.361,
- "total_deaths_per_million": 121.905,
- "new_deaths_per_million": 6.085,
- "new_deaths_smoothed_per_million": 3.113,
- "new_tests": 1708.0,
- "total_tests": 166467.0,
- "total_tests_per_thousand": 32.678,
- "new_tests_per_thousand": 0.335,
- "new_tests_smoothed": 2492.0,
- "new_tests_smoothed_per_thousand": 0.489,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 62.96
- },
- {
- "date": "2020-09-16",
- "total_cases": 58138.0,
- "new_cases": 787.0,
- "new_cases_smoothed": 1177.286,
- "total_deaths": 633.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 14.571,
- "total_cases_per_million": 11412.78,
- "new_cases_per_million": 154.492,
- "new_cases_smoothed_per_million": 231.107,
- "total_deaths_per_million": 124.261,
- "new_deaths_per_million": 2.356,
- "new_deaths_smoothed_per_million": 2.86,
- "new_tests": 2220.0,
- "total_tests": 168687.0,
- "total_tests_per_thousand": 33.114,
- "new_tests_per_thousand": 0.436,
- "new_tests_smoothed": 2449.0,
- "new_tests_smoothed_per_thousand": 0.481,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 62.96
- },
- {
- "date": "2020-09-17",
- "total_cases": 59516.0,
- "new_cases": 1378.0,
- "new_cases_smoothed": 1184.571,
- "total_deaths": 649.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 15.143,
- "total_cases_per_million": 11683.288,
- "new_cases_per_million": 270.508,
- "new_cases_smoothed_per_million": 232.537,
- "total_deaths_per_million": 127.402,
- "new_deaths_per_million": 3.141,
- "new_deaths_smoothed_per_million": 2.973,
- "new_tests": 2308.0,
- "total_tests": 170995.0,
- "total_tests_per_thousand": 33.567,
- "new_tests_per_thousand": 0.453,
- "new_tests_smoothed": 2405.0,
- "new_tests_smoothed_per_thousand": 0.472,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 62.96
- },
- {
- "date": "2020-09-18",
- "total_cases": 60818.0,
- "new_cases": 1302.0,
- "new_cases_smoothed": 1181.286,
- "total_deaths": 666.0,
- "new_deaths": 17.0,
- "new_deaths_smoothed": 14.143,
- "total_cases_per_million": 11938.877,
- "new_cases_per_million": 255.589,
- "new_cases_smoothed_per_million": 231.892,
- "total_deaths_per_million": 130.739,
- "new_deaths_per_million": 3.337,
- "new_deaths_smoothed_per_million": 2.776,
- "new_tests": 3238.0,
- "total_tests": 174233.0,
- "total_tests_per_thousand": 34.203,
- "new_tests_per_thousand": 0.636,
- "new_tests_smoothed": 2417.0,
- "new_tests_smoothed_per_thousand": 0.474,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 62.96
- },
- {
- "date": "2020-09-19",
- "total_cases": 62374.0,
- "new_cases": 1556.0,
- "new_cases_smoothed": 1200.714,
- "total_deaths": 686.0,
- "new_deaths": 20.0,
- "new_deaths_smoothed": 14.714,
- "total_cases_per_million": 12244.327,
- "new_cases_per_million": 305.451,
- "new_cases_smoothed_per_million": 235.706,
- "total_deaths_per_million": 134.665,
- "new_deaths_per_million": 3.926,
- "new_deaths_smoothed_per_million": 2.888,
- "new_tests": 3110.0,
- "total_tests": 177343.0,
- "total_tests_per_thousand": 34.813,
- "new_tests_per_thousand": 0.611,
- "new_tests_smoothed": 2434.0,
- "new_tests_smoothed_per_thousand": 0.478,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 62.96
- },
- {
- "date": "2020-09-20",
- "total_cases": 63712.0,
- "new_cases": 1338.0,
- "new_cases_smoothed": 1179.714,
- "total_deaths": 706.0,
- "new_deaths": 20.0,
- "new_deaths_smoothed": 16.571,
- "total_cases_per_million": 12506.984,
- "new_cases_per_million": 262.656,
- "new_cases_smoothed_per_million": 231.584,
- "total_deaths_per_million": 138.591,
- "new_deaths_per_million": 3.926,
- "new_deaths_smoothed_per_million": 3.253,
- "new_tests": 1118.0,
- "total_tests": 178461.0,
- "total_tests_per_thousand": 35.033,
- "new_tests_per_thousand": 0.219,
- "new_tests_smoothed": 2463.0,
- "new_tests_smoothed_per_thousand": 0.483,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 62.96
- },
- {
- "date": "2020-09-21",
- "total_cases": 63712.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1179.714,
- "total_deaths": 706.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 16.571,
- "total_cases_per_million": 12506.984,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 231.584,
- "total_deaths_per_million": 138.591,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 3.253,
- "new_tests": 3537.0,
- "total_tests": 181998.0,
- "total_tests_per_thousand": 35.727,
- "new_tests_per_thousand": 0.694,
- "new_tests_smoothed": 2463.0,
- "new_tests_smoothed_per_thousand": 0.483,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 62.96
- },
- {
- "date": "2020-09-22",
- "total_cases": 65602.0,
- "new_cases": 1890.0,
- "new_cases_smoothed": 1178.714,
- "total_deaths": 745.0,
- "new_deaths": 39.0,
- "new_deaths_smoothed": 17.714,
- "total_cases_per_million": 12878.0,
- "new_cases_per_million": 371.016,
- "new_cases_smoothed_per_million": 231.387,
- "total_deaths_per_million": 146.247,
- "new_deaths_per_million": 7.656,
- "new_deaths_smoothed_per_million": 3.477,
- "new_tests": 1902.0,
- "total_tests": 183900.0,
- "total_tests_per_thousand": 36.1,
- "new_tests_per_thousand": 0.373,
- "new_tests_smoothed": 2490.0,
- "new_tests_smoothed_per_thousand": 0.489,
- "tests_units": "people tested (incl. non-PCR)",
- "stringency_index": 62.96
- },
- {
- "date": "2020-09-23",
- "total_cases": 66689.0,
- "new_cases": 1087.0,
- "new_cases_smoothed": 1221.571,
- "total_deaths": 760.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 18.143,
- "total_cases_per_million": 13091.384,
- "new_cases_per_million": 213.384,
- "new_cases_smoothed_per_million": 239.801,
- "total_deaths_per_million": 149.192,
- "new_deaths_per_million": 2.945,
- "new_deaths_smoothed_per_million": 3.562,
- "new_tests": 2977.0,
- "total_tests": 186877.0,
- "total_tests_per_thousand": 36.685,
- "new_tests_per_thousand": 0.584,
- "new_tests_smoothed": 2599.0,
- "new_tests_smoothed_per_thousand": 0.51,
- "tests_units": "people tested (incl. non-PCR)"
- },
- {
- "date": "2020-09-24",
- "total_cases": 68059.0,
- "new_cases": 1370.0,
- "new_cases_smoothed": 1220.429,
- "total_deaths": 781.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 18.857,
- "total_cases_per_million": 13360.321,
- "new_cases_per_million": 268.938,
- "new_cases_smoothed_per_million": 239.576,
- "total_deaths_per_million": 153.314,
- "new_deaths_per_million": 4.122,
- "new_deaths_smoothed_per_million": 3.702
- },
- {
- "date": "2020-09-25",
- "total_cases": 69459.0,
- "new_cases": 1400.0,
- "new_cases_smoothed": 1234.429,
- "total_deaths": 795.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 18.429,
- "total_cases_per_million": 13635.148,
- "new_cases_per_million": 274.827,
- "new_cases_smoothed_per_million": 242.324,
- "total_deaths_per_million": 156.062,
- "new_deaths_per_million": 2.748,
- "new_deaths_smoothed_per_million": 3.618
- }
- ]
- },
- "CUB": {
- "continent": "North America",
- "location": "Cuba",
- "population": 11326616.0,
- "population_density": 110.408,
- "median_age": 43.1,
- "aged_65_older": 14.738,
- "aged_70_older": 9.719,
- "cardiovasc_death_rate": 190.968,
- "diabetes_prevalence": 8.27,
- "female_smokers": 17.1,
- "male_smokers": 53.3,
- "handwashing_facilities": 85.198,
- "hospital_beds_per_thousand": 5.2,
- "life_expectancy": 78.8,
- "human_development_index": 0.777,
- "data": [
- {
- "date": "2020-03-12",
- "total_cases": 3.0,
- "new_cases": 3.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.265,
- "new_cases_per_million": 0.265,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-03-14",
- "total_cases": 4.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.353,
- "new_cases_per_million": 0.088,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-03-15",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.353,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-03-18",
- "total_cases": 7.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.618,
- "new_cases_per_million": 0.265,
- "new_cases_smoothed_per_million": 0.088,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 13.89
- },
- {
- "date": "2020-03-19",
- "total_cases": 11.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 0.971,
- "new_cases_per_million": 0.353,
- "new_cases_smoothed_per_million": 0.101,
- "total_deaths_per_million": 0.088,
- "new_deaths_per_million": 0.088,
- "new_deaths_smoothed_per_million": 0.013,
- "stringency_index": 13.89
- },
- {
- "date": "2020-03-20",
- "total_cases": 16.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1.413,
- "new_cases_per_million": 0.441,
- "new_cases_smoothed_per_million": 0.164,
- "total_deaths_per_million": 0.088,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-21",
- "total_cases": 21.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1.854,
- "new_cases_per_million": 0.441,
- "new_cases_smoothed_per_million": 0.214,
- "total_deaths_per_million": 0.088,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-22",
- "total_cases": 25.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2.207,
- "new_cases_per_million": 0.353,
- "new_cases_smoothed_per_million": 0.265,
- "total_deaths_per_million": 0.088,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "total_tests": 518.0,
- "total_tests_per_thousand": 0.046,
- "tests_units": "tests performed",
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-23",
- "total_cases": 35.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 4.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 3.09,
- "new_cases_per_million": 0.883,
- "new_cases_smoothed_per_million": 0.391,
- "total_deaths_per_million": 0.088,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 107.0,
- "total_tests": 625.0,
- "total_tests_per_thousand": 0.055,
- "new_tests_per_thousand": 0.009,
- "tests_units": "tests performed",
- "stringency_index": 41.67
- },
- {
- "date": "2020-03-24",
- "total_cases": 40.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 3.532,
- "new_cases_per_million": 0.441,
- "new_cases_smoothed_per_million": 0.454,
- "total_deaths_per_million": 0.088,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 113.0,
- "total_tests": 738.0,
- "total_tests_per_thousand": 0.065,
- "new_tests_per_thousand": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-03-25",
- "total_cases": 48.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 5.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 4.238,
- "new_cases_per_million": 0.706,
- "new_cases_smoothed_per_million": 0.517,
- "total_deaths_per_million": 0.088,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 155.0,
- "total_tests": 893.0,
- "total_tests_per_thousand": 0.079,
- "new_tests_per_thousand": 0.014,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-03-26",
- "total_cases": 57.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 6.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5.032,
- "new_cases_per_million": 0.795,
- "new_cases_smoothed_per_million": 0.58,
- "total_deaths_per_million": 0.088,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 146.0,
- "total_tests": 1039.0,
- "total_tests_per_thousand": 0.092,
- "new_tests_per_thousand": 0.013,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-03-27",
- "total_cases": 67.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 7.286,
- "total_deaths": 2.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 5.915,
- "new_cases_per_million": 0.883,
- "new_cases_smoothed_per_million": 0.643,
- "total_deaths_per_million": 0.177,
- "new_deaths_per_million": 0.088,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 329.0,
- "total_tests": 1368.0,
- "total_tests_per_thousand": 0.121,
- "new_tests_per_thousand": 0.029,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-03-28",
- "total_cases": 80.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 8.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 7.063,
- "new_cases_per_million": 1.148,
- "new_cases_smoothed_per_million": 0.744,
- "total_deaths_per_million": 0.177,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 297.0,
- "total_tests": 1665.0,
- "total_tests_per_thousand": 0.147,
- "new_tests_per_thousand": 0.026,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-03-29",
- "total_cases": 119.0,
- "new_cases": 39.0,
- "new_cases_smoothed": 13.429,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 10.506,
- "new_cases_per_million": 3.443,
- "new_cases_smoothed_per_million": 1.186,
- "total_deaths_per_million": 0.265,
- "new_deaths_per_million": 0.088,
- "new_deaths_smoothed_per_million": 0.025,
- "new_tests": 342.0,
- "total_tests": 2007.0,
- "total_tests_per_thousand": 0.177,
- "new_tests_per_thousand": 0.03,
- "new_tests_smoothed": 213.0,
- "new_tests_smoothed_per_thousand": 0.019,
- "tests_per_case": 15.862,
- "positive_rate": 0.063,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-03-30",
- "total_cases": 139.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 14.857,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 12.272,
- "new_cases_per_million": 1.766,
- "new_cases_smoothed_per_million": 1.312,
- "total_deaths_per_million": 0.265,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.025,
- "new_tests": 315.0,
- "total_tests": 2322.0,
- "total_tests_per_thousand": 0.205,
- "new_tests_per_thousand": 0.028,
- "new_tests_smoothed": 242.0,
- "new_tests_smoothed_per_thousand": 0.021,
- "tests_per_case": 16.288,
- "positive_rate": 0.061,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-03-31",
- "total_cases": 170.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 18.571,
- "total_deaths": 4.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 15.009,
- "new_cases_per_million": 2.737,
- "new_cases_smoothed_per_million": 1.64,
- "total_deaths_per_million": 0.353,
- "new_deaths_per_million": 0.088,
- "new_deaths_smoothed_per_million": 0.038,
- "new_tests": 444.0,
- "total_tests": 2766.0,
- "total_tests_per_thousand": 0.244,
- "new_tests_per_thousand": 0.039,
- "new_tests_smoothed": 290.0,
- "new_tests_smoothed_per_thousand": 0.026,
- "tests_per_case": 15.615,
- "positive_rate": 0.064,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-04-01",
- "total_cases": 186.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 19.714,
- "total_deaths": 6.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 16.421,
- "new_cases_per_million": 1.413,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 0.53,
- "new_deaths_per_million": 0.177,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests": 576.0,
- "total_tests": 3342.0,
- "total_tests_per_thousand": 0.295,
- "new_tests_per_thousand": 0.051,
- "new_tests_smoothed": 350.0,
- "new_tests_smoothed_per_thousand": 0.031,
- "tests_per_case": 17.754,
- "positive_rate": 0.055999999999999994,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-04-02",
- "total_cases": 212.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 22.143,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 18.717,
- "new_cases_per_million": 2.295,
- "new_cases_smoothed_per_million": 1.955,
- "total_deaths_per_million": 0.53,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests": 803.0,
- "total_tests": 4145.0,
- "total_tests_per_thousand": 0.366,
- "new_tests_per_thousand": 0.071,
- "new_tests_smoothed": 444.0,
- "new_tests_smoothed_per_thousand": 0.039,
- "tests_per_case": 20.052,
- "positive_rate": 0.05,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-04-03",
- "total_cases": 233.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 23.714,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 20.571,
- "new_cases_per_million": 1.854,
- "new_cases_smoothed_per_million": 2.094,
- "total_deaths_per_million": 0.53,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "new_tests": 1057.0,
- "total_tests": 5202.0,
- "total_tests_per_thousand": 0.459,
- "new_tests_per_thousand": 0.093,
- "new_tests_smoothed": 548.0,
- "new_tests_smoothed_per_thousand": 0.048,
- "tests_per_case": 23.108,
- "positive_rate": 0.043,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-04-04",
- "total_cases": 269.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 27.0,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 23.749,
- "new_cases_per_million": 3.178,
- "new_cases_smoothed_per_million": 2.384,
- "total_deaths_per_million": 0.53,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "new_tests": 1201.0,
- "total_tests": 6403.0,
- "total_tests_per_thousand": 0.565,
- "new_tests_per_thousand": 0.106,
- "new_tests_smoothed": 677.0,
- "new_tests_smoothed_per_thousand": 0.06,
- "tests_per_case": 25.074,
- "positive_rate": 0.04,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-04-05",
- "total_cases": 288.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 24.143,
- "total_deaths": 6.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 25.427,
- "new_cases_per_million": 1.677,
- "new_cases_smoothed_per_million": 2.132,
- "total_deaths_per_million": 0.53,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.038,
- "new_tests": 764.0,
- "total_tests": 7167.0,
- "total_tests_per_thousand": 0.633,
- "new_tests_per_thousand": 0.067,
- "new_tests_smoothed": 737.0,
- "new_tests_smoothed_per_thousand": 0.065,
- "tests_per_case": 30.526999999999997,
- "positive_rate": 0.033,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-04-06",
- "total_cases": 320.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 25.857,
- "total_deaths": 8.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 28.252,
- "new_cases_per_million": 2.825,
- "new_cases_smoothed_per_million": 2.283,
- "total_deaths_per_million": 0.706,
- "new_deaths_per_million": 0.177,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests": 1056.0,
- "total_tests": 8223.0,
- "total_tests_per_thousand": 0.726,
- "new_tests_per_thousand": 0.093,
- "new_tests_smoothed": 843.0,
- "new_tests_smoothed_per_thousand": 0.074,
- "tests_per_case": 32.602,
- "positive_rate": 0.031,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-04-07",
- "total_cases": 350.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 25.714,
- "total_deaths": 9.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 30.901,
- "new_cases_per_million": 2.649,
- "new_cases_smoothed_per_million": 2.27,
- "total_deaths_per_million": 0.795,
- "new_deaths_per_million": 0.088,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests": 1187.0,
- "total_tests": 9410.0,
- "total_tests_per_thousand": 0.831,
- "new_tests_per_thousand": 0.105,
- "new_tests_smoothed": 949.0,
- "new_tests_smoothed_per_thousand": 0.084,
- "tests_per_case": 36.906,
- "positive_rate": 0.027000000000000003,
- "tests_units": "tests performed",
- "stringency_index": 70.37
- },
- {
- "date": "2020-04-08",
- "total_cases": 396.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 30.0,
- "total_deaths": 11.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 34.962,
- "new_cases_per_million": 4.061,
- "new_cases_smoothed_per_million": 2.649,
- "total_deaths_per_million": 0.971,
- "new_deaths_per_million": 0.177,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests": 1315.0,
- "total_tests": 10725.0,
- "total_tests_per_thousand": 0.947,
- "new_tests_per_thousand": 0.116,
- "new_tests_smoothed": 1055.0,
- "new_tests_smoothed_per_thousand": 0.093,
- "tests_per_case": 35.167,
- "positive_rate": 0.027999999999999997,
- "tests_units": "tests performed",
- "stringency_index": 70.37
- },
- {
- "date": "2020-04-09",
- "total_cases": 457.0,
- "new_cases": 61.0,
- "new_cases_smoothed": 35.0,
- "total_deaths": 12.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 40.347,
- "new_cases_per_million": 5.386,
- "new_cases_smoothed_per_million": 3.09,
- "total_deaths_per_million": 1.059,
- "new_deaths_per_million": 0.088,
- "new_deaths_smoothed_per_million": 0.076,
- "new_tests": 1298.0,
- "total_tests": 12023.0,
- "total_tests_per_thousand": 1.061,
- "new_tests_per_thousand": 0.115,
- "new_tests_smoothed": 1125.0,
- "new_tests_smoothed_per_thousand": 0.099,
- "tests_per_case": 32.143,
- "positive_rate": 0.031,
- "tests_units": "tests performed",
- "stringency_index": 70.37
- },
- {
- "date": "2020-04-10",
- "total_cases": 515.0,
- "new_cases": 58.0,
- "new_cases_smoothed": 40.286,
- "total_deaths": 15.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 45.468,
- "new_cases_per_million": 5.121,
- "new_cases_smoothed_per_million": 3.557,
- "total_deaths_per_million": 1.324,
- "new_deaths_per_million": 0.265,
- "new_deaths_smoothed_per_million": 0.114,
- "new_tests": 1139.0,
- "total_tests": 13162.0,
- "total_tests_per_thousand": 1.162,
- "new_tests_per_thousand": 0.101,
- "new_tests_smoothed": 1137.0,
- "new_tests_smoothed_per_thousand": 0.1,
- "tests_per_case": 28.223000000000003,
- "positive_rate": 0.035,
- "tests_units": "tests performed",
- "stringency_index": 70.37
- },
- {
- "date": "2020-04-11",
- "total_cases": 564.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 42.143,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 49.794,
- "new_cases_per_million": 4.326,
- "new_cases_smoothed_per_million": 3.721,
- "total_deaths_per_million": 1.324,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.114,
- "new_tests": 1895.0,
- "total_tests": 15057.0,
- "total_tests_per_thousand": 1.329,
- "new_tests_per_thousand": 0.167,
- "new_tests_smoothed": 1236.0,
- "new_tests_smoothed_per_thousand": 0.109,
- "tests_per_case": 29.329,
- "positive_rate": 0.034,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-12",
- "total_cases": 620.0,
- "new_cases": 56.0,
- "new_cases_smoothed": 47.429,
- "total_deaths": 16.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 54.738,
- "new_cases_per_million": 4.944,
- "new_cases_smoothed_per_million": 4.187,
- "total_deaths_per_million": 1.413,
- "new_deaths_per_million": 0.088,
- "new_deaths_smoothed_per_million": 0.126,
- "new_tests": 2076.0,
- "total_tests": 17133.0,
- "total_tests_per_thousand": 1.513,
- "new_tests_per_thousand": 0.183,
- "new_tests_smoothed": 1424.0,
- "new_tests_smoothed_per_thousand": 0.126,
- "tests_per_case": 30.024,
- "positive_rate": 0.033,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-13",
- "total_cases": 669.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 49.857,
- "total_deaths": 18.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 59.064,
- "new_cases_per_million": 4.326,
- "new_cases_smoothed_per_million": 4.402,
- "total_deaths_per_million": 1.589,
- "new_deaths_per_million": 0.177,
- "new_deaths_smoothed_per_million": 0.126,
- "new_tests": 1634.0,
- "total_tests": 18767.0,
- "total_tests_per_thousand": 1.657,
- "new_tests_per_thousand": 0.144,
- "new_tests_smoothed": 1506.0,
- "new_tests_smoothed_per_thousand": 0.133,
- "tests_per_case": 30.206,
- "positive_rate": 0.033,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-14",
- "total_cases": 726.0,
- "new_cases": 57.0,
- "new_cases_smoothed": 53.714,
- "total_deaths": 21.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 64.097,
- "new_cases_per_million": 5.032,
- "new_cases_smoothed_per_million": 4.742,
- "total_deaths_per_million": 1.854,
- "new_deaths_per_million": 0.265,
- "new_deaths_smoothed_per_million": 0.151,
- "new_tests": 1684.0,
- "total_tests": 20451.0,
- "total_tests_per_thousand": 1.806,
- "new_tests_per_thousand": 0.149,
- "new_tests_smoothed": 1577.0,
- "new_tests_smoothed_per_thousand": 0.139,
- "tests_per_case": 29.359,
- "positive_rate": 0.034,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-15",
- "total_cases": 766.0,
- "new_cases": 40.0,
- "new_cases_smoothed": 52.857,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 67.628,
- "new_cases_per_million": 3.532,
- "new_cases_smoothed_per_million": 4.667,
- "total_deaths_per_million": 1.854,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.126,
- "new_tests": 1386.0,
- "total_tests": 21837.0,
- "total_tests_per_thousand": 1.928,
- "new_tests_per_thousand": 0.122,
- "new_tests_smoothed": 1587.0,
- "new_tests_smoothed_per_thousand": 0.14,
- "tests_per_case": 30.024,
- "positive_rate": 0.033,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-16",
- "total_cases": 814.0,
- "new_cases": 48.0,
- "new_cases_smoothed": 51.0,
- "total_deaths": 24.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 71.866,
- "new_cases_per_million": 4.238,
- "new_cases_smoothed_per_million": 4.503,
- "total_deaths_per_million": 2.119,
- "new_deaths_per_million": 0.265,
- "new_deaths_smoothed_per_million": 0.151,
- "new_tests": 1480.0,
- "total_tests": 23317.0,
- "total_tests_per_thousand": 2.059,
- "new_tests_per_thousand": 0.131,
- "new_tests_smoothed": 1613.0,
- "new_tests_smoothed_per_thousand": 0.142,
- "tests_per_case": 31.627,
- "positive_rate": 0.032,
- "tests_units": "tests performed",
- "stringency_index": 73.15
- },
- {
- "date": "2020-04-17",
- "total_cases": 862.0,
- "new_cases": 48.0,
- "new_cases_smoothed": 49.571,
- "total_deaths": 27.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 76.104,
- "new_cases_per_million": 4.238,
- "new_cases_smoothed_per_million": 4.377,
- "total_deaths_per_million": 2.384,
- "new_deaths_per_million": 0.265,
- "new_deaths_smoothed_per_million": 0.151,
- "new_tests": 1895.0,
- "total_tests": 25212.0,
- "total_tests_per_thousand": 2.226,
- "new_tests_per_thousand": 0.167,
- "new_tests_smoothed": 1721.0,
- "new_tests_smoothed_per_thousand": 0.152,
- "tests_per_case": 34.718,
- "positive_rate": 0.028999999999999998,
- "tests_units": "tests performed",
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-18",
- "total_cases": 923.0,
- "new_cases": 61.0,
- "new_cases_smoothed": 51.286,
- "total_deaths": 31.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 81.489,
- "new_cases_per_million": 5.386,
- "new_cases_smoothed_per_million": 4.528,
- "total_deaths_per_million": 2.737,
- "new_deaths_per_million": 0.353,
- "new_deaths_smoothed_per_million": 0.202,
- "new_tests": 1770.0,
- "total_tests": 26982.0,
- "total_tests_per_thousand": 2.382,
- "new_tests_per_thousand": 0.156,
- "new_tests_smoothed": 1704.0,
- "new_tests_smoothed_per_thousand": 0.15,
- "tests_per_case": 33.226,
- "positive_rate": 0.03,
- "tests_units": "tests performed",
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-19",
- "total_cases": 986.0,
- "new_cases": 63.0,
- "new_cases_smoothed": 52.286,
- "total_deaths": 32.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 87.052,
- "new_cases_per_million": 5.562,
- "new_cases_smoothed_per_million": 4.616,
- "total_deaths_per_million": 2.825,
- "new_deaths_per_million": 0.088,
- "new_deaths_smoothed_per_million": 0.202,
- "new_tests": 1616.0,
- "total_tests": 28598.0,
- "total_tests_per_thousand": 2.525,
- "new_tests_per_thousand": 0.143,
- "new_tests_smoothed": 1638.0,
- "new_tests_smoothed_per_thousand": 0.145,
- "tests_per_case": 31.328000000000003,
- "positive_rate": 0.032,
- "tests_units": "tests performed",
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-20",
- "total_cases": 1035.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 52.286,
- "total_deaths": 34.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 91.378,
- "new_cases_per_million": 4.326,
- "new_cases_smoothed_per_million": 4.616,
- "total_deaths_per_million": 3.002,
- "new_deaths_per_million": 0.177,
- "new_deaths_smoothed_per_million": 0.202,
- "new_tests": 1818.0,
- "total_tests": 30416.0,
- "total_tests_per_thousand": 2.685,
- "new_tests_per_thousand": 0.161,
- "new_tests_smoothed": 1664.0,
- "new_tests_smoothed_per_thousand": 0.147,
- "tests_per_case": 31.825,
- "positive_rate": 0.031,
- "tests_units": "tests performed",
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-21",
- "total_cases": 1087.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 51.571,
- "total_deaths": 36.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 95.969,
- "new_cases_per_million": 4.591,
- "new_cases_smoothed_per_million": 4.553,
- "total_deaths_per_million": 3.178,
- "new_deaths_per_million": 0.177,
- "new_deaths_smoothed_per_million": 0.189,
- "new_tests": 1860.0,
- "total_tests": 32276.0,
- "total_tests_per_thousand": 2.85,
- "new_tests_per_thousand": 0.164,
- "new_tests_smoothed": 1689.0,
- "new_tests_smoothed_per_thousand": 0.149,
- "tests_per_case": 32.751,
- "positive_rate": 0.031,
- "tests_units": "tests performed",
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-22",
- "total_cases": 1137.0,
- "new_cases": 50.0,
- "new_cases_smoothed": 53.0,
- "total_deaths": 38.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 100.383,
- "new_cases_per_million": 4.414,
- "new_cases_smoothed_per_million": 4.679,
- "total_deaths_per_million": 3.355,
- "new_deaths_per_million": 0.177,
- "new_deaths_smoothed_per_million": 0.214,
- "new_tests": 1967.0,
- "total_tests": 34243.0,
- "total_tests_per_thousand": 3.023,
- "new_tests_per_thousand": 0.174,
- "new_tests_smoothed": 1772.0,
- "new_tests_smoothed_per_thousand": 0.156,
- "tests_per_case": 33.434,
- "positive_rate": 0.03,
- "tests_units": "tests performed",
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-23",
- "total_cases": 1189.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 53.571,
- "total_deaths": 40.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 104.974,
- "new_cases_per_million": 4.591,
- "new_cases_smoothed_per_million": 4.73,
- "total_deaths_per_million": 3.532,
- "new_deaths_per_million": 0.177,
- "new_deaths_smoothed_per_million": 0.202,
- "new_tests": 1891.0,
- "total_tests": 36134.0,
- "total_tests_per_thousand": 3.19,
- "new_tests_per_thousand": 0.167,
- "new_tests_smoothed": 1831.0,
- "new_tests_smoothed_per_thousand": 0.162,
- "tests_per_case": 34.179,
- "positive_rate": 0.028999999999999998,
- "tests_units": "tests performed",
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-24",
- "total_cases": 1235.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 53.286,
- "total_deaths": 43.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 109.035,
- "new_cases_per_million": 4.061,
- "new_cases_smoothed_per_million": 4.704,
- "total_deaths_per_million": 3.796,
- "new_deaths_per_million": 0.265,
- "new_deaths_smoothed_per_million": 0.202,
- "new_tests": 1857.0,
- "total_tests": 37991.0,
- "total_tests_per_thousand": 3.354,
- "new_tests_per_thousand": 0.164,
- "new_tests_smoothed": 1826.0,
- "new_tests_smoothed_per_thousand": 0.161,
- "tests_per_case": 34.268,
- "positive_rate": 0.028999999999999998,
- "tests_units": "tests performed",
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-25",
- "total_cases": 1285.0,
- "new_cases": 50.0,
- "new_cases_smoothed": 51.714,
- "total_deaths": 49.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 113.45,
- "new_cases_per_million": 4.414,
- "new_cases_smoothed_per_million": 4.566,
- "total_deaths_per_million": 4.326,
- "new_deaths_per_million": 0.53,
- "new_deaths_smoothed_per_million": 0.227,
- "new_tests": 1837.0,
- "total_tests": 39828.0,
- "total_tests_per_thousand": 3.516,
- "new_tests_per_thousand": 0.162,
- "new_tests_smoothed": 1835.0,
- "new_tests_smoothed_per_thousand": 0.162,
- "tests_per_case": 35.483000000000004,
- "positive_rate": 0.027999999999999997,
- "tests_units": "tests performed",
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-26",
- "total_cases": 1337.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 50.143,
- "total_deaths": 51.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 118.041,
- "new_cases_per_million": 4.591,
- "new_cases_smoothed_per_million": 4.427,
- "total_deaths_per_million": 4.503,
- "new_deaths_per_million": 0.177,
- "new_deaths_smoothed_per_million": 0.24,
- "new_tests": 1823.0,
- "total_tests": 41651.0,
- "total_tests_per_thousand": 3.677,
- "new_tests_per_thousand": 0.161,
- "new_tests_smoothed": 1865.0,
- "new_tests_smoothed_per_thousand": 0.165,
- "tests_per_case": 37.194,
- "positive_rate": 0.027000000000000003,
- "tests_units": "tests performed",
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-27",
- "total_cases": 1369.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 47.714,
- "total_deaths": 54.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 120.866,
- "new_cases_per_million": 2.825,
- "new_cases_smoothed_per_million": 4.213,
- "total_deaths_per_million": 4.768,
- "new_deaths_per_million": 0.265,
- "new_deaths_smoothed_per_million": 0.252,
- "new_tests": 1857.0,
- "total_tests": 43508.0,
- "total_tests_per_thousand": 3.841,
- "new_tests_per_thousand": 0.164,
- "new_tests_smoothed": 1870.0,
- "new_tests_smoothed_per_thousand": 0.165,
- "tests_per_case": 39.192,
- "positive_rate": 0.026000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-28",
- "total_cases": 1389.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 43.143,
- "total_deaths": 56.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 122.632,
- "new_cases_per_million": 1.766,
- "new_cases_smoothed_per_million": 3.809,
- "total_deaths_per_million": 4.944,
- "new_deaths_per_million": 0.177,
- "new_deaths_smoothed_per_million": 0.252,
- "new_tests": 1836.0,
- "total_tests": 45344.0,
- "total_tests_per_thousand": 4.003,
- "new_tests_per_thousand": 0.162,
- "new_tests_smoothed": 1867.0,
- "new_tests_smoothed_per_thousand": 0.165,
- "tests_per_case": 43.275,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-29",
- "total_cases": 1437.0,
- "new_cases": 48.0,
- "new_cases_smoothed": 42.857,
- "total_deaths": 58.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 126.869,
- "new_cases_per_million": 4.238,
- "new_cases_smoothed_per_million": 3.784,
- "total_deaths_per_million": 5.121,
- "new_deaths_per_million": 0.177,
- "new_deaths_smoothed_per_million": 0.252,
- "new_tests": 2003.0,
- "total_tests": 47347.0,
- "total_tests_per_thousand": 4.18,
- "new_tests_per_thousand": 0.177,
- "new_tests_smoothed": 1872.0,
- "new_tests_smoothed_per_thousand": 0.165,
- "tests_per_case": 43.68,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 83.33
- },
- {
- "date": "2020-04-30",
- "total_cases": 1467.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 39.714,
- "total_deaths": 58.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 129.518,
- "new_cases_per_million": 2.649,
- "new_cases_smoothed_per_million": 3.506,
- "total_deaths_per_million": 5.121,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.227,
- "new_tests": 2062.0,
- "total_tests": 49409.0,
- "total_tests_per_thousand": 4.362,
- "new_tests_per_thousand": 0.182,
- "new_tests_smoothed": 1896.0,
- "new_tests_smoothed_per_thousand": 0.167,
- "tests_per_case": 47.74100000000001,
- "positive_rate": 0.021,
- "tests_units": "tests performed",
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-01",
- "total_cases": 1501.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 38.0,
- "total_deaths": 61.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 132.52,
- "new_cases_per_million": 3.002,
- "new_cases_smoothed_per_million": 3.355,
- "total_deaths_per_million": 5.386,
- "new_deaths_per_million": 0.265,
- "new_deaths_smoothed_per_million": 0.227,
- "new_tests": 2097.0,
- "total_tests": 51506.0,
- "total_tests_per_thousand": 4.547,
- "new_tests_per_thousand": 0.185,
- "new_tests_smoothed": 1931.0,
- "new_tests_smoothed_per_thousand": 0.17,
- "tests_per_case": 50.816,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-02",
- "total_cases": 1537.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 36.0,
- "total_deaths": 64.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 135.698,
- "new_cases_per_million": 3.178,
- "new_cases_smoothed_per_million": 3.178,
- "total_deaths_per_million": 5.65,
- "new_deaths_per_million": 0.265,
- "new_deaths_smoothed_per_million": 0.189,
- "new_tests": 2039.0,
- "total_tests": 53545.0,
- "total_tests_per_thousand": 4.727,
- "new_tests_per_thousand": 0.18,
- "new_tests_smoothed": 1960.0,
- "new_tests_smoothed_per_thousand": 0.173,
- "tests_per_case": 54.443999999999996,
- "positive_rate": 0.018000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-03",
- "total_cases": 1611.0,
- "new_cases": 74.0,
- "new_cases_smoothed": 39.143,
- "total_deaths": 66.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 142.231,
- "new_cases_per_million": 6.533,
- "new_cases_smoothed_per_million": 3.456,
- "total_deaths_per_million": 5.827,
- "new_deaths_per_million": 0.177,
- "new_deaths_smoothed_per_million": 0.189,
- "new_tests": 1997.0,
- "total_tests": 55542.0,
- "total_tests_per_thousand": 4.904,
- "new_tests_per_thousand": 0.176,
- "new_tests_smoothed": 1984.0,
- "new_tests_smoothed_per_thousand": 0.175,
- "tests_per_case": 50.68600000000001,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-04",
- "total_cases": 1649.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 40.0,
- "total_deaths": 67.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 145.586,
- "new_cases_per_million": 3.355,
- "new_cases_smoothed_per_million": 3.532,
- "total_deaths_per_million": 5.915,
- "new_deaths_per_million": 0.088,
- "new_deaths_smoothed_per_million": 0.164,
- "new_tests": 2169.0,
- "total_tests": 57711.0,
- "total_tests_per_thousand": 5.095,
- "new_tests_per_thousand": 0.191,
- "new_tests_smoothed": 2029.0,
- "new_tests_smoothed_per_thousand": 0.179,
- "tests_per_case": 50.725,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 83.33
- },
- {
- "date": "2020-05-05",
- "total_cases": 1668.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 39.857,
- "total_deaths": 69.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 147.264,
- "new_cases_per_million": 1.677,
- "new_cases_smoothed_per_million": 3.519,
- "total_deaths_per_million": 6.092,
- "new_deaths_per_million": 0.177,
- "new_deaths_smoothed_per_million": 0.164,
- "new_tests": 1937.0,
- "total_tests": 59648.0,
- "total_tests_per_thousand": 5.266,
- "new_tests_per_thousand": 0.171,
- "new_tests_smoothed": 2043.0,
- "new_tests_smoothed_per_thousand": 0.18,
- "tests_per_case": 51.258,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-06",
- "total_cases": 1685.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 35.429,
- "total_deaths": 69.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 148.765,
- "new_cases_per_million": 1.501,
- "new_cases_smoothed_per_million": 3.128,
- "total_deaths_per_million": 6.092,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.139,
- "new_tests": 1965.0,
- "total_tests": 61613.0,
- "total_tests_per_thousand": 5.44,
- "new_tests_per_thousand": 0.173,
- "new_tests_smoothed": 2038.0,
- "new_tests_smoothed_per_thousand": 0.18,
- "tests_per_case": 57.523999999999994,
- "positive_rate": 0.017,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-07",
- "total_cases": 1703.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 33.714,
- "total_deaths": 69.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 150.354,
- "new_cases_per_million": 1.589,
- "new_cases_smoothed_per_million": 2.977,
- "total_deaths_per_million": 6.092,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.139,
- "new_tests": 1947.0,
- "total_tests": 63560.0,
- "total_tests_per_thousand": 5.612,
- "new_tests_per_thousand": 0.172,
- "new_tests_smoothed": 2022.0,
- "new_tests_smoothed_per_thousand": 0.179,
- "tests_per_case": 59.975,
- "positive_rate": 0.017,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-08",
- "total_cases": 1729.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 32.571,
- "total_deaths": 73.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 152.649,
- "new_cases_per_million": 2.295,
- "new_cases_smoothed_per_million": 2.876,
- "total_deaths_per_million": 6.445,
- "new_deaths_per_million": 0.353,
- "new_deaths_smoothed_per_million": 0.151,
- "new_tests": 1949.0,
- "total_tests": 65509.0,
- "total_tests_per_thousand": 5.784,
- "new_tests_per_thousand": 0.172,
- "new_tests_smoothed": 2000.0,
- "new_tests_smoothed_per_thousand": 0.177,
- "tests_per_case": 61.403999999999996,
- "positive_rate": 0.016,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-09",
- "total_cases": 1741.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 29.143,
- "total_deaths": 74.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 153.709,
- "new_cases_per_million": 1.059,
- "new_cases_smoothed_per_million": 2.573,
- "total_deaths_per_million": 6.533,
- "new_deaths_per_million": 0.088,
- "new_deaths_smoothed_per_million": 0.126,
- "new_tests": 1826.0,
- "total_tests": 67335.0,
- "total_tests_per_thousand": 5.945,
- "new_tests_per_thousand": 0.161,
- "new_tests_smoothed": 1970.0,
- "new_tests_smoothed_per_thousand": 0.174,
- "tests_per_case": 67.598,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-10",
- "total_cases": 1754.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 20.429,
- "total_deaths": 74.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 154.856,
- "new_cases_per_million": 1.148,
- "new_cases_smoothed_per_million": 1.804,
- "total_deaths_per_million": 6.533,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.101,
- "new_tests": 1847.0,
- "total_tests": 69182.0,
- "total_tests_per_thousand": 6.108,
- "new_tests_per_thousand": 0.163,
- "new_tests_smoothed": 1949.0,
- "new_tests_smoothed_per_thousand": 0.172,
- "tests_per_case": 95.406,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 85.19
- },
- {
- "date": "2020-05-11",
- "total_cases": 1766.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 16.714,
- "total_deaths": 77.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 155.916,
- "new_cases_per_million": 1.059,
- "new_cases_smoothed_per_million": 1.476,
- "total_deaths_per_million": 6.798,
- "new_deaths_per_million": 0.265,
- "new_deaths_smoothed_per_million": 0.126,
- "new_tests": 1975.0,
- "total_tests": 71157.0,
- "total_tests_per_thousand": 6.282,
- "new_tests_per_thousand": 0.174,
- "new_tests_smoothed": 1921.0,
- "new_tests_smoothed_per_thousand": 0.17,
- "tests_per_case": 114.932,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-12",
- "total_cases": 1783.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 16.429,
- "total_deaths": 77.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 157.417,
- "new_cases_per_million": 1.501,
- "new_cases_smoothed_per_million": 1.45,
- "total_deaths_per_million": 6.798,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.101,
- "new_tests": 1972.0,
- "total_tests": 73129.0,
- "total_tests_per_thousand": 6.456,
- "new_tests_per_thousand": 0.174,
- "new_tests_smoothed": 1926.0,
- "new_tests_smoothed_per_thousand": 0.17,
- "tests_per_case": 117.235,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-13",
- "total_cases": 1804.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 17.0,
- "total_deaths": 78.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 159.271,
- "new_cases_per_million": 1.854,
- "new_cases_smoothed_per_million": 1.501,
- "total_deaths_per_million": 6.886,
- "new_deaths_per_million": 0.088,
- "new_deaths_smoothed_per_million": 0.114,
- "new_tests": 2013.0,
- "total_tests": 75142.0,
- "total_tests_per_thousand": 6.634,
- "new_tests_per_thousand": 0.178,
- "new_tests_smoothed": 1933.0,
- "new_tests_smoothed_per_thousand": 0.171,
- "tests_per_case": 113.706,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-14",
- "total_cases": 1810.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 15.286,
- "total_deaths": 79.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 159.801,
- "new_cases_per_million": 0.53,
- "new_cases_smoothed_per_million": 1.35,
- "total_deaths_per_million": 6.975,
- "new_deaths_per_million": 0.088,
- "new_deaths_smoothed_per_million": 0.126,
- "new_tests": 2232.0,
- "total_tests": 77374.0,
- "total_tests_per_thousand": 6.831,
- "new_tests_per_thousand": 0.197,
- "new_tests_smoothed": 1973.0,
- "new_tests_smoothed_per_thousand": 0.174,
- "tests_per_case": 129.075,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-15",
- "total_cases": 1830.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 14.429,
- "total_deaths": 79.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 161.566,
- "new_cases_per_million": 1.766,
- "new_cases_smoothed_per_million": 1.274,
- "total_deaths_per_million": 6.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.076,
- "new_tests": 2460.0,
- "total_tests": 79834.0,
- "total_tests_per_thousand": 7.048,
- "new_tests_per_thousand": 0.217,
- "new_tests_smoothed": 2046.0,
- "new_tests_smoothed_per_thousand": 0.181,
- "tests_per_case": 141.80200000000002,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-16",
- "total_cases": 1840.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 14.143,
- "total_deaths": 79.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 162.449,
- "new_cases_per_million": 0.883,
- "new_cases_smoothed_per_million": 1.249,
- "total_deaths_per_million": 6.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests": 2083.0,
- "total_tests": 81917.0,
- "total_tests_per_thousand": 7.232,
- "new_tests_per_thousand": 0.184,
- "new_tests_smoothed": 2083.0,
- "new_tests_smoothed_per_thousand": 0.184,
- "tests_per_case": 147.283,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-17",
- "total_cases": 1862.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 15.429,
- "total_deaths": 79.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 164.392,
- "new_cases_per_million": 1.942,
- "new_cases_smoothed_per_million": 1.362,
- "total_deaths_per_million": 6.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests": 1951.0,
- "total_tests": 83868.0,
- "total_tests_per_thousand": 7.405,
- "new_tests_per_thousand": 0.172,
- "new_tests_smoothed": 2098.0,
- "new_tests_smoothed_per_thousand": 0.185,
- "tests_per_case": 135.981,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-18",
- "total_cases": 1872.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 15.143,
- "total_deaths": 79.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 165.274,
- "new_cases_per_million": 0.883,
- "new_cases_smoothed_per_million": 1.337,
- "total_deaths_per_million": 6.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.025,
- "new_tests": 1688.0,
- "total_tests": 85556.0,
- "total_tests_per_thousand": 7.554,
- "new_tests_per_thousand": 0.149,
- "new_tests_smoothed": 2057.0,
- "new_tests_smoothed_per_thousand": 0.182,
- "tests_per_case": 135.84,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-19",
- "total_cases": 1881.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 14.0,
- "total_deaths": 79.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 166.069,
- "new_cases_per_million": 0.795,
- "new_cases_smoothed_per_million": 1.236,
- "total_deaths_per_million": 6.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.025,
- "new_tests": 1732.0,
- "total_tests": 87288.0,
- "total_tests_per_thousand": 7.706,
- "new_tests_per_thousand": 0.153,
- "new_tests_smoothed": 2023.0,
- "new_tests_smoothed_per_thousand": 0.179,
- "tests_per_case": 144.5,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-20",
- "total_cases": 1887.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 11.857,
- "total_deaths": 79.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 166.599,
- "new_cases_per_million": 0.53,
- "new_cases_smoothed_per_million": 1.047,
- "total_deaths_per_million": 6.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 1743.0,
- "total_tests": 89031.0,
- "total_tests_per_thousand": 7.86,
- "new_tests_per_thousand": 0.154,
- "new_tests_smoothed": 1984.0,
- "new_tests_smoothed_per_thousand": 0.175,
- "tests_per_case": 167.325,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-21",
- "total_cases": 1900.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 12.857,
- "total_deaths": 79.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 167.746,
- "new_cases_per_million": 1.148,
- "new_cases_smoothed_per_million": 1.135,
- "total_deaths_per_million": 6.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1880.0,
- "total_tests": 90911.0,
- "total_tests_per_thousand": 8.026,
- "new_tests_per_thousand": 0.166,
- "new_tests_smoothed": 1934.0,
- "new_tests_smoothed_per_thousand": 0.171,
- "tests_per_case": 150.422,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-22",
- "total_cases": 1908.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 11.143,
- "total_deaths": 80.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 168.453,
- "new_cases_per_million": 0.706,
- "new_cases_smoothed_per_million": 0.984,
- "total_deaths_per_million": 7.063,
- "new_deaths_per_million": 0.088,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 1718.0,
- "total_tests": 92629.0,
- "total_tests_per_thousand": 8.178,
- "new_tests_per_thousand": 0.152,
- "new_tests_smoothed": 1828.0,
- "new_tests_smoothed_per_thousand": 0.161,
- "tests_per_case": 164.051,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-23",
- "total_cases": 1916.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 10.857,
- "total_deaths": 81.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 169.159,
- "new_cases_per_million": 0.706,
- "new_cases_smoothed_per_million": 0.959,
- "total_deaths_per_million": 7.151,
- "new_deaths_per_million": 0.088,
- "new_deaths_smoothed_per_million": 0.025,
- "new_tests": 1431.0,
- "total_tests": 94060.0,
- "total_tests_per_thousand": 8.304,
- "new_tests_per_thousand": 0.126,
- "new_tests_smoothed": 1735.0,
- "new_tests_smoothed_per_thousand": 0.153,
- "tests_per_case": 159.803,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-24",
- "total_cases": 1931.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 9.857,
- "total_deaths": 81.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 170.483,
- "new_cases_per_million": 1.324,
- "new_cases_smoothed_per_million": 0.87,
- "total_deaths_per_million": 7.151,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.025,
- "new_tests": 1451.0,
- "total_tests": 95511.0,
- "total_tests_per_thousand": 8.432,
- "new_tests_per_thousand": 0.128,
- "new_tests_smoothed": 1663.0,
- "new_tests_smoothed_per_thousand": 0.147,
- "tests_per_case": 168.71,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-25",
- "total_cases": 1941.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 9.857,
- "total_deaths": 82.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 171.366,
- "new_cases_per_million": 0.883,
- "new_cases_smoothed_per_million": 0.87,
- "total_deaths_per_million": 7.24,
- "new_deaths_per_million": 0.088,
- "new_deaths_smoothed_per_million": 0.038,
- "new_tests": 1492.0,
- "total_tests": 97003.0,
- "total_tests_per_thousand": 8.564,
- "new_tests_per_thousand": 0.132,
- "new_tests_smoothed": 1635.0,
- "new_tests_smoothed_per_thousand": 0.144,
- "tests_per_case": 165.87,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-26",
- "total_cases": 1947.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 9.429,
- "total_deaths": 82.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 171.896,
- "new_cases_per_million": 0.53,
- "new_cases_smoothed_per_million": 0.832,
- "total_deaths_per_million": 7.24,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.038,
- "new_tests": 1378.0,
- "total_tests": 98381.0,
- "total_tests_per_thousand": 8.686,
- "new_tests_per_thousand": 0.122,
- "new_tests_smoothed": 1585.0,
- "new_tests_smoothed_per_thousand": 0.14,
- "tests_per_case": 168.106,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-27",
- "total_cases": 1963.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 10.857,
- "total_deaths": 82.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 173.309,
- "new_cases_per_million": 1.413,
- "new_cases_smoothed_per_million": 0.959,
- "total_deaths_per_million": 7.24,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.038,
- "new_tests": 1364.0,
- "total_tests": 99745.0,
- "total_tests_per_thousand": 8.806,
- "new_tests_per_thousand": 0.12,
- "new_tests_smoothed": 1531.0,
- "new_tests_smoothed_per_thousand": 0.135,
- "tests_per_case": 141.013,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-28",
- "total_cases": 1974.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 10.571,
- "total_deaths": 82.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 174.28,
- "new_cases_per_million": 0.971,
- "new_cases_smoothed_per_million": 0.933,
- "total_deaths_per_million": 7.24,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.038,
- "new_tests": 1363.0,
- "total_tests": 101108.0,
- "total_tests_per_thousand": 8.927,
- "new_tests_per_thousand": 0.12,
- "new_tests_smoothed": 1457.0,
- "new_tests_smoothed_per_thousand": 0.129,
- "tests_per_case": 137.82399999999998,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-29",
- "total_cases": 1983.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 10.714,
- "total_deaths": 82.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 175.074,
- "new_cases_per_million": 0.795,
- "new_cases_smoothed_per_million": 0.946,
- "total_deaths_per_million": 7.24,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.025,
- "new_tests": 2015.0,
- "total_tests": 103123.0,
- "total_tests_per_thousand": 9.104,
- "new_tests_per_thousand": 0.178,
- "new_tests_smoothed": 1499.0,
- "new_tests_smoothed_per_thousand": 0.132,
- "tests_per_case": 139.907,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-30",
- "total_cases": 2005.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 12.714,
- "total_deaths": 82.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 177.017,
- "new_cases_per_million": 1.942,
- "new_cases_smoothed_per_million": 1.123,
- "total_deaths_per_million": 7.24,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 2151.0,
- "total_tests": 105274.0,
- "total_tests_per_thousand": 9.294,
- "new_tests_per_thousand": 0.19,
- "new_tests_smoothed": 1602.0,
- "new_tests_smoothed_per_thousand": 0.141,
- "tests_per_case": 126.0,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-31",
- "total_cases": 2025.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 13.429,
- "total_deaths": 83.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 178.782,
- "new_cases_per_million": 1.766,
- "new_cases_smoothed_per_million": 1.186,
- "total_deaths_per_million": 7.328,
- "new_deaths_per_million": 0.088,
- "new_deaths_smoothed_per_million": 0.025,
- "new_tests": 1763.0,
- "total_tests": 107037.0,
- "total_tests_per_thousand": 9.45,
- "new_tests_per_thousand": 0.156,
- "new_tests_smoothed": 1647.0,
- "new_tests_smoothed_per_thousand": 0.145,
- "tests_per_case": 122.649,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-06-01",
- "total_cases": 2045.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 14.857,
- "total_deaths": 83.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 180.548,
- "new_cases_per_million": 1.766,
- "new_cases_smoothed_per_million": 1.312,
- "total_deaths_per_million": 7.328,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 1352.0,
- "total_tests": 108389.0,
- "total_tests_per_thousand": 9.569,
- "new_tests_per_thousand": 0.119,
- "new_tests_smoothed": 1627.0,
- "new_tests_smoothed_per_thousand": 0.144,
- "tests_per_case": 109.51,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-06-02",
- "total_cases": 2083.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 19.429,
- "total_deaths": 83.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 183.903,
- "new_cases_per_million": 3.355,
- "new_cases_smoothed_per_million": 1.715,
- "total_deaths_per_million": 7.328,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 1960.0,
- "total_tests": 110349.0,
- "total_tests_per_thousand": 9.742,
- "new_tests_per_thousand": 0.173,
- "new_tests_smoothed": 1710.0,
- "new_tests_smoothed_per_thousand": 0.151,
- "tests_per_case": 88.015,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-06-03",
- "total_cases": 2092.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 18.429,
- "total_deaths": 83.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 184.698,
- "new_cases_per_million": 0.795,
- "new_cases_smoothed_per_million": 1.627,
- "total_deaths_per_million": 7.328,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 2100.0,
- "total_tests": 112449.0,
- "total_tests_per_thousand": 9.928,
- "new_tests_per_thousand": 0.185,
- "new_tests_smoothed": 1815.0,
- "new_tests_smoothed_per_thousand": 0.16,
- "tests_per_case": 98.488,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-06-04",
- "total_cases": 2107.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 19.0,
- "total_deaths": 83.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 186.022,
- "new_cases_per_million": 1.324,
- "new_cases_smoothed_per_million": 1.677,
- "total_deaths_per_million": 7.328,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 2015.0,
- "total_tests": 114464.0,
- "total_tests_per_thousand": 10.106,
- "new_tests_per_thousand": 0.178,
- "new_tests_smoothed": 1908.0,
- "new_tests_smoothed_per_thousand": 0.168,
- "tests_per_case": 100.421,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-06-05",
- "total_cases": 2119.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 19.429,
- "total_deaths": 83.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 187.081,
- "new_cases_per_million": 1.059,
- "new_cases_smoothed_per_million": 1.715,
- "total_deaths_per_million": 7.328,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 2004.0,
- "total_tests": 116468.0,
- "total_tests_per_thousand": 10.283,
- "new_tests_per_thousand": 0.177,
- "new_tests_smoothed": 1906.0,
- "new_tests_smoothed_per_thousand": 0.168,
- "tests_per_case": 98.103,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-06-06",
- "total_cases": 2133.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 18.286,
- "total_deaths": 83.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 188.317,
- "new_cases_per_million": 1.236,
- "new_cases_smoothed_per_million": 1.614,
- "total_deaths_per_million": 7.328,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 2020.0,
- "total_tests": 118488.0,
- "total_tests_per_thousand": 10.461,
- "new_tests_per_thousand": 0.178,
- "new_tests_smoothed": 1888.0,
- "new_tests_smoothed_per_thousand": 0.167,
- "tests_per_case": 103.25,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-06-07",
- "total_cases": 2173.0,
- "new_cases": 40.0,
- "new_cases_smoothed": 21.143,
- "total_deaths": 83.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 191.849,
- "new_cases_per_million": 3.532,
- "new_cases_smoothed_per_million": 1.867,
- "total_deaths_per_million": 7.328,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 2048.0,
- "total_tests": 120536.0,
- "total_tests_per_thousand": 10.642,
- "new_tests_per_thousand": 0.181,
- "new_tests_smoothed": 1928.0,
- "new_tests_smoothed_per_thousand": 0.17,
- "tests_per_case": 91.189,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-06-08",
- "total_cases": 2191.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 20.857,
- "total_deaths": 83.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 193.438,
- "new_cases_per_million": 1.589,
- "new_cases_smoothed_per_million": 1.841,
- "total_deaths_per_million": 7.328,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 2067.0,
- "total_tests": 122603.0,
- "total_tests_per_thousand": 10.824,
- "new_tests_per_thousand": 0.182,
- "new_tests_smoothed": 2031.0,
- "new_tests_smoothed_per_thousand": 0.179,
- "tests_per_case": 97.37700000000001,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-06-09",
- "total_cases": 2200.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 16.714,
- "total_deaths": 83.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 194.233,
- "new_cases_per_million": 0.795,
- "new_cases_smoothed_per_million": 1.476,
- "total_deaths_per_million": 7.328,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 2344.0,
- "total_tests": 124947.0,
- "total_tests_per_thousand": 11.031,
- "new_tests_per_thousand": 0.207,
- "new_tests_smoothed": 2085.0,
- "new_tests_smoothed_per_thousand": 0.184,
- "tests_per_case": 124.744,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-06-10",
- "total_cases": 2205.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 16.143,
- "total_deaths": 83.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 194.674,
- "new_cases_per_million": 0.441,
- "new_cases_smoothed_per_million": 1.425,
- "total_deaths_per_million": 7.328,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 2095.0,
- "total_tests": 127042.0,
- "total_tests_per_thousand": 11.216,
- "new_tests_per_thousand": 0.185,
- "new_tests_smoothed": 2085.0,
- "new_tests_smoothed_per_thousand": 0.184,
- "tests_per_case": 129.159,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-06-11",
- "total_cases": 2211.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 14.857,
- "total_deaths": 83.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 195.204,
- "new_cases_per_million": 0.53,
- "new_cases_smoothed_per_million": 1.312,
- "total_deaths_per_million": 7.328,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 2090.0,
- "total_tests": 129132.0,
- "total_tests_per_thousand": 11.401,
- "new_tests_per_thousand": 0.185,
- "new_tests_smoothed": 2095.0,
- "new_tests_smoothed_per_thousand": 0.185,
- "tests_per_case": 141.01,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-06-12",
- "total_cases": 2219.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 14.286,
- "total_deaths": 84.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 195.91,
- "new_cases_per_million": 0.706,
- "new_cases_smoothed_per_million": 1.261,
- "total_deaths_per_million": 7.416,
- "new_deaths_per_million": 0.088,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 2496.0,
- "total_tests": 131628.0,
- "total_tests_per_thousand": 11.621,
- "new_tests_per_thousand": 0.22,
- "new_tests_smoothed": 2166.0,
- "new_tests_smoothed_per_thousand": 0.191,
- "tests_per_case": 151.62,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-06-13",
- "total_cases": 2233.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 14.286,
- "total_deaths": 84.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 197.146,
- "new_cases_per_million": 1.236,
- "new_cases_smoothed_per_million": 1.261,
- "total_deaths_per_million": 7.416,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 2135.0,
- "total_tests": 133763.0,
- "total_tests_per_thousand": 11.81,
- "new_tests_per_thousand": 0.188,
- "new_tests_smoothed": 2182.0,
- "new_tests_smoothed_per_thousand": 0.193,
- "tests_per_case": 152.74,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-06-14",
- "total_cases": 2238.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 9.286,
- "total_deaths": 84.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 197.588,
- "new_cases_per_million": 0.441,
- "new_cases_smoothed_per_million": 0.82,
- "total_deaths_per_million": 7.416,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 2486.0,
- "total_tests": 136249.0,
- "total_tests_per_thousand": 12.029,
- "new_tests_per_thousand": 0.219,
- "new_tests_smoothed": 2245.0,
- "new_tests_smoothed_per_thousand": 0.198,
- "tests_per_case": 241.769,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-06-15",
- "total_cases": 2248.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 8.143,
- "total_deaths": 84.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 198.471,
- "new_cases_per_million": 0.883,
- "new_cases_smoothed_per_million": 0.719,
- "total_deaths_per_million": 7.416,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 2582.0,
- "total_tests": 138831.0,
- "total_tests_per_thousand": 12.257,
- "new_tests_per_thousand": 0.228,
- "new_tests_smoothed": 2318.0,
- "new_tests_smoothed_per_thousand": 0.205,
- "tests_per_case": 284.66700000000003,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-06-16",
- "total_cases": 2262.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 8.857,
- "total_deaths": 84.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 199.707,
- "new_cases_per_million": 1.236,
- "new_cases_smoothed_per_million": 0.782,
- "total_deaths_per_million": 7.416,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 2320.0,
- "total_tests": 141151.0,
- "total_tests_per_thousand": 12.462,
- "new_tests_per_thousand": 0.205,
- "new_tests_smoothed": 2315.0,
- "new_tests_smoothed_per_thousand": 0.204,
- "tests_per_case": 261.371,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-06-17",
- "total_cases": 2273.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 9.714,
- "total_deaths": 84.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 200.678,
- "new_cases_per_million": 0.971,
- "new_cases_smoothed_per_million": 0.858,
- "total_deaths_per_million": 7.416,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 2582.0,
- "total_tests": 143733.0,
- "total_tests_per_thousand": 12.69,
- "new_tests_per_thousand": 0.228,
- "new_tests_smoothed": 2384.0,
- "new_tests_smoothed_per_thousand": 0.21,
- "tests_per_case": 245.412,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 100.0
- },
- {
- "date": "2020-06-18",
- "total_cases": 2280.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 9.857,
- "total_deaths": 84.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 201.296,
- "new_cases_per_million": 0.618,
- "new_cases_smoothed_per_million": 0.87,
- "total_deaths_per_million": 7.416,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 2543.0,
- "total_tests": 146276.0,
- "total_tests_per_thousand": 12.914,
- "new_tests_per_thousand": 0.225,
- "new_tests_smoothed": 2449.0,
- "new_tests_smoothed_per_thousand": 0.216,
- "tests_per_case": 248.449,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-06-19",
- "total_cases": 2295.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 10.857,
- "total_deaths": 85.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 202.62,
- "new_cases_per_million": 1.324,
- "new_cases_smoothed_per_million": 0.959,
- "total_deaths_per_million": 7.504,
- "new_deaths_per_million": 0.088,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 2536.0,
- "total_tests": 148812.0,
- "total_tests_per_thousand": 13.138,
- "new_tests_per_thousand": 0.224,
- "new_tests_smoothed": 2455.0,
- "new_tests_smoothed_per_thousand": 0.217,
- "tests_per_case": 226.118,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-06-20",
- "total_cases": 2305.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 10.286,
- "total_deaths": 85.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 203.503,
- "new_cases_per_million": 0.883,
- "new_cases_smoothed_per_million": 0.908,
- "total_deaths_per_million": 7.504,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 2352.0,
- "total_tests": 151164.0,
- "total_tests_per_thousand": 13.346,
- "new_tests_per_thousand": 0.208,
- "new_tests_smoothed": 2486.0,
- "new_tests_smoothed_per_thousand": 0.219,
- "tests_per_case": 241.69400000000002,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-06-21",
- "total_cases": 2309.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 10.143,
- "total_deaths": 85.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 203.856,
- "new_cases_per_million": 0.353,
- "new_cases_smoothed_per_million": 0.895,
- "total_deaths_per_million": 7.504,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 2069.0,
- "total_tests": 153233.0,
- "total_tests_per_thousand": 13.529,
- "new_tests_per_thousand": 0.183,
- "new_tests_smoothed": 2426.0,
- "new_tests_smoothed_per_thousand": 0.214,
- "tests_per_case": 239.183,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-06-22",
- "total_cases": 2312.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 9.143,
- "total_deaths": 85.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 204.121,
- "new_cases_per_million": 0.265,
- "new_cases_smoothed_per_million": 0.807,
- "total_deaths_per_million": 7.504,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 2148.0,
- "total_tests": 155381.0,
- "total_tests_per_thousand": 13.718,
- "new_tests_per_thousand": 0.19,
- "new_tests_smoothed": 2364.0,
- "new_tests_smoothed_per_thousand": 0.209,
- "tests_per_case": 258.562,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-06-23",
- "total_cases": 2315.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 7.571,
- "total_deaths": 85.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 204.386,
- "new_cases_per_million": 0.265,
- "new_cases_smoothed_per_million": 0.668,
- "total_deaths_per_million": 7.504,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 2006.0,
- "total_tests": 157387.0,
- "total_tests_per_thousand": 13.895,
- "new_tests_per_thousand": 0.177,
- "new_tests_smoothed": 2319.0,
- "new_tests_smoothed_per_thousand": 0.205,
- "tests_per_case": 306.283,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-06-24",
- "total_cases": 2318.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 6.429,
- "total_deaths": 85.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 204.651,
- "new_cases_per_million": 0.265,
- "new_cases_smoothed_per_million": 0.568,
- "total_deaths_per_million": 7.504,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 2184.0,
- "total_tests": 159571.0,
- "total_tests_per_thousand": 14.088,
- "new_tests_per_thousand": 0.193,
- "new_tests_smoothed": 2263.0,
- "new_tests_smoothed_per_thousand": 0.2,
- "tests_per_case": 352.022,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-06-25",
- "total_cases": 2319.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 85.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 204.739,
- "new_cases_per_million": 0.088,
- "new_cases_smoothed_per_million": 0.492,
- "total_deaths_per_million": 7.504,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 2103.0,
- "total_tests": 161674.0,
- "total_tests_per_thousand": 14.274,
- "new_tests_per_thousand": 0.186,
- "new_tests_smoothed": 2200.0,
- "new_tests_smoothed_per_thousand": 0.194,
- "tests_per_case": 394.87199999999996,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-06-26",
- "total_cases": 2321.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 85.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 204.916,
- "new_cases_per_million": 0.177,
- "new_cases_smoothed_per_million": 0.328,
- "total_deaths_per_million": 7.504,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 2288.0,
- "total_tests": 163962.0,
- "total_tests_per_thousand": 14.476,
- "new_tests_per_thousand": 0.202,
- "new_tests_smoothed": 2164.0,
- "new_tests_smoothed_per_thousand": 0.191,
- "tests_per_case": 582.615,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-06-27",
- "total_cases": 2325.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 85.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 205.269,
- "new_cases_per_million": 0.353,
- "new_cases_smoothed_per_million": 0.252,
- "total_deaths_per_million": 7.504,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 2373.0,
- "total_tests": 166335.0,
- "total_tests_per_thousand": 14.685,
- "new_tests_per_thousand": 0.21,
- "new_tests_smoothed": 2167.0,
- "new_tests_smoothed_per_thousand": 0.191,
- "tests_per_case": 758.45,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-06-28",
- "total_cases": 2330.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 86.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 205.71,
- "new_cases_per_million": 0.441,
- "new_cases_smoothed_per_million": 0.265,
- "total_deaths_per_million": 7.593,
- "new_deaths_per_million": 0.088,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 2210.0,
- "total_tests": 168545.0,
- "total_tests_per_thousand": 14.88,
- "new_tests_per_thousand": 0.195,
- "new_tests_smoothed": 2187.0,
- "new_tests_smoothed_per_thousand": 0.193,
- "tests_per_case": 729.0,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-06-29",
- "total_cases": 2332.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 86.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 205.887,
- "new_cases_per_million": 0.177,
- "new_cases_smoothed_per_million": 0.252,
- "total_deaths_per_million": 7.593,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 2246.0,
- "total_tests": 170791.0,
- "total_tests_per_thousand": 15.079,
- "new_tests_per_thousand": 0.198,
- "new_tests_smoothed": 2201.0,
- "new_tests_smoothed_per_thousand": 0.194,
- "tests_per_case": 770.35,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-06-30",
- "total_cases": 2340.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 3.571,
- "total_deaths": 86.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 206.593,
- "new_cases_per_million": 0.706,
- "new_cases_smoothed_per_million": 0.315,
- "total_deaths_per_million": 7.593,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 2272.0,
- "total_tests": 173063.0,
- "total_tests_per_thousand": 15.279,
- "new_tests_per_thousand": 0.201,
- "new_tests_smoothed": 2239.0,
- "new_tests_smoothed_per_thousand": 0.198,
- "tests_per_case": 626.92,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-07-01",
- "total_cases": 2341.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 86.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 206.681,
- "new_cases_per_million": 0.088,
- "new_cases_smoothed_per_million": 0.29,
- "total_deaths_per_million": 7.593,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 2309.0,
- "total_tests": 175372.0,
- "total_tests_per_thousand": 15.483,
- "new_tests_per_thousand": 0.204,
- "new_tests_smoothed": 2257.0,
- "new_tests_smoothed_per_thousand": 0.199,
- "tests_per_case": 686.913,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-07-02",
- "total_cases": 2348.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 86.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 207.299,
- "new_cases_per_million": 0.618,
- "new_cases_smoothed_per_million": 0.366,
- "total_deaths_per_million": 7.593,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 2690.0,
- "total_tests": 178062.0,
- "total_tests_per_thousand": 15.721,
- "new_tests_per_thousand": 0.237,
- "new_tests_smoothed": 2341.0,
- "new_tests_smoothed_per_thousand": 0.207,
- "tests_per_case": 565.069,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-07-03",
- "total_cases": 2353.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 4.571,
- "total_deaths": 86.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 207.741,
- "new_cases_per_million": 0.441,
- "new_cases_smoothed_per_million": 0.404,
- "total_deaths_per_million": 7.593,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 2635.0,
- "total_tests": 180697.0,
- "total_tests_per_thousand": 15.953,
- "new_tests_per_thousand": 0.233,
- "new_tests_smoothed": 2391.0,
- "new_tests_smoothed_per_thousand": 0.211,
- "tests_per_case": 523.031,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-07-04",
- "total_cases": 2361.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 86.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 208.447,
- "new_cases_per_million": 0.706,
- "new_cases_smoothed_per_million": 0.454,
- "total_deaths_per_million": 7.593,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 2446.0,
- "total_tests": 183143.0,
- "total_tests_per_thousand": 16.169,
- "new_tests_per_thousand": 0.216,
- "new_tests_smoothed": 2401.0,
- "new_tests_smoothed_per_thousand": 0.212,
- "tests_per_case": 466.861,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-07-05",
- "total_cases": 2369.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 86.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 209.153,
- "new_cases_per_million": 0.706,
- "new_cases_smoothed_per_million": 0.492,
- "total_deaths_per_million": 7.593,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 3375.0,
- "total_tests": 186518.0,
- "total_tests_per_thousand": 16.467,
- "new_tests_per_thousand": 0.298,
- "new_tests_smoothed": 2568.0,
- "new_tests_smoothed_per_thousand": 0.227,
- "tests_per_case": 460.923,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-07-06",
- "total_cases": 2372.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 5.714,
- "total_deaths": 86.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 209.418,
- "new_cases_per_million": 0.265,
- "new_cases_smoothed_per_million": 0.505,
- "total_deaths_per_million": 7.593,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 3081.0,
- "total_tests": 189599.0,
- "total_tests_per_thousand": 16.739,
- "new_tests_per_thousand": 0.272,
- "new_tests_smoothed": 2687.0,
- "new_tests_smoothed_per_thousand": 0.237,
- "tests_per_case": 470.225,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-07-07",
- "total_cases": 2380.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 5.714,
- "total_deaths": 86.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 210.125,
- "new_cases_per_million": 0.706,
- "new_cases_smoothed_per_million": 0.505,
- "total_deaths_per_million": 7.593,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 2844.0,
- "total_tests": 192443.0,
- "total_tests_per_thousand": 16.99,
- "new_tests_per_thousand": 0.251,
- "new_tests_smoothed": 2769.0,
- "new_tests_smoothed_per_thousand": 0.244,
- "tests_per_case": 484.575,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-07-08",
- "total_cases": 2395.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 7.714,
- "total_deaths": 86.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 211.449,
- "new_cases_per_million": 1.324,
- "new_cases_smoothed_per_million": 0.681,
- "total_deaths_per_million": 7.593,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 3091.0,
- "total_tests": 195534.0,
- "total_tests_per_thousand": 17.263,
- "new_tests_per_thousand": 0.273,
- "new_tests_smoothed": 2880.0,
- "new_tests_smoothed_per_thousand": 0.254,
- "tests_per_case": 373.333,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-07-09",
- "total_cases": 2399.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 7.286,
- "total_deaths": 86.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 211.802,
- "new_cases_per_million": 0.353,
- "new_cases_smoothed_per_million": 0.643,
- "total_deaths_per_million": 7.593,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 3141.0,
- "total_tests": 198675.0,
- "total_tests_per_thousand": 17.541,
- "new_tests_per_thousand": 0.277,
- "new_tests_smoothed": 2945.0,
- "new_tests_smoothed_per_thousand": 0.26,
- "tests_per_case": 404.216,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-07-10",
- "total_cases": 2403.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 7.143,
- "total_deaths": 86.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 212.155,
- "new_cases_per_million": 0.353,
- "new_cases_smoothed_per_million": 0.631,
- "total_deaths_per_million": 7.593,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 3339.0,
- "total_tests": 202014.0,
- "total_tests_per_thousand": 17.835,
- "new_tests_per_thousand": 0.295,
- "new_tests_smoothed": 3045.0,
- "new_tests_smoothed_per_thousand": 0.269,
- "tests_per_case": 426.3,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-07-11",
- "total_cases": 2413.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 7.429,
- "total_deaths": 86.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 213.038,
- "new_cases_per_million": 0.883,
- "new_cases_smoothed_per_million": 0.656,
- "total_deaths_per_million": 7.593,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 3106.0,
- "total_tests": 205120.0,
- "total_tests_per_thousand": 18.11,
- "new_tests_per_thousand": 0.274,
- "new_tests_smoothed": 3140.0,
- "new_tests_smoothed_per_thousand": 0.277,
- "tests_per_case": 422.69199999999995,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-07-12",
- "total_cases": 2420.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 7.286,
- "total_deaths": 87.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 213.656,
- "new_cases_per_million": 0.618,
- "new_cases_smoothed_per_million": 0.643,
- "total_deaths_per_million": 7.681,
- "new_deaths_per_million": 0.088,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 2978.0,
- "total_tests": 208098.0,
- "total_tests_per_thousand": 18.372,
- "new_tests_per_thousand": 0.263,
- "new_tests_smoothed": 3083.0,
- "new_tests_smoothed_per_thousand": 0.272,
- "tests_per_case": 423.157,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-07-13",
- "total_cases": 2426.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 7.714,
- "total_deaths": 87.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 214.186,
- "new_cases_per_million": 0.53,
- "new_cases_smoothed_per_million": 0.681,
- "total_deaths_per_million": 7.681,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 3329.0,
- "total_tests": 211427.0,
- "total_tests_per_thousand": 18.666,
- "new_tests_per_thousand": 0.294,
- "new_tests_smoothed": 3118.0,
- "new_tests_smoothed_per_thousand": 0.275,
- "tests_per_case": 404.185,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-07-14",
- "total_cases": 2428.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 6.857,
- "total_deaths": 87.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 214.362,
- "new_cases_per_million": 0.177,
- "new_cases_smoothed_per_million": 0.605,
- "total_deaths_per_million": 7.681,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 3372.0,
- "total_tests": 214799.0,
- "total_tests_per_thousand": 18.964,
- "new_tests_per_thousand": 0.298,
- "new_tests_smoothed": 3194.0,
- "new_tests_smoothed_per_thousand": 0.282,
- "tests_per_case": 465.792,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-07-15",
- "total_cases": 2432.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 5.286,
- "total_deaths": 87.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 214.715,
- "new_cases_per_million": 0.353,
- "new_cases_smoothed_per_million": 0.467,
- "total_deaths_per_million": 7.681,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 2761.0,
- "total_tests": 217560.0,
- "total_tests_per_thousand": 19.208,
- "new_tests_per_thousand": 0.244,
- "new_tests_smoothed": 3147.0,
- "new_tests_smoothed_per_thousand": 0.278,
- "tests_per_case": 595.378,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-07-16",
- "total_cases": 2438.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 87.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 215.245,
- "new_cases_per_million": 0.53,
- "new_cases_smoothed_per_million": 0.492,
- "total_deaths_per_million": 7.681,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 3179.0,
- "total_tests": 220739.0,
- "total_tests_per_thousand": 19.489,
- "new_tests_per_thousand": 0.281,
- "new_tests_smoothed": 3152.0,
- "new_tests_smoothed_per_thousand": 0.278,
- "tests_per_case": 565.744,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-07-17",
- "total_cases": 2440.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 5.286,
- "total_deaths": 87.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 215.422,
- "new_cases_per_million": 0.177,
- "new_cases_smoothed_per_million": 0.467,
- "total_deaths_per_million": 7.681,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 2959.0,
- "total_tests": 223698.0,
- "total_tests_per_thousand": 19.75,
- "new_tests_per_thousand": 0.261,
- "new_tests_smoothed": 3098.0,
- "new_tests_smoothed_per_thousand": 0.274,
- "tests_per_case": 586.1080000000001,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-07-18",
- "total_cases": 2444.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 4.429,
- "total_deaths": 87.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 215.775,
- "new_cases_per_million": 0.353,
- "new_cases_smoothed_per_million": 0.391,
- "total_deaths_per_million": 7.681,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 2745.0,
- "total_tests": 226443.0,
- "total_tests_per_thousand": 19.992,
- "new_tests_per_thousand": 0.242,
- "new_tests_smoothed": 3046.0,
- "new_tests_smoothed_per_thousand": 0.269,
- "tests_per_case": 687.806,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-07-19",
- "total_cases": 2445.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 3.571,
- "total_deaths": 87.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 215.863,
- "new_cases_per_million": 0.088,
- "new_cases_smoothed_per_million": 0.315,
- "total_deaths_per_million": 7.681,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 2914.0,
- "total_tests": 229357.0,
- "total_tests_per_thousand": 20.249,
- "new_tests_per_thousand": 0.257,
- "new_tests_smoothed": 3037.0,
- "new_tests_smoothed_per_thousand": 0.268,
- "tests_per_case": 850.36,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-07-20",
- "total_cases": 2446.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 87.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 215.952,
- "new_cases_per_million": 0.088,
- "new_cases_smoothed_per_million": 0.252,
- "total_deaths_per_million": 7.681,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 2746.0,
- "total_tests": 232103.0,
- "total_tests_per_thousand": 20.492,
- "new_tests_per_thousand": 0.242,
- "new_tests_smoothed": 2954.0,
- "new_tests_smoothed_per_thousand": 0.261,
- "tests_per_case": 1033.9,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-07-21",
- "total_cases": 2446.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 87.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 215.952,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.227,
- "total_deaths_per_million": 7.681,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 2714.0,
- "total_tests": 234817.0,
- "total_tests_per_thousand": 20.731,
- "new_tests_per_thousand": 0.24,
- "new_tests_smoothed": 2860.0,
- "new_tests_smoothed_per_thousand": 0.253,
- "tests_per_case": 1112.222,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-07-22",
- "total_cases": 2449.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 87.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 216.216,
- "new_cases_per_million": 0.265,
- "new_cases_smoothed_per_million": 0.214,
- "total_deaths_per_million": 7.681,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 3002.0,
- "total_tests": 237819.0,
- "total_tests_per_thousand": 20.996,
- "new_tests_per_thousand": 0.265,
- "new_tests_smoothed": 2894.0,
- "new_tests_smoothed_per_thousand": 0.256,
- "tests_per_case": 1191.647,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-07-23",
- "total_cases": 2462.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 3.429,
- "total_deaths": 87.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 217.364,
- "new_cases_per_million": 1.148,
- "new_cases_smoothed_per_million": 0.303,
- "total_deaths_per_million": 7.681,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 3075.0,
- "total_tests": 240894.0,
- "total_tests_per_thousand": 21.268,
- "new_tests_per_thousand": 0.271,
- "new_tests_smoothed": 2879.0,
- "new_tests_smoothed_per_thousand": 0.254,
- "tests_per_case": 839.7080000000001,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-07-24",
- "total_cases": 2466.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 87.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 217.717,
- "new_cases_per_million": 0.353,
- "new_cases_smoothed_per_million": 0.328,
- "total_deaths_per_million": 7.681,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 3126.0,
- "total_tests": 244020.0,
- "total_tests_per_thousand": 21.544,
- "new_tests_per_thousand": 0.276,
- "new_tests_smoothed": 2903.0,
- "new_tests_smoothed_per_thousand": 0.256,
- "tests_per_case": 781.577,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-07-25",
- "total_cases": 2469.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 3.571,
- "total_deaths": 87.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 217.982,
- "new_cases_per_million": 0.265,
- "new_cases_smoothed_per_million": 0.315,
- "total_deaths_per_million": 7.681,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 3183.0,
- "total_tests": 247203.0,
- "total_tests_per_thousand": 21.825,
- "new_tests_per_thousand": 0.281,
- "new_tests_smoothed": 2966.0,
- "new_tests_smoothed_per_thousand": 0.262,
- "tests_per_case": 830.48,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-07-26",
- "total_cases": 2478.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 4.714,
- "total_deaths": 87.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 218.777,
- "new_cases_per_million": 0.795,
- "new_cases_smoothed_per_million": 0.416,
- "total_deaths_per_million": 7.681,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 3212.0,
- "total_tests": 250415.0,
- "total_tests_per_thousand": 22.109,
- "new_tests_per_thousand": 0.284,
- "new_tests_smoothed": 3008.0,
- "new_tests_smoothed_per_thousand": 0.266,
- "tests_per_case": 638.061,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-07-27",
- "total_cases": 2495.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 7.0,
- "total_deaths": 87.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 220.278,
- "new_cases_per_million": 1.501,
- "new_cases_smoothed_per_million": 0.618,
- "total_deaths_per_million": 7.681,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 3346.0,
- "total_tests": 253761.0,
- "total_tests_per_thousand": 22.404,
- "new_tests_per_thousand": 0.295,
- "new_tests_smoothed": 3094.0,
- "new_tests_smoothed_per_thousand": 0.273,
- "tests_per_case": 442.0,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-07-28",
- "total_cases": 2532.0,
- "new_cases": 37.0,
- "new_cases_smoothed": 12.286,
- "total_deaths": 87.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 223.544,
- "new_cases_per_million": 3.267,
- "new_cases_smoothed_per_million": 1.085,
- "total_deaths_per_million": 7.681,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 3235.0,
- "total_tests": 256996.0,
- "total_tests_per_thousand": 22.69,
- "new_tests_per_thousand": 0.286,
- "new_tests_smoothed": 3168.0,
- "new_tests_smoothed_per_thousand": 0.28,
- "tests_per_case": 257.86,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-07-29",
- "total_cases": 2555.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 15.143,
- "total_deaths": 87.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 225.575,
- "new_cases_per_million": 2.031,
- "new_cases_smoothed_per_million": 1.337,
- "total_deaths_per_million": 7.681,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 3455.0,
- "total_tests": 260451.0,
- "total_tests_per_thousand": 22.995,
- "new_tests_per_thousand": 0.305,
- "new_tests_smoothed": 3233.0,
- "new_tests_smoothed_per_thousand": 0.285,
- "tests_per_case": 213.5,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-07-30",
- "total_cases": 2588.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 18.0,
- "total_deaths": 87.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 228.488,
- "new_cases_per_million": 2.913,
- "new_cases_smoothed_per_million": 1.589,
- "total_deaths_per_million": 7.681,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 3696.0,
- "total_tests": 264147.0,
- "total_tests_per_thousand": 23.321,
- "new_tests_per_thousand": 0.326,
- "new_tests_smoothed": 3322.0,
- "new_tests_smoothed_per_thousand": 0.293,
- "tests_per_case": 184.55599999999998,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-07-31",
- "total_cases": 2597.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 18.714,
- "total_deaths": 87.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 229.283,
- "new_cases_per_million": 0.795,
- "new_cases_smoothed_per_million": 1.652,
- "total_deaths_per_million": 7.681,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 3502.0,
- "total_tests": 267649.0,
- "total_tests_per_thousand": 23.63,
- "new_tests_per_thousand": 0.309,
- "new_tests_smoothed": 3376.0,
- "new_tests_smoothed_per_thousand": 0.298,
- "tests_per_case": 180.39700000000002,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-08-01",
- "total_cases": 2608.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 19.857,
- "total_deaths": 87.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 230.254,
- "new_cases_per_million": 0.971,
- "new_cases_smoothed_per_million": 1.753,
- "total_deaths_per_million": 7.681,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 3340.0,
- "total_tests": 270989.0,
- "total_tests_per_thousand": 23.925,
- "new_tests_per_thousand": 0.295,
- "new_tests_smoothed": 3398.0,
- "new_tests_smoothed_per_thousand": 0.3,
- "tests_per_case": 171.122,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-08-02",
- "total_cases": 2633.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 22.143,
- "total_deaths": 87.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 232.461,
- "new_cases_per_million": 2.207,
- "new_cases_smoothed_per_million": 1.955,
- "total_deaths_per_million": 7.681,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 3485.0,
- "total_tests": 274474.0,
- "total_tests_per_thousand": 24.233,
- "new_tests_per_thousand": 0.308,
- "new_tests_smoothed": 3437.0,
- "new_tests_smoothed_per_thousand": 0.303,
- "tests_per_case": 155.219,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-08-03",
- "total_cases": 2646.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 21.571,
- "total_deaths": 87.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 233.609,
- "new_cases_per_million": 1.148,
- "new_cases_smoothed_per_million": 1.904,
- "total_deaths_per_million": 7.681,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 3389.0,
- "total_tests": 277863.0,
- "total_tests_per_thousand": 24.532,
- "new_tests_per_thousand": 0.299,
- "new_tests_smoothed": 3443.0,
- "new_tests_smoothed_per_thousand": 0.304,
- "tests_per_case": 159.609,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-08-04",
- "total_cases": 2670.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 19.714,
- "total_deaths": 87.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 235.728,
- "new_cases_per_million": 2.119,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 7.681,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 3732.0,
- "total_tests": 281595.0,
- "total_tests_per_thousand": 24.861,
- "new_tests_per_thousand": 0.329,
- "new_tests_smoothed": 3514.0,
- "new_tests_smoothed_per_thousand": 0.31,
- "tests_per_case": 178.24599999999998,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-08-05",
- "total_cases": 2701.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 20.857,
- "total_deaths": 88.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 238.465,
- "new_cases_per_million": 2.737,
- "new_cases_smoothed_per_million": 1.841,
- "total_deaths_per_million": 7.769,
- "new_deaths_per_million": 0.088,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 3876.0,
- "total_tests": 285471.0,
- "total_tests_per_thousand": 25.204,
- "new_tests_per_thousand": 0.342,
- "new_tests_smoothed": 3574.0,
- "new_tests_smoothed_per_thousand": 0.316,
- "tests_per_case": 171.356,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-08-06",
- "total_cases": 2726.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 19.714,
- "total_deaths": 88.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 240.672,
- "new_cases_per_million": 2.207,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 7.769,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 3941.0,
- "total_tests": 289412.0,
- "total_tests_per_thousand": 25.551,
- "new_tests_per_thousand": 0.348,
- "new_tests_smoothed": 3609.0,
- "new_tests_smoothed_per_thousand": 0.319,
- "tests_per_case": 183.065,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-08-07",
- "total_cases": 2775.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 25.429,
- "total_deaths": 88.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 244.998,
- "new_cases_per_million": 4.326,
- "new_cases_smoothed_per_million": 2.245,
- "total_deaths_per_million": 7.769,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 3657.0,
- "total_tests": 293069.0,
- "total_tests_per_thousand": 25.874,
- "new_tests_per_thousand": 0.323,
- "new_tests_smoothed": 3631.0,
- "new_tests_smoothed_per_thousand": 0.321,
- "tests_per_case": 142.792,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-08-08",
- "total_cases": 2829.0,
- "new_cases": 54.0,
- "new_cases_smoothed": 31.571,
- "total_deaths": 88.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 249.766,
- "new_cases_per_million": 4.768,
- "new_cases_smoothed_per_million": 2.787,
- "total_deaths_per_million": 7.769,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 4262.0,
- "total_tests": 297331.0,
- "total_tests_per_thousand": 26.251,
- "new_tests_per_thousand": 0.376,
- "new_tests_smoothed": 3763.0,
- "new_tests_smoothed_per_thousand": 0.332,
- "tests_per_case": 119.19,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 66.67
- },
- {
- "date": "2020-08-09",
- "total_cases": 2888.0,
- "new_cases": 59.0,
- "new_cases_smoothed": 36.429,
- "total_deaths": 88.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 254.975,
- "new_cases_per_million": 5.209,
- "new_cases_smoothed_per_million": 3.216,
- "total_deaths_per_million": 7.769,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 4267.0,
- "total_tests": 301598.0,
- "total_tests_per_thousand": 26.627,
- "new_tests_per_thousand": 0.377,
- "new_tests_smoothed": 3875.0,
- "new_tests_smoothed_per_thousand": 0.342,
- "tests_per_case": 106.37299999999999,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 75.0
- },
- {
- "date": "2020-08-10",
- "total_cases": 2953.0,
- "new_cases": 65.0,
- "new_cases_smoothed": 43.857,
- "total_deaths": 88.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 260.713,
- "new_cases_per_million": 5.739,
- "new_cases_smoothed_per_million": 3.872,
- "total_deaths_per_million": 7.769,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 4054.0,
- "total_tests": 305652.0,
- "total_tests_per_thousand": 26.985,
- "new_tests_per_thousand": 0.358,
- "new_tests_smoothed": 3970.0,
- "new_tests_smoothed_per_thousand": 0.351,
- "tests_per_case": 90.521,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 75.0
- },
- {
- "date": "2020-08-11",
- "total_cases": 3046.0,
- "new_cases": 93.0,
- "new_cases_smoothed": 53.714,
- "total_deaths": 88.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 268.924,
- "new_cases_per_million": 8.211,
- "new_cases_smoothed_per_million": 4.742,
- "total_deaths_per_million": 7.769,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 4256.0,
- "total_tests": 309908.0,
- "total_tests_per_thousand": 27.361,
- "new_tests_per_thousand": 0.376,
- "new_tests_smoothed": 4045.0,
- "new_tests_smoothed_per_thousand": 0.357,
- "tests_per_case": 75.306,
- "positive_rate": 0.013000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 82.41
- },
- {
- "date": "2020-08-12",
- "total_cases": 3093.0,
- "new_cases": 47.0,
- "new_cases_smoothed": 56.0,
- "total_deaths": 88.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 273.074,
- "new_cases_per_million": 4.15,
- "new_cases_smoothed_per_million": 4.944,
- "total_deaths_per_million": 7.769,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 4591.0,
- "total_tests": 314499.0,
- "total_tests_per_thousand": 27.766,
- "new_tests_per_thousand": 0.405,
- "new_tests_smoothed": 4147.0,
- "new_tests_smoothed_per_thousand": 0.366,
- "tests_per_case": 74.054,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 82.41
- },
- {
- "date": "2020-08-13",
- "total_cases": 3128.0,
- "new_cases": 35.0,
- "new_cases_smoothed": 57.429,
- "total_deaths": 88.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 276.164,
- "new_cases_per_million": 3.09,
- "new_cases_smoothed_per_million": 5.07,
- "total_deaths_per_million": 7.769,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 4941.0,
- "total_tests": 319440.0,
- "total_tests_per_thousand": 28.203,
- "new_tests_per_thousand": 0.436,
- "new_tests_smoothed": 4290.0,
- "new_tests_smoothed_per_thousand": 0.379,
- "tests_per_case": 74.70100000000001,
- "positive_rate": 0.013000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 82.41
- },
- {
- "date": "2020-08-14",
- "total_cases": 3174.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 57.0,
- "total_deaths": 88.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 280.225,
- "new_cases_per_million": 4.061,
- "new_cases_smoothed_per_million": 5.032,
- "total_deaths_per_million": 7.769,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 4603.0,
- "total_tests": 324043.0,
- "total_tests_per_thousand": 28.609,
- "new_tests_per_thousand": 0.406,
- "new_tests_smoothed": 4425.0,
- "new_tests_smoothed_per_thousand": 0.391,
- "tests_per_case": 77.632,
- "positive_rate": 0.013000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 82.41
- },
- {
- "date": "2020-08-15",
- "total_cases": 3229.0,
- "new_cases": 55.0,
- "new_cases_smoothed": 57.143,
- "total_deaths": 88.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 285.081,
- "new_cases_per_million": 4.856,
- "new_cases_smoothed_per_million": 5.045,
- "total_deaths_per_million": 7.769,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 3646.0,
- "total_tests": 327689.0,
- "total_tests_per_thousand": 28.931,
- "new_tests_per_thousand": 0.322,
- "new_tests_smoothed": 4337.0,
- "new_tests_smoothed_per_thousand": 0.383,
- "tests_per_case": 75.89699999999999,
- "positive_rate": 0.013000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 82.41
- },
- {
- "date": "2020-08-16",
- "total_cases": 3292.0,
- "new_cases": 63.0,
- "new_cases_smoothed": 57.714,
- "total_deaths": 88.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 290.643,
- "new_cases_per_million": 5.562,
- "new_cases_smoothed_per_million": 5.095,
- "total_deaths_per_million": 7.769,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 4350.0,
- "total_tests": 332039.0,
- "total_tests_per_thousand": 29.315,
- "new_tests_per_thousand": 0.384,
- "new_tests_smoothed": 4349.0,
- "new_tests_smoothed_per_thousand": 0.384,
- "tests_per_case": 75.354,
- "positive_rate": 0.013000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 82.41
- },
- {
- "date": "2020-08-17",
- "total_cases": 3316.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 51.857,
- "total_deaths": 88.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 292.762,
- "new_cases_per_million": 2.119,
- "new_cases_smoothed_per_million": 4.578,
- "total_deaths_per_million": 7.769,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 4294.0,
- "total_tests": 336333.0,
- "total_tests_per_thousand": 29.694,
- "new_tests_per_thousand": 0.379,
- "new_tests_smoothed": 4383.0,
- "new_tests_smoothed_per_thousand": 0.387,
- "tests_per_case": 84.521,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 82.41
- },
- {
- "date": "2020-08-18",
- "total_cases": 3364.0,
- "new_cases": 48.0,
- "new_cases_smoothed": 45.429,
- "total_deaths": 88.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 297.0,
- "new_cases_per_million": 4.238,
- "new_cases_smoothed_per_million": 4.011,
- "total_deaths_per_million": 7.769,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 4990.0,
- "total_tests": 341323.0,
- "total_tests_per_thousand": 30.135,
- "new_tests_per_thousand": 0.441,
- "new_tests_smoothed": 4488.0,
- "new_tests_smoothed_per_thousand": 0.396,
- "tests_per_case": 98.792,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 82.41
- },
- {
- "date": "2020-08-19",
- "total_cases": 3408.0,
- "new_cases": 44.0,
- "new_cases_smoothed": 45.0,
- "total_deaths": 88.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 300.884,
- "new_cases_per_million": 3.885,
- "new_cases_smoothed_per_million": 3.973,
- "total_deaths_per_million": 7.769,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 5116.0,
- "total_tests": 346439.0,
- "total_tests_per_thousand": 30.586,
- "new_tests_per_thousand": 0.452,
- "new_tests_smoothed": 4563.0,
- "new_tests_smoothed_per_thousand": 0.403,
- "tests_per_case": 101.4,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 82.41
- },
- {
- "date": "2020-08-20",
- "total_cases": 3482.0,
- "new_cases": 74.0,
- "new_cases_smoothed": 50.571,
- "total_deaths": 88.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 307.418,
- "new_cases_per_million": 6.533,
- "new_cases_smoothed_per_million": 4.465,
- "total_deaths_per_million": 7.769,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 5224.0,
- "total_tests": 351663.0,
- "total_tests_per_thousand": 31.047,
- "new_tests_per_thousand": 0.461,
- "new_tests_smoothed": 4603.0,
- "new_tests_smoothed_per_thousand": 0.406,
- "tests_per_case": 91.02,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 82.41
- },
- {
- "date": "2020-08-21",
- "total_cases": 3565.0,
- "new_cases": 83.0,
- "new_cases_smoothed": 55.857,
- "total_deaths": 88.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 314.745,
- "new_cases_per_million": 7.328,
- "new_cases_smoothed_per_million": 4.931,
- "total_deaths_per_million": 7.769,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 4562.0,
- "total_tests": 356225.0,
- "total_tests_per_thousand": 31.45,
- "new_tests_per_thousand": 0.403,
- "new_tests_smoothed": 4597.0,
- "new_tests_smoothed_per_thousand": 0.406,
- "tests_per_case": 82.29899999999999,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 82.41
- },
- {
- "date": "2020-08-22",
- "total_cases": 3582.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 50.429,
- "total_deaths": 89.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 316.246,
- "new_cases_per_million": 1.501,
- "new_cases_smoothed_per_million": 4.452,
- "total_deaths_per_million": 7.858,
- "new_deaths_per_million": 0.088,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 4867.0,
- "total_tests": 361092.0,
- "total_tests_per_thousand": 31.88,
- "new_tests_per_thousand": 0.43,
- "new_tests_smoothed": 4772.0,
- "new_tests_smoothed_per_thousand": 0.421,
- "tests_per_case": 94.62899999999999,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 82.41
- },
- {
- "date": "2020-08-23",
- "total_cases": 3617.0,
- "new_cases": 35.0,
- "new_cases_smoothed": 46.429,
- "total_deaths": 89.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 319.336,
- "new_cases_per_million": 3.09,
- "new_cases_smoothed_per_million": 4.099,
- "total_deaths_per_million": 7.858,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 4261.0,
- "total_tests": 365353.0,
- "total_tests_per_thousand": 32.256,
- "new_tests_per_thousand": 0.376,
- "new_tests_smoothed": 4759.0,
- "new_tests_smoothed_per_thousand": 0.42,
- "tests_per_case": 102.50200000000001,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 82.41
- },
- {
- "date": "2020-08-24",
- "total_cases": 3682.0,
- "new_cases": 65.0,
- "new_cases_smoothed": 52.286,
- "total_deaths": 91.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 325.075,
- "new_cases_per_million": 5.739,
- "new_cases_smoothed_per_million": 4.616,
- "total_deaths_per_million": 8.034,
- "new_deaths_per_million": 0.177,
- "new_deaths_smoothed_per_million": 0.038,
- "new_tests": 4536.0,
- "total_tests": 369889.0,
- "total_tests_per_thousand": 32.657,
- "new_tests_per_thousand": 0.4,
- "new_tests_smoothed": 4794.0,
- "new_tests_smoothed_per_thousand": 0.423,
- "tests_per_case": 91.689,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 82.41
- },
- {
- "date": "2020-08-25",
- "total_cases": 3717.0,
- "new_cases": 35.0,
- "new_cases_smoothed": 50.429,
- "total_deaths": 91.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 328.165,
- "new_cases_per_million": 3.09,
- "new_cases_smoothed_per_million": 4.452,
- "total_deaths_per_million": 8.034,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.038,
- "new_tests": 3056.0,
- "total_tests": 372945.0,
- "total_tests_per_thousand": 32.926,
- "new_tests_per_thousand": 0.27,
- "new_tests_smoothed": 4517.0,
- "new_tests_smoothed_per_thousand": 0.399,
- "tests_per_case": 89.572,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 82.41
- },
- {
- "date": "2020-08-26",
- "total_cases": 3744.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 48.0,
- "total_deaths": 91.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 330.549,
- "new_cases_per_million": 2.384,
- "new_cases_smoothed_per_million": 4.238,
- "total_deaths_per_million": 8.034,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.038,
- "new_tests": 4549.0,
- "total_tests": 377494.0,
- "total_tests_per_thousand": 33.328,
- "new_tests_per_thousand": 0.402,
- "new_tests_smoothed": 4436.0,
- "new_tests_smoothed_per_thousand": 0.392,
- "tests_per_case": 92.417,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 82.41
- },
- {
- "date": "2020-08-27",
- "total_cases": 3759.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 39.571,
- "total_deaths": 92.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 331.873,
- "new_cases_per_million": 1.324,
- "new_cases_smoothed_per_million": 3.494,
- "total_deaths_per_million": 8.122,
- "new_deaths_per_million": 0.088,
- "new_deaths_smoothed_per_million": 0.05,
- "new_tests": 5002.0,
- "total_tests": 382496.0,
- "total_tests_per_thousand": 33.77,
- "new_tests_per_thousand": 0.442,
- "new_tests_smoothed": 4405.0,
- "new_tests_smoothed_per_thousand": 0.389,
- "tests_per_case": 111.318,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 82.41
- },
- {
- "date": "2020-08-28",
- "total_cases": 3806.0,
- "new_cases": 47.0,
- "new_cases_smoothed": 34.429,
- "total_deaths": 92.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 336.023,
- "new_cases_per_million": 4.15,
- "new_cases_smoothed_per_million": 3.04,
- "total_deaths_per_million": 8.122,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "new_tests": 5698.0,
- "total_tests": 388194.0,
- "total_tests_per_thousand": 34.273,
- "new_tests_per_thousand": 0.503,
- "new_tests_smoothed": 4567.0,
- "new_tests_smoothed_per_thousand": 0.403,
- "tests_per_case": 132.651,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 82.41
- },
- {
- "date": "2020-08-29",
- "total_cases": 3866.0,
- "new_cases": 60.0,
- "new_cases_smoothed": 40.571,
- "total_deaths": 92.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 341.32,
- "new_cases_per_million": 5.297,
- "new_cases_smoothed_per_million": 3.582,
- "total_deaths_per_million": 8.122,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.038,
- "new_tests": 4591.0,
- "total_tests": 392785.0,
- "total_tests_per_thousand": 34.678,
- "new_tests_per_thousand": 0.405,
- "new_tests_smoothed": 4528.0,
- "new_tests_smoothed_per_thousand": 0.4,
- "tests_per_case": 111.60600000000001,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 82.41
- },
- {
- "date": "2020-08-30",
- "total_cases": 3925.0,
- "new_cases": 59.0,
- "new_cases_smoothed": 44.0,
- "total_deaths": 94.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 346.529,
- "new_cases_per_million": 5.209,
- "new_cases_smoothed_per_million": 3.885,
- "total_deaths_per_million": 8.299,
- "new_deaths_per_million": 0.177,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests": 5438.0,
- "total_tests": 398223.0,
- "total_tests_per_thousand": 35.158,
- "new_tests_per_thousand": 0.48,
- "new_tests_smoothed": 4696.0,
- "new_tests_smoothed_per_thousand": 0.415,
- "tests_per_case": 106.727,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 82.41
- },
- {
- "date": "2020-08-31",
- "total_cases": 3973.0,
- "new_cases": 48.0,
- "new_cases_smoothed": 41.571,
- "total_deaths": 94.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 350.767,
- "new_cases_per_million": 4.238,
- "new_cases_smoothed_per_million": 3.67,
- "total_deaths_per_million": 8.299,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.038,
- "new_tests": 4958.0,
- "total_tests": 403181.0,
- "total_tests_per_thousand": 35.596,
- "new_tests_per_thousand": 0.438,
- "new_tests_smoothed": 4756.0,
- "new_tests_smoothed_per_thousand": 0.42,
- "tests_per_case": 114.405,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 82.41
- },
- {
- "date": "2020-09-01",
- "total_cases": 4032.0,
- "new_cases": 59.0,
- "new_cases_smoothed": 45.0,
- "total_deaths": 94.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 355.976,
- "new_cases_per_million": 5.209,
- "new_cases_smoothed_per_million": 3.973,
- "total_deaths_per_million": 8.299,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.038,
- "new_tests": 5546.0,
- "total_tests": 408727.0,
- "total_tests_per_thousand": 36.086,
- "new_tests_per_thousand": 0.49,
- "new_tests_smoothed": 5112.0,
- "new_tests_smoothed_per_thousand": 0.451,
- "tests_per_case": 113.6,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-09-02",
- "total_cases": 4065.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 45.857,
- "total_deaths": 95.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 358.889,
- "new_cases_per_million": 2.913,
- "new_cases_smoothed_per_million": 4.049,
- "total_deaths_per_million": 8.387,
- "new_deaths_per_million": 0.088,
- "new_deaths_smoothed_per_million": 0.05,
- "new_tests": 5691.0,
- "total_tests": 414418.0,
- "total_tests_per_thousand": 36.588,
- "new_tests_per_thousand": 0.502,
- "new_tests_smoothed": 5275.0,
- "new_tests_smoothed_per_thousand": 0.466,
- "tests_per_case": 115.031,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-09-03",
- "total_cases": 4126.0,
- "new_cases": 61.0,
- "new_cases_smoothed": 52.429,
- "total_deaths": 98.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 364.275,
- "new_cases_per_million": 5.386,
- "new_cases_smoothed_per_million": 4.629,
- "total_deaths_per_million": 8.652,
- "new_deaths_per_million": 0.265,
- "new_deaths_smoothed_per_million": 0.076,
- "new_tests": 5855.0,
- "total_tests": 420273.0,
- "total_tests_per_thousand": 37.105,
- "new_tests_per_thousand": 0.517,
- "new_tests_smoothed": 5397.0,
- "new_tests_smoothed_per_thousand": 0.476,
- "tests_per_case": 102.94,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-09-04",
- "total_cases": 4214.0,
- "new_cases": 88.0,
- "new_cases_smoothed": 58.286,
- "total_deaths": 100.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 372.044,
- "new_cases_per_million": 7.769,
- "new_cases_smoothed_per_million": 5.146,
- "total_deaths_per_million": 8.829,
- "new_deaths_per_million": 0.177,
- "new_deaths_smoothed_per_million": 0.101,
- "new_tests": 6007.0,
- "total_tests": 426280.0,
- "total_tests_per_thousand": 37.635,
- "new_tests_per_thousand": 0.53,
- "new_tests_smoothed": 5441.0,
- "new_tests_smoothed_per_thousand": 0.48,
- "tests_per_case": 93.35,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-09-05",
- "total_cases": 4266.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 57.143,
- "total_deaths": 100.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 376.635,
- "new_cases_per_million": 4.591,
- "new_cases_smoothed_per_million": 5.045,
- "total_deaths_per_million": 8.829,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.101,
- "new_tests": 5760.0,
- "total_tests": 432040.0,
- "total_tests_per_thousand": 38.144,
- "new_tests_per_thousand": 0.509,
- "new_tests_smoothed": 5608.0,
- "new_tests_smoothed_per_thousand": 0.495,
- "tests_per_case": 98.14,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-09-06",
- "total_cases": 4298.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 53.286,
- "total_deaths": 100.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 379.46,
- "new_cases_per_million": 2.825,
- "new_cases_smoothed_per_million": 4.704,
- "total_deaths_per_million": 8.829,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.076,
- "new_tests": 7164.0,
- "total_tests": 439204.0,
- "total_tests_per_thousand": 38.776,
- "new_tests_per_thousand": 0.632,
- "new_tests_smoothed": 5854.0,
- "new_tests_smoothed_per_thousand": 0.517,
- "tests_per_case": 109.861,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-09-07",
- "total_cases": 4309.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 48.0,
- "total_deaths": 101.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 380.431,
- "new_cases_per_million": 0.971,
- "new_cases_smoothed_per_million": 4.238,
- "total_deaths_per_million": 8.917,
- "new_deaths_per_million": 0.088,
- "new_deaths_smoothed_per_million": 0.088,
- "new_tests": 7572.0,
- "total_tests": 446776.0,
- "total_tests_per_thousand": 39.445,
- "new_tests_per_thousand": 0.669,
- "new_tests_smoothed": 6228.0,
- "new_tests_smoothed_per_thousand": 0.55,
- "tests_per_case": 129.75,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-09-08",
- "total_cases": 4352.0,
- "new_cases": 43.0,
- "new_cases_smoothed": 45.714,
- "total_deaths": 102.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 384.228,
- "new_cases_per_million": 3.796,
- "new_cases_smoothed_per_million": 4.036,
- "total_deaths_per_million": 9.005,
- "new_deaths_per_million": 0.088,
- "new_deaths_smoothed_per_million": 0.101,
- "new_tests": 7948.0,
- "total_tests": 454724.0,
- "total_tests_per_thousand": 40.147,
- "new_tests_per_thousand": 0.702,
- "new_tests_smoothed": 6571.0,
- "new_tests_smoothed_per_thousand": 0.58,
- "tests_per_case": 143.741,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-09-09",
- "total_cases": 4377.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 44.571,
- "total_deaths": 104.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 386.435,
- "new_cases_per_million": 2.207,
- "new_cases_smoothed_per_million": 3.935,
- "total_deaths_per_million": 9.182,
- "new_deaths_per_million": 0.177,
- "new_deaths_smoothed_per_million": 0.114,
- "new_tests": 7569.0,
- "total_tests": 462293.0,
- "total_tests_per_thousand": 40.815,
- "new_tests_per_thousand": 0.668,
- "new_tests_smoothed": 6839.0,
- "new_tests_smoothed_per_thousand": 0.604,
- "tests_per_case": 153.439,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-09-10",
- "total_cases": 4459.0,
- "new_cases": 82.0,
- "new_cases_smoothed": 47.571,
- "total_deaths": 104.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 393.675,
- "new_cases_per_million": 7.24,
- "new_cases_smoothed_per_million": 4.2,
- "total_deaths_per_million": 9.182,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.076,
- "new_tests": 7138.0,
- "total_tests": 469431.0,
- "total_tests_per_thousand": 41.445,
- "new_tests_per_thousand": 0.63,
- "new_tests_smoothed": 7023.0,
- "new_tests_smoothed_per_thousand": 0.62,
- "tests_per_case": 147.631,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-09-11",
- "total_cases": 4551.0,
- "new_cases": 92.0,
- "new_cases_smoothed": 48.143,
- "total_deaths": 106.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 401.797,
- "new_cases_per_million": 8.122,
- "new_cases_smoothed_per_million": 4.25,
- "total_deaths_per_million": 9.358,
- "new_deaths_per_million": 0.177,
- "new_deaths_smoothed_per_million": 0.076,
- "new_tests": 8128.0,
- "total_tests": 477559.0,
- "total_tests_per_thousand": 42.163,
- "new_tests_per_thousand": 0.718,
- "new_tests_smoothed": 7326.0,
- "new_tests_smoothed_per_thousand": 0.647,
- "tests_per_case": 152.172,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-09-12",
- "total_cases": 4593.0,
- "new_cases": 42.0,
- "new_cases_smoothed": 46.714,
- "total_deaths": 106.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 405.505,
- "new_cases_per_million": 3.708,
- "new_cases_smoothed_per_million": 4.124,
- "total_deaths_per_million": 9.358,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.076,
- "new_tests": 7588.0,
- "total_tests": 485147.0,
- "total_tests_per_thousand": 42.832,
- "new_tests_per_thousand": 0.67,
- "new_tests_smoothed": 7587.0,
- "new_tests_smoothed_per_thousand": 0.67,
- "tests_per_case": 162.41299999999998,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-09-13",
- "total_cases": 4653.0,
- "new_cases": 60.0,
- "new_cases_smoothed": 50.714,
- "total_deaths": 108.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 410.802,
- "new_cases_per_million": 5.297,
- "new_cases_smoothed_per_million": 4.477,
- "total_deaths_per_million": 9.535,
- "new_deaths_per_million": 0.177,
- "new_deaths_smoothed_per_million": 0.101,
- "new_tests": 7380.0,
- "total_tests": 492527.0,
- "total_tests_per_thousand": 43.484,
- "new_tests_per_thousand": 0.652,
- "new_tests_smoothed": 7618.0,
- "new_tests_smoothed_per_thousand": 0.673,
- "tests_per_case": 150.214,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-09-14",
- "total_cases": 4684.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 53.571,
- "total_deaths": 108.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 413.539,
- "new_cases_per_million": 2.737,
- "new_cases_smoothed_per_million": 4.73,
- "total_deaths_per_million": 9.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.088,
- "new_tests": 7758.0,
- "total_tests": 500285.0,
- "total_tests_per_thousand": 44.169,
- "new_tests_per_thousand": 0.685,
- "new_tests_smoothed": 7644.0,
- "new_tests_smoothed_per_thousand": 0.675,
- "tests_per_case": 142.688,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-09-15",
- "total_cases": 4726.0,
- "new_cases": 42.0,
- "new_cases_smoothed": 53.429,
- "total_deaths": 108.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 417.247,
- "new_cases_per_million": 3.708,
- "new_cases_smoothed_per_million": 4.717,
- "total_deaths_per_million": 9.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.076,
- "new_tests": 7939.0,
- "total_tests": 508224.0,
- "total_tests_per_thousand": 44.87,
- "new_tests_per_thousand": 0.701,
- "new_tests_smoothed": 7643.0,
- "new_tests_smoothed_per_thousand": 0.675,
- "tests_per_case": 143.05100000000002,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-09-16",
- "total_cases": 4803.0,
- "new_cases": 77.0,
- "new_cases_smoothed": 60.857,
- "total_deaths": 108.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 424.045,
- "new_cases_per_million": 6.798,
- "new_cases_smoothed_per_million": 5.373,
- "total_deaths_per_million": 9.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.05,
- "new_tests": 7745.0,
- "total_tests": 515969.0,
- "total_tests_per_thousand": 45.554,
- "new_tests_per_thousand": 0.684,
- "new_tests_smoothed": 7668.0,
- "new_tests_smoothed_per_thousand": 0.677,
- "tests_per_case": 126.0,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-09-17",
- "total_cases": 4876.0,
- "new_cases": 73.0,
- "new_cases_smoothed": 59.571,
- "total_deaths": 109.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 430.49,
- "new_cases_per_million": 6.445,
- "new_cases_smoothed_per_million": 5.259,
- "total_deaths_per_million": 9.623,
- "new_deaths_per_million": 0.088,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests": 8405.0,
- "total_tests": 524374.0,
- "total_tests_per_thousand": 46.296,
- "new_tests_per_thousand": 0.742,
- "new_tests_smoothed": 7849.0,
- "new_tests_smoothed_per_thousand": 0.693,
- "tests_per_case": 131.75799999999998,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-09-18",
- "total_cases": 4933.0,
- "new_cases": 57.0,
- "new_cases_smoothed": 54.571,
- "total_deaths": 109.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 435.523,
- "new_cases_per_million": 5.032,
- "new_cases_smoothed_per_million": 4.818,
- "total_deaths_per_million": 9.623,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.038,
- "new_tests": 7554.0,
- "total_tests": 531928.0,
- "total_tests_per_thousand": 46.963,
- "new_tests_per_thousand": 0.667,
- "new_tests_smoothed": 7767.0,
- "new_tests_smoothed_per_thousand": 0.686,
- "tests_per_case": 142.327,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-09-19",
- "total_cases": 5004.0,
- "new_cases": 71.0,
- "new_cases_smoothed": 58.714,
- "total_deaths": 111.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 441.791,
- "new_cases_per_million": 6.268,
- "new_cases_smoothed_per_million": 5.184,
- "total_deaths_per_million": 9.8,
- "new_deaths_per_million": 0.177,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests": 6724.0,
- "total_tests": 538652.0,
- "total_tests_per_thousand": 47.556,
- "new_tests_per_thousand": 0.594,
- "new_tests_smoothed": 7644.0,
- "new_tests_smoothed_per_thousand": 0.675,
- "tests_per_case": 130.19,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-09-20",
- "total_cases": 5055.0,
- "new_cases": 51.0,
- "new_cases_smoothed": 57.429,
- "total_deaths": 113.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 446.294,
- "new_cases_per_million": 4.503,
- "new_cases_smoothed_per_million": 5.07,
- "total_deaths_per_million": 9.977,
- "new_deaths_per_million": 0.177,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests": 7598.0,
- "total_tests": 546250.0,
- "total_tests_per_thousand": 48.227,
- "new_tests_per_thousand": 0.671,
- "new_tests_smoothed": 7675.0,
- "new_tests_smoothed_per_thousand": 0.678,
- "tests_per_case": 133.644,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-09-21",
- "total_cases": 5091.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 58.143,
- "total_deaths": 115.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 449.472,
- "new_cases_per_million": 3.178,
- "new_cases_smoothed_per_million": 5.133,
- "total_deaths_per_million": 10.153,
- "new_deaths_per_million": 0.177,
- "new_deaths_smoothed_per_million": 0.088,
- "new_tests": 8175.0,
- "total_tests": 554425.0,
- "total_tests_per_thousand": 48.949,
- "new_tests_per_thousand": 0.722,
- "new_tests_smoothed": 7734.0,
- "new_tests_smoothed_per_thousand": 0.683,
- "tests_per_case": 133.017,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-09-22",
- "total_cases": 5141.0,
- "new_cases": 50.0,
- "new_cases_smoothed": 59.286,
- "total_deaths": 116.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 453.887,
- "new_cases_per_million": 4.414,
- "new_cases_smoothed_per_million": 5.234,
- "total_deaths_per_million": 10.241,
- "new_deaths_per_million": 0.088,
- "new_deaths_smoothed_per_million": 0.101,
- "new_tests": 7321.0,
- "total_tests": 561746.0,
- "total_tests_per_thousand": 49.595,
- "new_tests_per_thousand": 0.646,
- "new_tests_smoothed": 7646.0,
- "new_tests_smoothed_per_thousand": 0.675,
- "tests_per_case": 128.969,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 86.11
- },
- {
- "date": "2020-09-23",
- "total_cases": 5222.0,
- "new_cases": 81.0,
- "new_cases_smoothed": 59.857,
- "total_deaths": 117.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 461.038,
- "new_cases_per_million": 7.151,
- "new_cases_smoothed_per_million": 5.285,
- "total_deaths_per_million": 10.33,
- "new_deaths_per_million": 0.088,
- "new_deaths_smoothed_per_million": 0.114,
- "new_tests": 7625.0,
- "total_tests": 569371.0,
- "total_tests_per_thousand": 50.268,
- "new_tests_per_thousand": 0.673,
- "new_tests_smoothed": 7629.0,
- "new_tests_smoothed_per_thousand": 0.674,
- "tests_per_case": 127.45299999999999,
- "positive_rate": 0.008,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-24",
- "total_cases": 5270.0,
- "new_cases": 48.0,
- "new_cases_smoothed": 56.286,
- "total_deaths": 118.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 465.276,
- "new_cases_per_million": 4.238,
- "new_cases_smoothed_per_million": 4.969,
- "total_deaths_per_million": 10.418,
- "new_deaths_per_million": 0.088,
- "new_deaths_smoothed_per_million": 0.114
- },
- {
- "date": "2020-09-25",
- "total_cases": 5310.0,
- "new_cases": 40.0,
- "new_cases_smoothed": 53.857,
- "total_deaths": 118.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 468.807,
- "new_cases_per_million": 3.532,
- "new_cases_smoothed_per_million": 4.755,
- "total_deaths_per_million": 10.418,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.114
- }
- ]
- },
- "CUW": {
- "continent": "North America",
- "location": "Curacao",
- "population": 164100.0,
- "population_density": 362.644,
- "median_age": 41.7,
- "aged_65_older": 16.367,
- "aged_70_older": 10.068,
- "diabetes_prevalence": 11.62,
- "life_expectancy": 78.88,
- "data": [
- {
- "date": "2020-03-13",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 6.094,
- "new_cases_per_million": 6.094,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-03-19",
- "new_cases_smoothed": 0.143,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-20",
- "total_cases": 3.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 18.282,
- "new_cases_per_million": 12.188,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-21",
- "new_cases_smoothed": 0.286,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 1.741,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-22",
- "new_cases_smoothed": 0.286,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 1.741,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-23",
- "new_cases_smoothed": 0.286,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 1.741,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-24",
- "total_cases": 6.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 36.563,
- "new_cases_per_million": 18.282,
- "new_cases_smoothed_per_million": 4.353,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-25",
- "new_cases_smoothed": 0.714,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 4.353,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-03-26",
- "total_cases": 6.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 36.563,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.353,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 6.094,
- "new_deaths_smoothed_per_million": 0.871
- },
- {
- "date": "2020-03-27",
- "total_cases": 7.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 42.657,
- "new_cases_per_million": 6.094,
- "new_cases_smoothed_per_million": 3.482,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.871
- },
- {
- "date": "2020-03-28",
- "total_cases": 8.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 48.751,
- "new_cases_per_million": 6.094,
- "new_cases_smoothed_per_million": 4.353,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.871
- },
- {
- "date": "2020-03-29",
- "total_cases": 8.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 48.751,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.353,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.871
- },
- {
- "date": "2020-03-30",
- "total_cases": 9.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 54.845,
- "new_cases_per_million": 6.094,
- "new_cases_smoothed_per_million": 5.223,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.871
- },
- {
- "date": "2020-03-31",
- "new_cases_smoothed": 0.429,
- "new_deaths_smoothed": 0.143,
- "new_cases_smoothed_per_million": 2.612,
- "new_deaths_smoothed_per_million": 0.871
- },
- {
- "date": "2020-04-01",
- "total_cases": 11.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 67.032,
- "new_cases_per_million": 12.188,
- "new_cases_smoothed_per_million": 4.353,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.871
- },
- {
- "date": "2020-04-02",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 67.032,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.353,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-03",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 67.032,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.482,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-04",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 67.032,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.612,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-05",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 67.032,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.612,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-06",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 67.032,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-07",
- "total_cases": 13.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 79.22,
- "new_cases_per_million": 12.188,
- "new_cases_smoothed_per_million": 3.482,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-08",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 79.22,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-09",
- "total_cases": 14.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 85.314,
- "new_cases_per_million": 6.094,
- "new_cases_smoothed_per_million": 2.612,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-10",
- "total_cases": 14.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 85.314,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.612,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-11",
- "total_cases": 14.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 85.314,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.612,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-12",
- "total_cases": 14.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 85.314,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.612,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-13",
- "total_cases": 14.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 85.314,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.612,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-14",
- "total_cases": 14.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 85.314,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-15",
- "total_cases": 14.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 85.314,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-16",
- "total_cases": 14.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 85.314,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-17",
- "total_cases": 14.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 85.314,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-18",
- "total_cases": 14.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 85.314,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-19",
- "total_cases": 14.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 85.314,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-20",
- "total_cases": 14.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 85.314,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-21",
- "total_cases": 14.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 85.314,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-22",
- "total_cases": 14.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 85.314,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-23",
- "total_cases": 14.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 85.314,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-24",
- "total_cases": 14.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 85.314,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-25",
- "total_cases": 16.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 97.502,
- "new_cases_per_million": 12.188,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-26",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 97.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-27",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 97.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-28",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 97.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-29",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 97.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-04-30",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 97.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-01",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 97.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-02",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 97.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-03",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 97.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-04",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 97.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-05",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 97.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-06",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 97.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-07",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 97.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-08",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 97.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-09",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 97.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-10",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 97.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-11",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 97.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-12",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 97.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-13",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 97.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-14",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 97.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-15",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 97.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-16",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 97.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-17",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 97.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-18",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 97.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-19",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 97.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-20",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 97.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-21",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 97.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-22",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 97.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-23",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 97.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-24",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 97.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-25",
- "total_cases": 17.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 103.595,
- "new_cases_per_million": 6.094,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-26",
- "total_cases": 18.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 109.689,
- "new_cases_per_million": 6.094,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-27",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 109.689,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-28",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 109.689,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-29",
- "total_cases": 19.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 115.783,
- "new_cases_per_million": 6.094,
- "new_cases_smoothed_per_million": 2.612,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-30",
- "total_cases": 19.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 115.783,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.612,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-05-31",
- "total_cases": 19.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 115.783,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.612,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-01",
- "total_cases": 19.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 115.783,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-02",
- "total_cases": 20.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 121.877,
- "new_cases_per_million": 6.094,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-03",
- "total_cases": 20.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 121.877,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-04",
- "total_cases": 20.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 121.877,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-05",
- "total_cases": 21.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 127.971,
- "new_cases_per_million": 6.094,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-06",
- "total_cases": 21.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 127.971,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-07",
- "total_cases": 21.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 127.971,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-08",
- "total_cases": 21.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 127.971,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-09",
- "total_cases": 21.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 127.971,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-10",
- "total_cases": 21.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 127.971,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-11",
- "total_cases": 21.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 127.971,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-12",
- "total_cases": 22.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 134.065,
- "new_cases_per_million": 6.094,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-13",
- "total_cases": 22.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 134.065,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-14",
- "total_cases": 22.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 134.065,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-15",
- "total_cases": 22.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 134.065,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-16",
- "total_cases": 22.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 134.065,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-17",
- "total_cases": 22.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 134.065,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-18",
- "total_cases": 23.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 140.158,
- "new_cases_per_million": 6.094,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-19",
- "total_cases": 23.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 140.158,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-20",
- "total_cases": 23.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 140.158,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-21",
- "total_cases": 23.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 140.158,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-22",
- "total_cases": 23.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 140.158,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-23",
- "total_cases": 23.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 140.158,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-24",
- "total_cases": 24.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 146.252,
- "new_cases_per_million": 6.094,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-25",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 146.252,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-26",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 146.252,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-27",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 146.252,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-28",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 146.252,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-29",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 146.252,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-06-30",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 146.252,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-01",
- "total_cases": 25.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 152.346,
- "new_cases_per_million": 6.094,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-02",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 152.346,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-03",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 152.346,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-04",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 152.346,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-05",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 152.346,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-06",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 152.346,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-07",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 152.346,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-08",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 152.346,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-09",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 152.346,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-10",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 152.346,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-11",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 152.346,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-12",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 152.346,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-13",
- "total_cases": 25.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 152.346,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-14",
- "total_cases": 26.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 158.44,
- "new_cases_per_million": 6.094,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-15",
- "total_cases": 26.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 158.44,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-16",
- "total_cases": 26.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 158.44,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-17",
- "total_cases": 26.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 158.44,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-18",
- "total_cases": 26.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 158.44,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-19",
- "total_cases": 26.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 158.44,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-20",
- "total_cases": 28.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 170.628,
- "new_cases_per_million": 12.188,
- "new_cases_smoothed_per_million": 2.612,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-21",
- "total_cases": 28.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 170.628,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-22",
- "total_cases": 28.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 170.628,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-23",
- "total_cases": 28.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 170.628,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-24",
- "total_cases": 28.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 170.628,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-25",
- "total_cases": 29.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 176.722,
- "new_cases_per_million": 6.094,
- "new_cases_smoothed_per_million": 2.612,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-26",
- "total_cases": 29.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 176.722,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.612,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-27",
- "total_cases": 29.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 176.722,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-28",
- "total_cases": 29.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 176.722,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-29",
- "total_cases": 29.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 176.722,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-30",
- "total_cases": 29.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 176.722,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-31",
- "total_cases": 29.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 176.722,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-01",
- "total_cases": 29.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 176.722,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-02",
- "total_cases": 29.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 176.722,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-03",
- "total_cases": 29.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 176.722,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-04",
- "total_cases": 29.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 176.722,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-05",
- "total_cases": 29.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 176.722,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-06",
- "total_cases": 31.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 188.909,
- "new_cases_per_million": 12.188,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-07",
- "total_cases": 31.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 188.909,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-08",
- "total_cases": 31.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 188.909,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-09",
- "total_cases": 31.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 188.909,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-10",
- "total_cases": 31.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 188.909,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-11",
- "total_cases": 32.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 195.003,
- "new_cases_per_million": 6.094,
- "new_cases_smoothed_per_million": 2.612,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-12",
- "total_cases": 32.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 195.003,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.612,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-13",
- "total_cases": 32.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 195.003,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-14",
- "total_cases": 32.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 195.003,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-15",
- "total_cases": 32.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 195.003,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.871,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-16",
- "total_cases": 33.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 201.097,
- "new_cases_per_million": 6.094,
- "new_cases_smoothed_per_million": 1.741,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-17",
- "total_cases": 34.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 207.191,
- "new_cases_per_million": 6.094,
- "new_cases_smoothed_per_million": 2.612,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-18",
- "total_cases": 35.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 213.285,
- "new_cases_per_million": 6.094,
- "new_cases_smoothed_per_million": 2.612,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-19",
- "total_cases": 35.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 213.285,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.612,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-20",
- "total_cases": 35.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 213.285,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.612,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-21",
- "total_cases": 35.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 213.285,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.612,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-22",
- "total_cases": 37.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 225.472,
- "new_cases_per_million": 12.188,
- "new_cases_smoothed_per_million": 4.353,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-23",
- "total_cases": 37.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 225.472,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.482,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-24",
- "total_cases": 43.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 262.035,
- "new_cases_per_million": 36.563,
- "new_cases_smoothed_per_million": 7.835,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-25",
- "total_cases": 47.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 286.411,
- "new_cases_per_million": 24.375,
- "new_cases_smoothed_per_million": 10.447,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-26",
- "total_cases": 47.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 286.411,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.447,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-27",
- "total_cases": 49.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 298.598,
- "new_cases_per_million": 12.188,
- "new_cases_smoothed_per_million": 12.188,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-28",
- "total_cases": 53.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 322.974,
- "new_cases_per_million": 24.375,
- "new_cases_smoothed_per_million": 15.67,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-29",
- "total_cases": 57.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 347.349,
- "new_cases_per_million": 24.375,
- "new_cases_smoothed_per_million": 17.411,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-30",
- "total_cases": 57.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 347.349,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 17.411,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-31",
- "total_cases": 57.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 347.349,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 12.188,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-01",
- "total_cases": 68.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 414.381,
- "new_cases_per_million": 67.032,
- "new_cases_smoothed_per_million": 18.282,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-02",
- "total_cases": 68.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 414.381,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 18.282,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-03",
- "total_cases": 68.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 414.381,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 16.54,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-04",
- "total_cases": 75.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 3.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 457.038,
- "new_cases_per_million": 42.657,
- "new_cases_smoothed_per_million": 19.152,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-05",
- "total_cases": 78.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 475.32,
- "new_cases_per_million": 18.282,
- "new_cases_smoothed_per_million": 18.282,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-06",
- "total_cases": 88.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 4.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 536.258,
- "new_cases_per_million": 60.938,
- "new_cases_smoothed_per_million": 26.987,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-07",
- "total_cases": 92.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 5.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 560.634,
- "new_cases_per_million": 24.375,
- "new_cases_smoothed_per_million": 30.469,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-08",
- "total_cases": 102.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 4.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 621.572,
- "new_cases_per_million": 60.938,
- "new_cases_smoothed_per_million": 29.599,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-09",
- "total_cases": 107.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 652.041,
- "new_cases_per_million": 30.469,
- "new_cases_smoothed_per_million": 33.951,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-10",
- "total_cases": 116.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 6.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 706.886,
- "new_cases_per_million": 54.845,
- "new_cases_smoothed_per_million": 41.786,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-11",
- "total_cases": 131.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 8.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 798.294,
- "new_cases_per_million": 91.408,
- "new_cases_smoothed_per_million": 48.751,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-12",
- "total_cases": 135.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 8.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 822.669,
- "new_cases_per_million": 24.375,
- "new_cases_smoothed_per_million": 49.621,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-13",
- "total_cases": 145.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 8.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 883.608,
- "new_cases_per_million": 60.938,
- "new_cases_smoothed_per_million": 49.621,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-14",
- "total_cases": 157.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 9.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 956.734,
- "new_cases_per_million": 73.126,
- "new_cases_smoothed_per_million": 56.586,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-15",
- "total_cases": 157.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 956.734,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 47.88,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-16",
- "total_cases": 169.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 8.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1029.86,
- "new_cases_per_million": 73.126,
- "new_cases_smoothed_per_million": 53.974,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-17",
- "total_cases": 192.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 10.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1170.018,
- "new_cases_per_million": 140.158,
- "new_cases_smoothed_per_million": 66.162,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-18",
- "total_cases": 210.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 11.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1279.707,
- "new_cases_per_million": 109.689,
- "new_cases_smoothed_per_million": 68.773,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-19",
- "total_cases": 228.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 13.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1389.397,
- "new_cases_per_million": 109.689,
- "new_cases_smoothed_per_million": 80.961,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-20",
- "total_cases": 247.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 14.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1505.18,
- "new_cases_per_million": 115.783,
- "new_cases_smoothed_per_million": 88.796,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-21",
- "total_cases": 268.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 15.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1633.151,
- "new_cases_per_million": 127.971,
- "new_cases_smoothed_per_million": 96.631,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-22",
- "total_cases": 282.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 17.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1718.464,
- "new_cases_per_million": 85.314,
- "new_cases_smoothed_per_million": 108.819,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-23",
- "total_cases": 291.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 17.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1773.309,
- "new_cases_per_million": 54.845,
- "new_cases_smoothed_per_million": 106.207,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-24",
- "total_cases": 301.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 15.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1834.247,
- "new_cases_per_million": 60.938,
- "new_cases_smoothed_per_million": 94.89,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-25",
- "total_cases": 315.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 15.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1919.561,
- "new_cases_per_million": 85.314,
- "new_cases_smoothed_per_million": 91.408,
- "total_deaths_per_million": 6.094,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- }
- ]
- },
- "CYM": {
- "continent": "North America",
- "location": "Cayman Islands",
- "population": 65720.0,
- "population_density": 256.496,
- "gdp_per_capita": 49903.029,
- "diabetes_prevalence": 13.22,
- "life_expectancy": 83.92,
- "data": [
- {
- "date": "2020-03-20",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 15.216,
- "new_cases_per_million": 15.216,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-03-21",
- "total_cases": 3.0,
- "new_cases": 2.0,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "total_cases_per_million": 45.648,
- "new_cases_per_million": 30.432,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 15.216,
- "stringency_index": 47.22
- },
- {
- "date": "2020-03-22",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 45.648,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-03-23",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 45.648,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "stringency_index": 54.63
- },
- {
- "date": "2020-03-24",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 45.648,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "stringency_index": 62.04
- },
- {
- "date": "2020-03-25",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 45.648,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-03-26",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 45.648,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.521,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.174,
- "stringency_index": 76.85
- },
- {
- "date": "2020-03-27",
- "total_cases": 6.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 91.296,
- "new_cases_per_million": 45.648,
- "new_cases_smoothed_per_million": 10.869,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.174,
- "stringency_index": 76.85
- },
- {
- "date": "2020-03-28",
- "total_cases": 8.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 121.729,
- "new_cases_per_million": 30.432,
- "new_cases_smoothed_per_million": 10.869,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-03-29",
- "total_cases": 8.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 121.729,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.869,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-03-30",
- "total_cases": 8.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 121.729,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.869,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-03-31",
- "total_cases": 12.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 182.593,
- "new_cases_per_million": 60.864,
- "new_cases_smoothed_per_million": 19.564,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-01",
- "total_cases": 14.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 213.025,
- "new_cases_per_million": 30.432,
- "new_cases_smoothed_per_million": 23.911,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-02",
- "total_cases": 22.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 334.753,
- "new_cases_per_million": 121.729,
- "new_cases_smoothed_per_million": 41.301,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-03",
- "total_cases": 28.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 3.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 426.05,
- "new_cases_per_million": 91.296,
- "new_cases_smoothed_per_million": 47.822,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-04",
- "total_cases": 29.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 441.266,
- "new_cases_per_million": 15.216,
- "new_cases_smoothed_per_million": 45.648,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-05",
- "total_cases": 35.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 3.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 532.562,
- "new_cases_per_million": 91.296,
- "new_cases_smoothed_per_million": 58.691,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-06",
- "total_cases": 39.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 4.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 593.427,
- "new_cases_per_million": 60.864,
- "new_cases_smoothed_per_million": 67.385,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-07",
- "total_cases": 39.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 593.427,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 58.691,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-08",
- "total_cases": 45.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 4.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 684.723,
- "new_cases_per_million": 91.296,
- "new_cases_smoothed_per_million": 67.385,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-09",
- "total_cases": 45.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 684.723,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 49.996,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-10",
- "total_cases": 45.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 684.723,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 36.953,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-11",
- "total_cases": 45.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 684.723,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 34.78,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-12",
- "total_cases": 53.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 806.452,
- "new_cases_per_million": 121.729,
- "new_cases_smoothed_per_million": 39.127,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-13",
- "total_cases": 53.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 806.452,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 30.432,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-14",
- "total_cases": 53.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 806.452,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 30.432,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-15",
- "total_cases": 54.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 821.668,
- "new_cases_per_million": 15.216,
- "new_cases_smoothed_per_million": 19.564,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 90.74
- },
- {
- "date": "2020-04-16",
- "total_cases": 60.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 912.964,
- "new_cases_per_million": 91.296,
- "new_cases_smoothed_per_million": 32.606,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 94.44
- },
- {
- "date": "2020-04-17",
- "total_cases": 61.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 928.18,
- "new_cases_per_million": 15.216,
- "new_cases_smoothed_per_million": 34.78,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 94.44
- },
- {
- "date": "2020-04-18",
- "total_cases": 61.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 928.18,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 34.78,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 94.44
- },
- {
- "date": "2020-04-19",
- "total_cases": 61.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 928.18,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 17.39,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 94.44
- },
- {
- "date": "2020-04-20",
- "total_cases": 61.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 928.18,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 17.39,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 94.44
- },
- {
- "date": "2020-04-21",
- "total_cases": 66.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1004.26,
- "new_cases_per_million": 76.08,
- "new_cases_smoothed_per_million": 28.258,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 94.44
- },
- {
- "date": "2020-04-22",
- "total_cases": 66.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1004.26,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 26.085,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 94.44
- },
- {
- "date": "2020-04-23",
- "total_cases": 66.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1004.26,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 13.042,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 94.44
- },
- {
- "date": "2020-04-24",
- "total_cases": 66.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1004.26,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.869,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 94.44
- },
- {
- "date": "2020-04-25",
- "total_cases": 66.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1004.26,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.869,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 94.44
- },
- {
- "date": "2020-04-26",
- "total_cases": 70.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1065.125,
- "new_cases_per_million": 60.864,
- "new_cases_smoothed_per_million": 19.564,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 94.44
- },
- {
- "date": "2020-04-27",
- "total_cases": 70.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1065.125,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 19.564,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 94.44
- },
- {
- "date": "2020-04-28",
- "total_cases": 70.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1065.125,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.695,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 94.44
- },
- {
- "date": "2020-04-29",
- "total_cases": 70.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1065.125,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.695,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 94.44
- },
- {
- "date": "2020-04-30",
- "total_cases": 73.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1110.773,
- "new_cases_per_million": 45.648,
- "new_cases_smoothed_per_million": 15.216,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 94.44
- },
- {
- "date": "2020-05-01",
- "total_cases": 73.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1110.773,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 15.216,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 94.44
- },
- {
- "date": "2020-05-02",
- "total_cases": 74.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1125.989,
- "new_cases_per_million": 15.216,
- "new_cases_smoothed_per_million": 17.39,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 94.44
- },
- {
- "date": "2020-05-03",
- "total_cases": 74.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1125.989,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.695,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 94.44
- },
- {
- "date": "2020-05-04",
- "total_cases": 74.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1125.989,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.695,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 94.44
- },
- {
- "date": "2020-05-05",
- "total_cases": 75.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1141.205,
- "new_cases_per_million": 15.216,
- "new_cases_smoothed_per_million": 10.869,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 80.09
- },
- {
- "date": "2020-05-06",
- "total_cases": 75.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1141.205,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.869,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-05-07",
- "total_cases": 78.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1186.853,
- "new_cases_per_million": 45.648,
- "new_cases_smoothed_per_million": 10.869,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-05-08",
- "total_cases": 78.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1186.853,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.869,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-05-09",
- "total_cases": 81.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1232.502,
- "new_cases_per_million": 45.648,
- "new_cases_smoothed_per_million": 15.216,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-05-10",
- "total_cases": 81.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1232.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 15.216,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-05-11",
- "total_cases": 81.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1232.502,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 15.216,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-05-12",
- "total_cases": 84.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1278.15,
- "new_cases_per_million": 45.648,
- "new_cases_smoothed_per_million": 19.564,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-05-13",
- "total_cases": 85.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1293.366,
- "new_cases_per_million": 15.216,
- "new_cases_smoothed_per_million": 21.737,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-05-14",
- "total_cases": 85.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1293.366,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 15.216,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-05-15",
- "total_cases": 93.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1415.094,
- "new_cases_per_million": 121.729,
- "new_cases_smoothed_per_million": 32.606,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-05-16",
- "total_cases": 93.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1415.094,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 26.085,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-05-17",
- "total_cases": 94.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1430.31,
- "new_cases_per_million": 15.216,
- "new_cases_smoothed_per_million": 28.258,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-05-18",
- "total_cases": 94.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1430.31,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 28.258,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-05-19",
- "total_cases": 94.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1430.31,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 21.737,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-05-20",
- "total_cases": 111.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1688.984,
- "new_cases_per_million": 258.673,
- "new_cases_smoothed_per_million": 56.517,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-05-21",
- "total_cases": 111.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1688.984,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 56.517,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-05-22",
- "total_cases": 111.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1688.984,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 39.127,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-05-23",
- "total_cases": 121.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 4.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1841.144,
- "new_cases_per_million": 152.161,
- "new_cases_smoothed_per_million": 60.864,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-05-24",
- "total_cases": 129.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 5.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1962.873,
- "new_cases_per_million": 121.729,
- "new_cases_smoothed_per_million": 76.08,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-05-25",
- "total_cases": 129.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1962.873,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 76.08,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-05-26",
- "total_cases": 134.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 5.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2038.953,
- "new_cases_per_million": 76.08,
- "new_cases_smoothed_per_million": 86.949,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-05-27",
- "total_cases": 137.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2084.601,
- "new_cases_per_million": 45.648,
- "new_cases_smoothed_per_million": 56.517,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-05-28",
- "total_cases": 140.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2130.25,
- "new_cases_per_million": 45.648,
- "new_cases_smoothed_per_million": 63.038,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-05-29",
- "total_cases": 140.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2130.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 63.038,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-05-30",
- "total_cases": 141.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2145.466,
- "new_cases_per_million": 15.216,
- "new_cases_smoothed_per_million": 43.474,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-05-31",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2145.466,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 26.085,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-01",
- "total_cases": 141.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2145.466,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 26.085,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-02",
- "total_cases": 150.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2282.41,
- "new_cases_per_million": 136.945,
- "new_cases_smoothed_per_million": 34.78,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-03",
- "total_cases": 151.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2297.626,
- "new_cases_per_million": 15.216,
- "new_cases_smoothed_per_million": 30.432,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-04",
- "total_cases": 156.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2373.707,
- "new_cases_per_million": 76.08,
- "new_cases_smoothed_per_million": 34.78,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-05",
- "total_cases": 160.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2434.571,
- "new_cases_per_million": 60.864,
- "new_cases_smoothed_per_million": 43.474,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-06",
- "total_cases": 164.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2495.435,
- "new_cases_per_million": 60.864,
- "new_cases_smoothed_per_million": 49.996,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-07",
- "total_cases": 164.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2495.435,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 49.996,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-08",
- "total_cases": 164.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2495.435,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 49.996,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-09",
- "total_cases": 171.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2601.948,
- "new_cases_per_million": 106.512,
- "new_cases_smoothed_per_million": 45.648,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-10",
- "total_cases": 176.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 3.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2678.028,
- "new_cases_per_million": 76.08,
- "new_cases_smoothed_per_million": 54.343,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-11",
- "total_cases": 180.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 3.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2738.892,
- "new_cases_per_million": 60.864,
- "new_cases_smoothed_per_million": 52.169,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-12",
- "total_cases": 180.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2738.892,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 43.474,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-13",
- "total_cases": 187.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2845.405,
- "new_cases_per_million": 106.512,
- "new_cases_smoothed_per_million": 49.996,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-14",
- "total_cases": 187.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2845.405,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 49.996,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-15",
- "total_cases": 187.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2845.405,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 49.996,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-16",
- "total_cases": 187.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2845.405,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 34.78,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-17",
- "total_cases": 193.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2936.701,
- "new_cases_per_million": 91.296,
- "new_cases_smoothed_per_million": 36.953,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-18",
- "total_cases": 193.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2936.701,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 28.258,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 77.31
- },
- {
- "date": "2020-06-19",
- "total_cases": 193.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2936.701,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 28.258,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 66.2
- },
- {
- "date": "2020-06-20",
- "total_cases": 195.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2967.133,
- "new_cases_per_million": 30.432,
- "new_cases_smoothed_per_million": 17.39,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 66.2
- },
- {
- "date": "2020-06-21",
- "total_cases": 195.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2967.133,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 17.39,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 66.2
- },
- {
- "date": "2020-06-22",
- "total_cases": 195.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2967.133,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 17.39,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 51.39
- },
- {
- "date": "2020-06-23",
- "total_cases": 195.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2967.133,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 17.39,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 51.39
- },
- {
- "date": "2020-06-24",
- "total_cases": 195.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2967.133,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.347,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 51.39
- },
- {
- "date": "2020-06-25",
- "total_cases": 196.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2982.349,
- "new_cases_per_million": 15.216,
- "new_cases_smoothed_per_million": 6.521,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 51.39
- },
- {
- "date": "2020-06-26",
- "total_cases": 196.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2982.349,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.521,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 51.39
- },
- {
- "date": "2020-06-27",
- "total_cases": 196.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2982.349,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.174,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 51.39
- },
- {
- "date": "2020-06-28",
- "total_cases": 196.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2982.349,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.174,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 51.39
- },
- {
- "date": "2020-06-29",
- "total_cases": 196.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2982.349,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.174,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 51.39
- },
- {
- "date": "2020-06-30",
- "total_cases": 199.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3027.998,
- "new_cases_per_million": 45.648,
- "new_cases_smoothed_per_million": 8.695,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 51.39
- },
- {
- "date": "2020-07-01",
- "total_cases": 200.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3043.214,
- "new_cases_per_million": 15.216,
- "new_cases_smoothed_per_million": 10.869,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 51.39
- },
- {
- "date": "2020-07-02",
- "total_cases": 201.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3058.43,
- "new_cases_per_million": 15.216,
- "new_cases_smoothed_per_million": 10.869,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-03",
- "total_cases": 201.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3058.43,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.869,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-04",
- "total_cases": 201.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3058.43,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.869,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-05",
- "total_cases": 201.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3058.43,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.869,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-06",
- "total_cases": 201.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3058.43,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 10.869,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-07",
- "total_cases": 201.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3058.43,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.347,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-08",
- "total_cases": 201.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3058.43,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.174,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-09",
- "total_cases": 201.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3058.43,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-10",
- "total_cases": 201.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3058.43,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-11",
- "total_cases": 201.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3058.43,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-12",
- "total_cases": 201.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3058.43,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-13",
- "total_cases": 201.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3058.43,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-14",
- "total_cases": 201.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3058.43,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-15",
- "total_cases": 203.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 30.432,
- "new_cases_smoothed_per_million": 4.347,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-16",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.347,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-17",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.347,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-18",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.347,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-19",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.347,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-20",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.347,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-21",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.347,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-22",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-23",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-24",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-25",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-26",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-27",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-28",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-29",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-30",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-07-31",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-01",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-02",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-03",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-04",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-05",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-06",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-07",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-08",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-09",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-10",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-11",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-12",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-13",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-14",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-15",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-16",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-17",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-18",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-19",
- "total_cases": 203.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3088.862,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-20",
- "total_cases": 205.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3119.294,
- "new_cases_per_million": 30.432,
- "new_cases_smoothed_per_million": 4.347,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-21",
- "total_cases": 205.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3119.294,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.347,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-22",
- "total_cases": 205.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3119.294,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.347,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-23",
- "total_cases": 205.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3119.294,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.347,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-24",
- "total_cases": 205.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3119.294,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.347,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-25",
- "total_cases": 205.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3119.294,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.347,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-26",
- "total_cases": 205.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3119.294,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.347,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-27",
- "total_cases": 205.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3119.294,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-28",
- "total_cases": 205.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3119.294,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-29",
- "total_cases": 205.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3119.294,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-30",
- "total_cases": 205.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3119.294,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-08-31",
- "total_cases": 205.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3119.294,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-01",
- "total_cases": 205.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3119.294,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-02",
- "total_cases": 205.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3119.294,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-03",
- "total_cases": 205.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3119.294,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-04",
- "total_cases": 205.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3119.294,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-05",
- "total_cases": 205.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3119.294,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-06",
- "total_cases": 205.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3119.294,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-07",
- "total_cases": 205.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3119.294,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-08",
- "total_cases": 205.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3119.294,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-09",
- "total_cases": 205.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3119.294,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-10",
- "total_cases": 207.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3149.726,
- "new_cases_per_million": 30.432,
- "new_cases_smoothed_per_million": 4.347,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-11",
- "total_cases": 208.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3164.942,
- "new_cases_per_million": 15.216,
- "new_cases_smoothed_per_million": 6.521,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-12",
- "total_cases": 208.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3164.942,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.521,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-13",
- "total_cases": 208.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3164.942,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.521,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-14",
- "total_cases": 208.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3164.942,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.521,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-15",
- "total_cases": 208.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3164.942,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.521,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-16",
- "total_cases": 208.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3164.942,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.521,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-17",
- "total_cases": 208.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3164.942,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.174,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-18",
- "total_cases": 208.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3164.942,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-19",
- "total_cases": 209.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3180.158,
- "new_cases_per_million": 15.216,
- "new_cases_smoothed_per_million": 2.174,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-20",
- "total_cases": 209.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3180.158,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.174,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-21",
- "total_cases": 209.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3180.158,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.174,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-22",
- "total_cases": 210.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3195.374,
- "new_cases_per_million": 15.216,
- "new_cases_smoothed_per_million": 4.347,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-23",
- "total_cases": 210.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3195.374,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.347,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-24",
- "total_cases": 210.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3195.374,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.347,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-25",
- "total_cases": 210.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3195.374,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.347,
- "total_deaths_per_million": 15.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- }
- ]
- },
- "CYP": {
- "continent": "Europe",
- "location": "Cyprus",
- "population": 875899.0,
- "population_density": 127.657,
- "median_age": 37.3,
- "aged_65_older": 13.416,
- "aged_70_older": 8.563,
- "gdp_per_capita": 32415.132,
- "cardiovasc_death_rate": 141.171,
- "diabetes_prevalence": 9.24,
- "female_smokers": 19.6,
- "male_smokers": 52.7,
- "hospital_beds_per_thousand": 3.4,
- "life_expectancy": 80.98,
- "human_development_index": 0.869,
- "data": [
- {
- "date": "2020-03-10",
- "total_cases": 2.0,
- "new_cases": 2.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 2.283,
- "new_cases_per_million": 2.283,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 22.22
- },
- {
- "date": "2020-03-12",
- "total_cases": 6.0,
- "new_cases": 4.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 6.85,
- "new_cases_per_million": 4.567,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 22.22
- },
- {
- "date": "2020-03-14",
- "total_cases": 14.0,
- "new_cases": 8.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 15.984,
- "new_cases_per_million": 9.133,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 38.89
- },
- {
- "date": "2020-03-15",
- "total_cases": 21.0,
- "new_cases": 7.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 23.975,
- "new_cases_per_million": 7.992,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-03-16",
- "total_cases": 30.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 4.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 34.251,
- "new_cases_per_million": 10.275,
- "new_cases_smoothed_per_million": 4.893,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 51.85
- },
- {
- "date": "2020-03-17",
- "total_cases": 40.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.667,
- "new_cases_per_million": 11.417,
- "new_cases_smoothed_per_million": 6.198,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 51.85
- },
- {
- "date": "2020-03-18",
- "total_cases": 40.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.667,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.198,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 51.85
- },
- {
- "date": "2020-03-19",
- "total_cases": 58.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 7.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 66.218,
- "new_cases_per_million": 20.55,
- "new_cases_smoothed_per_million": 8.481,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 51.85
- },
- {
- "date": "2020-03-20",
- "total_cases": 58.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 66.218,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.481,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 51.85
- },
- {
- "date": "2020-03-21",
- "total_cases": 67.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 7.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 76.493,
- "new_cases_per_million": 10.275,
- "new_cases_smoothed_per_million": 8.644,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 51.85
- },
- {
- "date": "2020-03-22",
- "total_cases": 84.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 9.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 95.901,
- "new_cases_per_million": 19.409,
- "new_cases_smoothed_per_million": 10.275,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 51.85
- },
- {
- "date": "2020-03-23",
- "total_cases": 95.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 9.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 108.46,
- "new_cases_per_million": 12.559,
- "new_cases_smoothed_per_million": 10.601,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 62.96
- },
- {
- "date": "2020-03-24",
- "total_cases": 116.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 10.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 132.435,
- "new_cases_per_million": 23.975,
- "new_cases_smoothed_per_million": 12.395,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 92.59
- },
- {
- "date": "2020-03-25",
- "total_cases": 124.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 12.0,
- "total_deaths": 3.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 141.569,
- "new_cases_per_million": 9.133,
- "new_cases_smoothed_per_million": 13.7,
- "total_deaths_per_million": 3.425,
- "new_deaths_per_million": 3.425,
- "new_deaths_smoothed_per_million": 0.489,
- "stringency_index": 92.59
- },
- {
- "date": "2020-03-26",
- "total_cases": 132.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 10.571,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 150.702,
- "new_cases_per_million": 9.133,
- "new_cases_smoothed_per_million": 12.069,
- "total_deaths_per_million": 3.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.489,
- "stringency_index": 92.59
- },
- {
- "date": "2020-03-27",
- "total_cases": 146.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 12.571,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 166.686,
- "new_cases_per_million": 15.984,
- "new_cases_smoothed_per_million": 14.353,
- "total_deaths_per_million": 3.425,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.489,
- "stringency_index": 92.59
- },
- {
- "date": "2020-03-28",
- "total_cases": 162.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 13.571,
- "total_deaths": 5.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 184.953,
- "new_cases_per_million": 18.267,
- "new_cases_smoothed_per_million": 15.494,
- "total_deaths_per_million": 5.708,
- "new_deaths_per_million": 2.283,
- "new_deaths_smoothed_per_million": 0.815,
- "stringency_index": 92.59
- },
- {
- "date": "2020-03-29",
- "total_cases": 179.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 13.571,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 204.361,
- "new_cases_per_million": 19.409,
- "new_cases_smoothed_per_million": 15.494,
- "total_deaths_per_million": 5.708,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.815,
- "stringency_index": 92.59
- },
- {
- "date": "2020-03-30",
- "total_cases": 214.0,
- "new_cases": 35.0,
- "new_cases_smoothed": 17.0,
- "total_deaths": 6.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 244.32,
- "new_cases_per_million": 39.959,
- "new_cases_smoothed_per_million": 19.409,
- "total_deaths_per_million": 6.85,
- "new_deaths_per_million": 1.142,
- "new_deaths_smoothed_per_million": 0.979,
- "stringency_index": 92.59
- },
- {
- "date": "2020-03-31",
- "total_cases": 230.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 16.286,
- "total_deaths": 7.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 262.587,
- "new_cases_per_million": 18.267,
- "new_cases_smoothed_per_million": 18.593,
- "total_deaths_per_million": 7.992,
- "new_deaths_per_million": 1.142,
- "new_deaths_smoothed_per_million": 1.142,
- "stringency_index": 92.59
- },
- {
- "date": "2020-04-01",
- "total_cases": 262.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 19.714,
- "total_deaths": 8.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 299.121,
- "new_cases_per_million": 36.534,
- "new_cases_smoothed_per_million": 22.507,
- "total_deaths_per_million": 9.133,
- "new_deaths_per_million": 1.142,
- "new_deaths_smoothed_per_million": 0.815,
- "stringency_index": 92.59
- },
- {
- "date": "2020-04-02",
- "total_cases": 320.0,
- "new_cases": 58.0,
- "new_cases_smoothed": 26.857,
- "total_deaths": 9.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 365.339,
- "new_cases_per_million": 66.218,
- "new_cases_smoothed_per_million": 30.662,
- "total_deaths_per_million": 10.275,
- "new_deaths_per_million": 1.142,
- "new_deaths_smoothed_per_million": 0.979,
- "stringency_index": 92.59
- },
- {
- "date": "2020-04-03",
- "total_cases": 356.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 30.0,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 406.44,
- "new_cases_per_million": 41.101,
- "new_cases_smoothed_per_million": 34.251,
- "total_deaths_per_million": 10.275,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.979,
- "stringency_index": 92.59
- },
- {
- "date": "2020-04-04",
- "total_cases": 396.0,
- "new_cases": 40.0,
- "new_cases_smoothed": 33.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 452.107,
- "new_cases_per_million": 45.667,
- "new_cases_smoothed_per_million": 38.165,
- "total_deaths_per_million": 10.275,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.652,
- "stringency_index": 92.59
- },
- {
- "date": "2020-04-05",
- "total_cases": 426.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 35.286,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 486.357,
- "new_cases_per_million": 34.251,
- "new_cases_smoothed_per_million": 40.285,
- "total_deaths_per_million": 10.275,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.652,
- "stringency_index": 92.59
- },
- {
- "date": "2020-04-06",
- "total_cases": 446.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 33.143,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 509.191,
- "new_cases_per_million": 22.834,
- "new_cases_smoothed_per_million": 37.839,
- "total_deaths_per_million": 10.275,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.489,
- "stringency_index": 92.59
- },
- {
- "date": "2020-04-07",
- "total_cases": 465.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 33.571,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 530.883,
- "new_cases_per_million": 21.692,
- "new_cases_smoothed_per_million": 38.328,
- "total_deaths_per_million": 10.275,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.326,
- "stringency_index": 92.59
- },
- {
- "date": "2020-04-08",
- "total_cases": 494.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 33.143,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 563.992,
- "new_cases_per_million": 33.109,
- "new_cases_smoothed_per_million": 37.839,
- "total_deaths_per_million": 10.275,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 92.59
- },
- {
- "date": "2020-04-09",
- "total_cases": 526.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 29.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 600.526,
- "new_cases_per_million": 36.534,
- "new_cases_smoothed_per_million": 33.598,
- "total_deaths_per_million": 10.275,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 92.59
- },
- {
- "date": "2020-04-10",
- "total_cases": 564.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 29.714,
- "total_deaths": 10.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 643.91,
- "new_cases_per_million": 43.384,
- "new_cases_smoothed_per_million": 33.924,
- "total_deaths_per_million": 11.417,
- "new_deaths_per_million": 1.142,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 92.59
- },
- {
- "date": "2020-04-11",
- "total_cases": 595.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 28.429,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 679.302,
- "new_cases_per_million": 35.392,
- "new_cases_smoothed_per_million": 32.456,
- "total_deaths_per_million": 11.417,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 92.59
- },
- {
- "date": "2020-04-12",
- "total_cases": 616.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 27.143,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 703.277,
- "new_cases_per_million": 23.975,
- "new_cases_smoothed_per_million": 30.989,
- "total_deaths_per_million": 11.417,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 92.59
- },
- {
- "date": "2020-04-13",
- "total_cases": 633.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 26.714,
- "total_deaths": 11.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 722.686,
- "new_cases_per_million": 19.409,
- "new_cases_smoothed_per_million": 30.499,
- "total_deaths_per_million": 12.559,
- "new_deaths_per_million": 1.142,
- "new_deaths_smoothed_per_million": 0.326,
- "stringency_index": 92.59
- },
- {
- "date": "2020-04-14",
- "total_cases": 662.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 28.143,
- "total_deaths": 12.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 755.795,
- "new_cases_per_million": 33.109,
- "new_cases_smoothed_per_million": 32.13,
- "total_deaths_per_million": 13.7,
- "new_deaths_per_million": 1.142,
- "new_deaths_smoothed_per_million": 0.489,
- "stringency_index": 92.59
- },
- {
- "date": "2020-04-15",
- "total_cases": 695.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 28.714,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 793.47,
- "new_cases_per_million": 37.676,
- "new_cases_smoothed_per_million": 32.783,
- "total_deaths_per_million": 13.7,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.489,
- "stringency_index": 92.59
- },
- {
- "date": "2020-04-16",
- "total_cases": 715.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 27.0,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 816.304,
- "new_cases_per_million": 22.834,
- "new_cases_smoothed_per_million": 30.825,
- "total_deaths_per_million": 13.7,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.489,
- "stringency_index": 94.44
- },
- {
- "date": "2020-04-17",
- "total_cases": 735.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 24.429,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 839.138,
- "new_cases_per_million": 22.834,
- "new_cases_smoothed_per_million": 27.89,
- "total_deaths_per_million": 13.7,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.326,
- "stringency_index": 94.44
- },
- {
- "date": "2020-04-18",
- "total_cases": 735.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 20.0,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 839.138,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 22.834,
- "total_deaths_per_million": 13.7,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.326,
- "stringency_index": 94.44
- },
- {
- "date": "2020-04-19",
- "total_cases": 761.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 20.714,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 868.822,
- "new_cases_per_million": 29.684,
- "new_cases_smoothed_per_million": 23.649,
- "total_deaths_per_million": 13.7,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.326,
- "stringency_index": 94.44
- },
- {
- "date": "2020-04-20",
- "total_cases": 767.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 19.143,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 875.672,
- "new_cases_per_million": 6.85,
- "new_cases_smoothed_per_million": 21.855,
- "total_deaths_per_million": 13.7,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 94.44
- },
- {
- "date": "2020-04-21",
- "total_cases": 772.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 15.714,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 881.38,
- "new_cases_per_million": 5.708,
- "new_cases_smoothed_per_million": 17.941,
- "total_deaths_per_million": 13.7,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 94.44
- },
- {
- "date": "2020-04-22",
- "total_cases": 784.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 12.714,
- "total_deaths": 12.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 895.08,
- "new_cases_per_million": 13.7,
- "new_cases_smoothed_per_million": 14.516,
- "total_deaths_per_million": 13.7,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 94.44
- },
- {
- "date": "2020-04-23",
- "total_cases": 790.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 10.714,
- "total_deaths": 14.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 901.93,
- "new_cases_per_million": 6.85,
- "new_cases_smoothed_per_million": 12.232,
- "total_deaths_per_million": 15.984,
- "new_deaths_per_million": 2.283,
- "new_deaths_smoothed_per_million": 0.326,
- "stringency_index": 94.44
- },
- {
- "date": "2020-04-24",
- "total_cases": 795.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 8.571,
- "total_deaths": 14.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 907.639,
- "new_cases_per_million": 5.708,
- "new_cases_smoothed_per_million": 9.786,
- "total_deaths_per_million": 15.984,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.326,
- "stringency_index": 94.44
- },
- {
- "date": "2020-04-25",
- "total_cases": 804.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 9.857,
- "total_deaths": 14.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 917.914,
- "new_cases_per_million": 10.275,
- "new_cases_smoothed_per_million": 11.254,
- "total_deaths_per_million": 15.984,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.326,
- "stringency_index": 94.44
- },
- {
- "date": "2020-04-26",
- "total_cases": 810.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 7.0,
- "total_deaths": 14.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 924.764,
- "new_cases_per_million": 6.85,
- "new_cases_smoothed_per_million": 7.992,
- "total_deaths_per_million": 15.984,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.326,
- "stringency_index": 94.44
- },
- {
- "date": "2020-04-27",
- "total_cases": 817.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 7.143,
- "total_deaths": 14.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 932.756,
- "new_cases_per_million": 7.992,
- "new_cases_smoothed_per_million": 8.155,
- "total_deaths_per_million": 15.984,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.326,
- "stringency_index": 94.44
- },
- {
- "date": "2020-04-28",
- "total_cases": 822.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 7.143,
- "total_deaths": 15.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 938.464,
- "new_cases_per_million": 5.708,
- "new_cases_smoothed_per_million": 8.155,
- "total_deaths_per_million": 17.125,
- "new_deaths_per_million": 1.142,
- "new_deaths_smoothed_per_million": 0.489,
- "stringency_index": 94.44
- },
- {
- "date": "2020-04-29",
- "total_cases": 837.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 7.571,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 955.59,
- "new_cases_per_million": 17.125,
- "new_cases_smoothed_per_million": 8.644,
- "total_deaths_per_million": 17.125,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.489,
- "stringency_index": 94.44
- },
- {
- "date": "2020-04-30",
- "total_cases": 843.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 7.571,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 962.44,
- "new_cases_per_million": 6.85,
- "new_cases_smoothed_per_million": 8.644,
- "total_deaths_per_million": 17.125,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 94.44
- },
- {
- "date": "2020-05-01",
- "total_cases": 850.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 7.857,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 970.432,
- "new_cases_per_million": 7.992,
- "new_cases_smoothed_per_million": 8.97,
- "total_deaths_per_million": 17.125,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 94.44
- },
- {
- "date": "2020-05-02",
- "total_cases": 857.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 7.571,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 978.423,
- "new_cases_per_million": 7.992,
- "new_cases_smoothed_per_million": 8.644,
- "total_deaths_per_million": 17.125,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 94.44
- },
- {
- "date": "2020-05-03",
- "total_cases": 864.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 7.714,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 986.415,
- "new_cases_per_million": 7.992,
- "new_cases_smoothed_per_million": 8.807,
- "total_deaths_per_million": 17.125,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 94.44
- },
- {
- "date": "2020-05-04",
- "total_cases": 872.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 7.857,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 995.549,
- "new_cases_per_million": 9.133,
- "new_cases_smoothed_per_million": 8.97,
- "total_deaths_per_million": 17.125,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 92.59
- },
- {
- "date": "2020-05-05",
- "total_cases": 874.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 7.429,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 997.832,
- "new_cases_per_million": 2.283,
- "new_cases_smoothed_per_million": 8.481,
- "total_deaths_per_million": 17.125,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 92.59
- },
- {
- "date": "2020-05-06",
- "total_cases": 878.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 5.857,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1002.399,
- "new_cases_per_million": 4.567,
- "new_cases_smoothed_per_million": 6.687,
- "total_deaths_per_million": 17.125,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 92.59
- },
- {
- "date": "2020-05-07",
- "total_cases": 883.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 5.714,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1008.107,
- "new_cases_per_million": 5.708,
- "new_cases_smoothed_per_million": 6.524,
- "total_deaths_per_million": 17.125,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 92.59
- },
- {
- "date": "2020-05-08",
- "total_cases": 889.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1014.957,
- "new_cases_per_million": 6.85,
- "new_cases_smoothed_per_million": 6.361,
- "total_deaths_per_million": 17.125,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 92.59
- },
- {
- "date": "2020-05-09",
- "total_cases": 891.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 4.857,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1017.241,
- "new_cases_per_million": 2.283,
- "new_cases_smoothed_per_million": 5.545,
- "total_deaths_per_million": 17.125,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 92.59
- },
- {
- "date": "2020-05-10",
- "total_cases": 892.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 4.0,
- "total_deaths": 15.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1018.382,
- "new_cases_per_million": 1.142,
- "new_cases_smoothed_per_million": 4.567,
- "total_deaths_per_million": 17.125,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 92.59
- },
- {
- "date": "2020-05-11",
- "total_cases": 898.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 16.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1025.232,
- "new_cases_per_million": 6.85,
- "new_cases_smoothed_per_million": 4.241,
- "total_deaths_per_million": 18.267,
- "new_deaths_per_million": 1.142,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 92.59
- },
- {
- "date": "2020-05-12",
- "total_cases": 901.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 3.857,
- "total_deaths": 16.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1028.657,
- "new_cases_per_million": 3.425,
- "new_cases_smoothed_per_million": 4.404,
- "total_deaths_per_million": 18.267,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 92.59
- },
- {
- "date": "2020-05-13",
- "total_cases": 903.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 3.571,
- "total_deaths": 16.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1030.941,
- "new_cases_per_million": 2.283,
- "new_cases_smoothed_per_million": 4.077,
- "total_deaths_per_million": 18.267,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 92.59
- },
- {
- "date": "2020-05-14",
- "total_cases": 905.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 3.143,
- "total_deaths": 17.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1033.224,
- "new_cases_per_million": 2.283,
- "new_cases_smoothed_per_million": 3.588,
- "total_deaths_per_million": 19.409,
- "new_deaths_per_million": 1.142,
- "new_deaths_smoothed_per_million": 0.326,
- "stringency_index": 92.59
- },
- {
- "date": "2020-05-15",
- "total_cases": 907.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 17.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1035.508,
- "new_cases_per_million": 2.283,
- "new_cases_smoothed_per_million": 2.936,
- "total_deaths_per_million": 19.409,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.326,
- "stringency_index": 92.59
- },
- {
- "date": "2020-05-16",
- "total_cases": 910.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 17.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1038.933,
- "new_cases_per_million": 3.425,
- "new_cases_smoothed_per_million": 3.099,
- "total_deaths_per_million": 19.409,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.326,
- "stringency_index": 92.59
- },
- {
- "date": "2020-05-17",
- "total_cases": 914.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 3.143,
- "total_deaths": 17.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1043.499,
- "new_cases_per_million": 4.567,
- "new_cases_smoothed_per_million": 3.588,
- "total_deaths_per_million": 19.409,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.326,
- "stringency_index": 92.59
- },
- {
- "date": "2020-05-18",
- "total_cases": 916.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 17.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1045.783,
- "new_cases_per_million": 2.283,
- "new_cases_smoothed_per_million": 2.936,
- "total_deaths_per_million": 19.409,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 92.59
- },
- {
- "date": "2020-05-19",
- "total_cases": 917.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 17.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1046.924,
- "new_cases_per_million": 1.142,
- "new_cases_smoothed_per_million": 2.61,
- "total_deaths_per_million": 19.409,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 92.59
- },
- {
- "date": "2020-05-20",
- "total_cases": 918.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 17.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1048.066,
- "new_cases_per_million": 1.142,
- "new_cases_smoothed_per_million": 2.446,
- "total_deaths_per_million": 19.409,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 92.59
- },
- {
- "date": "2020-05-21",
- "total_cases": 922.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 17.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1052.633,
- "new_cases_per_million": 4.567,
- "new_cases_smoothed_per_million": 2.773,
- "total_deaths_per_million": 19.409,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-22",
- "total_cases": 923.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 17.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1053.774,
- "new_cases_per_million": 1.142,
- "new_cases_smoothed_per_million": 2.61,
- "total_deaths_per_million": 19.409,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-23",
- "total_cases": 927.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 17.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1058.341,
- "new_cases_per_million": 4.567,
- "new_cases_smoothed_per_million": 2.773,
- "total_deaths_per_million": 19.409,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-24",
- "total_cases": 927.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 17.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1058.341,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.12,
- "total_deaths_per_million": 19.409,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-25",
- "total_cases": 935.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 17.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1067.475,
- "new_cases_per_million": 9.133,
- "new_cases_smoothed_per_million": 3.099,
- "total_deaths_per_million": 19.409,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-26",
- "total_cases": 937.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 17.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1069.758,
- "new_cases_per_million": 2.283,
- "new_cases_smoothed_per_million": 3.262,
- "total_deaths_per_million": 19.409,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-27",
- "total_cases": 939.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 17.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1072.041,
- "new_cases_per_million": 2.283,
- "new_cases_smoothed_per_million": 3.425,
- "total_deaths_per_million": 19.409,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-28",
- "total_cases": 939.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 17.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1072.041,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.773,
- "total_deaths_per_million": 19.409,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-29",
- "total_cases": 941.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 17.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1074.325,
- "new_cases_per_million": 2.283,
- "new_cases_smoothed_per_million": 2.936,
- "total_deaths_per_million": 19.409,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-30",
- "total_cases": 941.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 17.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1074.325,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.283,
- "total_deaths_per_million": 19.409,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-31",
- "total_cases": 943.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 17.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1076.608,
- "new_cases_per_million": 2.283,
- "new_cases_smoothed_per_million": 2.61,
- "total_deaths_per_million": 19.409,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-06-01",
- "total_cases": 944.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 17.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1077.75,
- "new_cases_per_million": 1.142,
- "new_cases_smoothed_per_million": 1.468,
- "total_deaths_per_million": 19.409,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-06-02",
- "total_cases": 949.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 17.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1083.458,
- "new_cases_per_million": 5.708,
- "new_cases_smoothed_per_million": 1.957,
- "total_deaths_per_million": 19.409,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-06-03",
- "total_cases": 952.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 17.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1086.883,
- "new_cases_per_million": 3.425,
- "new_cases_smoothed_per_million": 2.12,
- "total_deaths_per_million": 19.409,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-06-04",
- "total_cases": 958.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 17.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1093.733,
- "new_cases_per_million": 6.85,
- "new_cases_smoothed_per_million": 3.099,
- "total_deaths_per_million": 19.409,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-06-05",
- "total_cases": 958.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 17.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1093.733,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.773,
- "total_deaths_per_million": 19.409,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-06-06",
- "total_cases": 960.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 17.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1096.017,
- "new_cases_per_million": 2.283,
- "new_cases_smoothed_per_million": 3.099,
- "total_deaths_per_million": 19.409,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 76.85
- },
- {
- "date": "2020-06-07",
- "total_cases": 960.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 18.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1096.017,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.773,
- "total_deaths_per_million": 20.55,
- "new_deaths_per_million": 1.142,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 76.85
- },
- {
- "date": "2020-06-08",
- "total_cases": 964.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 18.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1100.584,
- "new_cases_per_million": 4.567,
- "new_cases_smoothed_per_million": 3.262,
- "total_deaths_per_million": 20.55,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 71.3
- },
- {
- "date": "2020-06-09",
- "total_cases": 970.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 18.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1107.434,
- "new_cases_per_million": 6.85,
- "new_cases_smoothed_per_million": 3.425,
- "total_deaths_per_million": 20.55,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-10",
- "total_cases": 972.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 18.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1109.717,
- "new_cases_per_million": 2.283,
- "new_cases_smoothed_per_million": 3.262,
- "total_deaths_per_million": 20.55,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-11",
- "total_cases": 974.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 18.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1112.0,
- "new_cases_per_million": 2.283,
- "new_cases_smoothed_per_million": 2.61,
- "total_deaths_per_million": 20.55,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-12",
- "total_cases": 975.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 18.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1113.142,
- "new_cases_per_million": 1.142,
- "new_cases_smoothed_per_million": 2.773,
- "total_deaths_per_million": 20.55,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-13",
- "total_cases": 980.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 18.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1118.85,
- "new_cases_per_million": 5.708,
- "new_cases_smoothed_per_million": 3.262,
- "total_deaths_per_million": 20.55,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-14",
- "total_cases": 980.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 18.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1118.85,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.262,
- "total_deaths_per_million": 20.55,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-15",
- "total_cases": 983.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 18.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1122.276,
- "new_cases_per_million": 3.425,
- "new_cases_smoothed_per_million": 3.099,
- "total_deaths_per_million": 20.55,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-16",
- "total_cases": 985.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 18.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1124.559,
- "new_cases_per_million": 2.283,
- "new_cases_smoothed_per_million": 2.446,
- "total_deaths_per_million": 20.55,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-17",
- "total_cases": 985.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 18.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1124.559,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.12,
- "total_deaths_per_million": 20.55,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-18",
- "total_cases": 985.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 18.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1124.559,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.794,
- "total_deaths_per_million": 20.55,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-19",
- "total_cases": 985.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 19.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1124.559,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.631,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 1.142,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-20",
- "total_cases": 985.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1124.559,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.815,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-21",
- "total_cases": 985.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1124.559,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.815,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-22",
- "total_cases": 986.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1125.701,
- "new_cases_per_million": 1.142,
- "new_cases_smoothed_per_million": 0.489,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-23",
- "total_cases": 988.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1127.984,
- "new_cases_per_million": 2.283,
- "new_cases_smoothed_per_million": 0.489,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-24",
- "total_cases": 990.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1130.267,
- "new_cases_per_million": 2.283,
- "new_cases_smoothed_per_million": 0.815,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 50.0
- },
- {
- "date": "2020-06-25",
- "total_cases": 991.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1131.409,
- "new_cases_per_million": 1.142,
- "new_cases_smoothed_per_million": 0.979,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 50.0
- },
- {
- "date": "2020-06-26",
- "total_cases": 992.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1132.551,
- "new_cases_per_million": 1.142,
- "new_cases_smoothed_per_million": 1.142,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-06-27",
- "total_cases": 992.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1132.551,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.142,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-06-28",
- "total_cases": 994.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1134.834,
- "new_cases_per_million": 2.283,
- "new_cases_smoothed_per_million": 1.468,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-06-29",
- "total_cases": 994.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1134.834,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.305,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-06-30",
- "total_cases": 996.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1137.117,
- "new_cases_per_million": 2.283,
- "new_cases_smoothed_per_million": 1.305,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-07-01",
- "total_cases": 998.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1139.401,
- "new_cases_per_million": 2.283,
- "new_cases_smoothed_per_million": 1.305,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-07-02",
- "total_cases": 999.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1140.542,
- "new_cases_per_million": 1.142,
- "new_cases_smoothed_per_million": 1.305,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-07-03",
- "total_cases": 999.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1140.542,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.142,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-07-04",
- "total_cases": 999.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1140.542,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.142,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-07-05",
- "total_cases": 1002.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1143.968,
- "new_cases_per_million": 3.425,
- "new_cases_smoothed_per_million": 1.305,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-07-06",
- "total_cases": 1003.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1145.109,
- "new_cases_per_million": 1.142,
- "new_cases_smoothed_per_million": 1.468,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-07-07",
- "total_cases": 1004.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1146.251,
- "new_cases_per_million": 1.142,
- "new_cases_smoothed_per_million": 1.305,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-07-08",
- "total_cases": 1005.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1147.393,
- "new_cases_per_million": 1.142,
- "new_cases_smoothed_per_million": 1.142,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-07-09",
- "total_cases": 1008.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1150.818,
- "new_cases_per_million": 3.425,
- "new_cases_smoothed_per_million": 1.468,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-07-10",
- "total_cases": 1010.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1153.101,
- "new_cases_per_million": 2.283,
- "new_cases_smoothed_per_million": 1.794,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-07-11",
- "total_cases": 1013.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1156.526,
- "new_cases_per_million": 3.425,
- "new_cases_smoothed_per_million": 2.283,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-07-12",
- "total_cases": 1014.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1157.668,
- "new_cases_per_million": 1.142,
- "new_cases_smoothed_per_million": 1.957,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-07-13",
- "total_cases": 1021.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1165.66,
- "new_cases_per_million": 7.992,
- "new_cases_smoothed_per_million": 2.936,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-07-14",
- "total_cases": 1022.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1166.801,
- "new_cases_per_million": 1.142,
- "new_cases_smoothed_per_million": 2.936,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-07-15",
- "total_cases": 1022.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1166.801,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.773,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-07-16",
- "total_cases": 1023.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1167.943,
- "new_cases_per_million": 1.142,
- "new_cases_smoothed_per_million": 2.446,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-07-17",
- "total_cases": 1031.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1177.076,
- "new_cases_per_million": 9.133,
- "new_cases_smoothed_per_million": 3.425,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-07-18",
- "total_cases": 1031.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1177.076,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.936,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-07-19",
- "total_cases": 1037.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1183.926,
- "new_cases_per_million": 6.85,
- "new_cases_smoothed_per_million": 3.751,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-07-20",
- "total_cases": 1038.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1185.068,
- "new_cases_per_million": 1.142,
- "new_cases_smoothed_per_million": 2.773,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-07-21",
- "total_cases": 1038.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1185.068,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.61,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-07-22",
- "total_cases": 1040.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1187.352,
- "new_cases_per_million": 2.283,
- "new_cases_smoothed_per_million": 2.936,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-07-23",
- "total_cases": 1040.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1187.352,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.773,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-07-24",
- "total_cases": 1045.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1193.06,
- "new_cases_per_million": 5.708,
- "new_cases_smoothed_per_million": 2.283,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-07-25",
- "total_cases": 1047.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1195.343,
- "new_cases_per_million": 2.283,
- "new_cases_smoothed_per_million": 2.61,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-07-26",
- "total_cases": 1053.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1202.193,
- "new_cases_per_million": 6.85,
- "new_cases_smoothed_per_million": 2.61,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-07-27",
- "total_cases": 1057.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1206.76,
- "new_cases_per_million": 4.567,
- "new_cases_smoothed_per_million": 3.099,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-07-28",
- "total_cases": 1060.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 3.143,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1210.185,
- "new_cases_per_million": 3.425,
- "new_cases_smoothed_per_million": 3.588,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-07-29",
- "total_cases": 1067.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 3.857,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1218.177,
- "new_cases_per_million": 7.992,
- "new_cases_smoothed_per_million": 4.404,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-07-30",
- "total_cases": 1080.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 5.714,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1233.019,
- "new_cases_per_million": 14.842,
- "new_cases_smoothed_per_million": 6.524,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-07-31",
- "total_cases": 1084.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1237.586,
- "new_cases_per_million": 4.567,
- "new_cases_smoothed_per_million": 6.361,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-01",
- "total_cases": 1114.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 9.571,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1271.836,
- "new_cases_per_million": 34.251,
- "new_cases_smoothed_per_million": 10.928,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-02",
- "total_cases": 1124.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 10.143,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1283.253,
- "new_cases_per_million": 11.417,
- "new_cases_smoothed_per_million": 11.58,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-03",
- "total_cases": 1150.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 13.286,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1312.937,
- "new_cases_per_million": 29.684,
- "new_cases_smoothed_per_million": 15.168,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-04",
- "total_cases": 1155.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 13.571,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1318.645,
- "new_cases_per_million": 5.708,
- "new_cases_smoothed_per_million": 15.494,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-05",
- "total_cases": 1180.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 16.143,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1347.187,
- "new_cases_per_million": 28.542,
- "new_cases_smoothed_per_million": 18.43,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-06",
- "total_cases": 1195.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 16.429,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1364.313,
- "new_cases_per_million": 17.125,
- "new_cases_smoothed_per_million": 18.756,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-07",
- "total_cases": 1208.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 17.714,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1379.154,
- "new_cases_per_million": 14.842,
- "new_cases_smoothed_per_million": 20.224,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-08",
- "total_cases": 1222.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 15.429,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1395.138,
- "new_cases_per_million": 15.984,
- "new_cases_smoothed_per_million": 17.615,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-09",
- "total_cases": 1233.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 15.571,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1407.697,
- "new_cases_per_million": 12.559,
- "new_cases_smoothed_per_million": 17.778,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-10",
- "total_cases": 1242.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 13.143,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1417.972,
- "new_cases_per_million": 10.275,
- "new_cases_smoothed_per_million": 15.005,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-11",
- "total_cases": 1252.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 13.857,
- "total_deaths": 19.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1429.389,
- "new_cases_per_million": 11.417,
- "new_cases_smoothed_per_million": 15.82,
- "total_deaths_per_million": 21.692,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-12",
- "total_cases": 1277.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 13.857,
- "total_deaths": 20.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1457.931,
- "new_cases_per_million": 28.542,
- "new_cases_smoothed_per_million": 15.82,
- "total_deaths_per_million": 22.834,
- "new_deaths_per_million": 1.142,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-13",
- "total_cases": 1291.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 13.714,
- "total_deaths": 20.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1473.914,
- "new_cases_per_million": 15.984,
- "new_cases_smoothed_per_million": 15.657,
- "total_deaths_per_million": 22.834,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-14",
- "total_cases": 1305.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 13.857,
- "total_deaths": 20.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1489.898,
- "new_cases_per_million": 15.984,
- "new_cases_smoothed_per_million": 15.82,
- "total_deaths_per_million": 22.834,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-15",
- "total_cases": 1318.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 13.714,
- "total_deaths": 20.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1504.74,
- "new_cases_per_million": 14.842,
- "new_cases_smoothed_per_million": 15.657,
- "total_deaths_per_million": 22.834,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-16",
- "total_cases": 1332.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 14.143,
- "total_deaths": 20.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1520.723,
- "new_cases_per_million": 15.984,
- "new_cases_smoothed_per_million": 16.147,
- "total_deaths_per_million": 22.834,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-17",
- "total_cases": 1332.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 12.857,
- "total_deaths": 20.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1520.723,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 14.679,
- "total_deaths_per_million": 22.834,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-18",
- "total_cases": 1351.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 14.143,
- "total_deaths": 20.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1542.415,
- "new_cases_per_million": 21.692,
- "new_cases_smoothed_per_million": 16.147,
- "total_deaths_per_million": 22.834,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-19",
- "total_cases": 1359.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 11.714,
- "total_deaths": 20.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1551.549,
- "new_cases_per_million": 9.133,
- "new_cases_smoothed_per_million": 13.374,
- "total_deaths_per_million": 22.834,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-20",
- "total_cases": 1385.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 13.429,
- "total_deaths": 21.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1581.233,
- "new_cases_per_million": 29.684,
- "new_cases_smoothed_per_million": 15.331,
- "total_deaths_per_million": 23.975,
- "new_deaths_per_million": 1.142,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-21",
- "total_cases": 1395.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 12.857,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1592.649,
- "new_cases_per_million": 11.417,
- "new_cases_smoothed_per_million": 14.679,
- "total_deaths_per_million": 23.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 47.22
- },
- {
- "date": "2020-08-22",
- "total_cases": 1406.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 12.571,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1605.208,
- "new_cases_per_million": 12.559,
- "new_cases_smoothed_per_million": 14.353,
- "total_deaths_per_million": 23.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 50.0
- },
- {
- "date": "2020-08-23",
- "total_cases": 1417.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 12.143,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1617.766,
- "new_cases_per_million": 12.559,
- "new_cases_smoothed_per_million": 13.863,
- "total_deaths_per_million": 23.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 50.0
- },
- {
- "date": "2020-08-24",
- "total_cases": 1421.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 12.714,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1622.333,
- "new_cases_per_million": 4.567,
- "new_cases_smoothed_per_million": 14.516,
- "total_deaths_per_million": 23.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 50.0
- },
- {
- "date": "2020-08-25",
- "total_cases": 1451.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 14.286,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1656.584,
- "new_cases_per_million": 34.251,
- "new_cases_smoothed_per_million": 16.31,
- "total_deaths_per_million": 23.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 50.0
- },
- {
- "date": "2020-08-26",
- "total_cases": 1474.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 16.429,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1682.842,
- "new_cases_per_million": 26.259,
- "new_cases_smoothed_per_million": 18.756,
- "total_deaths_per_million": 23.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 50.0
- },
- {
- "date": "2020-08-27",
- "total_cases": 1481.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 13.714,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1690.834,
- "new_cases_per_million": 7.992,
- "new_cases_smoothed_per_million": 15.657,
- "total_deaths_per_million": 23.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-08-28",
- "total_cases": 1481.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 12.286,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1690.834,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 14.026,
- "total_deaths_per_million": 23.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-08-29",
- "total_cases": 1481.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 10.714,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1690.834,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 12.232,
- "total_deaths_per_million": 23.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-08-30",
- "total_cases": 1483.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 9.429,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1693.118,
- "new_cases_per_million": 2.283,
- "new_cases_smoothed_per_million": 10.764,
- "total_deaths_per_million": 23.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-08-31",
- "total_cases": 1487.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 9.429,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1697.684,
- "new_cases_per_million": 4.567,
- "new_cases_smoothed_per_million": 10.764,
- "total_deaths_per_million": 23.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-09-01",
- "total_cases": 1488.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 5.286,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1698.826,
- "new_cases_per_million": 1.142,
- "new_cases_smoothed_per_million": 6.035,
- "total_deaths_per_million": 23.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-09-02",
- "total_cases": 1490.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1701.109,
- "new_cases_per_million": 2.283,
- "new_cases_smoothed_per_million": 2.61,
- "total_deaths_per_million": 23.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-09-03",
- "total_cases": 1495.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1706.818,
- "new_cases_per_million": 5.708,
- "new_cases_smoothed_per_million": 2.283,
- "total_deaths_per_million": 23.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-09-04",
- "total_cases": 1498.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1710.243,
- "new_cases_per_million": 3.425,
- "new_cases_smoothed_per_million": 2.773,
- "total_deaths_per_million": 23.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-09-05",
- "total_cases": 1498.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1710.243,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.773,
- "total_deaths_per_million": 23.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-09-06",
- "total_cases": 1507.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 3.429,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1720.518,
- "new_cases_per_million": 10.275,
- "new_cases_smoothed_per_million": 3.914,
- "total_deaths_per_million": 23.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-09-07",
- "total_cases": 1509.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 3.143,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1722.801,
- "new_cases_per_million": 2.283,
- "new_cases_smoothed_per_million": 3.588,
- "total_deaths_per_million": 23.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 50.0
- },
- {
- "date": "2020-09-08",
- "total_cases": 1510.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 3.143,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1723.943,
- "new_cases_per_million": 1.142,
- "new_cases_smoothed_per_million": 3.588,
- "total_deaths_per_million": 23.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 55.56
- },
- {
- "date": "2020-09-09",
- "total_cases": 1511.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1725.085,
- "new_cases_per_million": 1.142,
- "new_cases_smoothed_per_million": 3.425,
- "total_deaths_per_million": 23.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 55.56
- },
- {
- "date": "2020-09-10",
- "total_cases": 1514.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1728.51,
- "new_cases_per_million": 3.425,
- "new_cases_smoothed_per_million": 3.099,
- "total_deaths_per_million": 23.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 55.56
- },
- {
- "date": "2020-09-11",
- "total_cases": 1517.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1731.935,
- "new_cases_per_million": 3.425,
- "new_cases_smoothed_per_million": 3.099,
- "total_deaths_per_million": 23.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 55.56
- },
- {
- "date": "2020-09-12",
- "total_cases": 1520.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 3.143,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1735.36,
- "new_cases_per_million": 3.425,
- "new_cases_smoothed_per_million": 3.588,
- "total_deaths_per_million": 23.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 55.56
- },
- {
- "date": "2020-09-13",
- "total_cases": 1523.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1738.785,
- "new_cases_per_million": 3.425,
- "new_cases_smoothed_per_million": 2.61,
- "total_deaths_per_million": 23.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 55.56
- },
- {
- "date": "2020-09-14",
- "total_cases": 1526.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 21.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1742.21,
- "new_cases_per_million": 3.425,
- "new_cases_smoothed_per_million": 2.773,
- "total_deaths_per_million": 23.975,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 53.7
- },
- {
- "date": "2020-09-15",
- "total_cases": 1534.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 3.429,
- "total_deaths": 22.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1751.343,
- "new_cases_per_million": 9.133,
- "new_cases_smoothed_per_million": 3.914,
- "total_deaths_per_million": 25.117,
- "new_deaths_per_million": 1.142,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 53.7
- },
- {
- "date": "2020-09-16",
- "total_cases": 1540.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 22.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1758.194,
- "new_cases_per_million": 6.85,
- "new_cases_smoothed_per_million": 4.73,
- "total_deaths_per_million": 25.117,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 53.7
- },
- {
- "date": "2020-09-17",
- "total_cases": 1548.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 4.857,
- "total_deaths": 22.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1767.327,
- "new_cases_per_million": 9.133,
- "new_cases_smoothed_per_million": 5.545,
- "total_deaths_per_million": 25.117,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 53.7
- },
- {
- "date": "2020-09-18",
- "total_cases": 1558.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 5.857,
- "total_deaths": 22.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1778.744,
- "new_cases_per_million": 11.417,
- "new_cases_smoothed_per_million": 6.687,
- "total_deaths_per_million": 25.117,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 53.7
- },
- {
- "date": "2020-09-19",
- "total_cases": 1565.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 6.429,
- "total_deaths": 22.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1786.736,
- "new_cases_per_million": 7.992,
- "new_cases_smoothed_per_million": 7.339,
- "total_deaths_per_million": 25.117,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 53.7
- },
- {
- "date": "2020-09-20",
- "total_cases": 1580.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 8.143,
- "total_deaths": 22.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1803.861,
- "new_cases_per_million": 17.125,
- "new_cases_smoothed_per_million": 9.297,
- "total_deaths_per_million": 25.117,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 53.7
- },
- {
- "date": "2020-09-21",
- "total_cases": 1600.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 10.571,
- "total_deaths": 22.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1826.695,
- "new_cases_per_million": 22.834,
- "new_cases_smoothed_per_million": 12.069,
- "total_deaths_per_million": 25.117,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 53.7
- },
- {
- "date": "2020-09-22",
- "total_cases": 1603.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 9.857,
- "total_deaths": 22.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1830.12,
- "new_cases_per_million": 3.425,
- "new_cases_smoothed_per_million": 11.254,
- "total_deaths_per_million": 25.117,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 53.7
- },
- {
- "date": "2020-09-23",
- "total_cases": 1618.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 11.143,
- "total_deaths": 22.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1847.245,
- "new_cases_per_million": 17.125,
- "new_cases_smoothed_per_million": 12.722,
- "total_deaths_per_million": 25.117,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 53.7
- },
- {
- "date": "2020-09-24",
- "total_cases": 1654.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 15.143,
- "total_deaths": 22.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1888.346,
- "new_cases_per_million": 41.101,
- "new_cases_smoothed_per_million": 17.288,
- "total_deaths_per_million": 25.117,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 53.7
- },
- {
- "date": "2020-09-25",
- "total_cases": 1663.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 15.0,
- "total_deaths": 22.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1898.621,
- "new_cases_per_million": 10.275,
- "new_cases_smoothed_per_million": 17.125,
- "total_deaths_per_million": 25.117,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- }
- ]
- },
- "CZE": {
- "continent": "Europe",
- "location": "Czech Republic",
- "population": 10708982.0,
- "population_density": 137.176,
- "median_age": 43.3,
- "aged_65_older": 19.027,
- "aged_70_older": 11.58,
- "gdp_per_capita": 32605.906,
- "cardiovasc_death_rate": 227.485,
- "diabetes_prevalence": 6.82,
- "female_smokers": 30.5,
- "male_smokers": 38.3,
- "hospital_beds_per_thousand": 6.63,
- "life_expectancy": 79.38,
- "human_development_index": 0.888,
- "data": [
- {
- "date": "2019-12-31",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-01-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-02",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-03",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-04",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-05",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-06",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-07",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-08",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-09",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-10",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-11",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-12",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-13",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-14",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-15",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-16",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-17",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-18",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-19",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-20",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-21",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-22",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-23",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-24",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-01-25",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-01-26",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-01-27",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "total_tests": 20.0,
- "total_tests_per_thousand": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-01-28",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 8.0,
- "total_tests": 28.0,
- "total_tests_per_thousand": 0.003,
- "new_tests_per_thousand": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-01-29",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 5.0,
- "total_tests": 33.0,
- "total_tests_per_thousand": 0.003,
- "new_tests_per_thousand": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-01-30",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1.0,
- "total_tests": 34.0,
- "total_tests_per_thousand": 0.003,
- "new_tests_per_thousand": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 16.67
- },
- {
- "date": "2020-01-31",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 3.0,
- "total_tests": 37.0,
- "total_tests_per_thousand": 0.003,
- "new_tests_per_thousand": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1.0,
- "total_tests": 38.0,
- "total_tests_per_thousand": 0.004,
- "new_tests_per_thousand": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-02",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 5.0,
- "total_tests": 43.0,
- "total_tests_per_thousand": 0.004,
- "new_tests_per_thousand": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-03",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 5.0,
- "total_tests": 48.0,
- "total_tests_per_thousand": 0.004,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 4.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-04",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 5.0,
- "total_tests": 53.0,
- "total_tests_per_thousand": 0.005,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 4.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-05",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 3.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-06",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "total_tests": 56.0,
- "total_tests_per_thousand": 0.005,
- "new_tests_smoothed": 3.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-07",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 6.0,
- "total_tests": 62.0,
- "total_tests_per_thousand": 0.006,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 4.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-08",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 4.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-09",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "total_tests": 64.0,
- "total_tests_per_thousand": 0.006,
- "new_tests_smoothed": 3.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-10",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 8.0,
- "total_tests": 72.0,
- "total_tests_per_thousand": 0.007,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 3.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-11",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 2.0,
- "total_tests": 74.0,
- "total_tests_per_thousand": 0.007,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 3.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-12",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1.0,
- "total_tests": 75.0,
- "total_tests_per_thousand": 0.007,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 3.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-13",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1.0,
- "total_tests": 76.0,
- "total_tests_per_thousand": 0.007,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 3.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-14",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 2.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-15",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "total_tests": 77.0,
- "total_tests_per_thousand": 0.007,
- "new_tests_smoothed": 2.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-16",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1.0,
- "total_tests": 78.0,
- "total_tests_per_thousand": 0.007,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 2.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-17",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 2.0,
- "total_tests": 80.0,
- "total_tests_per_thousand": 0.007,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 1.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-18",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 1.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-19",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "total_tests": 82.0,
- "total_tests_per_thousand": 0.008,
- "new_tests_smoothed": 1.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-20",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 1.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-21",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 1.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-22",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "total_tests": 83.0,
- "total_tests_per_thousand": 0.008,
- "new_tests_smoothed": 1.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-23",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 3.0,
- "total_tests": 86.0,
- "total_tests_per_thousand": 0.008,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 1.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-24",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 12.0,
- "total_tests": 98.0,
- "total_tests_per_thousand": 0.009,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 3.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-25",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 14.0,
- "total_tests": 112.0,
- "total_tests_per_thousand": 0.01,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 4.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-26",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 23.0,
- "total_tests": 135.0,
- "total_tests_per_thousand": 0.013,
- "new_tests_per_thousand": 0.002,
- "new_tests_smoothed": 8.0,
- "new_tests_smoothed_per_thousand": 0.001,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-27",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 35.0,
- "total_tests": 170.0,
- "total_tests_per_thousand": 0.016,
- "new_tests_per_thousand": 0.003,
- "new_tests_smoothed": 13.0,
- "new_tests_smoothed_per_thousand": 0.001,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-28",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 23.0,
- "total_tests": 193.0,
- "total_tests_per_thousand": 0.018,
- "new_tests_per_thousand": 0.002,
- "new_tests_smoothed": 16.0,
- "new_tests_smoothed_per_thousand": 0.001,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-29",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 7.0,
- "total_tests": 200.0,
- "total_tests_per_thousand": 0.019,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 17.0,
- "new_tests_smoothed_per_thousand": 0.002,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 11.0,
- "total_tests": 211.0,
- "total_tests_per_thousand": 0.02,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 18.0,
- "new_tests_smoothed_per_thousand": 0.002,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-02",
- "total_cases": 3.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.28,
- "new_cases_per_million": 0.28,
- "new_cases_smoothed_per_million": 0.04,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 51.0,
- "total_tests": 262.0,
- "total_tests_per_thousand": 0.024,
- "new_tests_per_thousand": 0.005,
- "new_tests_smoothed": 23.0,
- "new_tests_smoothed_per_thousand": 0.002,
- "tests_per_case": 53.667,
- "positive_rate": 0.019,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-03",
- "total_cases": 5.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.467,
- "new_cases_per_million": 0.187,
- "new_cases_smoothed_per_million": 0.067,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 78.0,
- "total_tests": 340.0,
- "total_tests_per_thousand": 0.032,
- "new_tests_per_thousand": 0.007,
- "new_tests_smoothed": 33.0,
- "new_tests_smoothed_per_thousand": 0.003,
- "tests_per_case": 46.2,
- "positive_rate": 0.022000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-04",
- "total_cases": 5.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.467,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.067,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 67.0,
- "total_tests": 407.0,
- "total_tests_per_thousand": 0.038,
- "new_tests_per_thousand": 0.006,
- "new_tests_smoothed": 39.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_per_case": 54.6,
- "positive_rate": 0.018000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-05",
- "total_cases": 8.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.747,
- "new_cases_per_million": 0.28,
- "new_cases_smoothed_per_million": 0.107,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 76.0,
- "total_tests": 483.0,
- "total_tests_per_thousand": 0.045,
- "new_tests_per_thousand": 0.007,
- "new_tests_smoothed": 45.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_per_case": 39.375,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-06",
- "total_cases": 12.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.121,
- "new_cases_per_million": 0.374,
- "new_cases_smoothed_per_million": 0.16,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 111.0,
- "total_tests": 594.0,
- "total_tests_per_thousand": 0.055,
- "new_tests_per_thousand": 0.01,
- "new_tests_smoothed": 57.0,
- "new_tests_smoothed_per_thousand": 0.005,
- "tests_per_case": 33.25,
- "positive_rate": 0.03,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-07",
- "total_cases": 19.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.774,
- "new_cases_per_million": 0.654,
- "new_cases_smoothed_per_million": 0.253,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 193.0,
- "total_tests": 787.0,
- "total_tests_per_thousand": 0.073,
- "new_tests_per_thousand": 0.018,
- "new_tests_smoothed": 84.0,
- "new_tests_smoothed_per_thousand": 0.008,
- "tests_per_case": 30.947,
- "positive_rate": 0.032,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-08",
- "total_cases": 26.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.428,
- "new_cases_per_million": 0.654,
- "new_cases_smoothed_per_million": 0.347,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 141.0,
- "total_tests": 928.0,
- "total_tests_per_thousand": 0.087,
- "new_tests_per_thousand": 0.013,
- "new_tests_smoothed": 102.0,
- "new_tests_smoothed_per_thousand": 0.01,
- "tests_per_case": 27.462,
- "positive_rate": 0.036000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-09",
- "total_cases": 32.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.988,
- "new_cases_per_million": 0.56,
- "new_cases_smoothed_per_million": 0.387,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 265.0,
- "total_tests": 1193.0,
- "total_tests_per_thousand": 0.111,
- "new_tests_per_thousand": 0.025,
- "new_tests_smoothed": 133.0,
- "new_tests_smoothed_per_thousand": 0.012,
- "tests_per_case": 32.103,
- "positive_rate": 0.031,
- "tests_units": "tests performed",
- "stringency_index": 19.44
- },
- {
- "date": "2020-03-10",
- "total_cases": 40.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 5.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.735,
- "new_cases_per_million": 0.747,
- "new_cases_smoothed_per_million": 0.467,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 165.0,
- "total_tests": 1358.0,
- "total_tests_per_thousand": 0.127,
- "new_tests_per_thousand": 0.015,
- "new_tests_smoothed": 145.0,
- "new_tests_smoothed_per_thousand": 0.014,
- "tests_per_case": 29.0,
- "positive_rate": 0.034,
- "tests_units": "tests performed",
- "stringency_index": 25.0
- },
- {
- "date": "2020-03-11",
- "total_cases": 63.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 8.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5.883,
- "new_cases_per_million": 2.148,
- "new_cases_smoothed_per_million": 0.774,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 458.0,
- "total_tests": 1816.0,
- "total_tests_per_thousand": 0.17,
- "new_tests_per_thousand": 0.043,
- "new_tests_smoothed": 201.0,
- "new_tests_smoothed_per_thousand": 0.019,
- "tests_per_case": 24.259,
- "positive_rate": 0.040999999999999995,
- "tests_units": "tests performed",
- "stringency_index": 47.22
- },
- {
- "date": "2020-03-12",
- "total_cases": 94.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 12.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 8.778,
- "new_cases_per_million": 2.895,
- "new_cases_smoothed_per_million": 1.147,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 537.0,
- "total_tests": 2353.0,
- "total_tests_per_thousand": 0.22,
- "new_tests_per_thousand": 0.05,
- "new_tests_smoothed": 267.0,
- "new_tests_smoothed_per_thousand": 0.025,
- "tests_per_case": 21.733,
- "positive_rate": 0.046,
- "tests_units": "tests performed",
- "stringency_index": 50.0
- },
- {
- "date": "2020-03-13",
- "total_cases": 116.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 14.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.832,
- "new_cases_per_million": 2.054,
- "new_cases_smoothed_per_million": 1.387,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 845.0,
- "total_tests": 3198.0,
- "total_tests_per_thousand": 0.299,
- "new_tests_per_thousand": 0.079,
- "new_tests_smoothed": 372.0,
- "new_tests_smoothed_per_thousand": 0.035,
- "tests_per_case": 25.038,
- "positive_rate": 0.04,
- "tests_units": "tests performed",
- "stringency_index": 57.41
- },
- {
- "date": "2020-03-14",
- "total_cases": 150.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 18.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 14.007,
- "new_cases_per_million": 3.175,
- "new_cases_smoothed_per_million": 1.748,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 986.0,
- "total_tests": 4184.0,
- "total_tests_per_thousand": 0.391,
- "new_tests_per_thousand": 0.092,
- "new_tests_smoothed": 485.0,
- "new_tests_smoothed_per_thousand": 0.045,
- "tests_per_case": 25.916,
- "positive_rate": 0.039,
- "tests_units": "tests performed",
- "stringency_index": 61.11
- },
- {
- "date": "2020-03-15",
- "total_cases": 214.0,
- "new_cases": 64.0,
- "new_cases_smoothed": 26.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 19.983,
- "new_cases_per_million": 5.976,
- "new_cases_smoothed_per_million": 2.508,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1028.0,
- "total_tests": 5212.0,
- "total_tests_per_thousand": 0.487,
- "new_tests_per_thousand": 0.096,
- "new_tests_smoothed": 612.0,
- "new_tests_smoothed_per_thousand": 0.057,
- "tests_per_case": 22.787,
- "positive_rate": 0.044000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 68.52
- },
- {
- "date": "2020-03-16",
- "total_cases": 298.0,
- "new_cases": 84.0,
- "new_cases_smoothed": 38.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 27.827,
- "new_cases_per_million": 7.844,
- "new_cases_smoothed_per_million": 3.548,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1319.0,
- "total_tests": 6531.0,
- "total_tests_per_thousand": 0.61,
- "new_tests_per_thousand": 0.123,
- "new_tests_smoothed": 763.0,
- "new_tests_smoothed_per_thousand": 0.071,
- "tests_per_case": 20.079,
- "positive_rate": 0.05,
- "tests_units": "tests performed",
- "stringency_index": 79.63
- },
- {
- "date": "2020-03-17",
- "total_cases": 344.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 43.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 32.123,
- "new_cases_per_million": 4.295,
- "new_cases_smoothed_per_million": 4.055,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1294.0,
- "total_tests": 7825.0,
- "total_tests_per_thousand": 0.731,
- "new_tests_per_thousand": 0.121,
- "new_tests_smoothed": 924.0,
- "new_tests_smoothed_per_thousand": 0.086,
- "tests_per_case": 21.276,
- "positive_rate": 0.047,
- "tests_units": "tests performed",
- "stringency_index": 79.63
- },
- {
- "date": "2020-03-18",
- "total_cases": 434.0,
- "new_cases": 90.0,
- "new_cases_smoothed": 53.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 40.527,
- "new_cases_per_million": 8.404,
- "new_cases_smoothed_per_million": 4.949,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1756.0,
- "total_tests": 9581.0,
- "total_tests_per_thousand": 0.895,
- "new_tests_per_thousand": 0.164,
- "new_tests_smoothed": 1109.0,
- "new_tests_smoothed_per_thousand": 0.104,
- "tests_per_case": 20.925,
- "positive_rate": 0.048,
- "tests_units": "tests performed",
- "stringency_index": 79.63
- },
- {
- "date": "2020-03-19",
- "total_cases": 522.0,
- "new_cases": 88.0,
- "new_cases_smoothed": 61.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 48.744,
- "new_cases_per_million": 8.217,
- "new_cases_smoothed_per_million": 5.709,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 2259.0,
- "total_tests": 11840.0,
- "total_tests_per_thousand": 1.106,
- "new_tests_per_thousand": 0.211,
- "new_tests_smoothed": 1355.0,
- "new_tests_smoothed_per_thousand": 0.127,
- "tests_per_case": 22.160999999999998,
- "positive_rate": 0.045,
- "tests_units": "tests performed",
- "stringency_index": 79.63
- },
- {
- "date": "2020-03-20",
- "total_cases": 694.0,
- "new_cases": 172.0,
- "new_cases_smoothed": 82.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 64.805,
- "new_cases_per_million": 16.061,
- "new_cases_smoothed_per_million": 7.71,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 2121.0,
- "total_tests": 13961.0,
- "total_tests_per_thousand": 1.304,
- "new_tests_per_thousand": 0.198,
- "new_tests_smoothed": 1538.0,
- "new_tests_smoothed_per_thousand": 0.144,
- "tests_per_case": 18.625999999999998,
- "positive_rate": 0.054000000000000006,
- "tests_units": "tests performed",
- "stringency_index": 79.63
- },
- {
- "date": "2020-03-21",
- "total_cases": 904.0,
- "new_cases": 210.0,
- "new_cases_smoothed": 107.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 84.415,
- "new_cases_per_million": 19.61,
- "new_cases_smoothed_per_million": 10.058,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1882.0,
- "total_tests": 15843.0,
- "total_tests_per_thousand": 1.479,
- "new_tests_per_thousand": 0.176,
- "new_tests_smoothed": 1666.0,
- "new_tests_smoothed_per_thousand": 0.156,
- "tests_per_case": 15.467,
- "positive_rate": 0.065,
- "tests_units": "tests performed",
- "stringency_index": 79.63
- },
- {
- "date": "2020-03-22",
- "total_cases": 995.0,
- "new_cases": 91.0,
- "new_cases_smoothed": 111.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 92.913,
- "new_cases_per_million": 8.498,
- "new_cases_smoothed_per_million": 10.418,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1801.0,
- "total_tests": 17644.0,
- "total_tests_per_thousand": 1.648,
- "new_tests_per_thousand": 0.168,
- "new_tests_smoothed": 1776.0,
- "new_tests_smoothed_per_thousand": 0.166,
- "tests_per_case": 15.918,
- "positive_rate": 0.063,
- "tests_units": "tests performed",
- "stringency_index": 79.63
- },
- {
- "date": "2020-03-23",
- "total_cases": 1165.0,
- "new_cases": 170.0,
- "new_cases_smoothed": 123.857,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 108.787,
- "new_cases_per_million": 15.875,
- "new_cases_smoothed_per_million": 11.566,
- "total_deaths_per_million": 0.093,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 2291.0,
- "total_tests": 19935.0,
- "total_tests_per_thousand": 1.862,
- "new_tests_per_thousand": 0.214,
- "new_tests_smoothed": 1915.0,
- "new_tests_smoothed_per_thousand": 0.179,
- "tests_per_case": 15.460999999999999,
- "positive_rate": 0.065,
- "tests_units": "tests performed",
- "stringency_index": 82.41
- },
- {
- "date": "2020-03-24",
- "total_cases": 1236.0,
- "new_cases": 71.0,
- "new_cases_smoothed": 127.429,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 115.417,
- "new_cases_per_million": 6.63,
- "new_cases_smoothed_per_million": 11.899,
- "total_deaths_per_million": 0.093,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 3062.0,
- "total_tests": 22997.0,
- "total_tests_per_thousand": 2.147,
- "new_tests_per_thousand": 0.286,
- "new_tests_smoothed": 2167.0,
- "new_tests_smoothed_per_thousand": 0.202,
- "tests_per_case": 17.006,
- "positive_rate": 0.059000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 82.41
- },
- {
- "date": "2020-03-25",
- "total_cases": 1394.0,
- "new_cases": 158.0,
- "new_cases_smoothed": 137.143,
- "total_deaths": 3.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 130.171,
- "new_cases_per_million": 14.754,
- "new_cases_smoothed_per_million": 12.806,
- "total_deaths_per_million": 0.28,
- "new_deaths_per_million": 0.187,
- "new_deaths_smoothed_per_million": 0.04,
- "new_tests": 4107.0,
- "total_tests": 27104.0,
- "total_tests_per_thousand": 2.531,
- "new_tests_per_thousand": 0.384,
- "new_tests_smoothed": 2503.0,
- "new_tests_smoothed_per_thousand": 0.234,
- "tests_per_case": 18.250999999999998,
- "positive_rate": 0.055,
- "tests_units": "tests performed",
- "stringency_index": 82.41
- },
- {
- "date": "2020-03-26",
- "total_cases": 1654.0,
- "new_cases": 260.0,
- "new_cases_smoothed": 161.714,
- "total_deaths": 6.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 154.45,
- "new_cases_per_million": 24.279,
- "new_cases_smoothed_per_million": 15.101,
- "total_deaths_per_million": 0.56,
- "new_deaths_per_million": 0.28,
- "new_deaths_smoothed_per_million": 0.08,
- "new_tests": 4633.0,
- "total_tests": 31737.0,
- "total_tests_per_thousand": 2.964,
- "new_tests_per_thousand": 0.433,
- "new_tests_smoothed": 2842.0,
- "new_tests_smoothed_per_thousand": 0.265,
- "tests_per_case": 17.574,
- "positive_rate": 0.057,
- "tests_units": "tests performed",
- "stringency_index": 82.41
- },
- {
- "date": "2020-03-27",
- "total_cases": 2062.0,
- "new_cases": 408.0,
- "new_cases_smoothed": 195.429,
- "total_deaths": 9.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 192.549,
- "new_cases_per_million": 38.099,
- "new_cases_smoothed_per_million": 18.249,
- "total_deaths_per_million": 0.84,
- "new_deaths_per_million": 0.28,
- "new_deaths_smoothed_per_million": 0.12,
- "new_tests": 5359.0,
- "total_tests": 37096.0,
- "total_tests_per_thousand": 3.464,
- "new_tests_per_thousand": 0.5,
- "new_tests_smoothed": 3305.0,
- "new_tests_smoothed_per_thousand": 0.309,
- "tests_per_case": 16.912,
- "positive_rate": 0.059000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 82.41
- },
- {
- "date": "2020-03-28",
- "total_cases": 2279.0,
- "new_cases": 217.0,
- "new_cases_smoothed": 196.429,
- "total_deaths": 9.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 212.812,
- "new_cases_per_million": 20.263,
- "new_cases_smoothed_per_million": 18.342,
- "total_deaths_per_million": 0.84,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.12,
- "new_tests": 4224.0,
- "total_tests": 41320.0,
- "total_tests_per_thousand": 3.858,
- "new_tests_per_thousand": 0.394,
- "new_tests_smoothed": 3640.0,
- "new_tests_smoothed_per_thousand": 0.34,
- "tests_per_case": 18.531,
- "positive_rate": 0.054000000000000006,
- "tests_units": "tests performed",
- "stringency_index": 82.41
- },
- {
- "date": "2020-03-29",
- "total_cases": 2663.0,
- "new_cases": 384.0,
- "new_cases_smoothed": 238.286,
- "total_deaths": 11.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 248.67,
- "new_cases_per_million": 35.858,
- "new_cases_smoothed_per_million": 22.251,
- "total_deaths_per_million": 1.027,
- "new_deaths_per_million": 0.187,
- "new_deaths_smoothed_per_million": 0.147,
- "new_tests": 2848.0,
- "total_tests": 44168.0,
- "total_tests_per_thousand": 4.124,
- "new_tests_per_thousand": 0.266,
- "new_tests_smoothed": 3789.0,
- "new_tests_smoothed_per_thousand": 0.354,
- "tests_per_case": 15.901,
- "positive_rate": 0.063,
- "tests_units": "tests performed",
- "stringency_index": 82.41
- },
- {
- "date": "2020-03-30",
- "total_cases": 2829.0,
- "new_cases": 166.0,
- "new_cases_smoothed": 237.714,
- "total_deaths": 16.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 264.171,
- "new_cases_per_million": 15.501,
- "new_cases_smoothed_per_million": 22.198,
- "total_deaths_per_million": 1.494,
- "new_deaths_per_million": 0.467,
- "new_deaths_smoothed_per_million": 0.2,
- "new_tests": 5159.0,
- "total_tests": 49327.0,
- "total_tests_per_thousand": 4.606,
- "new_tests_per_thousand": 0.482,
- "new_tests_smoothed": 4199.0,
- "new_tests_smoothed_per_thousand": 0.392,
- "tests_per_case": 17.664,
- "positive_rate": 0.057,
- "tests_units": "tests performed",
- "stringency_index": 82.41
- },
- {
- "date": "2020-03-31",
- "total_cases": 3002.0,
- "new_cases": 173.0,
- "new_cases_smoothed": 252.286,
- "total_deaths": 24.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 280.325,
- "new_cases_per_million": 16.155,
- "new_cases_smoothed_per_million": 23.558,
- "total_deaths_per_million": 2.241,
- "new_deaths_per_million": 0.747,
- "new_deaths_smoothed_per_million": 0.307,
- "new_tests": 6661.0,
- "total_tests": 55988.0,
- "total_tests_per_thousand": 5.228,
- "new_tests_per_thousand": 0.622,
- "new_tests_smoothed": 4713.0,
- "new_tests_smoothed_per_thousand": 0.44,
- "tests_per_case": 18.680999999999997,
- "positive_rate": 0.054000000000000006,
- "tests_units": "tests performed",
- "stringency_index": 82.41
- },
- {
- "date": "2020-04-01",
- "total_cases": 3308.0,
- "new_cases": 306.0,
- "new_cases_smoothed": 273.429,
- "total_deaths": 31.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 308.9,
- "new_cases_per_million": 28.574,
- "new_cases_smoothed_per_million": 25.533,
- "total_deaths_per_million": 2.895,
- "new_deaths_per_million": 0.654,
- "new_deaths_smoothed_per_million": 0.374,
- "new_tests": 6102.0,
- "total_tests": 62090.0,
- "total_tests_per_thousand": 5.798,
- "new_tests_per_thousand": 0.57,
- "new_tests_smoothed": 4998.0,
- "new_tests_smoothed_per_thousand": 0.467,
- "tests_per_case": 18.279,
- "positive_rate": 0.055,
- "tests_units": "tests performed",
- "stringency_index": 82.41
- },
- {
- "date": "2020-04-02",
- "total_cases": 3589.0,
- "new_cases": 281.0,
- "new_cases_smoothed": 276.429,
- "total_deaths": 39.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 335.139,
- "new_cases_per_million": 26.24,
- "new_cases_smoothed_per_million": 25.813,
- "total_deaths_per_million": 3.642,
- "new_deaths_per_million": 0.747,
- "new_deaths_smoothed_per_million": 0.44,
- "new_tests": 6673.0,
- "total_tests": 68763.0,
- "total_tests_per_thousand": 6.421,
- "new_tests_per_thousand": 0.623,
- "new_tests_smoothed": 5289.0,
- "new_tests_smoothed_per_thousand": 0.494,
- "tests_per_case": 19.133,
- "positive_rate": 0.052000000000000005,
- "tests_units": "tests performed",
- "stringency_index": 74.07
- },
- {
- "date": "2020-04-03",
- "total_cases": 3858.0,
- "new_cases": 269.0,
- "new_cases_smoothed": 256.571,
- "total_deaths": 44.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 360.258,
- "new_cases_per_million": 25.119,
- "new_cases_smoothed_per_million": 23.959,
- "total_deaths_per_million": 4.109,
- "new_deaths_per_million": 0.467,
- "new_deaths_smoothed_per_million": 0.467,
- "new_tests": 7398.0,
- "total_tests": 76161.0,
- "total_tests_per_thousand": 7.112,
- "new_tests_per_thousand": 0.691,
- "new_tests_smoothed": 5581.0,
- "new_tests_smoothed_per_thousand": 0.521,
- "tests_per_case": 21.752,
- "positive_rate": 0.046,
- "tests_units": "tests performed",
- "stringency_index": 74.07
- },
- {
- "date": "2020-04-04",
- "total_cases": 4190.0,
- "new_cases": 332.0,
- "new_cases_smoothed": 273.0,
- "total_deaths": 53.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 6.286,
- "total_cases_per_million": 391.26,
- "new_cases_per_million": 31.002,
- "new_cases_smoothed_per_million": 25.493,
- "total_deaths_per_million": 4.949,
- "new_deaths_per_million": 0.84,
- "new_deaths_smoothed_per_million": 0.587,
- "new_tests": 5837.0,
- "total_tests": 81998.0,
- "total_tests_per_thousand": 7.657,
- "new_tests_per_thousand": 0.545,
- "new_tests_smoothed": 5811.0,
- "new_tests_smoothed_per_thousand": 0.543,
- "tests_per_case": 21.285999999999998,
- "positive_rate": 0.047,
- "tests_units": "tests performed",
- "stringency_index": 74.07
- },
- {
- "date": "2020-04-05",
- "total_cases": 4472.0,
- "new_cases": 282.0,
- "new_cases_smoothed": 258.429,
- "total_deaths": 59.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 6.857,
- "total_cases_per_million": 417.593,
- "new_cases_per_million": 26.333,
- "new_cases_smoothed_per_million": 24.132,
- "total_deaths_per_million": 5.509,
- "new_deaths_per_million": 0.56,
- "new_deaths_smoothed_per_million": 0.64,
- "new_tests": 4812.0,
- "total_tests": 86810.0,
- "total_tests_per_thousand": 8.106,
- "new_tests_per_thousand": 0.449,
- "new_tests_smoothed": 6092.0,
- "new_tests_smoothed_per_thousand": 0.569,
- "tests_per_case": 23.573,
- "positive_rate": 0.042,
- "tests_units": "tests performed",
- "stringency_index": 74.07
- },
- {
- "date": "2020-04-06",
- "total_cases": 4587.0,
- "new_cases": 115.0,
- "new_cases_smoothed": 251.143,
- "total_deaths": 67.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 7.286,
- "total_cases_per_million": 428.332,
- "new_cases_per_million": 10.739,
- "new_cases_smoothed_per_million": 23.452,
- "total_deaths_per_million": 6.256,
- "new_deaths_per_million": 0.747,
- "new_deaths_smoothed_per_million": 0.68,
- "new_tests": 6435.0,
- "total_tests": 93245.0,
- "total_tests_per_thousand": 8.707,
- "new_tests_per_thousand": 0.601,
- "new_tests_smoothed": 6274.0,
- "new_tests_smoothed_per_thousand": 0.586,
- "tests_per_case": 24.982,
- "positive_rate": 0.04,
- "tests_units": "tests performed",
- "stringency_index": 74.07
- },
- {
- "date": "2020-04-07",
- "total_cases": 4822.0,
- "new_cases": 235.0,
- "new_cases_smoothed": 260.0,
- "total_deaths": 78.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 7.714,
- "total_cases_per_million": 450.276,
- "new_cases_per_million": 21.944,
- "new_cases_smoothed_per_million": 24.279,
- "total_deaths_per_million": 7.284,
- "new_deaths_per_million": 1.027,
- "new_deaths_smoothed_per_million": 0.72,
- "new_tests": 8173.0,
- "total_tests": 101418.0,
- "total_tests_per_thousand": 9.47,
- "new_tests_per_thousand": 0.763,
- "new_tests_smoothed": 6490.0,
- "new_tests_smoothed_per_thousand": 0.606,
- "tests_per_case": 24.962,
- "positive_rate": 0.04,
- "tests_units": "tests performed",
- "stringency_index": 74.07
- },
- {
- "date": "2020-04-08",
- "total_cases": 5017.0,
- "new_cases": 195.0,
- "new_cases_smoothed": 244.143,
- "total_deaths": 88.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 468.485,
- "new_cases_per_million": 18.209,
- "new_cases_smoothed_per_million": 22.798,
- "total_deaths_per_million": 8.217,
- "new_deaths_per_million": 0.934,
- "new_deaths_smoothed_per_million": 0.76,
- "new_tests": 8469.0,
- "total_tests": 109887.0,
- "total_tests_per_thousand": 10.261,
- "new_tests_per_thousand": 0.791,
- "new_tests_smoothed": 6828.0,
- "new_tests_smoothed_per_thousand": 0.638,
- "tests_per_case": 27.967,
- "positive_rate": 0.036000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 74.07
- },
- {
- "date": "2020-04-09",
- "total_cases": 5312.0,
- "new_cases": 295.0,
- "new_cases_smoothed": 246.143,
- "total_deaths": 99.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 496.032,
- "new_cases_per_million": 27.547,
- "new_cases_smoothed_per_million": 22.985,
- "total_deaths_per_million": 9.245,
- "new_deaths_per_million": 1.027,
- "new_deaths_smoothed_per_million": 0.8,
- "new_tests": 8180.0,
- "total_tests": 118067.0,
- "total_tests_per_thousand": 11.025,
- "new_tests_per_thousand": 0.764,
- "new_tests_smoothed": 7043.0,
- "new_tests_smoothed_per_thousand": 0.658,
- "tests_per_case": 28.613000000000003,
- "positive_rate": 0.035,
- "tests_units": "tests performed",
- "stringency_index": 74.07
- },
- {
- "date": "2020-04-10",
- "total_cases": 5569.0,
- "new_cases": 257.0,
- "new_cases_smoothed": 244.429,
- "total_deaths": 112.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 9.714,
- "total_cases_per_million": 520.031,
- "new_cases_per_million": 23.999,
- "new_cases_smoothed_per_million": 22.825,
- "total_deaths_per_million": 10.459,
- "new_deaths_per_million": 1.214,
- "new_deaths_smoothed_per_million": 0.907,
- "new_tests": 5702.0,
- "total_tests": 123769.0,
- "total_tests_per_thousand": 11.557,
- "new_tests_per_thousand": 0.532,
- "new_tests_smoothed": 6801.0,
- "new_tests_smoothed_per_thousand": 0.635,
- "tests_per_case": 27.824,
- "positive_rate": 0.036000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 74.07
- },
- {
- "date": "2020-04-11",
- "total_cases": 5732.0,
- "new_cases": 163.0,
- "new_cases_smoothed": 220.286,
- "total_deaths": 119.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 9.429,
- "total_cases_per_million": 535.252,
- "new_cases_per_million": 15.221,
- "new_cases_smoothed_per_million": 20.57,
- "total_deaths_per_million": 11.112,
- "new_deaths_per_million": 0.654,
- "new_deaths_smoothed_per_million": 0.88,
- "new_tests": 4891.0,
- "total_tests": 128660.0,
- "total_tests_per_thousand": 12.014,
- "new_tests_per_thousand": 0.457,
- "new_tests_smoothed": 6666.0,
- "new_tests_smoothed_per_thousand": 0.622,
- "tests_per_case": 30.261,
- "positive_rate": 0.033,
- "tests_units": "tests performed",
- "stringency_index": 74.07
- },
- {
- "date": "2020-04-12",
- "total_cases": 5902.0,
- "new_cases": 170.0,
- "new_cases_smoothed": 204.286,
- "total_deaths": 129.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 10.0,
- "total_cases_per_million": 551.126,
- "new_cases_per_million": 15.875,
- "new_cases_smoothed_per_million": 19.076,
- "total_deaths_per_million": 12.046,
- "new_deaths_per_million": 0.934,
- "new_deaths_smoothed_per_million": 0.934,
- "new_tests": 3250.0,
- "total_tests": 131910.0,
- "total_tests_per_thousand": 12.318,
- "new_tests_per_thousand": 0.303,
- "new_tests_smoothed": 6443.0,
- "new_tests_smoothed_per_thousand": 0.602,
- "tests_per_case": 31.539,
- "positive_rate": 0.032,
- "tests_units": "tests performed",
- "stringency_index": 74.07
- },
- {
- "date": "2020-04-13",
- "total_cases": 5991.0,
- "new_cases": 89.0,
- "new_cases_smoothed": 200.571,
- "total_deaths": 138.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 10.143,
- "total_cases_per_million": 559.437,
- "new_cases_per_million": 8.311,
- "new_cases_smoothed_per_million": 18.729,
- "total_deaths_per_million": 12.886,
- "new_deaths_per_million": 0.84,
- "new_deaths_smoothed_per_million": 0.947,
- "new_tests": 3215.0,
- "total_tests": 135125.0,
- "total_tests_per_thousand": 12.618,
- "new_tests_per_thousand": 0.3,
- "new_tests_smoothed": 5983.0,
- "new_tests_smoothed_per_thousand": 0.559,
- "tests_per_case": 29.83,
- "positive_rate": 0.034,
- "tests_units": "tests performed",
- "stringency_index": 74.07
- },
- {
- "date": "2020-04-14",
- "total_cases": 6059.0,
- "new_cases": 68.0,
- "new_cases_smoothed": 176.714,
- "total_deaths": 143.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 9.286,
- "total_cases_per_million": 565.787,
- "new_cases_per_million": 6.35,
- "new_cases_smoothed_per_million": 16.502,
- "total_deaths_per_million": 13.353,
- "new_deaths_per_million": 0.467,
- "new_deaths_smoothed_per_million": 0.867,
- "new_tests": 6173.0,
- "total_tests": 141298.0,
- "total_tests_per_thousand": 13.194,
- "new_tests_per_thousand": 0.576,
- "new_tests_smoothed": 5697.0,
- "new_tests_smoothed_per_thousand": 0.532,
- "tests_per_case": 32.238,
- "positive_rate": 0.031,
- "tests_units": "tests performed",
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-15",
- "total_cases": 6141.0,
- "new_cases": 82.0,
- "new_cases_smoothed": 160.571,
- "total_deaths": 161.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 10.429,
- "total_cases_per_million": 573.444,
- "new_cases_per_million": 7.657,
- "new_cases_smoothed_per_million": 14.994,
- "total_deaths_per_million": 15.034,
- "new_deaths_per_million": 1.681,
- "new_deaths_smoothed_per_million": 0.974,
- "new_tests": 8476.0,
- "total_tests": 149774.0,
- "total_tests_per_thousand": 13.986,
- "new_tests_per_thousand": 0.791,
- "new_tests_smoothed": 5698.0,
- "new_tests_smoothed_per_thousand": 0.532,
- "tests_per_case": 35.486,
- "positive_rate": 0.027999999999999997,
- "tests_units": "tests performed",
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-16",
- "total_cases": 6303.0,
- "new_cases": 162.0,
- "new_cases_smoothed": 141.571,
- "total_deaths": 166.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 9.571,
- "total_cases_per_million": 588.571,
- "new_cases_per_million": 15.127,
- "new_cases_smoothed_per_million": 13.22,
- "total_deaths_per_million": 15.501,
- "new_deaths_per_million": 0.467,
- "new_deaths_smoothed_per_million": 0.894,
- "new_tests": 8381.0,
- "total_tests": 158155.0,
- "total_tests_per_thousand": 14.768,
- "new_tests_per_thousand": 0.783,
- "new_tests_smoothed": 5727.0,
- "new_tests_smoothed_per_thousand": 0.535,
- "tests_per_case": 40.453,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-17",
- "total_cases": 6433.0,
- "new_cases": 130.0,
- "new_cases_smoothed": 123.429,
- "total_deaths": 169.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 600.711,
- "new_cases_per_million": 12.139,
- "new_cases_smoothed_per_million": 11.526,
- "total_deaths_per_million": 15.781,
- "new_deaths_per_million": 0.28,
- "new_deaths_smoothed_per_million": 0.76,
- "new_tests": 8288.0,
- "total_tests": 166443.0,
- "total_tests_per_thousand": 15.542,
- "new_tests_per_thousand": 0.774,
- "new_tests_smoothed": 6096.0,
- "new_tests_smoothed_per_thousand": 0.569,
- "tests_per_case": 49.388999999999996,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-18",
- "total_cases": 6549.0,
- "new_cases": 116.0,
- "new_cases_smoothed": 116.714,
- "total_deaths": 173.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 7.714,
- "total_cases_per_million": 611.543,
- "new_cases_per_million": 10.832,
- "new_cases_smoothed_per_million": 10.899,
- "total_deaths_per_million": 16.155,
- "new_deaths_per_million": 0.374,
- "new_deaths_smoothed_per_million": 0.72,
- "new_tests": 5605.0,
- "total_tests": 172048.0,
- "total_tests_per_thousand": 16.066,
- "new_tests_per_thousand": 0.523,
- "new_tests_smoothed": 6198.0,
- "new_tests_smoothed_per_thousand": 0.579,
- "tests_per_case": 53.104,
- "positive_rate": 0.019,
- "tests_units": "tests performed",
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-19",
- "total_cases": 6654.0,
- "new_cases": 105.0,
- "new_cases_smoothed": 107.429,
- "total_deaths": 181.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 7.429,
- "total_cases_per_million": 621.348,
- "new_cases_per_million": 9.805,
- "new_cases_smoothed_per_million": 10.032,
- "total_deaths_per_million": 16.902,
- "new_deaths_per_million": 0.747,
- "new_deaths_smoothed_per_million": 0.694,
- "new_tests": 4027.0,
- "total_tests": 176075.0,
- "total_tests_per_thousand": 16.442,
- "new_tests_per_thousand": 0.376,
- "new_tests_smoothed": 6309.0,
- "new_tests_smoothed_per_thousand": 0.589,
- "tests_per_case": 58.727,
- "positive_rate": 0.017,
- "tests_units": "tests performed",
- "stringency_index": 71.3
- },
- {
- "date": "2020-04-20",
- "total_cases": 6787.0,
- "new_cases": 133.0,
- "new_cases_smoothed": 113.714,
- "total_deaths": 188.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 7.143,
- "total_cases_per_million": 633.767,
- "new_cases_per_million": 12.419,
- "new_cases_smoothed_per_million": 10.619,
- "total_deaths_per_million": 17.555,
- "new_deaths_per_million": 0.654,
- "new_deaths_smoothed_per_million": 0.667,
- "new_tests": 6567.0,
- "total_tests": 182642.0,
- "total_tests_per_thousand": 17.055,
- "new_tests_per_thousand": 0.613,
- "new_tests_smoothed": 6788.0,
- "new_tests_smoothed_per_thousand": 0.634,
- "tests_per_case": 59.693000000000005,
- "positive_rate": 0.017,
- "tests_units": "tests performed",
- "stringency_index": 63.89
- },
- {
- "date": "2020-04-21",
- "total_cases": 6914.0,
- "new_cases": 127.0,
- "new_cases_smoothed": 122.143,
- "total_deaths": 196.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 7.571,
- "total_cases_per_million": 645.626,
- "new_cases_per_million": 11.859,
- "new_cases_smoothed_per_million": 11.406,
- "total_deaths_per_million": 18.302,
- "new_deaths_per_million": 0.747,
- "new_deaths_smoothed_per_million": 0.707,
- "new_tests": 8341.0,
- "total_tests": 190983.0,
- "total_tests_per_thousand": 17.834,
- "new_tests_per_thousand": 0.779,
- "new_tests_smoothed": 7098.0,
- "new_tests_smoothed_per_thousand": 0.663,
- "tests_per_case": 58.111999999999995,
- "positive_rate": 0.017,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-04-22",
- "total_cases": 7041.0,
- "new_cases": 127.0,
- "new_cases_smoothed": 128.571,
- "total_deaths": 201.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.714,
- "total_cases_per_million": 657.485,
- "new_cases_per_million": 11.859,
- "new_cases_smoothed_per_million": 12.006,
- "total_deaths_per_million": 18.769,
- "new_deaths_per_million": 0.467,
- "new_deaths_smoothed_per_million": 0.534,
- "new_tests": 8818.0,
- "total_tests": 199801.0,
- "total_tests_per_thousand": 18.657,
- "new_tests_per_thousand": 0.823,
- "new_tests_smoothed": 7147.0,
- "new_tests_smoothed_per_thousand": 0.667,
- "tests_per_case": 55.588,
- "positive_rate": 0.018000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-04-23",
- "total_cases": 7136.0,
- "new_cases": 95.0,
- "new_cases_smoothed": 119.0,
- "total_deaths": 210.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 6.286,
- "total_cases_per_million": 666.357,
- "new_cases_per_million": 8.871,
- "new_cases_smoothed_per_million": 11.112,
- "total_deaths_per_million": 19.61,
- "new_deaths_per_million": 0.84,
- "new_deaths_smoothed_per_million": 0.587,
- "new_tests": 7901.0,
- "total_tests": 207702.0,
- "total_tests_per_thousand": 19.395,
- "new_tests_per_thousand": 0.738,
- "new_tests_smoothed": 7078.0,
- "new_tests_smoothed_per_thousand": 0.661,
- "tests_per_case": 59.479,
- "positive_rate": 0.017,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-04-24",
- "total_cases": 7188.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 107.857,
- "total_deaths": 213.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 6.286,
- "total_cases_per_million": 671.212,
- "new_cases_per_million": 4.856,
- "new_cases_smoothed_per_million": 10.072,
- "total_deaths_per_million": 19.89,
- "new_deaths_per_million": 0.28,
- "new_deaths_smoothed_per_million": 0.587,
- "new_tests": 7129.0,
- "total_tests": 214831.0,
- "total_tests_per_thousand": 20.061,
- "new_tests_per_thousand": 0.666,
- "new_tests_smoothed": 6913.0,
- "new_tests_smoothed_per_thousand": 0.646,
- "tests_per_case": 64.094,
- "positive_rate": 0.016,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-04-25",
- "total_cases": 7273.0,
- "new_cases": 85.0,
- "new_cases_smoothed": 103.429,
- "total_deaths": 215.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 6.0,
- "total_cases_per_million": 679.15,
- "new_cases_per_million": 7.937,
- "new_cases_smoothed_per_million": 9.658,
- "total_deaths_per_million": 20.077,
- "new_deaths_per_million": 0.187,
- "new_deaths_smoothed_per_million": 0.56,
- "new_tests": 4446.0,
- "total_tests": 219277.0,
- "total_tests_per_thousand": 20.476,
- "new_tests_per_thousand": 0.415,
- "new_tests_smoothed": 6747.0,
- "new_tests_smoothed_per_thousand": 0.63,
- "tests_per_case": 65.233,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-04-26",
- "total_cases": 7352.0,
- "new_cases": 79.0,
- "new_cases_smoothed": 99.714,
- "total_deaths": 218.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 5.286,
- "total_cases_per_million": 686.527,
- "new_cases_per_million": 7.377,
- "new_cases_smoothed_per_million": 9.311,
- "total_deaths_per_million": 20.357,
- "new_deaths_per_million": 0.28,
- "new_deaths_smoothed_per_million": 0.494,
- "new_tests": 3381.0,
- "total_tests": 222658.0,
- "total_tests_per_thousand": 20.792,
- "new_tests_per_thousand": 0.316,
- "new_tests_smoothed": 6655.0,
- "new_tests_smoothed_per_thousand": 0.621,
- "tests_per_case": 66.741,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-04-27",
- "total_cases": 7404.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 88.143,
- "total_deaths": 221.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 691.382,
- "new_cases_per_million": 4.856,
- "new_cases_smoothed_per_million": 8.231,
- "total_deaths_per_million": 20.637,
- "new_deaths_per_million": 0.28,
- "new_deaths_smoothed_per_million": 0.44,
- "new_tests": 7754.0,
- "total_tests": 230412.0,
- "total_tests_per_thousand": 21.516,
- "new_tests_per_thousand": 0.724,
- "new_tests_smoothed": 6824.0,
- "new_tests_smoothed_per_thousand": 0.637,
- "tests_per_case": 77.42,
- "positive_rate": 0.013000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 57.41
- },
- {
- "date": "2020-04-28",
- "total_cases": 7449.0,
- "new_cases": 45.0,
- "new_cases_smoothed": 76.429,
- "total_deaths": 223.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 695.584,
- "new_cases_per_million": 4.202,
- "new_cases_smoothed_per_million": 7.137,
- "total_deaths_per_million": 20.824,
- "new_deaths_per_million": 0.187,
- "new_deaths_smoothed_per_million": 0.36,
- "new_tests": 8741.0,
- "total_tests": 239153.0,
- "total_tests_per_thousand": 22.332,
- "new_tests_per_thousand": 0.816,
- "new_tests_smoothed": 6881.0,
- "new_tests_smoothed_per_thousand": 0.643,
- "tests_per_case": 90.03200000000001,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 57.41
- },
- {
- "date": "2020-04-29",
- "total_cases": 7504.0,
- "new_cases": 55.0,
- "new_cases_smoothed": 66.143,
- "total_deaths": 227.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 700.72,
- "new_cases_per_million": 5.136,
- "new_cases_smoothed_per_million": 6.176,
- "total_deaths_per_million": 21.197,
- "new_deaths_per_million": 0.374,
- "new_deaths_smoothed_per_million": 0.347,
- "new_tests": 7322.0,
- "total_tests": 246475.0,
- "total_tests_per_thousand": 23.016,
- "new_tests_per_thousand": 0.684,
- "new_tests_smoothed": 6668.0,
- "new_tests_smoothed_per_thousand": 0.623,
- "tests_per_case": 100.81200000000001,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 57.41
- },
- {
- "date": "2020-04-30",
- "total_cases": 7579.0,
- "new_cases": 75.0,
- "new_cases_smoothed": 63.286,
- "total_deaths": 227.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 707.724,
- "new_cases_per_million": 7.003,
- "new_cases_smoothed_per_million": 5.91,
- "total_deaths_per_million": 21.197,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.227,
- "new_tests": 7396.0,
- "total_tests": 253871.0,
- "total_tests_per_thousand": 23.706,
- "new_tests_per_thousand": 0.691,
- "new_tests_smoothed": 6596.0,
- "new_tests_smoothed_per_thousand": 0.616,
- "tests_per_case": 104.226,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-01",
- "total_cases": 7682.0,
- "new_cases": 103.0,
- "new_cases_smoothed": 70.571,
- "total_deaths": 236.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 717.342,
- "new_cases_per_million": 9.618,
- "new_cases_smoothed_per_million": 6.59,
- "total_deaths_per_million": 22.038,
- "new_deaths_per_million": 0.84,
- "new_deaths_smoothed_per_million": 0.307,
- "new_tests": 4497.0,
- "total_tests": 258368.0,
- "total_tests_per_thousand": 24.126,
- "new_tests_per_thousand": 0.42,
- "new_tests_smoothed": 6220.0,
- "new_tests_smoothed_per_thousand": 0.581,
- "tests_per_case": 88.13799999999999,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-02",
- "total_cases": 7737.0,
- "new_cases": 55.0,
- "new_cases_smoothed": 66.286,
- "total_deaths": 240.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 722.478,
- "new_cases_per_million": 5.136,
- "new_cases_smoothed_per_million": 6.19,
- "total_deaths_per_million": 22.411,
- "new_deaths_per_million": 0.374,
- "new_deaths_smoothed_per_million": 0.333,
- "new_tests": 3885.0,
- "total_tests": 262253.0,
- "total_tests_per_thousand": 24.489,
- "new_tests_per_thousand": 0.363,
- "new_tests_smoothed": 6139.0,
- "new_tests_smoothed_per_thousand": 0.573,
- "tests_per_case": 92.61399999999999,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-03",
- "total_cases": 7755.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 57.571,
- "total_deaths": 245.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 724.158,
- "new_cases_per_million": 1.681,
- "new_cases_smoothed_per_million": 5.376,
- "total_deaths_per_million": 22.878,
- "new_deaths_per_million": 0.467,
- "new_deaths_smoothed_per_million": 0.36,
- "new_tests": 3881.0,
- "total_tests": 266134.0,
- "total_tests_per_thousand": 24.851,
- "new_tests_per_thousand": 0.362,
- "new_tests_smoothed": 6211.0,
- "new_tests_smoothed_per_thousand": 0.58,
- "tests_per_case": 107.883,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-04",
- "total_cases": 7781.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 53.857,
- "total_deaths": 248.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 726.586,
- "new_cases_per_million": 2.428,
- "new_cases_smoothed_per_million": 5.029,
- "total_deaths_per_million": 23.158,
- "new_deaths_per_million": 0.28,
- "new_deaths_smoothed_per_million": 0.36,
- "new_tests": 7756.0,
- "total_tests": 273890.0,
- "total_tests_per_thousand": 25.576,
- "new_tests_per_thousand": 0.724,
- "new_tests_smoothed": 6211.0,
- "new_tests_smoothed_per_thousand": 0.58,
- "tests_per_case": 115.324,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-05",
- "total_cases": 7819.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 52.857,
- "total_deaths": 252.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 730.135,
- "new_cases_per_million": 3.548,
- "new_cases_smoothed_per_million": 4.936,
- "total_deaths_per_million": 23.532,
- "new_deaths_per_million": 0.374,
- "new_deaths_smoothed_per_million": 0.387,
- "new_tests": 9383.0,
- "total_tests": 283273.0,
- "total_tests_per_thousand": 26.452,
- "new_tests_per_thousand": 0.876,
- "new_tests_smoothed": 6303.0,
- "new_tests_smoothed_per_thousand": 0.589,
- "tests_per_case": 119.24600000000001,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-06",
- "total_cases": 7896.0,
- "new_cases": 77.0,
- "new_cases_smoothed": 56.0,
- "total_deaths": 257.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 737.325,
- "new_cases_per_million": 7.19,
- "new_cases_smoothed_per_million": 5.229,
- "total_deaths_per_million": 23.999,
- "new_deaths_per_million": 0.467,
- "new_deaths_smoothed_per_million": 0.4,
- "new_tests": 8052.0,
- "total_tests": 291325.0,
- "total_tests_per_thousand": 27.204,
- "new_tests_per_thousand": 0.752,
- "new_tests_smoothed": 6407.0,
- "new_tests_smoothed_per_thousand": 0.598,
- "tests_per_case": 114.411,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-07",
- "total_cases": 7974.0,
- "new_cases": 78.0,
- "new_cases_smoothed": 56.429,
- "total_deaths": 262.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 744.609,
- "new_cases_per_million": 7.284,
- "new_cases_smoothed_per_million": 5.269,
- "total_deaths_per_million": 24.465,
- "new_deaths_per_million": 0.467,
- "new_deaths_smoothed_per_million": 0.467,
- "new_tests": 7599.0,
- "total_tests": 298924.0,
- "total_tests_per_thousand": 27.913,
- "new_tests_per_thousand": 0.71,
- "new_tests_smoothed": 6436.0,
- "new_tests_smoothed_per_thousand": 0.601,
- "tests_per_case": 114.056,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-08",
- "total_cases": 8031.0,
- "new_cases": 57.0,
- "new_cases_smoothed": 49.857,
- "total_deaths": 270.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 749.931,
- "new_cases_per_million": 5.323,
- "new_cases_smoothed_per_million": 4.656,
- "total_deaths_per_million": 25.212,
- "new_deaths_per_million": 0.747,
- "new_deaths_smoothed_per_million": 0.454,
- "new_tests": 4510.0,
- "total_tests": 303434.0,
- "total_tests_per_thousand": 28.335,
- "new_tests_per_thousand": 0.421,
- "new_tests_smoothed": 6438.0,
- "new_tests_smoothed_per_thousand": 0.601,
- "tests_per_case": 129.129,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-09",
- "total_cases": 8077.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 48.571,
- "total_deaths": 273.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 754.227,
- "new_cases_per_million": 4.295,
- "new_cases_smoothed_per_million": 4.536,
- "total_deaths_per_million": 25.493,
- "new_deaths_per_million": 0.28,
- "new_deaths_smoothed_per_million": 0.44,
- "new_tests": 3788.0,
- "total_tests": 307222.0,
- "total_tests_per_thousand": 28.688,
- "new_tests_per_thousand": 0.354,
- "new_tests_smoothed": 6424.0,
- "new_tests_smoothed_per_thousand": 0.6,
- "tests_per_case": 132.259,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-10",
- "total_cases": 8095.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 48.571,
- "total_deaths": 276.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 755.908,
- "new_cases_per_million": 1.681,
- "new_cases_smoothed_per_million": 4.536,
- "total_deaths_per_million": 25.773,
- "new_deaths_per_million": 0.28,
- "new_deaths_smoothed_per_million": 0.414,
- "new_tests": 4052.0,
- "total_tests": 311274.0,
- "total_tests_per_thousand": 29.067,
- "new_tests_per_thousand": 0.378,
- "new_tests_smoothed": 6449.0,
- "new_tests_smoothed_per_thousand": 0.602,
- "tests_per_case": 132.774,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-11",
- "total_cases": 8123.0,
- "new_cases": 28.0,
- "new_cases_smoothed": 48.857,
- "total_deaths": 280.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 758.522,
- "new_cases_per_million": 2.615,
- "new_cases_smoothed_per_million": 4.562,
- "total_deaths_per_million": 26.146,
- "new_deaths_per_million": 0.374,
- "new_deaths_smoothed_per_million": 0.427,
- "new_tests": 7809.0,
- "total_tests": 319083.0,
- "total_tests_per_thousand": 29.796,
- "new_tests_per_thousand": 0.729,
- "new_tests_smoothed": 6456.0,
- "new_tests_smoothed_per_thousand": 0.603,
- "tests_per_case": 132.14,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-12",
- "total_cases": 8176.0,
- "new_cases": 53.0,
- "new_cases_smoothed": 51.0,
- "total_deaths": 282.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 763.471,
- "new_cases_per_million": 4.949,
- "new_cases_smoothed_per_million": 4.762,
- "total_deaths_per_million": 26.333,
- "new_deaths_per_million": 0.187,
- "new_deaths_smoothed_per_million": 0.4,
- "new_tests": 8755.0,
- "total_tests": 327838.0,
- "total_tests_per_thousand": 30.613,
- "new_tests_per_thousand": 0.818,
- "new_tests_smoothed": 6366.0,
- "new_tests_smoothed_per_thousand": 0.594,
- "tests_per_case": 124.824,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-13",
- "total_cases": 8221.0,
- "new_cases": 45.0,
- "new_cases_smoothed": 46.429,
- "total_deaths": 283.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 767.673,
- "new_cases_per_million": 4.202,
- "new_cases_smoothed_per_million": 4.335,
- "total_deaths_per_million": 26.426,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.347,
- "new_tests": 7687.0,
- "total_tests": 335525.0,
- "total_tests_per_thousand": 31.331,
- "new_tests_per_thousand": 0.718,
- "new_tests_smoothed": 6314.0,
- "new_tests_smoothed_per_thousand": 0.59,
- "tests_per_case": 135.994,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-14",
- "total_cases": 8269.0,
- "new_cases": 48.0,
- "new_cases_smoothed": 42.143,
- "total_deaths": 290.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 772.156,
- "new_cases_per_million": 4.482,
- "new_cases_smoothed_per_million": 3.935,
- "total_deaths_per_million": 27.08,
- "new_deaths_per_million": 0.654,
- "new_deaths_smoothed_per_million": 0.374,
- "new_tests": 6902.0,
- "total_tests": 342427.0,
- "total_tests_per_thousand": 31.976,
- "new_tests_per_thousand": 0.645,
- "new_tests_smoothed": 6215.0,
- "new_tests_smoothed_per_thousand": 0.58,
- "tests_per_case": 147.475,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-15",
- "total_cases": 8351.0,
- "new_cases": 82.0,
- "new_cases_smoothed": 45.714,
- "total_deaths": 293.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 779.813,
- "new_cases_per_million": 7.657,
- "new_cases_smoothed_per_million": 4.269,
- "total_deaths_per_million": 27.36,
- "new_deaths_per_million": 0.28,
- "new_deaths_smoothed_per_million": 0.307,
- "new_tests": 6790.0,
- "total_tests": 349217.0,
- "total_tests_per_thousand": 32.61,
- "new_tests_per_thousand": 0.634,
- "new_tests_smoothed": 6540.0,
- "new_tests_smoothed_per_thousand": 0.611,
- "tests_per_case": 143.062,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-16",
- "total_cases": 8406.0,
- "new_cases": 55.0,
- "new_cases_smoothed": 47.0,
- "total_deaths": 295.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 784.949,
- "new_cases_per_million": 5.136,
- "new_cases_smoothed_per_million": 4.389,
- "total_deaths_per_million": 27.547,
- "new_deaths_per_million": 0.187,
- "new_deaths_smoothed_per_million": 0.293,
- "new_tests": 4197.0,
- "total_tests": 353414.0,
- "total_tests_per_thousand": 33.002,
- "new_tests_per_thousand": 0.392,
- "new_tests_smoothed": 6599.0,
- "new_tests_smoothed_per_thousand": 0.616,
- "tests_per_case": 140.404,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-17",
- "total_cases": 8455.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 51.429,
- "total_deaths": 296.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 789.524,
- "new_cases_per_million": 4.576,
- "new_cases_smoothed_per_million": 4.802,
- "total_deaths_per_million": 27.64,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.267,
- "new_tests": 3553.0,
- "total_tests": 356967.0,
- "total_tests_per_thousand": 33.333,
- "new_tests_per_thousand": 0.332,
- "new_tests_smoothed": 6528.0,
- "new_tests_smoothed_per_thousand": 0.61,
- "tests_per_case": 126.93299999999999,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-18",
- "total_cases": 8475.0,
- "new_cases": 20.0,
- "new_cases_smoothed": 50.286,
- "total_deaths": 297.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 791.392,
- "new_cases_per_million": 1.868,
- "new_cases_smoothed_per_million": 4.696,
- "total_deaths_per_million": 27.734,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.227,
- "new_tests": 7458.0,
- "total_tests": 364425.0,
- "total_tests_per_thousand": 34.03,
- "new_tests_per_thousand": 0.696,
- "new_tests_smoothed": 6477.0,
- "new_tests_smoothed_per_thousand": 0.605,
- "tests_per_case": 128.804,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-19",
- "total_cases": 8586.0,
- "new_cases": 111.0,
- "new_cases_smoothed": 58.571,
- "total_deaths": 297.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 801.757,
- "new_cases_per_million": 10.365,
- "new_cases_smoothed_per_million": 5.469,
- "total_deaths_per_million": 27.734,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.2,
- "new_tests": 8336.0,
- "total_tests": 372761.0,
- "total_tests_per_thousand": 34.808,
- "new_tests_per_thousand": 0.778,
- "new_tests_smoothed": 6418.0,
- "new_tests_smoothed_per_thousand": 0.599,
- "tests_per_case": 109.57600000000001,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-20",
- "total_cases": 8647.0,
- "new_cases": 61.0,
- "new_cases_smoothed": 60.857,
- "total_deaths": 302.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 807.453,
- "new_cases_per_million": 5.696,
- "new_cases_smoothed_per_million": 5.683,
- "total_deaths_per_million": 28.201,
- "new_deaths_per_million": 0.467,
- "new_deaths_smoothed_per_million": 0.253,
- "new_tests": 7518.0,
- "total_tests": 380279.0,
- "total_tests_per_thousand": 35.51,
- "new_tests_per_thousand": 0.702,
- "new_tests_smoothed": 6393.0,
- "new_tests_smoothed_per_thousand": 0.597,
- "tests_per_case": 105.04899999999999,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-21",
- "total_cases": 8721.0,
- "new_cases": 74.0,
- "new_cases_smoothed": 64.571,
- "total_deaths": 304.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 814.363,
- "new_cases_per_million": 6.91,
- "new_cases_smoothed_per_million": 6.03,
- "total_deaths_per_million": 28.387,
- "new_deaths_per_million": 0.187,
- "new_deaths_smoothed_per_million": 0.187,
- "new_tests": 7290.0,
- "total_tests": 387569.0,
- "total_tests_per_thousand": 36.191,
- "new_tests_per_thousand": 0.681,
- "new_tests_smoothed": 6449.0,
- "new_tests_smoothed_per_thousand": 0.602,
- "tests_per_case": 99.874,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-22",
- "total_cases": 8754.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 57.571,
- "total_deaths": 306.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 817.445,
- "new_cases_per_million": 3.082,
- "new_cases_smoothed_per_million": 5.376,
- "total_deaths_per_million": 28.574,
- "new_deaths_per_million": 0.187,
- "new_deaths_smoothed_per_million": 0.173,
- "new_tests": 7748.0,
- "total_tests": 395317.0,
- "total_tests_per_thousand": 36.915,
- "new_tests_per_thousand": 0.724,
- "new_tests_smoothed": 6586.0,
- "new_tests_smoothed_per_thousand": 0.615,
- "tests_per_case": 114.397,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-23",
- "total_cases": 8813.0,
- "new_cases": 59.0,
- "new_cases_smoothed": 58.143,
- "total_deaths": 312.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 822.954,
- "new_cases_per_million": 5.509,
- "new_cases_smoothed_per_million": 5.429,
- "total_deaths_per_million": 29.134,
- "new_deaths_per_million": 0.56,
- "new_deaths_smoothed_per_million": 0.227,
- "new_tests": 5059.0,
- "total_tests": 400376.0,
- "total_tests_per_thousand": 37.387,
- "new_tests_per_thousand": 0.472,
- "new_tests_smoothed": 6709.0,
- "new_tests_smoothed_per_thousand": 0.626,
- "tests_per_case": 115.38799999999999,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-24",
- "total_cases": 8890.0,
- "new_cases": 77.0,
- "new_cases_smoothed": 62.143,
- "total_deaths": 314.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 830.144,
- "new_cases_per_million": 7.19,
- "new_cases_smoothed_per_million": 5.803,
- "total_deaths_per_million": 29.321,
- "new_deaths_per_million": 0.187,
- "new_deaths_smoothed_per_million": 0.24,
- "new_tests": 3849.0,
- "total_tests": 404225.0,
- "total_tests_per_thousand": 37.746,
- "new_tests_per_thousand": 0.359,
- "new_tests_smoothed": 6751.0,
- "new_tests_smoothed_per_thousand": 0.63,
- "tests_per_case": 108.637,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 57.41
- },
- {
- "date": "2020-05-25",
- "total_cases": 8957.0,
- "new_cases": 67.0,
- "new_cases_smoothed": 68.857,
- "total_deaths": 315.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 836.401,
- "new_cases_per_million": 6.256,
- "new_cases_smoothed_per_million": 6.43,
- "total_deaths_per_million": 29.415,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.24,
- "new_tests": 7508.0,
- "total_tests": 411733.0,
- "total_tests_per_thousand": 38.447,
- "new_tests_per_thousand": 0.701,
- "new_tests_smoothed": 6758.0,
- "new_tests_smoothed_per_thousand": 0.631,
- "tests_per_case": 98.145,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 45.37
- },
- {
- "date": "2020-05-26",
- "total_cases": 9004.0,
- "new_cases": 47.0,
- "new_cases_smoothed": 59.714,
- "total_deaths": 317.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 840.79,
- "new_cases_per_million": 4.389,
- "new_cases_smoothed_per_million": 5.576,
- "total_deaths_per_million": 29.601,
- "new_deaths_per_million": 0.187,
- "new_deaths_smoothed_per_million": 0.267,
- "new_tests": 7241.0,
- "total_tests": 418974.0,
- "total_tests_per_thousand": 39.124,
- "new_tests_per_thousand": 0.676,
- "new_tests_smoothed": 6602.0,
- "new_tests_smoothed_per_thousand": 0.616,
- "tests_per_case": 110.56,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 45.37
- },
- {
- "date": "2020-05-27",
- "total_cases": 9050.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 57.571,
- "total_deaths": 317.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 845.085,
- "new_cases_per_million": 4.295,
- "new_cases_smoothed_per_million": 5.376,
- "total_deaths_per_million": 29.601,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.2,
- "new_tests": 6846.0,
- "total_tests": 425820.0,
- "total_tests_per_thousand": 39.763,
- "new_tests_per_thousand": 0.639,
- "new_tests_smoothed": 6506.0,
- "new_tests_smoothed_per_thousand": 0.608,
- "tests_per_case": 113.007,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 45.37
- },
- {
- "date": "2020-05-28",
- "total_cases": 9086.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 52.143,
- "total_deaths": 317.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 848.447,
- "new_cases_per_million": 3.362,
- "new_cases_smoothed_per_million": 4.869,
- "total_deaths_per_million": 29.601,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.173,
- "new_tests": 6013.0,
- "total_tests": 431833.0,
- "total_tests_per_thousand": 40.324,
- "new_tests_per_thousand": 0.561,
- "new_tests_smoothed": 6323.0,
- "new_tests_smoothed_per_thousand": 0.59,
- "tests_per_case": 121.26299999999999,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 45.37
- },
- {
- "date": "2020-05-29",
- "total_cases": 9140.0,
- "new_cases": 54.0,
- "new_cases_smoothed": 55.143,
- "total_deaths": 319.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 853.489,
- "new_cases_per_million": 5.042,
- "new_cases_smoothed_per_million": 5.149,
- "total_deaths_per_million": 29.788,
- "new_deaths_per_million": 0.187,
- "new_deaths_smoothed_per_million": 0.173,
- "new_tests": 6113.0,
- "total_tests": 437946.0,
- "total_tests_per_thousand": 40.895,
- "new_tests_per_thousand": 0.571,
- "new_tests_smoothed": 6090.0,
- "new_tests_smoothed_per_thousand": 0.569,
- "tests_per_case": 110.44,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 45.37
- },
- {
- "date": "2020-05-30",
- "total_cases": 9196.0,
- "new_cases": 56.0,
- "new_cases_smoothed": 54.714,
- "total_deaths": 319.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 858.718,
- "new_cases_per_million": 5.229,
- "new_cases_smoothed_per_million": 5.109,
- "total_deaths_per_million": 29.788,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.093,
- "new_tests": 3548.0,
- "total_tests": 441494.0,
- "total_tests_per_thousand": 41.227,
- "new_tests_per_thousand": 0.331,
- "new_tests_smoothed": 5874.0,
- "new_tests_smoothed_per_thousand": 0.549,
- "tests_per_case": 107.35799999999999,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 45.37
- },
- {
- "date": "2020-05-31",
- "total_cases": 9230.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 48.571,
- "total_deaths": 319.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 861.893,
- "new_cases_per_million": 3.175,
- "new_cases_smoothed_per_million": 4.536,
- "total_deaths_per_million": 29.788,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.067,
- "new_tests": 2141.0,
- "total_tests": 443635.0,
- "total_tests_per_thousand": 41.426,
- "new_tests_per_thousand": 0.2,
- "new_tests_smoothed": 5630.0,
- "new_tests_smoothed_per_thousand": 0.526,
- "tests_per_case": 115.912,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 45.37
- },
- {
- "date": "2020-06-01",
- "total_cases": 9273.0,
- "new_cases": 43.0,
- "new_cases_smoothed": 45.143,
- "total_deaths": 320.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 865.909,
- "new_cases_per_million": 4.015,
- "new_cases_smoothed_per_million": 4.215,
- "total_deaths_per_million": 29.881,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.067,
- "new_tests": 5721.0,
- "total_tests": 449356.0,
- "total_tests_per_thousand": 41.961,
- "new_tests_per_thousand": 0.534,
- "new_tests_smoothed": 5375.0,
- "new_tests_smoothed_per_thousand": 0.502,
- "tests_per_case": 119.066,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-02",
- "total_cases": 9302.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 42.571,
- "total_deaths": 321.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 868.617,
- "new_cases_per_million": 2.708,
- "new_cases_smoothed_per_million": 3.975,
- "total_deaths_per_million": 29.975,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.053,
- "new_tests": 6478.0,
- "total_tests": 455834.0,
- "total_tests_per_thousand": 42.566,
- "new_tests_per_thousand": 0.605,
- "new_tests_smoothed": 5266.0,
- "new_tests_smoothed_per_thousand": 0.492,
- "tests_per_case": 123.698,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-03",
- "total_cases": 9364.0,
- "new_cases": 62.0,
- "new_cases_smoothed": 44.857,
- "total_deaths": 323.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 874.406,
- "new_cases_per_million": 5.79,
- "new_cases_smoothed_per_million": 4.189,
- "total_deaths_per_million": 30.162,
- "new_deaths_per_million": 0.187,
- "new_deaths_smoothed_per_million": 0.08,
- "new_tests": 5313.0,
- "total_tests": 461147.0,
- "total_tests_per_thousand": 43.062,
- "new_tests_per_thousand": 0.496,
- "new_tests_smoothed": 5047.0,
- "new_tests_smoothed_per_thousand": 0.471,
- "tests_per_case": 112.51299999999999,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-04",
- "total_cases": 9438.0,
- "new_cases": 74.0,
- "new_cases_smoothed": 50.286,
- "total_deaths": 324.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 881.316,
- "new_cases_per_million": 6.91,
- "new_cases_smoothed_per_million": 4.696,
- "total_deaths_per_million": 30.255,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.093,
- "new_tests": 5011.0,
- "total_tests": 466158.0,
- "total_tests_per_thousand": 43.53,
- "new_tests_per_thousand": 0.468,
- "new_tests_smoothed": 4904.0,
- "new_tests_smoothed_per_thousand": 0.458,
- "tests_per_case": 97.523,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-05",
- "total_cases": 9494.0,
- "new_cases": 56.0,
- "new_cases_smoothed": 50.571,
- "total_deaths": 326.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 886.546,
- "new_cases_per_million": 5.229,
- "new_cases_smoothed_per_million": 4.722,
- "total_deaths_per_million": 30.442,
- "new_deaths_per_million": 0.187,
- "new_deaths_smoothed_per_million": 0.093,
- "new_tests": 4173.0,
- "total_tests": 470331.0,
- "total_tests_per_thousand": 43.919,
- "new_tests_per_thousand": 0.39,
- "new_tests_smoothed": 4626.0,
- "new_tests_smoothed_per_thousand": 0.432,
- "tests_per_case": 91.475,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-06",
- "total_cases": 9529.0,
- "new_cases": 35.0,
- "new_cases_smoothed": 47.571,
- "total_deaths": 327.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 889.814,
- "new_cases_per_million": 3.268,
- "new_cases_smoothed_per_million": 4.442,
- "total_deaths_per_million": 30.535,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.107,
- "new_tests": 2150.0,
- "total_tests": 472481.0,
- "total_tests_per_thousand": 44.12,
- "new_tests_per_thousand": 0.201,
- "new_tests_smoothed": 4427.0,
- "new_tests_smoothed_per_thousand": 0.413,
- "tests_per_case": 93.06,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-07",
- "total_cases": 9567.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 48.143,
- "total_deaths": 327.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 893.362,
- "new_cases_per_million": 3.548,
- "new_cases_smoothed_per_million": 4.496,
- "total_deaths_per_million": 30.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.107,
- "new_tests": 2127.0,
- "total_tests": 474608.0,
- "total_tests_per_thousand": 44.319,
- "new_tests_per_thousand": 0.199,
- "new_tests_smoothed": 4425.0,
- "new_tests_smoothed_per_thousand": 0.413,
- "tests_per_case": 91.914,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-08",
- "total_cases": 9628.0,
- "new_cases": 61.0,
- "new_cases_smoothed": 50.714,
- "total_deaths": 327.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 899.058,
- "new_cases_per_million": 5.696,
- "new_cases_smoothed_per_million": 4.736,
- "total_deaths_per_million": 30.535,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.093,
- "new_tests": 4684.0,
- "total_tests": 479292.0,
- "total_tests_per_thousand": 44.756,
- "new_tests_per_thousand": 0.437,
- "new_tests_smoothed": 4277.0,
- "new_tests_smoothed_per_thousand": 0.399,
- "tests_per_case": 84.335,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-09",
- "total_cases": 9697.0,
- "new_cases": 69.0,
- "new_cases_smoothed": 56.429,
- "total_deaths": 328.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 905.502,
- "new_cases_per_million": 6.443,
- "new_cases_smoothed_per_million": 5.269,
- "total_deaths_per_million": 30.628,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.093,
- "new_tests": 4552.0,
- "total_tests": 483844.0,
- "total_tests_per_thousand": 45.181,
- "new_tests_per_thousand": 0.425,
- "new_tests_smoothed": 4001.0,
- "new_tests_smoothed_per_thousand": 0.374,
- "tests_per_case": 70.904,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-10",
- "total_cases": 9751.0,
- "new_cases": 54.0,
- "new_cases_smoothed": 55.286,
- "total_deaths": 328.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 910.544,
- "new_cases_per_million": 5.042,
- "new_cases_smoothed_per_million": 5.163,
- "total_deaths_per_million": 30.628,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.067,
- "new_tests": 4068.0,
- "total_tests": 487912.0,
- "total_tests_per_thousand": 45.561,
- "new_tests_per_thousand": 0.38,
- "new_tests_smoothed": 3824.0,
- "new_tests_smoothed_per_thousand": 0.357,
- "tests_per_case": 69.168,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-11",
- "total_cases": 9824.0,
- "new_cases": 73.0,
- "new_cases_smoothed": 55.143,
- "total_deaths": 328.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 917.361,
- "new_cases_per_million": 6.817,
- "new_cases_smoothed_per_million": 5.149,
- "total_deaths_per_million": 30.628,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.053,
- "new_tests": 3739.0,
- "total_tests": 491651.0,
- "total_tests_per_thousand": 45.91,
- "new_tests_per_thousand": 0.349,
- "new_tests_smoothed": 3642.0,
- "new_tests_smoothed_per_thousand": 0.34,
- "tests_per_case": 66.047,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-12",
- "total_cases": 9886.0,
- "new_cases": 62.0,
- "new_cases_smoothed": 56.0,
- "total_deaths": 329.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 923.15,
- "new_cases_per_million": 5.79,
- "new_cases_smoothed_per_million": 5.229,
- "total_deaths_per_million": 30.722,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.04,
- "new_tests": 3726.0,
- "total_tests": 495377.0,
- "total_tests_per_thousand": 46.258,
- "new_tests_per_thousand": 0.348,
- "new_tests_smoothed": 3578.0,
- "new_tests_smoothed_per_thousand": 0.334,
- "tests_per_case": 63.893,
- "positive_rate": 0.016,
- "tests_units": "tests performed",
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-13",
- "total_cases": 9938.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 58.429,
- "total_deaths": 329.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 928.006,
- "new_cases_per_million": 4.856,
- "new_cases_smoothed_per_million": 5.456,
- "total_deaths_per_million": 30.722,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.027,
- "new_tests": 1652.0,
- "total_tests": 497029.0,
- "total_tests_per_thousand": 46.412,
- "new_tests_per_thousand": 0.154,
- "new_tests_smoothed": 3507.0,
- "new_tests_smoothed_per_thousand": 0.327,
- "tests_per_case": 60.022,
- "positive_rate": 0.017,
- "tests_units": "tests performed",
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-14",
- "total_cases": 9991.0,
- "new_cases": 53.0,
- "new_cases_smoothed": 60.571,
- "total_deaths": 329.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 932.955,
- "new_cases_per_million": 4.949,
- "new_cases_smoothed_per_million": 5.656,
- "total_deaths_per_million": 30.722,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.027,
- "new_tests": 1121.0,
- "total_tests": 498150.0,
- "total_tests_per_thousand": 46.517,
- "new_tests_per_thousand": 0.105,
- "new_tests_smoothed": 3363.0,
- "new_tests_smoothed_per_thousand": 0.314,
- "tests_per_case": 55.521,
- "positive_rate": 0.018000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-15",
- "total_cases": 10024.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 56.571,
- "total_deaths": 329.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 936.037,
- "new_cases_per_million": 3.082,
- "new_cases_smoothed_per_million": 5.283,
- "total_deaths_per_million": 30.722,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.027,
- "new_tests": 3673.0,
- "total_tests": 501823.0,
- "total_tests_per_thousand": 46.86,
- "new_tests_per_thousand": 0.343,
- "new_tests_smoothed": 3219.0,
- "new_tests_smoothed_per_thousand": 0.301,
- "tests_per_case": 56.902,
- "positive_rate": 0.018000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-16",
- "total_cases": 10064.0,
- "new_cases": 40.0,
- "new_cases_smoothed": 52.429,
- "total_deaths": 330.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 939.772,
- "new_cases_per_million": 3.735,
- "new_cases_smoothed_per_million": 4.896,
- "total_deaths_per_million": 30.815,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.027,
- "new_tests": 4023.0,
- "total_tests": 505846.0,
- "total_tests_per_thousand": 47.236,
- "new_tests_per_thousand": 0.376,
- "new_tests_smoothed": 3143.0,
- "new_tests_smoothed_per_thousand": 0.293,
- "tests_per_case": 59.948,
- "positive_rate": 0.017,
- "tests_units": "tests performed",
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-17",
- "total_cases": 10111.0,
- "new_cases": 47.0,
- "new_cases_smoothed": 51.429,
- "total_deaths": 331.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 944.161,
- "new_cases_per_million": 4.389,
- "new_cases_smoothed_per_million": 4.802,
- "total_deaths_per_million": 30.909,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.04,
- "new_tests": 4036.0,
- "total_tests": 509882.0,
- "total_tests_per_thousand": 47.613,
- "new_tests_per_thousand": 0.377,
- "new_tests_smoothed": 3139.0,
- "new_tests_smoothed_per_thousand": 0.293,
- "tests_per_case": 61.036,
- "positive_rate": 0.016,
- "tests_units": "tests performed",
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-18",
- "total_cases": 10162.0,
- "new_cases": 51.0,
- "new_cases_smoothed": 48.286,
- "total_deaths": 333.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 948.923,
- "new_cases_per_million": 4.762,
- "new_cases_smoothed_per_million": 4.509,
- "total_deaths_per_million": 31.095,
- "new_deaths_per_million": 0.187,
- "new_deaths_smoothed_per_million": 0.067,
- "new_tests": 4403.0,
- "total_tests": 514285.0,
- "total_tests_per_thousand": 48.024,
- "new_tests_per_thousand": 0.411,
- "new_tests_smoothed": 3233.0,
- "new_tests_smoothed_per_thousand": 0.302,
- "tests_per_case": 66.956,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-19",
- "total_cases": 10230.0,
- "new_cases": 68.0,
- "new_cases_smoothed": 49.143,
- "total_deaths": 334.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 955.273,
- "new_cases_per_million": 6.35,
- "new_cases_smoothed_per_million": 4.589,
- "total_deaths_per_million": 31.189,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.067,
- "new_tests": 3574.0,
- "total_tests": 517859.0,
- "total_tests_per_thousand": 48.357,
- "new_tests_per_thousand": 0.334,
- "new_tests_smoothed": 3212.0,
- "new_tests_smoothed_per_thousand": 0.3,
- "tests_per_case": 65.36,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-20",
- "total_cases": 10406.0,
- "new_cases": 176.0,
- "new_cases_smoothed": 66.857,
- "total_deaths": 335.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 971.708,
- "new_cases_per_million": 16.435,
- "new_cases_smoothed_per_million": 6.243,
- "total_deaths_per_million": 31.282,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.08,
- "new_tests": 1699.0,
- "total_tests": 519558.0,
- "total_tests_per_thousand": 48.516,
- "new_tests_per_thousand": 0.159,
- "new_tests_smoothed": 3218.0,
- "new_tests_smoothed_per_thousand": 0.3,
- "tests_per_case": 48.132,
- "positive_rate": 0.021,
- "tests_units": "tests performed",
- "stringency_index": 41.67
- },
- {
- "date": "2020-06-21",
- "total_cases": 10448.0,
- "new_cases": 42.0,
- "new_cases_smoothed": 65.286,
- "total_deaths": 336.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 975.63,
- "new_cases_per_million": 3.922,
- "new_cases_smoothed_per_million": 6.096,
- "total_deaths_per_million": 31.376,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.093,
- "new_tests": 1313.0,
- "total_tests": 520871.0,
- "total_tests_per_thousand": 48.639,
- "new_tests_per_thousand": 0.123,
- "new_tests_smoothed": 3246.0,
- "new_tests_smoothed_per_thousand": 0.303,
- "tests_per_case": 49.72,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 35.19
- },
- {
- "date": "2020-06-22",
- "total_cases": 10498.0,
- "new_cases": 50.0,
- "new_cases_smoothed": 67.714,
- "total_deaths": 336.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 980.299,
- "new_cases_per_million": 4.669,
- "new_cases_smoothed_per_million": 6.323,
- "total_deaths_per_million": 31.376,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.093,
- "new_tests": 3910.0,
- "total_tests": 524781.0,
- "total_tests_per_thousand": 49.004,
- "new_tests_per_thousand": 0.365,
- "new_tests_smoothed": 3280.0,
- "new_tests_smoothed_per_thousand": 0.306,
- "tests_per_case": 48.43899999999999,
- "positive_rate": 0.021,
- "tests_units": "tests performed",
- "stringency_index": 35.19
- },
- {
- "date": "2020-06-23",
- "total_cases": 10561.0,
- "new_cases": 63.0,
- "new_cases_smoothed": 71.0,
- "total_deaths": 336.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 986.182,
- "new_cases_per_million": 5.883,
- "new_cases_smoothed_per_million": 6.63,
- "total_deaths_per_million": 31.376,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.08,
- "new_tests": 4567.0,
- "total_tests": 529348.0,
- "total_tests_per_thousand": 49.43,
- "new_tests_per_thousand": 0.426,
- "new_tests_smoothed": 3357.0,
- "new_tests_smoothed_per_thousand": 0.313,
- "tests_per_case": 47.282,
- "positive_rate": 0.021,
- "tests_units": "tests performed",
- "stringency_index": 35.19
- },
- {
- "date": "2020-06-24",
- "total_cases": 10650.0,
- "new_cases": 89.0,
- "new_cases_smoothed": 77.0,
- "total_deaths": 339.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 994.492,
- "new_cases_per_million": 8.311,
- "new_cases_smoothed_per_million": 7.19,
- "total_deaths_per_million": 31.656,
- "new_deaths_per_million": 0.28,
- "new_deaths_smoothed_per_million": 0.107,
- "new_tests": 4287.0,
- "total_tests": 533635.0,
- "total_tests_per_thousand": 49.831,
- "new_tests_per_thousand": 0.4,
- "new_tests_smoothed": 3393.0,
- "new_tests_smoothed_per_thousand": 0.317,
- "tests_per_case": 44.065,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 35.19
- },
- {
- "date": "2020-06-25",
- "total_cases": 10777.0,
- "new_cases": 127.0,
- "new_cases_smoothed": 87.857,
- "total_deaths": 343.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 1006.351,
- "new_cases_per_million": 11.859,
- "new_cases_smoothed_per_million": 8.204,
- "total_deaths_per_million": 32.029,
- "new_deaths_per_million": 0.374,
- "new_deaths_smoothed_per_million": 0.133,
- "new_tests": 4047.0,
- "total_tests": 537682.0,
- "total_tests_per_thousand": 50.209,
- "new_tests_per_thousand": 0.378,
- "new_tests_smoothed": 3342.0,
- "new_tests_smoothed_per_thousand": 0.312,
- "tests_per_case": 38.039,
- "positive_rate": 0.026000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 35.19
- },
- {
- "date": "2020-06-26",
- "total_cases": 10870.0,
- "new_cases": 93.0,
- "new_cases_smoothed": 91.429,
- "total_deaths": 345.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 1015.036,
- "new_cases_per_million": 8.684,
- "new_cases_smoothed_per_million": 8.538,
- "total_deaths_per_million": 32.216,
- "new_deaths_per_million": 0.187,
- "new_deaths_smoothed_per_million": 0.147,
- "new_tests": 4533.0,
- "total_tests": 542215.0,
- "total_tests_per_thousand": 50.632,
- "new_tests_per_thousand": 0.423,
- "new_tests_smoothed": 3479.0,
- "new_tests_smoothed_per_thousand": 0.325,
- "tests_per_case": 38.052,
- "positive_rate": 0.026000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 35.19
- },
- {
- "date": "2020-06-27",
- "total_cases": 11038.0,
- "new_cases": 168.0,
- "new_cases_smoothed": 90.286,
- "total_deaths": 345.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 1030.724,
- "new_cases_per_million": 15.688,
- "new_cases_smoothed_per_million": 8.431,
- "total_deaths_per_million": 32.216,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.133,
- "new_tests": 2554.0,
- "total_tests": 544769.0,
- "total_tests_per_thousand": 50.87,
- "new_tests_per_thousand": 0.238,
- "new_tests_smoothed": 3602.0,
- "new_tests_smoothed_per_thousand": 0.336,
- "tests_per_case": 39.896,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 35.19
- },
- {
- "date": "2020-06-28",
- "total_cases": 11298.0,
- "new_cases": 260.0,
- "new_cases_smoothed": 121.429,
- "total_deaths": 347.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 1055.002,
- "new_cases_per_million": 24.279,
- "new_cases_smoothed_per_million": 11.339,
- "total_deaths_per_million": 32.403,
- "new_deaths_per_million": 0.187,
- "new_deaths_smoothed_per_million": 0.147,
- "new_tests": 2423.0,
- "total_tests": 547192.0,
- "total_tests_per_thousand": 51.097,
- "new_tests_per_thousand": 0.226,
- "new_tests_smoothed": 3760.0,
- "new_tests_smoothed_per_thousand": 0.351,
- "tests_per_case": 30.965,
- "positive_rate": 0.032,
- "tests_units": "tests performed",
- "stringency_index": 35.19
- },
- {
- "date": "2020-06-29",
- "total_cases": 11603.0,
- "new_cases": 305.0,
- "new_cases_smoothed": 157.857,
- "total_deaths": 348.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 1083.483,
- "new_cases_per_million": 28.481,
- "new_cases_smoothed_per_million": 14.741,
- "total_deaths_per_million": 32.496,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.16,
- "new_tests": 4485.0,
- "total_tests": 551677.0,
- "total_tests_per_thousand": 51.515,
- "new_tests_per_thousand": 0.419,
- "new_tests_smoothed": 3842.0,
- "new_tests_smoothed_per_thousand": 0.359,
- "tests_per_case": 24.338,
- "positive_rate": 0.040999999999999995,
- "tests_units": "tests performed",
- "stringency_index": 35.19
- },
- {
- "date": "2020-06-30",
- "total_cases": 11805.0,
- "new_cases": 202.0,
- "new_cases_smoothed": 177.714,
- "total_deaths": 348.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 1102.346,
- "new_cases_per_million": 18.863,
- "new_cases_smoothed_per_million": 16.595,
- "total_deaths_per_million": 32.496,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.16,
- "new_tests": 4412.0,
- "total_tests": 556089.0,
- "total_tests_per_thousand": 51.927,
- "new_tests_per_thousand": 0.412,
- "new_tests_smoothed": 3820.0,
- "new_tests_smoothed_per_thousand": 0.357,
- "tests_per_case": 21.495,
- "positive_rate": 0.047,
- "tests_units": "tests performed",
- "stringency_index": 37.5
- },
- {
- "date": "2020-07-01",
- "total_cases": 11954.0,
- "new_cases": 149.0,
- "new_cases_smoothed": 186.286,
- "total_deaths": 349.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 1116.259,
- "new_cases_per_million": 13.914,
- "new_cases_smoothed_per_million": 17.395,
- "total_deaths_per_million": 32.589,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.133,
- "new_tests": 4593.0,
- "total_tests": 560682.0,
- "total_tests_per_thousand": 52.356,
- "new_tests_per_thousand": 0.429,
- "new_tests_smoothed": 3864.0,
- "new_tests_smoothed_per_thousand": 0.361,
- "tests_per_case": 20.741999999999997,
- "positive_rate": 0.048,
- "tests_units": "tests performed",
- "stringency_index": 37.5
- },
- {
- "date": "2020-07-02",
- "total_cases": 12046.0,
- "new_cases": 92.0,
- "new_cases_smoothed": 181.286,
- "total_deaths": 349.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 1124.85,
- "new_cases_per_million": 8.591,
- "new_cases_smoothed_per_million": 16.928,
- "total_deaths_per_million": 32.589,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.08,
- "new_tests": 4665.0,
- "total_tests": 565347.0,
- "total_tests_per_thousand": 52.792,
- "new_tests_per_thousand": 0.436,
- "new_tests_smoothed": 3952.0,
- "new_tests_smoothed_per_thousand": 0.369,
- "tests_per_case": 21.8,
- "positive_rate": 0.046,
- "tests_units": "tests performed",
- "stringency_index": 37.5
- },
- {
- "date": "2020-07-03",
- "total_cases": 12178.0,
- "new_cases": 132.0,
- "new_cases_smoothed": 186.857,
- "total_deaths": 351.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 1137.176,
- "new_cases_per_million": 12.326,
- "new_cases_smoothed_per_million": 17.449,
- "total_deaths_per_million": 32.776,
- "new_deaths_per_million": 0.187,
- "new_deaths_smoothed_per_million": 0.08,
- "new_tests": 5109.0,
- "total_tests": 570456.0,
- "total_tests_per_thousand": 53.269,
- "new_tests_per_thousand": 0.477,
- "new_tests_smoothed": 4034.0,
- "new_tests_smoothed_per_thousand": 0.377,
- "tests_per_case": 21.589000000000002,
- "positive_rate": 0.046,
- "tests_units": "tests performed",
- "stringency_index": 37.5
- },
- {
- "date": "2020-07-04",
- "total_cases": 12319.0,
- "new_cases": 141.0,
- "new_cases_smoothed": 183.0,
- "total_deaths": 352.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 1150.343,
- "new_cases_per_million": 13.167,
- "new_cases_smoothed_per_million": 17.088,
- "total_deaths_per_million": 32.87,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.093,
- "new_tests": 1687.0,
- "total_tests": 572143.0,
- "total_tests_per_thousand": 53.426,
- "new_tests_per_thousand": 0.158,
- "new_tests_smoothed": 3911.0,
- "new_tests_smoothed_per_thousand": 0.365,
- "tests_per_case": 21.372,
- "positive_rate": 0.047,
- "tests_units": "tests performed",
- "stringency_index": 34.72
- },
- {
- "date": "2020-07-05",
- "total_cases": 12440.0,
- "new_cases": 121.0,
- "new_cases_smoothed": 163.143,
- "total_deaths": 351.0,
- "new_deaths": -1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 1161.642,
- "new_cases_per_million": 11.299,
- "new_cases_smoothed_per_million": 15.234,
- "total_deaths_per_million": 32.776,
- "new_deaths_per_million": -0.093,
- "new_deaths_smoothed_per_million": 0.053,
- "new_tests": 1524.0,
- "total_tests": 573667.0,
- "total_tests_per_thousand": 53.569,
- "new_tests_per_thousand": 0.142,
- "new_tests_smoothed": 3782.0,
- "new_tests_smoothed_per_thousand": 0.353,
- "tests_per_case": 23.182,
- "positive_rate": 0.043,
- "tests_units": "tests performed",
- "stringency_index": 34.72
- },
- {
- "date": "2020-07-06",
- "total_cases": 12515.0,
- "new_cases": 75.0,
- "new_cases_smoothed": 130.286,
- "total_deaths": 348.0,
- "new_deaths": -3.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1168.645,
- "new_cases_per_million": 7.003,
- "new_cases_smoothed_per_million": 12.166,
- "total_deaths_per_million": 32.496,
- "new_deaths_per_million": -0.28,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1714.0,
- "total_tests": 575381.0,
- "total_tests_per_thousand": 53.729,
- "new_tests_per_thousand": 0.16,
- "new_tests_smoothed": 3386.0,
- "new_tests_smoothed_per_thousand": 0.316,
- "tests_per_case": 25.989,
- "positive_rate": 0.038,
- "tests_units": "tests performed",
- "stringency_index": 34.72
- },
- {
- "date": "2020-07-07",
- "total_cases": 12566.0,
- "new_cases": 51.0,
- "new_cases_smoothed": 108.714,
- "total_deaths": 350.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1173.408,
- "new_cases_per_million": 4.762,
- "new_cases_smoothed_per_million": 10.152,
- "total_deaths_per_million": 32.683,
- "new_deaths_per_million": 0.187,
- "new_deaths_smoothed_per_million": 0.027,
- "new_tests": 4159.0,
- "total_tests": 579540.0,
- "total_tests_per_thousand": 54.117,
- "new_tests_per_thousand": 0.388,
- "new_tests_smoothed": 3350.0,
- "new_tests_smoothed_per_thousand": 0.313,
- "tests_per_case": 30.815,
- "positive_rate": 0.032,
- "tests_units": "tests performed",
- "stringency_index": 34.72
- },
- {
- "date": "2020-07-08",
- "total_cases": 12685.0,
- "new_cases": 119.0,
- "new_cases_smoothed": 104.429,
- "total_deaths": 351.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1184.52,
- "new_cases_per_million": 11.112,
- "new_cases_smoothed_per_million": 9.751,
- "total_deaths_per_million": 32.776,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.027,
- "new_tests": 5406.0,
- "total_tests": 584946.0,
- "total_tests_per_thousand": 54.622,
- "new_tests_per_thousand": 0.505,
- "new_tests_smoothed": 3466.0,
- "new_tests_smoothed_per_thousand": 0.324,
- "tests_per_case": 33.19,
- "positive_rate": 0.03,
- "tests_units": "tests performed",
- "stringency_index": 34.72
- },
- {
- "date": "2020-07-09",
- "total_cases": 12814.0,
- "new_cases": 129.0,
- "new_cases_smoothed": 109.714,
- "total_deaths": 351.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1196.566,
- "new_cases_per_million": 12.046,
- "new_cases_smoothed_per_million": 10.245,
- "total_deaths_per_million": 32.776,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.027,
- "new_tests": 4682.0,
- "total_tests": 589628.0,
- "total_tests_per_thousand": 55.059,
- "new_tests_per_thousand": 0.437,
- "new_tests_smoothed": 3469.0,
- "new_tests_smoothed_per_thousand": 0.324,
- "tests_per_case": 31.618000000000002,
- "positive_rate": 0.032,
- "tests_units": "tests performed",
- "stringency_index": 34.72
- },
- {
- "date": "2020-07-10",
- "total_cases": 12919.0,
- "new_cases": 105.0,
- "new_cases_smoothed": 105.857,
- "total_deaths": 352.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1206.371,
- "new_cases_per_million": 9.805,
- "new_cases_smoothed_per_million": 9.885,
- "total_deaths_per_million": 32.87,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 5333.0,
- "total_tests": 594961.0,
- "total_tests_per_thousand": 55.557,
- "new_tests_per_thousand": 0.498,
- "new_tests_smoothed": 3501.0,
- "new_tests_smoothed_per_thousand": 0.327,
- "tests_per_case": 33.073,
- "positive_rate": 0.03,
- "tests_units": "tests performed",
- "stringency_index": 34.72
- },
- {
- "date": "2020-07-11",
- "total_cases": 13062.0,
- "new_cases": 143.0,
- "new_cases_smoothed": 106.143,
- "total_deaths": 352.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1219.724,
- "new_cases_per_million": 13.353,
- "new_cases_smoothed_per_million": 9.912,
- "total_deaths_per_million": 32.87,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 2321.0,
- "total_tests": 597282.0,
- "total_tests_per_thousand": 55.774,
- "new_tests_per_thousand": 0.217,
- "new_tests_smoothed": 3591.0,
- "new_tests_smoothed_per_thousand": 0.335,
- "tests_per_case": 33.832,
- "positive_rate": 0.03,
- "tests_units": "tests performed",
- "stringency_index": 34.72
- },
- {
- "date": "2020-07-12",
- "total_cases": 13115.0,
- "new_cases": 53.0,
- "new_cases_smoothed": 96.429,
- "total_deaths": 352.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1224.673,
- "new_cases_per_million": 4.949,
- "new_cases_smoothed_per_million": 9.004,
- "total_deaths_per_million": 32.87,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "new_tests": 1787.0,
- "total_tests": 599069.0,
- "total_tests_per_thousand": 55.941,
- "new_tests_per_thousand": 0.167,
- "new_tests_smoothed": 3629.0,
- "new_tests_smoothed_per_thousand": 0.339,
- "tests_per_case": 37.634,
- "positive_rate": 0.027000000000000003,
- "tests_units": "tests performed",
- "stringency_index": 34.72
- },
- {
- "date": "2020-07-13",
- "total_cases": 13174.0,
- "new_cases": 59.0,
- "new_cases_smoothed": 94.143,
- "total_deaths": 352.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 1230.182,
- "new_cases_per_million": 5.509,
- "new_cases_smoothed_per_million": 8.791,
- "total_deaths_per_million": 32.87,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.053,
- "new_tests": 4424.0,
- "total_tests": 603493.0,
- "total_tests_per_thousand": 56.354,
- "new_tests_per_thousand": 0.413,
- "new_tests_smoothed": 4016.0,
- "new_tests_smoothed_per_thousand": 0.375,
- "tests_per_case": 42.659,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 34.72
- },
- {
- "date": "2020-07-14",
- "total_cases": 13238.0,
- "new_cases": 64.0,
- "new_cases_smoothed": 96.0,
- "total_deaths": 353.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 1236.159,
- "new_cases_per_million": 5.976,
- "new_cases_smoothed_per_million": 8.964,
- "total_deaths_per_million": 32.963,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.04,
- "new_tests": 4802.0,
- "total_tests": 608295.0,
- "total_tests_per_thousand": 56.802,
- "new_tests_per_thousand": 0.448,
- "new_tests_smoothed": 4108.0,
- "new_tests_smoothed_per_thousand": 0.384,
- "tests_per_case": 42.792,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 34.72
- },
- {
- "date": "2020-07-15",
- "total_cases": 13341.0,
- "new_cases": 103.0,
- "new_cases_smoothed": 93.714,
- "total_deaths": 355.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 1245.777,
- "new_cases_per_million": 9.618,
- "new_cases_smoothed_per_million": 8.751,
- "total_deaths_per_million": 33.15,
- "new_deaths_per_million": 0.187,
- "new_deaths_smoothed_per_million": 0.053,
- "new_tests": 4694.0,
- "total_tests": 612989.0,
- "total_tests_per_thousand": 57.241,
- "new_tests_per_thousand": 0.438,
- "new_tests_smoothed": 4006.0,
- "new_tests_smoothed_per_thousand": 0.374,
- "tests_per_case": 42.747,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 34.72
- },
- {
- "date": "2020-07-16",
- "total_cases": 13475.0,
- "new_cases": 134.0,
- "new_cases_smoothed": 94.429,
- "total_deaths": 355.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 1258.29,
- "new_cases_per_million": 12.513,
- "new_cases_smoothed_per_million": 8.818,
- "total_deaths_per_million": 33.15,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.053,
- "new_tests": 4730.0,
- "total_tests": 617719.0,
- "total_tests_per_thousand": 57.682,
- "new_tests_per_thousand": 0.442,
- "new_tests_smoothed": 4013.0,
- "new_tests_smoothed_per_thousand": 0.375,
- "tests_per_case": 42.498000000000005,
- "positive_rate": 0.024,
- "tests_units": "tests performed",
- "stringency_index": 34.72
- },
- {
- "date": "2020-07-17",
- "total_cases": 13612.0,
- "new_cases": 137.0,
- "new_cases_smoothed": 99.0,
- "total_deaths": 355.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 1271.083,
- "new_cases_per_million": 12.793,
- "new_cases_smoothed_per_million": 9.245,
- "total_deaths_per_million": 33.15,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.04,
- "new_tests": 4727.0,
- "total_tests": 622446.0,
- "total_tests_per_thousand": 58.124,
- "new_tests_per_thousand": 0.441,
- "new_tests_smoothed": 3926.0,
- "new_tests_smoothed_per_thousand": 0.367,
- "tests_per_case": 39.657,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 34.72
- },
- {
- "date": "2020-07-18",
- "total_cases": 13742.0,
- "new_cases": 130.0,
- "new_cases_smoothed": 97.143,
- "total_deaths": 358.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 1283.222,
- "new_cases_per_million": 12.139,
- "new_cases_smoothed_per_million": 9.071,
- "total_deaths_per_million": 33.43,
- "new_deaths_per_million": 0.28,
- "new_deaths_smoothed_per_million": 0.08,
- "new_tests": 2334.0,
- "total_tests": 624780.0,
- "total_tests_per_thousand": 58.342,
- "new_tests_per_thousand": 0.218,
- "new_tests_smoothed": 3928.0,
- "new_tests_smoothed_per_thousand": 0.367,
- "tests_per_case": 40.435,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 37.5
- },
- {
- "date": "2020-07-19",
- "total_cases": 13855.0,
- "new_cases": 113.0,
- "new_cases_smoothed": 105.714,
- "total_deaths": 358.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 1293.774,
- "new_cases_per_million": 10.552,
- "new_cases_smoothed_per_million": 9.872,
- "total_deaths_per_million": 33.43,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.08,
- "new_tests": 1830.0,
- "total_tests": 626610.0,
- "total_tests_per_thousand": 58.513,
- "new_tests_per_thousand": 0.171,
- "new_tests_smoothed": 3934.0,
- "new_tests_smoothed_per_thousand": 0.367,
- "tests_per_case": 37.214,
- "positive_rate": 0.027000000000000003,
- "tests_units": "tests performed",
- "stringency_index": 37.5
- },
- {
- "date": "2020-07-20",
- "total_cases": 13945.0,
- "new_cases": 90.0,
- "new_cases_smoothed": 110.143,
- "total_deaths": 359.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 1302.178,
- "new_cases_per_million": 8.404,
- "new_cases_smoothed_per_million": 10.285,
- "total_deaths_per_million": 33.523,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.093,
- "new_tests": 5785.0,
- "total_tests": 632395.0,
- "total_tests_per_thousand": 59.053,
- "new_tests_per_thousand": 0.54,
- "new_tests_smoothed": 4129.0,
- "new_tests_smoothed_per_thousand": 0.386,
- "tests_per_case": 37.488,
- "positive_rate": 0.027000000000000003,
- "tests_units": "tests performed",
- "stringency_index": 37.5
- },
- {
- "date": "2020-07-21",
- "total_cases": 14098.0,
- "new_cases": 153.0,
- "new_cases_smoothed": 122.857,
- "total_deaths": 359.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 1316.465,
- "new_cases_per_million": 14.287,
- "new_cases_smoothed_per_million": 11.472,
- "total_deaths_per_million": 33.523,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.08,
- "new_tests": 6089.0,
- "total_tests": 638484.0,
- "total_tests_per_thousand": 59.621,
- "new_tests_per_thousand": 0.569,
- "new_tests_smoothed": 4313.0,
- "new_tests_smoothed_per_thousand": 0.403,
- "tests_per_case": 35.106,
- "positive_rate": 0.027999999999999997,
- "tests_units": "tests performed",
- "stringency_index": 37.5
- },
- {
- "date": "2020-07-22",
- "total_cases": 14324.0,
- "new_cases": 226.0,
- "new_cases_smoothed": 140.429,
- "total_deaths": 360.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 1337.569,
- "new_cases_per_million": 21.104,
- "new_cases_smoothed_per_million": 13.113,
- "total_deaths_per_million": 33.617,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.067,
- "new_tests": 6609.0,
- "total_tests": 645093.0,
- "total_tests_per_thousand": 60.238,
- "new_tests_per_thousand": 0.617,
- "new_tests_smoothed": 4586.0,
- "new_tests_smoothed_per_thousand": 0.428,
- "tests_per_case": 32.657,
- "positive_rate": 0.031,
- "tests_units": "tests performed",
- "stringency_index": 37.5
- },
- {
- "date": "2020-07-23",
- "total_cases": 14570.0,
- "new_cases": 246.0,
- "new_cases_smoothed": 156.429,
- "total_deaths": 364.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 1360.54,
- "new_cases_per_million": 22.971,
- "new_cases_smoothed_per_million": 14.607,
- "total_deaths_per_million": 33.99,
- "new_deaths_per_million": 0.374,
- "new_deaths_smoothed_per_million": 0.12,
- "new_tests": 5557.0,
- "total_tests": 650650.0,
- "total_tests_per_thousand": 60.757,
- "new_tests_per_thousand": 0.519,
- "new_tests_smoothed": 4704.0,
- "new_tests_smoothed_per_thousand": 0.439,
- "tests_per_case": 30.070999999999998,
- "positive_rate": 0.033,
- "tests_units": "tests performed",
- "stringency_index": 37.5
- },
- {
- "date": "2020-07-24",
- "total_cases": 14800.0,
- "new_cases": 230.0,
- "new_cases_smoothed": 169.714,
- "total_deaths": 365.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 1382.017,
- "new_cases_per_million": 21.477,
- "new_cases_smoothed_per_million": 15.848,
- "total_deaths_per_million": 34.084,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.133,
- "new_tests": 6238.0,
- "total_tests": 656888.0,
- "total_tests_per_thousand": 61.34,
- "new_tests_per_thousand": 0.583,
- "new_tests_smoothed": 4920.0,
- "new_tests_smoothed_per_thousand": 0.459,
- "tests_per_case": 28.99,
- "positive_rate": 0.034,
- "tests_units": "tests performed",
- "stringency_index": 37.5
- },
- {
- "date": "2020-07-25",
- "total_cases": 15081.0,
- "new_cases": 281.0,
- "new_cases_smoothed": 191.286,
- "total_deaths": 368.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 1408.257,
- "new_cases_per_million": 26.24,
- "new_cases_smoothed_per_million": 17.862,
- "total_deaths_per_million": 34.364,
- "new_deaths_per_million": 0.28,
- "new_deaths_smoothed_per_million": 0.133,
- "new_tests": 3337.0,
- "total_tests": 660225.0,
- "total_tests_per_thousand": 61.652,
- "new_tests_per_thousand": 0.312,
- "new_tests_smoothed": 5064.0,
- "new_tests_smoothed_per_thousand": 0.473,
- "tests_per_case": 26.473000000000003,
- "positive_rate": 0.038,
- "tests_units": "tests performed",
- "stringency_index": 37.5
- },
- {
- "date": "2020-07-26",
- "total_cases": 15212.0,
- "new_cases": 131.0,
- "new_cases_smoothed": 193.857,
- "total_deaths": 368.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 1420.49,
- "new_cases_per_million": 12.233,
- "new_cases_smoothed_per_million": 18.102,
- "total_deaths_per_million": 34.364,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.133,
- "new_tests": 1781.0,
- "total_tests": 662006.0,
- "total_tests_per_thousand": 61.818,
- "new_tests_per_thousand": 0.166,
- "new_tests_smoothed": 5057.0,
- "new_tests_smoothed_per_thousand": 0.472,
- "tests_per_case": 26.086,
- "positive_rate": 0.038,
- "tests_units": "tests performed",
- "stringency_index": 37.5
- },
- {
- "date": "2020-07-27",
- "total_cases": 15324.0,
- "new_cases": 112.0,
- "new_cases_smoothed": 197.0,
- "total_deaths": 371.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 1430.948,
- "new_cases_per_million": 10.459,
- "new_cases_smoothed_per_million": 18.396,
- "total_deaths_per_million": 34.644,
- "new_deaths_per_million": 0.28,
- "new_deaths_smoothed_per_million": 0.16,
- "new_tests": 6527.0,
- "total_tests": 668533.0,
- "total_tests_per_thousand": 62.427,
- "new_tests_per_thousand": 0.609,
- "new_tests_smoothed": 5163.0,
- "new_tests_smoothed_per_thousand": 0.482,
- "tests_per_case": 26.208000000000002,
- "positive_rate": 0.038,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-07-28",
- "total_cases": 15516.0,
- "new_cases": 192.0,
- "new_cases_smoothed": 202.571,
- "total_deaths": 373.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 1448.877,
- "new_cases_per_million": 17.929,
- "new_cases_smoothed_per_million": 18.916,
- "total_deaths_per_million": 34.831,
- "new_deaths_per_million": 0.187,
- "new_deaths_smoothed_per_million": 0.187,
- "new_tests": 7877.0,
- "total_tests": 676410.0,
- "total_tests_per_thousand": 63.163,
- "new_tests_per_thousand": 0.736,
- "new_tests_smoothed": 5418.0,
- "new_tests_smoothed_per_thousand": 0.506,
- "tests_per_case": 26.746,
- "positive_rate": 0.037000000000000005,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-07-29",
- "total_cases": 15799.0,
- "new_cases": 283.0,
- "new_cases_smoothed": 210.714,
- "total_deaths": 373.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 1475.304,
- "new_cases_per_million": 26.426,
- "new_cases_smoothed_per_million": 19.676,
- "total_deaths_per_million": 34.831,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.173,
- "new_tests": 7492.0,
- "total_tests": 683902.0,
- "total_tests_per_thousand": 63.862,
- "new_tests_per_thousand": 0.7,
- "new_tests_smoothed": 5544.0,
- "new_tests_smoothed_per_thousand": 0.518,
- "tests_per_case": 26.311,
- "positive_rate": 0.038,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-07-30",
- "total_cases": 16093.0,
- "new_cases": 294.0,
- "new_cases_smoothed": 217.571,
- "total_deaths": 374.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 1502.757,
- "new_cases_per_million": 27.454,
- "new_cases_smoothed_per_million": 20.317,
- "total_deaths_per_million": 34.924,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.133,
- "new_tests": 7610.0,
- "total_tests": 691512.0,
- "total_tests_per_thousand": 64.573,
- "new_tests_per_thousand": 0.711,
- "new_tests_smoothed": 5837.0,
- "new_tests_smoothed_per_thousand": 0.545,
- "tests_per_case": 26.828000000000003,
- "positive_rate": 0.037000000000000005,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-07-31",
- "total_cases": 16342.0,
- "new_cases": 249.0,
- "new_cases_smoothed": 220.286,
- "total_deaths": 379.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 1526.009,
- "new_cases_per_million": 23.252,
- "new_cases_smoothed_per_million": 20.57,
- "total_deaths_per_million": 35.391,
- "new_deaths_per_million": 0.467,
- "new_deaths_smoothed_per_million": 0.187,
- "new_tests": 8178.0,
- "total_tests": 699690.0,
- "total_tests_per_thousand": 65.337,
- "new_tests_per_thousand": 0.764,
- "new_tests_smoothed": 6115.0,
- "new_tests_smoothed_per_thousand": 0.571,
- "tests_per_case": 27.759,
- "positive_rate": 0.036000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-01",
- "total_cases": 16574.0,
- "new_cases": 232.0,
- "new_cases_smoothed": 213.286,
- "total_deaths": 382.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 1547.673,
- "new_cases_per_million": 21.664,
- "new_cases_smoothed_per_million": 19.917,
- "total_deaths_per_million": 35.671,
- "new_deaths_per_million": 0.28,
- "new_deaths_smoothed_per_million": 0.187,
- "new_tests": 4703.0,
- "total_tests": 704393.0,
- "total_tests_per_thousand": 65.776,
- "new_tests_per_thousand": 0.439,
- "new_tests_smoothed": 6310.0,
- "new_tests_smoothed_per_thousand": 0.589,
- "tests_per_case": 29.585,
- "positive_rate": 0.034,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-02",
- "total_cases": 16699.0,
- "new_cases": 125.0,
- "new_cases_smoothed": 212.429,
- "total_deaths": 383.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 1559.345,
- "new_cases_per_million": 11.672,
- "new_cases_smoothed_per_million": 19.836,
- "total_deaths_per_million": 35.764,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.2,
- "new_tests": 2647.0,
- "total_tests": 707040.0,
- "total_tests_per_thousand": 66.023,
- "new_tests_per_thousand": 0.247,
- "new_tests_smoothed": 6433.0,
- "new_tests_smoothed_per_thousand": 0.601,
- "tests_per_case": 30.283,
- "positive_rate": 0.033,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-03",
- "total_cases": 16800.0,
- "new_cases": 101.0,
- "new_cases_smoothed": 210.857,
- "total_deaths": 383.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 1568.777,
- "new_cases_per_million": 9.431,
- "new_cases_smoothed_per_million": 19.69,
- "total_deaths_per_million": 35.764,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.16,
- "new_tests": 7719.0,
- "total_tests": 714759.0,
- "total_tests_per_thousand": 66.744,
- "new_tests_per_thousand": 0.721,
- "new_tests_smoothed": 6604.0,
- "new_tests_smoothed_per_thousand": 0.617,
- "tests_per_case": 31.32,
- "positive_rate": 0.032,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-04",
- "total_cases": 17008.0,
- "new_cases": 208.0,
- "new_cases_smoothed": 213.143,
- "total_deaths": 383.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 1588.2,
- "new_cases_per_million": 19.423,
- "new_cases_smoothed_per_million": 19.903,
- "total_deaths_per_million": 35.764,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.133,
- "new_tests": 8391.0,
- "total_tests": 723150.0,
- "total_tests_per_thousand": 67.527,
- "new_tests_per_thousand": 0.784,
- "new_tests_smoothed": 6677.0,
- "new_tests_smoothed_per_thousand": 0.623,
- "tests_per_case": 31.326,
- "positive_rate": 0.032,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-05",
- "total_cases": 17286.0,
- "new_cases": 278.0,
- "new_cases_smoothed": 212.429,
- "total_deaths": 383.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 1614.159,
- "new_cases_per_million": 25.96,
- "new_cases_smoothed_per_million": 19.836,
- "total_deaths_per_million": 35.764,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.133,
- "new_tests": 6926.0,
- "total_tests": 730076.0,
- "total_tests_per_thousand": 68.174,
- "new_tests_per_thousand": 0.647,
- "new_tests_smoothed": 6596.0,
- "new_tests_smoothed_per_thousand": 0.616,
- "tests_per_case": 31.05,
- "positive_rate": 0.032,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-06",
- "total_cases": 17529.0,
- "new_cases": 243.0,
- "new_cases_smoothed": 205.143,
- "total_deaths": 388.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 1636.85,
- "new_cases_per_million": 22.691,
- "new_cases_smoothed_per_million": 19.156,
- "total_deaths_per_million": 36.231,
- "new_deaths_per_million": 0.467,
- "new_deaths_smoothed_per_million": 0.187,
- "new_tests": 7349.0,
- "total_tests": 737425.0,
- "total_tests_per_thousand": 68.86,
- "new_tests_per_thousand": 0.686,
- "new_tests_smoothed": 6559.0,
- "new_tests_smoothed_per_thousand": 0.612,
- "tests_per_case": 31.973000000000003,
- "positive_rate": 0.031,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-07",
- "total_cases": 17740.0,
- "new_cases": 211.0,
- "new_cases_smoothed": 199.714,
- "total_deaths": 389.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 1656.553,
- "new_cases_per_million": 19.703,
- "new_cases_smoothed_per_million": 18.649,
- "total_deaths_per_million": 36.325,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.133,
- "new_tests": 9186.0,
- "total_tests": 746611.0,
- "total_tests_per_thousand": 69.718,
- "new_tests_per_thousand": 0.858,
- "new_tests_smoothed": 6703.0,
- "new_tests_smoothed_per_thousand": 0.626,
- "tests_per_case": 33.563,
- "positive_rate": 0.03,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-08",
- "total_cases": 18060.0,
- "new_cases": 320.0,
- "new_cases_smoothed": 212.286,
- "total_deaths": 389.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 1686.435,
- "new_cases_per_million": 29.881,
- "new_cases_smoothed_per_million": 19.823,
- "total_deaths_per_million": 36.325,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.093,
- "new_tests": 5488.0,
- "total_tests": 752099.0,
- "total_tests_per_thousand": 70.231,
- "new_tests_per_thousand": 0.512,
- "new_tests_smoothed": 6815.0,
- "new_tests_smoothed_per_thousand": 0.636,
- "tests_per_case": 32.103,
- "positive_rate": 0.031,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-09",
- "total_cases": 18235.0,
- "new_cases": 175.0,
- "new_cases_smoothed": 219.429,
- "total_deaths": 389.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 1702.776,
- "new_cases_per_million": 16.341,
- "new_cases_smoothed_per_million": 20.49,
- "total_deaths_per_million": 36.325,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.08,
- "new_tests": 2860.0,
- "total_tests": 754959.0,
- "total_tests_per_thousand": 70.498,
- "new_tests_per_thousand": 0.267,
- "new_tests_smoothed": 6846.0,
- "new_tests_smoothed_per_thousand": 0.639,
- "tests_per_case": 31.199,
- "positive_rate": 0.032,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-10",
- "total_cases": 18355.0,
- "new_cases": 120.0,
- "new_cases_smoothed": 222.143,
- "total_deaths": 389.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 1713.982,
- "new_cases_per_million": 11.206,
- "new_cases_smoothed_per_million": 20.744,
- "total_deaths_per_million": 36.325,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.08,
- "new_tests": 6363.0,
- "total_tests": 761322.0,
- "total_tests_per_thousand": 71.092,
- "new_tests_per_thousand": 0.594,
- "new_tests_smoothed": 6652.0,
- "new_tests_smoothed_per_thousand": 0.621,
- "tests_per_case": 29.945,
- "positive_rate": 0.033,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-11",
- "total_cases": 18494.0,
- "new_cases": 139.0,
- "new_cases_smoothed": 212.286,
- "total_deaths": 389.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 1726.962,
- "new_cases_per_million": 12.98,
- "new_cases_smoothed_per_million": 19.823,
- "total_deaths_per_million": 36.325,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.08,
- "new_tests": 8454.0,
- "total_tests": 769776.0,
- "total_tests_per_thousand": 71.881,
- "new_tests_per_thousand": 0.789,
- "new_tests_smoothed": 6661.0,
- "new_tests_smoothed_per_thousand": 0.622,
- "tests_per_case": 31.378,
- "positive_rate": 0.032,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-12",
- "total_cases": 18783.0,
- "new_cases": 289.0,
- "new_cases_smoothed": 213.857,
- "total_deaths": 391.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 1753.948,
- "new_cases_per_million": 26.987,
- "new_cases_smoothed_per_million": 19.97,
- "total_deaths_per_million": 36.511,
- "new_deaths_per_million": 0.187,
- "new_deaths_smoothed_per_million": 0.107,
- "new_tests": 7758.0,
- "total_tests": 777534.0,
- "total_tests_per_thousand": 72.606,
- "new_tests_per_thousand": 0.724,
- "new_tests_smoothed": 6780.0,
- "new_tests_smoothed_per_thousand": 0.633,
- "tests_per_case": 31.703000000000003,
- "positive_rate": 0.032,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-13",
- "total_cases": 19075.0,
- "new_cases": 292.0,
- "new_cases_smoothed": 220.857,
- "total_deaths": 391.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 1781.215,
- "new_cases_per_million": 27.267,
- "new_cases_smoothed_per_million": 20.624,
- "total_deaths_per_million": 36.511,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.04,
- "new_tests": 7193.0,
- "total_tests": 784727.0,
- "total_tests_per_thousand": 73.277,
- "new_tests_per_thousand": 0.672,
- "new_tests_smoothed": 6757.0,
- "new_tests_smoothed_per_thousand": 0.631,
- "tests_per_case": 30.594,
- "positive_rate": 0.033,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-14",
- "total_cases": 19401.0,
- "new_cases": 326.0,
- "new_cases_smoothed": 237.286,
- "total_deaths": 391.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1811.657,
- "new_cases_per_million": 30.442,
- "new_cases_smoothed_per_million": 22.158,
- "total_deaths_per_million": 36.511,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.027,
- "new_tests": 7793.0,
- "total_tests": 792520.0,
- "total_tests_per_thousand": 74.005,
- "new_tests_per_thousand": 0.728,
- "new_tests_smoothed": 6558.0,
- "new_tests_smoothed_per_thousand": 0.612,
- "tests_per_case": 27.638,
- "positive_rate": 0.036000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-15",
- "total_cases": 19693.0,
- "new_cases": 292.0,
- "new_cases_smoothed": 233.286,
- "total_deaths": 394.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 1838.924,
- "new_cases_per_million": 27.267,
- "new_cases_smoothed_per_million": 21.784,
- "total_deaths_per_million": 36.792,
- "new_deaths_per_million": 0.28,
- "new_deaths_smoothed_per_million": 0.067,
- "new_tests": 4942.0,
- "total_tests": 797462.0,
- "total_tests_per_thousand": 74.467,
- "new_tests_per_thousand": 0.461,
- "new_tests_smoothed": 6480.0,
- "new_tests_smoothed_per_thousand": 0.605,
- "tests_per_case": 27.776999999999997,
- "positive_rate": 0.036000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-16",
- "total_cases": 19891.0,
- "new_cases": 198.0,
- "new_cases_smoothed": 236.571,
- "total_deaths": 395.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 1857.413,
- "new_cases_per_million": 18.489,
- "new_cases_smoothed_per_million": 22.091,
- "total_deaths_per_million": 36.885,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.08,
- "new_tests": 2872.0,
- "total_tests": 800334.0,
- "total_tests_per_thousand": 74.735,
- "new_tests_per_thousand": 0.268,
- "new_tests_smoothed": 6482.0,
- "new_tests_smoothed_per_thousand": 0.605,
- "tests_per_case": 27.4,
- "positive_rate": 0.036000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-17",
- "total_cases": 20012.0,
- "new_cases": 121.0,
- "new_cases_smoothed": 236.714,
- "total_deaths": 397.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 1868.712,
- "new_cases_per_million": 11.299,
- "new_cases_smoothed_per_million": 22.104,
- "total_deaths_per_million": 37.072,
- "new_deaths_per_million": 0.187,
- "new_deaths_smoothed_per_million": 0.107,
- "new_tests": 7192.0,
- "total_tests": 807526.0,
- "total_tests_per_thousand": 75.406,
- "new_tests_per_thousand": 0.672,
- "new_tests_smoothed": 6601.0,
- "new_tests_smoothed_per_thousand": 0.616,
- "tests_per_case": 27.886,
- "positive_rate": 0.036000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-18",
- "total_cases": 20202.0,
- "new_cases": 190.0,
- "new_cases_smoothed": 244.0,
- "total_deaths": 399.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 1886.454,
- "new_cases_per_million": 17.742,
- "new_cases_smoothed_per_million": 22.785,
- "total_deaths_per_million": 37.258,
- "new_deaths_per_million": 0.187,
- "new_deaths_smoothed_per_million": 0.133,
- "new_tests": 7599.0,
- "total_tests": 815125.0,
- "total_tests_per_thousand": 76.116,
- "new_tests_per_thousand": 0.71,
- "new_tests_smoothed": 6478.0,
- "new_tests_smoothed_per_thousand": 0.605,
- "tests_per_case": 26.549,
- "positive_rate": 0.038,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-19",
- "total_cases": 20483.0,
- "new_cases": 281.0,
- "new_cases_smoothed": 242.857,
- "total_deaths": 401.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 1912.693,
- "new_cases_per_million": 26.24,
- "new_cases_smoothed_per_million": 22.678,
- "total_deaths_per_million": 37.445,
- "new_deaths_per_million": 0.187,
- "new_deaths_smoothed_per_million": 0.133,
- "new_tests": 7546.0,
- "total_tests": 822671.0,
- "total_tests_per_thousand": 76.821,
- "new_tests_per_thousand": 0.705,
- "new_tests_smoothed": 6448.0,
- "new_tests_smoothed_per_thousand": 0.602,
- "tests_per_case": 26.551,
- "positive_rate": 0.038,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-20",
- "total_cases": 20798.0,
- "new_cases": 315.0,
- "new_cases_smoothed": 246.143,
- "total_deaths": 404.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 1942.108,
- "new_cases_per_million": 29.415,
- "new_cases_smoothed_per_million": 22.985,
- "total_deaths_per_million": 37.725,
- "new_deaths_per_million": 0.28,
- "new_deaths_smoothed_per_million": 0.173,
- "new_tests": 8218.0,
- "total_tests": 830889.0,
- "total_tests_per_thousand": 77.588,
- "new_tests_per_thousand": 0.767,
- "new_tests_smoothed": 6595.0,
- "new_tests_smoothed_per_thousand": 0.616,
- "tests_per_case": 26.793000000000003,
- "positive_rate": 0.037000000000000005,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-21",
- "total_cases": 21045.0,
- "new_cases": 247.0,
- "new_cases_smoothed": 234.857,
- "total_deaths": 406.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 1965.173,
- "new_cases_per_million": 23.065,
- "new_cases_smoothed_per_million": 21.931,
- "total_deaths_per_million": 37.912,
- "new_deaths_per_million": 0.187,
- "new_deaths_smoothed_per_million": 0.2,
- "new_tests": 9682.0,
- "total_tests": 840571.0,
- "total_tests_per_thousand": 78.492,
- "new_tests_per_thousand": 0.904,
- "new_tests_smoothed": 6864.0,
- "new_tests_smoothed_per_thousand": 0.641,
- "tests_per_case": 29.226,
- "positive_rate": 0.034,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-22",
- "total_cases": 21551.0,
- "new_cases": 506.0,
- "new_cases_smoothed": 265.429,
- "total_deaths": 411.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 2012.423,
- "new_cases_per_million": 47.25,
- "new_cases_smoothed_per_million": 24.786,
- "total_deaths_per_million": 38.379,
- "new_deaths_per_million": 0.467,
- "new_deaths_smoothed_per_million": 0.227,
- "new_tests": 5113.0,
- "total_tests": 845684.0,
- "total_tests_per_thousand": 78.97,
- "new_tests_per_thousand": 0.477,
- "new_tests_smoothed": 6889.0,
- "new_tests_smoothed_per_thousand": 0.643,
- "tests_per_case": 25.954,
- "positive_rate": 0.039,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-23",
- "total_cases": 21790.0,
- "new_cases": 239.0,
- "new_cases_smoothed": 271.286,
- "total_deaths": 411.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 2034.741,
- "new_cases_per_million": 22.318,
- "new_cases_smoothed_per_million": 25.333,
- "total_deaths_per_million": 38.379,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.213,
- "new_tests": 2397.0,
- "total_tests": 848081.0,
- "total_tests_per_thousand": 79.193,
- "new_tests_per_thousand": 0.224,
- "new_tests_smoothed": 6821.0,
- "new_tests_smoothed_per_thousand": 0.637,
- "tests_per_case": 25.143,
- "positive_rate": 0.04,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-24",
- "total_cases": 21923.0,
- "new_cases": 133.0,
- "new_cases_smoothed": 273.0,
- "total_deaths": 412.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 2047.16,
- "new_cases_per_million": 12.419,
- "new_cases_smoothed_per_million": 25.493,
- "total_deaths_per_million": 38.472,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.2,
- "new_tests": 7396.0,
- "total_tests": 855477.0,
- "total_tests_per_thousand": 79.884,
- "new_tests_per_thousand": 0.691,
- "new_tests_smoothed": 6850.0,
- "new_tests_smoothed_per_thousand": 0.64,
- "tests_per_case": 25.092,
- "positive_rate": 0.04,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-25",
- "total_cases": 22181.0,
- "new_cases": 258.0,
- "new_cases_smoothed": 282.714,
- "total_deaths": 415.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 2071.252,
- "new_cases_per_million": 24.092,
- "new_cases_smoothed_per_million": 26.4,
- "total_deaths_per_million": 38.753,
- "new_deaths_per_million": 0.28,
- "new_deaths_smoothed_per_million": 0.213,
- "new_tests": 8757.0,
- "total_tests": 864234.0,
- "total_tests_per_thousand": 80.702,
- "new_tests_per_thousand": 0.818,
- "new_tests_smoothed": 7016.0,
- "new_tests_smoothed_per_thousand": 0.655,
- "tests_per_case": 24.816999999999997,
- "positive_rate": 0.04,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-26",
- "total_cases": 22548.0,
- "new_cases": 367.0,
- "new_cases_smoothed": 295.0,
- "total_deaths": 416.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 2105.522,
- "new_cases_per_million": 34.27,
- "new_cases_smoothed_per_million": 27.547,
- "total_deaths_per_million": 38.846,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.2,
- "new_tests": 8854.0,
- "total_tests": 873088.0,
- "total_tests_per_thousand": 81.529,
- "new_tests_per_thousand": 0.827,
- "new_tests_smoothed": 7202.0,
- "new_tests_smoothed_per_thousand": 0.673,
- "tests_per_case": 24.414,
- "positive_rate": 0.040999999999999995,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-27",
- "total_cases": 22951.0,
- "new_cases": 403.0,
- "new_cases_smoothed": 307.571,
- "total_deaths": 418.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 2143.154,
- "new_cases_per_million": 37.632,
- "new_cases_smoothed_per_million": 28.721,
- "total_deaths_per_million": 39.033,
- "new_deaths_per_million": 0.187,
- "new_deaths_smoothed_per_million": 0.187,
- "new_tests": 9193.0,
- "total_tests": 882281.0,
- "total_tests_per_thousand": 82.387,
- "new_tests_per_thousand": 0.858,
- "new_tests_smoothed": 7342.0,
- "new_tests_smoothed_per_thousand": 0.686,
- "tests_per_case": 23.871,
- "positive_rate": 0.042,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-28",
- "total_cases": 23300.0,
- "new_cases": 349.0,
- "new_cases_smoothed": 322.143,
- "total_deaths": 418.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 2175.744,
- "new_cases_per_million": 32.589,
- "new_cases_smoothed_per_million": 30.082,
- "total_deaths_per_million": 39.033,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.16,
- "new_tests": 10790.0,
- "total_tests": 893071.0,
- "total_tests_per_thousand": 83.395,
- "new_tests_per_thousand": 1.008,
- "new_tests_smoothed": 7500.0,
- "new_tests_smoothed_per_thousand": 0.7,
- "tests_per_case": 23.281999999999996,
- "positive_rate": 0.043,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-29",
- "total_cases": 23777.0,
- "new_cases": 477.0,
- "new_cases_smoothed": 318.0,
- "total_deaths": 419.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 2220.286,
- "new_cases_per_million": 44.542,
- "new_cases_smoothed_per_million": 29.695,
- "total_deaths_per_million": 39.126,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.107,
- "new_tests": 6568.0,
- "total_tests": 899639.0,
- "total_tests_per_thousand": 84.008,
- "new_tests_per_thousand": 0.613,
- "new_tests_smoothed": 7708.0,
- "new_tests_smoothed_per_thousand": 0.72,
- "tests_per_case": 24.239,
- "positive_rate": 0.040999999999999995,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-30",
- "total_cases": 24094.0,
- "new_cases": 317.0,
- "new_cases_smoothed": 329.143,
- "total_deaths": 421.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 2249.887,
- "new_cases_per_million": 29.601,
- "new_cases_smoothed_per_million": 30.735,
- "total_deaths_per_million": 39.313,
- "new_deaths_per_million": 0.187,
- "new_deaths_smoothed_per_million": 0.133,
- "new_tests": 3944.0,
- "total_tests": 903583.0,
- "total_tests_per_thousand": 84.376,
- "new_tests_per_thousand": 0.368,
- "new_tests_smoothed": 7929.0,
- "new_tests_smoothed_per_thousand": 0.74,
- "tests_per_case": 24.09,
- "positive_rate": 0.042,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-31",
- "total_cases": 24367.0,
- "new_cases": 273.0,
- "new_cases_smoothed": 349.143,
- "total_deaths": 423.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 2275.38,
- "new_cases_per_million": 25.493,
- "new_cases_smoothed_per_million": 32.603,
- "total_deaths_per_million": 39.5,
- "new_deaths_per_million": 0.187,
- "new_deaths_smoothed_per_million": 0.147,
- "new_tests": 9353.0,
- "total_tests": 912936.0,
- "total_tests_per_thousand": 85.25,
- "new_tests_per_thousand": 0.873,
- "new_tests_smoothed": 8208.0,
- "new_tests_smoothed_per_thousand": 0.766,
- "tests_per_case": 23.509,
- "positive_rate": 0.043,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-01",
- "total_cases": 24618.0,
- "new_cases": 251.0,
- "new_cases_smoothed": 348.143,
- "total_deaths": 424.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 2298.818,
- "new_cases_per_million": 23.438,
- "new_cases_smoothed_per_million": 32.509,
- "total_deaths_per_million": 39.593,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.12,
- "new_tests": 11124.0,
- "total_tests": 924060.0,
- "total_tests_per_thousand": 86.288,
- "new_tests_per_thousand": 1.039,
- "new_tests_smoothed": 8547.0,
- "new_tests_smoothed_per_thousand": 0.798,
- "tests_per_case": 24.55,
- "positive_rate": 0.040999999999999995,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-02",
- "total_cases": 25117.0,
- "new_cases": 499.0,
- "new_cases_smoothed": 367.0,
- "total_deaths": 425.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 2345.414,
- "new_cases_per_million": 46.596,
- "new_cases_smoothed_per_million": 34.27,
- "total_deaths_per_million": 39.686,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.12,
- "new_tests": 11798.0,
- "total_tests": 935858.0,
- "total_tests_per_thousand": 87.39,
- "new_tests_per_thousand": 1.102,
- "new_tests_smoothed": 8967.0,
- "new_tests_smoothed_per_thousand": 0.837,
- "tests_per_case": 24.433000000000003,
- "positive_rate": 0.040999999999999995,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-03",
- "total_cases": 25773.0,
- "new_cases": 656.0,
- "new_cases_smoothed": 403.143,
- "total_deaths": 425.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 2406.671,
- "new_cases_per_million": 61.257,
- "new_cases_smoothed_per_million": 37.645,
- "total_deaths_per_million": 39.686,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.093,
- "new_tests": 11533.0,
- "total_tests": 947391.0,
- "total_tests_per_thousand": 88.467,
- "new_tests_per_thousand": 1.077,
- "new_tests_smoothed": 9301.0,
- "new_tests_smoothed_per_thousand": 0.869,
- "tests_per_case": 23.070999999999998,
- "positive_rate": 0.043,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-04",
- "total_cases": 26452.0,
- "new_cases": 679.0,
- "new_cases_smoothed": 450.286,
- "total_deaths": 426.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 2470.076,
- "new_cases_per_million": 63.405,
- "new_cases_smoothed_per_million": 42.047,
- "total_deaths_per_million": 39.78,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.107,
- "new_tests": 13593.0,
- "total_tests": 960984.0,
- "total_tests_per_thousand": 89.736,
- "new_tests_per_thousand": 1.269,
- "new_tests_smoothed": 9702.0,
- "new_tests_smoothed_per_thousand": 0.906,
- "tests_per_case": 21.546,
- "positive_rate": 0.046,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-05",
- "total_cases": 27249.0,
- "new_cases": 797.0,
- "new_cases_smoothed": 496.0,
- "total_deaths": 429.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 2544.5,
- "new_cases_per_million": 74.424,
- "new_cases_smoothed_per_million": 46.316,
- "total_deaths_per_million": 40.06,
- "new_deaths_per_million": 0.28,
- "new_deaths_smoothed_per_million": 0.133,
- "new_tests": 7466.0,
- "total_tests": 968450.0,
- "total_tests_per_thousand": 90.433,
- "new_tests_per_thousand": 0.697,
- "new_tests_smoothed": 9830.0,
- "new_tests_smoothed_per_thousand": 0.918,
- "tests_per_case": 19.819000000000003,
- "positive_rate": 0.05,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-06",
- "total_cases": 27752.0,
- "new_cases": 503.0,
- "new_cases_smoothed": 522.571,
- "total_deaths": 431.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 2591.469,
- "new_cases_per_million": 46.97,
- "new_cases_smoothed_per_million": 48.797,
- "total_deaths_per_million": 40.247,
- "new_deaths_per_million": 0.187,
- "new_deaths_smoothed_per_million": 0.133,
- "new_tests": 4535.0,
- "total_tests": 972985.0,
- "total_tests_per_thousand": 90.857,
- "new_tests_per_thousand": 0.423,
- "new_tests_smoothed": 9915.0,
- "new_tests_smoothed_per_thousand": 0.926,
- "tests_per_case": 18.973,
- "positive_rate": 0.053,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-07",
- "total_cases": 28156.0,
- "new_cases": 404.0,
- "new_cases_smoothed": 541.286,
- "total_deaths": 436.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 2629.195,
- "new_cases_per_million": 37.725,
- "new_cases_smoothed_per_million": 50.545,
- "total_deaths_per_million": 40.713,
- "new_deaths_per_million": 0.467,
- "new_deaths_smoothed_per_million": 0.173,
- "new_tests": 11576.0,
- "total_tests": 984561.0,
- "total_tests_per_thousand": 91.938,
- "new_tests_per_thousand": 1.081,
- "new_tests_smoothed": 10232.0,
- "new_tests_smoothed_per_thousand": 0.955,
- "tests_per_case": 18.903,
- "positive_rate": 0.053,
- "tests_units": "tests performed",
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-08",
- "total_cases": 28716.0,
- "new_cases": 560.0,
- "new_cases_smoothed": 585.429,
- "total_deaths": 437.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 2681.487,
- "new_cases_per_million": 52.293,
- "new_cases_smoothed_per_million": 54.667,
- "total_deaths_per_million": 40.807,
- "new_deaths_per_million": 0.093,
- "new_deaths_smoothed_per_million": 0.173,
- "new_tests": 16093.0,
- "total_tests": 1000654.0,
- "total_tests_per_thousand": 93.441,
- "new_tests_per_thousand": 1.503,
- "new_tests_smoothed": 10942.0,
- "new_tests_smoothed_per_thousand": 1.022,
- "tests_per_case": 18.691,
- "positive_rate": 0.054000000000000006,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-09",
- "total_cases": 29877.0,
- "new_cases": 1161.0,
- "new_cases_smoothed": 680.0,
- "total_deaths": 441.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 2789.901,
- "new_cases_per_million": 108.414,
- "new_cases_smoothed_per_million": 63.498,
- "total_deaths_per_million": 41.18,
- "new_deaths_per_million": 0.374,
- "new_deaths_smoothed_per_million": 0.213,
- "new_tests": 15474.0,
- "total_tests": 1016128.0,
- "total_tests_per_thousand": 94.886,
- "new_tests_per_thousand": 1.445,
- "new_tests_smoothed": 11467.0,
- "new_tests_smoothed_per_thousand": 1.071,
- "tests_per_case": 16.863,
- "positive_rate": 0.059000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-10",
- "total_cases": 31036.0,
- "new_cases": 1159.0,
- "new_cases_smoothed": 751.857,
- "total_deaths": 444.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.714,
- "total_cases_per_million": 2898.128,
- "new_cases_per_million": 108.227,
- "new_cases_smoothed_per_million": 70.208,
- "total_deaths_per_million": 41.461,
- "new_deaths_per_million": 0.28,
- "new_deaths_smoothed_per_million": 0.253,
- "new_tests": 16296.0,
- "total_tests": 1032424.0,
- "total_tests_per_thousand": 96.407,
- "new_tests_per_thousand": 1.522,
- "new_tests_smoothed": 12148.0,
- "new_tests_smoothed_per_thousand": 1.134,
- "tests_per_case": 16.157,
- "positive_rate": 0.062,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-11",
- "total_cases": 32413.0,
- "new_cases": 1377.0,
- "new_cases_smoothed": 851.571,
- "total_deaths": 448.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 3026.712,
- "new_cases_per_million": 128.584,
- "new_cases_smoothed_per_million": 79.519,
- "total_deaths_per_million": 41.834,
- "new_deaths_per_million": 0.374,
- "new_deaths_smoothed_per_million": 0.293,
- "new_tests": 19188.0,
- "total_tests": 1051612.0,
- "total_tests_per_thousand": 98.199,
- "new_tests_per_thousand": 1.792,
- "new_tests_smoothed": 12947.0,
- "new_tests_smoothed_per_thousand": 1.209,
- "tests_per_case": 15.204,
- "positive_rate": 0.066,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-12",
- "total_cases": 33860.0,
- "new_cases": 1447.0,
- "new_cases_smoothed": 944.429,
- "total_deaths": 450.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 3161.832,
- "new_cases_per_million": 135.12,
- "new_cases_smoothed_per_million": 88.19,
- "total_deaths_per_million": 42.021,
- "new_deaths_per_million": 0.187,
- "new_deaths_smoothed_per_million": 0.28,
- "new_tests": 13054.0,
- "total_tests": 1064666.0,
- "total_tests_per_thousand": 99.418,
- "new_tests_per_thousand": 1.219,
- "new_tests_smoothed": 13745.0,
- "new_tests_smoothed_per_thousand": 1.284,
- "tests_per_case": 14.554,
- "positive_rate": 0.069,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-13",
- "total_cases": 35401.0,
- "new_cases": 1541.0,
- "new_cases_smoothed": 1092.714,
- "total_deaths": 453.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 3305.73,
- "new_cases_per_million": 143.898,
- "new_cases_smoothed_per_million": 102.037,
- "total_deaths_per_million": 42.301,
- "new_deaths_per_million": 0.28,
- "new_deaths_smoothed_per_million": 0.293,
- "new_tests": 7091.0,
- "total_tests": 1071757.0,
- "total_tests_per_thousand": 100.08,
- "new_tests_per_thousand": 0.662,
- "new_tests_smoothed": 14110.0,
- "new_tests_smoothed_per_thousand": 1.318,
- "tests_per_case": 12.913,
- "positive_rate": 0.077,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-14",
- "total_cases": 36188.0,
- "new_cases": 787.0,
- "new_cases_smoothed": 1147.429,
- "total_deaths": 456.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 3379.219,
- "new_cases_per_million": 73.49,
- "new_cases_smoothed_per_million": 107.146,
- "total_deaths_per_million": 42.581,
- "new_deaths_per_million": 0.28,
- "new_deaths_smoothed_per_million": 0.267,
- "new_tests": 17490.0,
- "total_tests": 1089247.0,
- "total_tests_per_thousand": 101.713,
- "new_tests_per_thousand": 1.633,
- "new_tests_smoothed": 14955.0,
- "new_tests_smoothed_per_thousand": 1.396,
- "tests_per_case": 13.033,
- "positive_rate": 0.077,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-15",
- "total_cases": 37222.0,
- "new_cases": 1034.0,
- "new_cases_smoothed": 1215.143,
- "total_deaths": 465.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 3475.774,
- "new_cases_per_million": 96.554,
- "new_cases_smoothed_per_million": 113.47,
- "total_deaths_per_million": 43.421,
- "new_deaths_per_million": 0.84,
- "new_deaths_smoothed_per_million": 0.374,
- "new_tests": 20277.0,
- "total_tests": 1109524.0,
- "total_tests_per_thousand": 103.607,
- "new_tests_per_thousand": 1.893,
- "new_tests_smoothed": 15553.0,
- "new_tests_smoothed_per_thousand": 1.452,
- "tests_per_case": 12.799000000000001,
- "positive_rate": 0.078,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-16",
- "total_cases": 38896.0,
- "new_cases": 1674.0,
- "new_cases_smoothed": 1288.429,
- "total_deaths": 476.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 3632.091,
- "new_cases_per_million": 156.317,
- "new_cases_smoothed_per_million": 120.313,
- "total_deaths_per_million": 44.449,
- "new_deaths_per_million": 1.027,
- "new_deaths_smoothed_per_million": 0.467,
- "new_tests": 20459.0,
- "total_tests": 1129983.0,
- "total_tests_per_thousand": 105.517,
- "new_tests_per_thousand": 1.91,
- "new_tests_smoothed": 16265.0,
- "new_tests_smoothed_per_thousand": 1.519,
- "tests_per_case": 12.624,
- "positive_rate": 0.079,
- "tests_units": "tests performed",
- "stringency_index": 38.89
- },
- {
- "date": "2020-09-17",
- "total_cases": 41032.0,
- "new_cases": 2136.0,
- "new_cases_smoothed": 1428.0,
- "total_deaths": 482.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.429,
- "total_cases_per_million": 3831.55,
- "new_cases_per_million": 199.459,
- "new_cases_smoothed_per_million": 133.346,
- "total_deaths_per_million": 45.009,
- "new_deaths_per_million": 0.56,
- "new_deaths_smoothed_per_million": 0.507,
- "new_tests": 23427.0,
- "total_tests": 1153410.0,
- "total_tests_per_thousand": 107.705,
- "new_tests_per_thousand": 2.188,
- "new_tests_smoothed": 17284.0,
- "new_tests_smoothed_per_thousand": 1.614,
- "tests_per_case": 12.104000000000001,
- "positive_rate": 0.083,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-18",
- "total_cases": 44155.0,
- "new_cases": 3123.0,
- "new_cases_smoothed": 1677.429,
- "total_deaths": 489.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 5.857,
- "total_cases_per_million": 4123.174,
- "new_cases_per_million": 291.624,
- "new_cases_smoothed_per_million": 156.638,
- "total_deaths_per_million": 45.663,
- "new_deaths_per_million": 0.654,
- "new_deaths_smoothed_per_million": 0.547,
- "new_tests": 21546.0,
- "total_tests": 1174956.0,
- "total_tests_per_thousand": 109.717,
- "new_tests_per_thousand": 2.012,
- "new_tests_smoothed": 17621.0,
- "new_tests_smoothed_per_thousand": 1.645,
- "tests_per_case": 10.505,
- "positive_rate": 0.095,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-19",
- "total_cases": 46262.0,
- "new_cases": 2107.0,
- "new_cases_smoothed": 1771.714,
- "total_deaths": 495.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 6.429,
- "total_cases_per_million": 4319.925,
- "new_cases_per_million": 196.751,
- "new_cases_smoothed_per_million": 165.442,
- "total_deaths_per_million": 46.223,
- "new_deaths_per_million": 0.56,
- "new_deaths_smoothed_per_million": 0.6,
- "new_tests": 15045.0,
- "total_tests": 1190001.0,
- "total_tests_per_thousand": 111.122,
- "new_tests_per_thousand": 1.405,
- "new_tests_smoothed": 17905.0,
- "new_tests_smoothed_per_thousand": 1.672,
- "tests_per_case": 10.106,
- "positive_rate": 0.099,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-20",
- "total_cases": 48306.0,
- "new_cases": 2044.0,
- "new_cases_smoothed": 1843.571,
- "total_deaths": 499.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 4510.793,
- "new_cases_per_million": 190.868,
- "new_cases_smoothed_per_million": 172.152,
- "total_deaths_per_million": 46.596,
- "new_deaths_per_million": 0.374,
- "new_deaths_smoothed_per_million": 0.614,
- "new_tests": 10167.0,
- "total_tests": 1200168.0,
- "total_tests_per_thousand": 112.071,
- "new_tests_per_thousand": 0.949,
- "new_tests_smoothed": 18344.0,
- "new_tests_smoothed_per_thousand": 1.713,
- "tests_per_case": 9.95,
- "positive_rate": 0.1,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-21",
- "total_cases": 49240.0,
- "new_cases": 934.0,
- "new_cases_smoothed": 1864.571,
- "total_deaths": 503.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 6.714,
- "total_cases_per_million": 4598.009,
- "new_cases_per_million": 87.217,
- "new_cases_smoothed_per_million": 174.113,
- "total_deaths_per_million": 46.97,
- "new_deaths_per_million": 0.374,
- "new_deaths_smoothed_per_million": 0.627,
- "new_tests": 19248.0,
- "total_tests": 1219416.0,
- "total_tests_per_thousand": 113.869,
- "new_tests_per_thousand": 1.797,
- "new_tests_smoothed": 18596.0,
- "new_tests_smoothed_per_thousand": 1.736,
- "tests_per_case": 9.972999999999999,
- "positive_rate": 0.1,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-22",
- "total_cases": 50764.0,
- "new_cases": 1524.0,
- "new_cases_smoothed": 1934.571,
- "total_deaths": 522.0,
- "new_deaths": 19.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 4740.32,
- "new_cases_per_million": 142.31,
- "new_cases_smoothed_per_million": 180.649,
- "total_deaths_per_million": 48.744,
- "new_deaths_per_million": 1.774,
- "new_deaths_smoothed_per_million": 0.76,
- "new_tests": 22143.0,
- "total_tests": 1241559.0,
- "total_tests_per_thousand": 115.936,
- "new_tests_per_thousand": 2.068,
- "new_tests_smoothed": 18862.0,
- "new_tests_smoothed_per_thousand": 1.761,
- "tests_per_case": 9.75,
- "positive_rate": 0.10300000000000001,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-23",
- "total_cases": 53158.0,
- "new_cases": 2394.0,
- "new_cases_smoothed": 2037.429,
- "total_deaths": 531.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 7.857,
- "total_cases_per_million": 4963.871,
- "new_cases_per_million": 223.551,
- "new_cases_smoothed_per_million": 190.254,
- "total_deaths_per_million": 49.585,
- "new_deaths_per_million": 0.84,
- "new_deaths_smoothed_per_million": 0.734,
- "new_tests": 21552.0,
- "total_tests": 1263111.0,
- "total_tests_per_thousand": 117.949,
- "new_tests_per_thousand": 2.013,
- "new_tests_smoothed": 19018.0,
- "new_tests_smoothed_per_thousand": 1.776,
- "tests_per_case": 9.334,
- "positive_rate": 0.107,
- "tests_units": "tests performed"
- },
- {
- "date": "2020-09-24",
- "total_cases": 55464.0,
- "new_cases": 2306.0,
- "new_cases_smoothed": 2061.714,
- "total_deaths": 555.0,
- "new_deaths": 24.0,
- "new_deaths_smoothed": 10.429,
- "total_cases_per_million": 5179.204,
- "new_cases_per_million": 215.333,
- "new_cases_smoothed_per_million": 192.522,
- "total_deaths_per_million": 51.826,
- "new_deaths_per_million": 2.241,
- "new_deaths_smoothed_per_million": 0.974
- },
- {
- "date": "2020-09-25",
- "total_cases": 58374.0,
- "new_cases": 2910.0,
- "new_cases_smoothed": 2031.286,
- "total_deaths": 567.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 11.143,
- "total_cases_per_million": 5450.938,
- "new_cases_per_million": 271.735,
- "new_cases_smoothed_per_million": 189.681,
- "total_deaths_per_million": 52.946,
- "new_deaths_per_million": 1.121,
- "new_deaths_smoothed_per_million": 1.041
- }
- ]
- },
- "DEU": {
- "continent": "Europe",
- "location": "Germany",
- "population": 83783945.0,
- "population_density": 237.016,
- "median_age": 46.6,
- "aged_65_older": 21.453,
- "aged_70_older": 15.957,
- "gdp_per_capita": 45229.245,
- "cardiovasc_death_rate": 156.139,
- "diabetes_prevalence": 8.31,
- "female_smokers": 28.2,
- "male_smokers": 33.1,
- "hospital_beds_per_thousand": 8.0,
- "life_expectancy": 81.33,
- "human_development_index": 0.936,
- "data": [
- {
- "date": "2019-12-31",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-01-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-02",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-03",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-04",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-05",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-06",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-07",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-08",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-09",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-10",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-11",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-12",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-13",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-14",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-15",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-16",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-17",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-18",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-19",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-20",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-21",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-22",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-23",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-24",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-01-25",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-01-26",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-01-27",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-01-28",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.012,
- "new_cases_per_million": 0.012,
- "new_cases_smoothed_per_million": 0.002,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-01-29",
- "total_cases": 4.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.048,
- "new_cases_per_million": 0.036,
- "new_cases_smoothed_per_million": 0.007,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-01-30",
- "total_cases": 4.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.048,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.007,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-01-31",
- "total_cases": 5.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.06,
- "new_cases_per_million": 0.012,
- "new_cases_smoothed_per_million": 0.009,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-01",
- "total_cases": 7.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.084,
- "new_cases_per_million": 0.024,
- "new_cases_smoothed_per_million": 0.012,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-02",
- "total_cases": 8.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.095,
- "new_cases_per_million": 0.012,
- "new_cases_smoothed_per_million": 0.014,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-03",
- "total_cases": 9.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.107,
- "new_cases_per_million": 0.012,
- "new_cases_smoothed_per_million": 0.015,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-04",
- "total_cases": 11.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.131,
- "new_cases_per_million": 0.024,
- "new_cases_smoothed_per_million": 0.017,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-05",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.131,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.012,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-06",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.131,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.012,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-07",
- "total_cases": 12.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.143,
- "new_cases_per_million": 0.012,
- "new_cases_smoothed_per_million": 0.012,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-08",
- "total_cases": 13.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.155,
- "new_cases_per_million": 0.012,
- "new_cases_smoothed_per_million": 0.01,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-09",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.155,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.009,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-10",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.155,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.007,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-11",
- "total_cases": 13.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.155,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.003,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-12",
- "total_cases": 15.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.179,
- "new_cases_per_million": 0.024,
- "new_cases_smoothed_per_million": 0.007,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-13",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.179,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.007,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-14",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.179,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.005,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-15",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.179,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.003,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-16",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.179,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.003,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-17",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.179,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.003,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-18",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.179,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.003,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-19",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.179,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-20",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.179,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-21",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.179,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-22",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.179,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-23",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.179,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-24",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.179,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-25",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.179,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-26",
- "total_cases": 17.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.203,
- "new_cases_per_million": 0.024,
- "new_cases_smoothed_per_million": 0.003,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-27",
- "total_cases": 21.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.251,
- "new_cases_per_million": 0.048,
- "new_cases_smoothed_per_million": 0.01,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 16.67
- },
- {
- "date": "2020-02-28",
- "total_cases": 47.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 4.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.561,
- "new_cases_per_million": 0.31,
- "new_cases_smoothed_per_million": 0.055,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 19.44
- },
- {
- "date": "2020-02-29",
- "total_cases": 57.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 6.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.68,
- "new_cases_per_million": 0.119,
- "new_cases_smoothed_per_million": 0.072,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 25.0
- },
- {
- "date": "2020-03-01",
- "total_cases": 111.0,
- "new_cases": 54.0,
- "new_cases_smoothed": 13.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.325,
- "new_cases_per_million": 0.645,
- "new_cases_smoothed_per_million": 0.164,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 25.0
- },
- {
- "date": "2020-03-02",
- "total_cases": 129.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 16.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.54,
- "new_cases_per_million": 0.215,
- "new_cases_smoothed_per_million": 0.194,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 25.0
- },
- {
- "date": "2020-03-03",
- "total_cases": 157.0,
- "new_cases": 28.0,
- "new_cases_smoothed": 20.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.874,
- "new_cases_per_million": 0.334,
- "new_cases_smoothed_per_million": 0.242,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 25.0
- },
- {
- "date": "2020-03-04",
- "total_cases": 196.0,
- "new_cases": 39.0,
- "new_cases_smoothed": 25.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2.339,
- "new_cases_per_million": 0.465,
- "new_cases_smoothed_per_million": 0.305,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 25.0
- },
- {
- "date": "2020-03-05",
- "total_cases": 262.0,
- "new_cases": 66.0,
- "new_cases_smoothed": 34.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.127,
- "new_cases_per_million": 0.788,
- "new_cases_smoothed_per_million": 0.411,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 25.0
- },
- {
- "date": "2020-03-06",
- "total_cases": 400.0,
- "new_cases": 138.0,
- "new_cases_smoothed": 50.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 4.774,
- "new_cases_per_million": 1.647,
- "new_cases_smoothed_per_million": 0.602,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 25.0
- },
- {
- "date": "2020-03-07",
- "total_cases": 684.0,
- "new_cases": 284.0,
- "new_cases_smoothed": 89.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 8.164,
- "new_cases_per_million": 3.39,
- "new_cases_smoothed_per_million": 1.069,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 25.0
- },
- {
- "date": "2020-03-08",
- "total_cases": 847.0,
- "new_cases": 163.0,
- "new_cases_smoothed": 105.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.109,
- "new_cases_per_million": 1.945,
- "new_cases_smoothed_per_million": 1.255,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "total_tests": 124716.0,
- "total_tests_per_thousand": 1.489,
- "tests_units": "tests performed",
- "stringency_index": 25.0
- },
- {
- "date": "2020-03-09",
- "total_cases": 902.0,
- "new_cases": 55.0,
- "new_cases_smoothed": 110.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 10.766,
- "new_cases_per_million": 0.656,
- "new_cases_smoothed_per_million": 1.318,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 28.7
- },
- {
- "date": "2020-03-10",
- "total_cases": 1139.0,
- "new_cases": 237.0,
- "new_cases_smoothed": 140.286,
- "total_deaths": 2.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 13.594,
- "new_cases_per_million": 2.829,
- "new_cases_smoothed_per_million": 1.674,
- "total_deaths_per_million": 0.024,
- "new_deaths_per_million": 0.024,
- "new_deaths_smoothed_per_million": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 32.87
- },
- {
- "date": "2020-03-11",
- "total_cases": 1296.0,
- "new_cases": 157.0,
- "new_cases_smoothed": 157.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 15.468,
- "new_cases_per_million": 1.874,
- "new_cases_smoothed_per_million": 1.876,
- "total_deaths_per_million": 0.024,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 32.87
- },
- {
- "date": "2020-03-12",
- "total_cases": 1567.0,
- "new_cases": 271.0,
- "new_cases_smoothed": 186.429,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 18.703,
- "new_cases_per_million": 3.235,
- "new_cases_smoothed_per_million": 2.225,
- "total_deaths_per_million": 0.036,
- "new_deaths_per_million": 0.012,
- "new_deaths_smoothed_per_million": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 32.87
- },
- {
- "date": "2020-03-13",
- "total_cases": 2369.0,
- "new_cases": 802.0,
- "new_cases_smoothed": 281.286,
- "total_deaths": 5.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 28.275,
- "new_cases_per_million": 9.572,
- "new_cases_smoothed_per_million": 3.357,
- "total_deaths_per_million": 0.06,
- "new_deaths_per_million": 0.024,
- "new_deaths_smoothed_per_million": 0.009,
- "tests_units": "tests performed",
- "stringency_index": 32.87
- },
- {
- "date": "2020-03-14",
- "total_cases": 3062.0,
- "new_cases": 693.0,
- "new_cases_smoothed": 339.714,
- "total_deaths": 5.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 36.546,
- "new_cases_per_million": 8.271,
- "new_cases_smoothed_per_million": 4.055,
- "total_deaths_per_million": 0.06,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.009,
- "tests_units": "tests performed",
- "stringency_index": 32.87
- },
- {
- "date": "2020-03-15",
- "total_cases": 3795.0,
- "new_cases": 733.0,
- "new_cases_smoothed": 421.143,
- "total_deaths": 8.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 45.295,
- "new_cases_per_million": 8.749,
- "new_cases_smoothed_per_million": 5.027,
- "total_deaths_per_million": 0.095,
- "new_deaths_per_million": 0.036,
- "new_deaths_smoothed_per_million": 0.014,
- "total_tests": 252173.0,
- "total_tests_per_thousand": 3.01,
- "new_tests_smoothed": 18208.0,
- "new_tests_smoothed_per_thousand": 0.217,
- "tests_per_case": 43.235,
- "positive_rate": 0.023,
- "tests_units": "tests performed",
- "stringency_index": 32.87
- },
- {
- "date": "2020-03-16",
- "total_cases": 4838.0,
- "new_cases": 1043.0,
- "new_cases_smoothed": 562.286,
- "total_deaths": 12.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 57.744,
- "new_cases_per_million": 12.449,
- "new_cases_smoothed_per_million": 6.711,
- "total_deaths_per_million": 0.143,
- "new_deaths_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.02,
- "new_tests_smoothed": 22722.0,
- "new_tests_smoothed_per_thousand": 0.271,
- "tests_per_case": 40.41,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 42.13
- },
- {
- "date": "2020-03-17",
- "total_cases": 6012.0,
- "new_cases": 1174.0,
- "new_cases_smoothed": 696.143,
- "total_deaths": 13.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 71.756,
- "new_cases_per_million": 14.012,
- "new_cases_smoothed_per_million": 8.309,
- "total_deaths_per_million": 0.155,
- "new_deaths_per_million": 0.012,
- "new_deaths_smoothed_per_million": 0.019,
- "new_tests_smoothed": 27235.0,
- "new_tests_smoothed_per_thousand": 0.325,
- "tests_per_case": 39.123000000000005,
- "positive_rate": 0.026000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 42.13
- },
- {
- "date": "2020-03-18",
- "total_cases": 7156.0,
- "new_cases": 1144.0,
- "new_cases_smoothed": 837.143,
- "total_deaths": 13.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 85.41,
- "new_cases_per_million": 13.654,
- "new_cases_smoothed_per_million": 9.992,
- "total_deaths_per_million": 0.155,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.019,
- "new_tests_smoothed": 31749.0,
- "new_tests_smoothed_per_thousand": 0.379,
- "tests_per_case": 37.925,
- "positive_rate": 0.026000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 52.31
- },
- {
- "date": "2020-03-19",
- "total_cases": 8198.0,
- "new_cases": 1042.0,
- "new_cases_smoothed": 947.286,
- "total_deaths": 13.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 97.847,
- "new_cases_per_million": 12.437,
- "new_cases_smoothed_per_million": 11.306,
- "total_deaths_per_million": 0.155,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.017,
- "new_tests_smoothed": 36262.0,
- "new_tests_smoothed_per_thousand": 0.433,
- "tests_per_case": 38.28,
- "positive_rate": 0.026000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 55.09
- },
- {
- "date": "2020-03-20",
- "total_cases": 14138.0,
- "new_cases": 5940.0,
- "new_cases_smoothed": 1681.286,
- "total_deaths": 43.0,
- "new_deaths": 30.0,
- "new_deaths_smoothed": 5.429,
- "total_cases_per_million": 168.744,
- "new_cases_per_million": 70.897,
- "new_cases_smoothed_per_million": 20.067,
- "total_deaths_per_million": 0.513,
- "new_deaths_per_million": 0.358,
- "new_deaths_smoothed_per_million": 0.065,
- "new_tests_smoothed": 40776.0,
- "new_tests_smoothed_per_thousand": 0.487,
- "tests_per_case": 24.253,
- "positive_rate": 0.040999999999999995,
- "tests_units": "tests performed",
- "stringency_index": 57.87
- },
- {
- "date": "2020-03-21",
- "total_cases": 18187.0,
- "new_cases": 4049.0,
- "new_cases_smoothed": 2160.714,
- "total_deaths": 45.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 5.714,
- "total_cases_per_million": 217.07,
- "new_cases_per_million": 48.327,
- "new_cases_smoothed_per_million": 25.789,
- "total_deaths_per_million": 0.537,
- "new_deaths_per_million": 0.024,
- "new_deaths_smoothed_per_million": 0.068,
- "new_tests_smoothed": 45289.0,
- "new_tests_smoothed_per_thousand": 0.541,
- "tests_per_case": 20.96,
- "positive_rate": 0.048,
- "tests_units": "tests performed",
- "stringency_index": 68.06
- },
- {
- "date": "2020-03-22",
- "total_cases": 21463.0,
- "new_cases": 3276.0,
- "new_cases_smoothed": 2524.0,
- "total_deaths": 67.0,
- "new_deaths": 22.0,
- "new_deaths_smoothed": 8.429,
- "total_cases_per_million": 256.171,
- "new_cases_per_million": 39.101,
- "new_cases_smoothed_per_million": 30.125,
- "total_deaths_per_million": 0.8,
- "new_deaths_per_million": 0.263,
- "new_deaths_smoothed_per_million": 0.101,
- "total_tests": 600792.0,
- "total_tests_per_thousand": 7.171,
- "new_tests_smoothed": 49803.0,
- "new_tests_smoothed_per_thousand": 0.594,
- "tests_per_case": 19.732,
- "positive_rate": 0.051,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-03-23",
- "total_cases": 24774.0,
- "new_cases": 3311.0,
- "new_cases_smoothed": 2848.0,
- "total_deaths": 94.0,
- "new_deaths": 27.0,
- "new_deaths_smoothed": 11.714,
- "total_cases_per_million": 295.689,
- "new_cases_per_million": 39.518,
- "new_cases_smoothed_per_million": 33.992,
- "total_deaths_per_million": 1.122,
- "new_deaths_per_million": 0.322,
- "new_deaths_smoothed_per_million": 0.14,
- "new_tests_smoothed": 50066.0,
- "new_tests_smoothed_per_thousand": 0.598,
- "tests_per_case": 17.579,
- "positive_rate": 0.057,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-03-24",
- "total_cases": 29212.0,
- "new_cases": 4438.0,
- "new_cases_smoothed": 3314.286,
- "total_deaths": 126.0,
- "new_deaths": 32.0,
- "new_deaths_smoothed": 16.143,
- "total_cases_per_million": 348.659,
- "new_cases_per_million": 52.97,
- "new_cases_smoothed_per_million": 39.558,
- "total_deaths_per_million": 1.504,
- "new_deaths_per_million": 0.382,
- "new_deaths_smoothed_per_million": 0.193,
- "new_tests_smoothed": 50329.0,
- "new_tests_smoothed_per_thousand": 0.601,
- "tests_per_case": 15.185,
- "positive_rate": 0.066,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-03-25",
- "total_cases": 31554.0,
- "new_cases": 2342.0,
- "new_cases_smoothed": 3485.429,
- "total_deaths": 149.0,
- "new_deaths": 23.0,
- "new_deaths_smoothed": 19.429,
- "total_cases_per_million": 376.612,
- "new_cases_per_million": 27.953,
- "new_cases_smoothed_per_million": 41.6,
- "total_deaths_per_million": 1.778,
- "new_deaths_per_million": 0.275,
- "new_deaths_smoothed_per_million": 0.232,
- "new_tests_smoothed": 50592.0,
- "new_tests_smoothed_per_thousand": 0.604,
- "tests_per_case": 14.515,
- "positive_rate": 0.069,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-03-26",
- "total_cases": 36508.0,
- "new_cases": 4954.0,
- "new_cases_smoothed": 4044.286,
- "total_deaths": 198.0,
- "new_deaths": 49.0,
- "new_deaths_smoothed": 26.429,
- "total_cases_per_million": 435.74,
- "new_cases_per_million": 59.128,
- "new_cases_smoothed_per_million": 48.27,
- "total_deaths_per_million": 2.363,
- "new_deaths_per_million": 0.585,
- "new_deaths_smoothed_per_million": 0.315,
- "new_tests_smoothed": 50855.0,
- "new_tests_smoothed_per_thousand": 0.607,
- "tests_per_case": 12.575,
- "positive_rate": 0.08,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-03-27",
- "total_cases": 42288.0,
- "new_cases": 5780.0,
- "new_cases_smoothed": 4021.429,
- "total_deaths": 253.0,
- "new_deaths": 55.0,
- "new_deaths_smoothed": 30.0,
- "total_cases_per_million": 504.727,
- "new_cases_per_million": 68.987,
- "new_cases_smoothed_per_million": 47.998,
- "total_deaths_per_million": 3.02,
- "new_deaths_per_million": 0.656,
- "new_deaths_smoothed_per_million": 0.358,
- "new_tests_smoothed": 51119.0,
- "new_tests_smoothed_per_thousand": 0.61,
- "tests_per_case": 12.712,
- "positive_rate": 0.079,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-03-28",
- "total_cases": 48582.0,
- "new_cases": 6294.0,
- "new_cases_smoothed": 4342.143,
- "total_deaths": 325.0,
- "new_deaths": 72.0,
- "new_deaths_smoothed": 40.0,
- "total_cases_per_million": 579.849,
- "new_cases_per_million": 75.122,
- "new_cases_smoothed_per_million": 51.825,
- "total_deaths_per_million": 3.879,
- "new_deaths_per_million": 0.859,
- "new_deaths_smoothed_per_million": 0.477,
- "new_tests_smoothed": 51382.0,
- "new_tests_smoothed_per_thousand": 0.613,
- "tests_per_case": 11.833,
- "positive_rate": 0.085,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-03-29",
- "total_cases": 52547.0,
- "new_cases": 3965.0,
- "new_cases_smoothed": 4440.571,
- "total_deaths": 389.0,
- "new_deaths": 64.0,
- "new_deaths_smoothed": 46.0,
- "total_cases_per_million": 627.173,
- "new_cases_per_million": 47.324,
- "new_cases_smoothed_per_million": 53.0,
- "total_deaths_per_million": 4.643,
- "new_deaths_per_million": 0.764,
- "new_deaths_smoothed_per_million": 0.549,
- "total_tests": 962307.0,
- "total_tests_per_thousand": 11.486,
- "new_tests_smoothed": 51645.0,
- "new_tests_smoothed_per_thousand": 0.616,
- "tests_per_case": 11.63,
- "positive_rate": 0.086,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-03-30",
- "total_cases": 57298.0,
- "new_cases": 4751.0,
- "new_cases_smoothed": 4646.286,
- "total_deaths": 455.0,
- "new_deaths": 66.0,
- "new_deaths_smoothed": 51.571,
- "total_cases_per_million": 683.878,
- "new_cases_per_million": 56.705,
- "new_cases_smoothed_per_million": 55.456,
- "total_deaths_per_million": 5.431,
- "new_deaths_per_million": 0.788,
- "new_deaths_smoothed_per_million": 0.616,
- "new_tests_smoothed": 52601.0,
- "new_tests_smoothed_per_thousand": 0.628,
- "tests_per_case": 11.321,
- "positive_rate": 0.08800000000000001,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-03-31",
- "total_cases": 61913.0,
- "new_cases": 4615.0,
- "new_cases_smoothed": 4671.571,
- "total_deaths": 583.0,
- "new_deaths": 128.0,
- "new_deaths_smoothed": 65.286,
- "total_cases_per_million": 738.96,
- "new_cases_per_million": 55.082,
- "new_cases_smoothed_per_million": 55.757,
- "total_deaths_per_million": 6.958,
- "new_deaths_per_million": 1.528,
- "new_deaths_smoothed_per_million": 0.779,
- "new_tests_smoothed": 53557.0,
- "new_tests_smoothed_per_thousand": 0.639,
- "tests_per_case": 11.464,
- "positive_rate": 0.087,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-01",
- "total_cases": 67366.0,
- "new_cases": 5453.0,
- "new_cases_smoothed": 5116.0,
- "total_deaths": 732.0,
- "new_deaths": 149.0,
- "new_deaths_smoothed": 83.286,
- "total_cases_per_million": 804.044,
- "new_cases_per_million": 65.084,
- "new_cases_smoothed_per_million": 61.062,
- "total_deaths_per_million": 8.737,
- "new_deaths_per_million": 1.778,
- "new_deaths_smoothed_per_million": 0.994,
- "new_tests_smoothed": 54512.0,
- "new_tests_smoothed_per_thousand": 0.651,
- "tests_per_case": 10.655,
- "positive_rate": 0.094,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-02",
- "total_cases": 73522.0,
- "new_cases": 6156.0,
- "new_cases_smoothed": 5287.714,
- "total_deaths": 872.0,
- "new_deaths": 140.0,
- "new_deaths_smoothed": 96.286,
- "total_cases_per_million": 877.519,
- "new_cases_per_million": 73.475,
- "new_cases_smoothed_per_million": 63.111,
- "total_deaths_per_million": 10.408,
- "new_deaths_per_million": 1.671,
- "new_deaths_smoothed_per_million": 1.149,
- "new_tests_smoothed": 55468.0,
- "new_tests_smoothed_per_thousand": 0.662,
- "tests_per_case": 10.49,
- "positive_rate": 0.095,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-03",
- "total_cases": 79696.0,
- "new_cases": 6174.0,
- "new_cases_smoothed": 5344.0,
- "total_deaths": 1017.0,
- "new_deaths": 145.0,
- "new_deaths_smoothed": 109.143,
- "total_cases_per_million": 951.208,
- "new_cases_per_million": 73.69,
- "new_cases_smoothed_per_million": 63.783,
- "total_deaths_per_million": 12.138,
- "new_deaths_per_million": 1.731,
- "new_deaths_smoothed_per_million": 1.303,
- "new_tests_smoothed": 56424.0,
- "new_tests_smoothed_per_thousand": 0.673,
- "tests_per_case": 10.558,
- "positive_rate": 0.095,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-04",
- "total_cases": 85778.0,
- "new_cases": 6082.0,
- "new_cases_smoothed": 5313.714,
- "total_deaths": 1158.0,
- "new_deaths": 141.0,
- "new_deaths_smoothed": 119.0,
- "total_cases_per_million": 1023.8,
- "new_cases_per_million": 72.591,
- "new_cases_smoothed_per_million": 63.422,
- "total_deaths_per_million": 13.821,
- "new_deaths_per_million": 1.683,
- "new_deaths_smoothed_per_million": 1.42,
- "new_tests_smoothed": 57380.0,
- "new_tests_smoothed_per_thousand": 0.685,
- "tests_per_case": 10.798,
- "positive_rate": 0.09300000000000001,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-05",
- "total_cases": 91714.0,
- "new_cases": 5936.0,
- "new_cases_smoothed": 5595.286,
- "total_deaths": 1342.0,
- "new_deaths": 184.0,
- "new_deaths_smoothed": 136.143,
- "total_cases_per_million": 1094.649,
- "new_cases_per_million": 70.849,
- "new_cases_smoothed_per_million": 66.782,
- "total_deaths_per_million": 16.017,
- "new_deaths_per_million": 2.196,
- "new_deaths_smoothed_per_million": 1.625,
- "total_tests": 1370655.0,
- "total_tests_per_thousand": 16.359,
- "new_tests_smoothed": 58335.0,
- "new_tests_smoothed_per_thousand": 0.696,
- "tests_per_case": 10.425999999999998,
- "positive_rate": 0.096,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-06",
- "total_cases": 95391.0,
- "new_cases": 3677.0,
- "new_cases_smoothed": 5441.857,
- "total_deaths": 1434.0,
- "new_deaths": 92.0,
- "new_deaths_smoothed": 139.857,
- "total_cases_per_million": 1138.536,
- "new_cases_per_million": 43.887,
- "new_cases_smoothed_per_million": 64.951,
- "total_deaths_per_million": 17.115,
- "new_deaths_per_million": 1.098,
- "new_deaths_smoothed_per_million": 1.669,
- "new_tests_smoothed": 57761.0,
- "new_tests_smoothed_per_thousand": 0.689,
- "tests_per_case": 10.614,
- "positive_rate": 0.094,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-07",
- "total_cases": 99225.0,
- "new_cases": 3834.0,
- "new_cases_smoothed": 5330.286,
- "total_deaths": 1607.0,
- "new_deaths": 173.0,
- "new_deaths_smoothed": 146.286,
- "total_cases_per_million": 1184.296,
- "new_cases_per_million": 45.761,
- "new_cases_smoothed_per_million": 63.619,
- "total_deaths_per_million": 19.18,
- "new_deaths_per_million": 2.065,
- "new_deaths_smoothed_per_million": 1.746,
- "new_tests_smoothed": 57186.0,
- "new_tests_smoothed_per_thousand": 0.683,
- "tests_per_case": 10.729000000000001,
- "positive_rate": 0.09300000000000001,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-08",
- "total_cases": 103228.0,
- "new_cases": 4003.0,
- "new_cases_smoothed": 5123.143,
- "total_deaths": 1861.0,
- "new_deaths": 254.0,
- "new_deaths_smoothed": 161.286,
- "total_cases_per_million": 1232.074,
- "new_cases_per_million": 47.778,
- "new_cases_smoothed_per_million": 61.147,
- "total_deaths_per_million": 22.212,
- "new_deaths_per_million": 3.032,
- "new_deaths_smoothed_per_million": 1.925,
- "new_tests_smoothed": 56612.0,
- "new_tests_smoothed_per_thousand": 0.676,
- "tests_per_case": 11.05,
- "positive_rate": 0.09,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-09",
- "total_cases": 108202.0,
- "new_cases": 4974.0,
- "new_cases_smoothed": 4954.286,
- "total_deaths": 2107.0,
- "new_deaths": 246.0,
- "new_deaths_smoothed": 176.429,
- "total_cases_per_million": 1291.441,
- "new_cases_per_million": 59.367,
- "new_cases_smoothed_per_million": 59.132,
- "total_deaths_per_million": 25.148,
- "new_deaths_per_million": 2.936,
- "new_deaths_smoothed_per_million": 2.106,
- "new_tests_smoothed": 56037.0,
- "new_tests_smoothed_per_thousand": 0.669,
- "tests_per_case": 11.311,
- "positive_rate": 0.08800000000000001,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-10",
- "total_cases": 113525.0,
- "new_cases": 5323.0,
- "new_cases_smoothed": 4832.714,
- "total_deaths": 2373.0,
- "new_deaths": 266.0,
- "new_deaths_smoothed": 193.714,
- "total_cases_per_million": 1354.973,
- "new_cases_per_million": 63.532,
- "new_cases_smoothed_per_million": 57.681,
- "total_deaths_per_million": 28.323,
- "new_deaths_per_million": 3.175,
- "new_deaths_smoothed_per_million": 2.312,
- "new_tests_smoothed": 55463.0,
- "new_tests_smoothed_per_thousand": 0.662,
- "tests_per_case": 11.477,
- "positive_rate": 0.087,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-11",
- "total_cases": 117658.0,
- "new_cases": 4133.0,
- "new_cases_smoothed": 4554.286,
- "total_deaths": 2544.0,
- "new_deaths": 171.0,
- "new_deaths_smoothed": 198.0,
- "total_cases_per_million": 1404.302,
- "new_cases_per_million": 49.329,
- "new_cases_smoothed_per_million": 54.357,
- "total_deaths_per_million": 30.364,
- "new_deaths_per_million": 2.041,
- "new_deaths_smoothed_per_million": 2.363,
- "new_tests_smoothed": 54888.0,
- "new_tests_smoothed_per_thousand": 0.655,
- "tests_per_case": 12.052,
- "positive_rate": 0.083,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-12",
- "total_cases": 120479.0,
- "new_cases": 2821.0,
- "new_cases_smoothed": 4109.286,
- "total_deaths": 2673.0,
- "new_deaths": 129.0,
- "new_deaths_smoothed": 190.143,
- "total_cases_per_million": 1437.972,
- "new_cases_per_million": 33.67,
- "new_cases_smoothed_per_million": 49.046,
- "total_deaths_per_million": 31.903,
- "new_deaths_per_million": 1.54,
- "new_deaths_smoothed_per_million": 2.269,
- "total_tests": 1750852.0,
- "total_tests_per_thousand": 20.897,
- "new_tests_smoothed": 54314.0,
- "new_tests_smoothed_per_thousand": 0.648,
- "tests_per_case": 13.217,
- "positive_rate": 0.076,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-13",
- "total_cases": 123016.0,
- "new_cases": 2537.0,
- "new_cases_smoothed": 3946.429,
- "total_deaths": 2799.0,
- "new_deaths": 126.0,
- "new_deaths_smoothed": 195.0,
- "total_cases_per_million": 1468.253,
- "new_cases_per_million": 30.28,
- "new_cases_smoothed_per_million": 47.102,
- "total_deaths_per_million": 33.407,
- "new_deaths_per_million": 1.504,
- "new_deaths_smoothed_per_million": 2.327,
- "new_tests_smoothed": 53328.0,
- "new_tests_smoothed_per_thousand": 0.636,
- "tests_per_case": 13.513,
- "positive_rate": 0.07400000000000001,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-14",
- "total_cases": 125098.0,
- "new_cases": 2082.0,
- "new_cases_smoothed": 3696.143,
- "total_deaths": 2969.0,
- "new_deaths": 170.0,
- "new_deaths_smoothed": 194.571,
- "total_cases_per_million": 1493.102,
- "new_cases_per_million": 24.85,
- "new_cases_smoothed_per_million": 44.115,
- "total_deaths_per_million": 35.436,
- "new_deaths_per_million": 2.029,
- "new_deaths_smoothed_per_million": 2.322,
- "new_tests_smoothed": 52343.0,
- "new_tests_smoothed_per_thousand": 0.625,
- "tests_per_case": 14.162,
- "positive_rate": 0.071,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-15",
- "total_cases": 127584.0,
- "new_cases": 2486.0,
- "new_cases_smoothed": 3479.429,
- "total_deaths": 3254.0,
- "new_deaths": 285.0,
- "new_deaths_smoothed": 199.0,
- "total_cases_per_million": 1522.774,
- "new_cases_per_million": 29.672,
- "new_cases_smoothed_per_million": 41.529,
- "total_deaths_per_million": 38.838,
- "new_deaths_per_million": 3.402,
- "new_deaths_smoothed_per_million": 2.375,
- "new_tests_smoothed": 51357.0,
- "new_tests_smoothed_per_thousand": 0.613,
- "tests_per_case": 14.76,
- "positive_rate": 0.068,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-16",
- "total_cases": 130450.0,
- "new_cases": 2866.0,
- "new_cases_smoothed": 3178.286,
- "total_deaths": 3569.0,
- "new_deaths": 315.0,
- "new_deaths_smoothed": 208.857,
- "total_cases_per_million": 1556.981,
- "new_cases_per_million": 34.207,
- "new_cases_smoothed_per_million": 37.934,
- "total_deaths_per_million": 42.598,
- "new_deaths_per_million": 3.76,
- "new_deaths_smoothed_per_million": 2.493,
- "new_tests_smoothed": 50371.0,
- "new_tests_smoothed_per_thousand": 0.601,
- "tests_per_case": 15.847999999999999,
- "positive_rate": 0.063,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-17",
- "total_cases": 133830.0,
- "new_cases": 3380.0,
- "new_cases_smoothed": 2900.714,
- "total_deaths": 3868.0,
- "new_deaths": 299.0,
- "new_deaths_smoothed": 213.571,
- "total_cases_per_million": 1597.323,
- "new_cases_per_million": 40.342,
- "new_cases_smoothed_per_million": 34.621,
- "total_deaths_per_million": 46.166,
- "new_deaths_per_million": 3.569,
- "new_deaths_smoothed_per_million": 2.549,
- "new_tests_smoothed": 49386.0,
- "new_tests_smoothed_per_thousand": 0.589,
- "tests_per_case": 17.025,
- "positive_rate": 0.059000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-18",
- "total_cases": 137439.0,
- "new_cases": 3609.0,
- "new_cases_smoothed": 2825.857,
- "total_deaths": 4110.0,
- "new_deaths": 242.0,
- "new_deaths_smoothed": 223.714,
- "total_cases_per_million": 1640.398,
- "new_cases_per_million": 43.075,
- "new_cases_smoothed_per_million": 33.728,
- "total_deaths_per_million": 49.055,
- "new_deaths_per_million": 2.888,
- "new_deaths_smoothed_per_million": 2.67,
- "new_tests_smoothed": 48400.0,
- "new_tests_smoothed_per_thousand": 0.578,
- "tests_per_case": 17.128,
- "positive_rate": 0.057999999999999996,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-19",
- "total_cases": 139897.0,
- "new_cases": 2458.0,
- "new_cases_smoothed": 2774.0,
- "total_deaths": 4294.0,
- "new_deaths": 184.0,
- "new_deaths_smoothed": 231.571,
- "total_cases_per_million": 1669.735,
- "new_cases_per_million": 29.337,
- "new_cases_smoothed_per_million": 33.109,
- "total_deaths_per_million": 51.251,
- "new_deaths_per_million": 2.196,
- "new_deaths_smoothed_per_million": 2.764,
- "total_tests": 2082754.0,
- "total_tests_per_thousand": 24.859,
- "new_tests_smoothed": 47415.0,
- "new_tests_smoothed_per_thousand": 0.566,
- "tests_per_case": 17.093,
- "positive_rate": 0.059000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-20",
- "total_cases": 141672.0,
- "new_cases": 1775.0,
- "new_cases_smoothed": 2665.143,
- "total_deaths": 4404.0,
- "new_deaths": 110.0,
- "new_deaths_smoothed": 229.286,
- "total_cases_per_million": 1690.921,
- "new_cases_per_million": 21.185,
- "new_cases_smoothed_per_million": 31.81,
- "total_deaths_per_million": 52.564,
- "new_deaths_per_million": 1.313,
- "new_deaths_smoothed_per_million": 2.737,
- "new_tests_smoothed": 48067.0,
- "new_tests_smoothed_per_thousand": 0.574,
- "tests_per_case": 18.035,
- "positive_rate": 0.055,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-21",
- "total_cases": 143457.0,
- "new_cases": 1785.0,
- "new_cases_smoothed": 2622.714,
- "total_deaths": 4598.0,
- "new_deaths": 194.0,
- "new_deaths_smoothed": 232.714,
- "total_cases_per_million": 1712.225,
- "new_cases_per_million": 21.305,
- "new_cases_smoothed_per_million": 31.303,
- "total_deaths_per_million": 54.879,
- "new_deaths_per_million": 2.315,
- "new_deaths_smoothed_per_million": 2.778,
- "new_tests_smoothed": 48720.0,
- "new_tests_smoothed_per_thousand": 0.581,
- "tests_per_case": 18.576,
- "positive_rate": 0.054000000000000006,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-22",
- "total_cases": 145694.0,
- "new_cases": 2237.0,
- "new_cases_smoothed": 2587.143,
- "total_deaths": 4879.0,
- "new_deaths": 281.0,
- "new_deaths_smoothed": 232.143,
- "total_cases_per_million": 1738.925,
- "new_cases_per_million": 26.7,
- "new_cases_smoothed_per_million": 30.879,
- "total_deaths_per_million": 58.233,
- "new_deaths_per_million": 3.354,
- "new_deaths_smoothed_per_million": 2.771,
- "new_tests_smoothed": 49373.0,
- "new_tests_smoothed_per_thousand": 0.589,
- "tests_per_case": 19.084,
- "positive_rate": 0.052000000000000005,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-23",
- "total_cases": 148046.0,
- "new_cases": 2352.0,
- "new_cases_smoothed": 2513.714,
- "total_deaths": 5094.0,
- "new_deaths": 215.0,
- "new_deaths_smoothed": 217.857,
- "total_cases_per_million": 1766.997,
- "new_cases_per_million": 28.072,
- "new_cases_smoothed_per_million": 30.002,
- "total_deaths_per_million": 60.799,
- "new_deaths_per_million": 2.566,
- "new_deaths_smoothed_per_million": 2.6,
- "new_tests_smoothed": 50026.0,
- "new_tests_smoothed_per_thousand": 0.597,
- "tests_per_case": 19.901,
- "positive_rate": 0.05,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-24",
- "total_cases": 150383.0,
- "new_cases": 2337.0,
- "new_cases_smoothed": 2364.714,
- "total_deaths": 5321.0,
- "new_deaths": 227.0,
- "new_deaths_smoothed": 207.571,
- "total_cases_per_million": 1794.89,
- "new_cases_per_million": 27.893,
- "new_cases_smoothed_per_million": 28.224,
- "total_deaths_per_million": 63.509,
- "new_deaths_per_million": 2.709,
- "new_deaths_smoothed_per_million": 2.477,
- "new_tests_smoothed": 50679.0,
- "new_tests_smoothed_per_thousand": 0.605,
- "tests_per_case": 21.430999999999997,
- "positive_rate": 0.047,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-25",
- "total_cases": 152438.0,
- "new_cases": 2055.0,
- "new_cases_smoothed": 2142.714,
- "total_deaths": 5500.0,
- "new_deaths": 179.0,
- "new_deaths_smoothed": 198.571,
- "total_cases_per_million": 1819.418,
- "new_cases_per_million": 24.527,
- "new_cases_smoothed_per_million": 25.574,
- "total_deaths_per_million": 65.645,
- "new_deaths_per_million": 2.136,
- "new_deaths_smoothed_per_million": 2.37,
- "new_tests_smoothed": 51331.0,
- "new_tests_smoothed_per_thousand": 0.613,
- "tests_per_case": 23.956,
- "positive_rate": 0.042,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-26",
- "total_cases": 154175.0,
- "new_cases": 1737.0,
- "new_cases_smoothed": 2039.714,
- "total_deaths": 5640.0,
- "new_deaths": 140.0,
- "new_deaths_smoothed": 192.286,
- "total_cases_per_million": 1840.15,
- "new_cases_per_million": 20.732,
- "new_cases_smoothed_per_million": 24.345,
- "total_deaths_per_million": 67.316,
- "new_deaths_per_million": 1.671,
- "new_deaths_smoothed_per_million": 2.295,
- "total_tests": 2446644.0,
- "total_tests_per_thousand": 29.202,
- "new_tests_smoothed": 51984.0,
- "new_tests_smoothed_per_thousand": 0.62,
- "tests_per_case": 25.486,
- "positive_rate": 0.039,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-27",
- "total_cases": 155193.0,
- "new_cases": 1018.0,
- "new_cases_smoothed": 1931.571,
- "total_deaths": 5750.0,
- "new_deaths": 110.0,
- "new_deaths_smoothed": 192.286,
- "total_cases_per_million": 1852.3,
- "new_cases_per_million": 12.15,
- "new_cases_smoothed_per_million": 23.054,
- "total_deaths_per_million": 68.629,
- "new_deaths_per_million": 1.313,
- "new_deaths_smoothed_per_million": 2.295,
- "new_tests_smoothed": 51227.0,
- "new_tests_smoothed_per_thousand": 0.611,
- "tests_per_case": 26.521,
- "positive_rate": 0.038,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-28",
- "total_cases": 156337.0,
- "new_cases": 1144.0,
- "new_cases_smoothed": 1840.0,
- "total_deaths": 5913.0,
- "new_deaths": 163.0,
- "new_deaths_smoothed": 187.857,
- "total_cases_per_million": 1865.954,
- "new_cases_per_million": 13.654,
- "new_cases_smoothed_per_million": 21.961,
- "total_deaths_per_million": 70.574,
- "new_deaths_per_million": 1.945,
- "new_deaths_smoothed_per_million": 2.242,
- "new_tests_smoothed": 50470.0,
- "new_tests_smoothed_per_thousand": 0.602,
- "tests_per_case": 27.429000000000002,
- "positive_rate": 0.036000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-29",
- "total_cases": 157641.0,
- "new_cases": 1304.0,
- "new_cases_smoothed": 1706.714,
- "total_deaths": 6115.0,
- "new_deaths": 202.0,
- "new_deaths_smoothed": 176.571,
- "total_cases_per_million": 1881.518,
- "new_cases_per_million": 15.564,
- "new_cases_smoothed_per_million": 20.37,
- "total_deaths_per_million": 72.985,
- "new_deaths_per_million": 2.411,
- "new_deaths_smoothed_per_million": 2.107,
- "new_tests_smoothed": 49713.0,
- "new_tests_smoothed_per_thousand": 0.593,
- "tests_per_case": 29.128,
- "positive_rate": 0.034,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-30",
- "total_cases": 159119.0,
- "new_cases": 1478.0,
- "new_cases_smoothed": 1581.857,
- "total_deaths": 6288.0,
- "new_deaths": 173.0,
- "new_deaths_smoothed": 170.571,
- "total_cases_per_million": 1899.159,
- "new_cases_per_million": 17.641,
- "new_cases_smoothed_per_million": 18.88,
- "total_deaths_per_million": 75.05,
- "new_deaths_per_million": 2.065,
- "new_deaths_smoothed_per_million": 2.036,
- "new_tests_smoothed": 48956.0,
- "new_tests_smoothed_per_thousand": 0.584,
- "tests_per_case": 30.948,
- "positive_rate": 0.032,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-01",
- "total_cases": 160758.0,
- "new_cases": 1639.0,
- "new_cases_smoothed": 1482.143,
- "total_deaths": 6481.0,
- "new_deaths": 193.0,
- "new_deaths_smoothed": 165.714,
- "total_cases_per_million": 1918.721,
- "new_cases_per_million": 19.562,
- "new_cases_smoothed_per_million": 17.69,
- "total_deaths_per_million": 77.354,
- "new_deaths_per_million": 2.304,
- "new_deaths_smoothed_per_million": 1.978,
- "new_tests_smoothed": 48198.0,
- "new_tests_smoothed_per_thousand": 0.575,
- "tests_per_case": 32.519,
- "positive_rate": 0.031,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-02",
- "total_cases": 161703.0,
- "new_cases": 945.0,
- "new_cases_smoothed": 1323.571,
- "total_deaths": 6575.0,
- "new_deaths": 94.0,
- "new_deaths_smoothed": 153.571,
- "total_cases_per_million": 1930.0,
- "new_cases_per_million": 11.279,
- "new_cases_smoothed_per_million": 15.797,
- "total_deaths_per_million": 78.476,
- "new_deaths_per_million": 1.122,
- "new_deaths_smoothed_per_million": 1.833,
- "new_tests_smoothed": 47441.0,
- "new_tests_smoothed_per_thousand": 0.566,
- "tests_per_case": 35.843,
- "positive_rate": 0.027999999999999997,
- "tests_units": "tests performed",
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-03",
- "total_cases": 162496.0,
- "new_cases": 793.0,
- "new_cases_smoothed": 1188.714,
- "total_deaths": 6649.0,
- "new_deaths": 74.0,
- "new_deaths_smoothed": 144.143,
- "total_cases_per_million": 1939.465,
- "new_cases_per_million": 9.465,
- "new_cases_smoothed_per_million": 14.188,
- "total_deaths_per_million": 79.359,
- "new_deaths_per_million": 0.883,
- "new_deaths_smoothed_per_million": 1.72,
- "total_tests": 2773432.0,
- "total_tests_per_thousand": 33.102,
- "new_tests_smoothed": 46684.0,
- "new_tests_smoothed_per_thousand": 0.557,
- "tests_per_case": 39.273,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 75.46
- },
- {
- "date": "2020-05-04",
- "total_cases": 163175.0,
- "new_cases": 679.0,
- "new_cases_smoothed": 1140.286,
- "total_deaths": 6692.0,
- "new_deaths": 43.0,
- "new_deaths_smoothed": 134.571,
- "total_cases_per_million": 1947.569,
- "new_cases_per_million": 8.104,
- "new_cases_smoothed_per_million": 13.61,
- "total_deaths_per_million": 79.872,
- "new_deaths_per_million": 0.513,
- "new_deaths_smoothed_per_million": 1.606,
- "new_tests_smoothed": 48257.0,
- "new_tests_smoothed_per_thousand": 0.576,
- "tests_per_case": 42.32,
- "positive_rate": 0.024,
- "tests_units": "tests performed",
- "stringency_index": 71.76
- },
- {
- "date": "2020-05-05",
- "total_cases": 163860.0,
- "new_cases": 685.0,
- "new_cases_smoothed": 1074.714,
- "total_deaths": 6831.0,
- "new_deaths": 139.0,
- "new_deaths_smoothed": 131.143,
- "total_cases_per_million": 1955.745,
- "new_cases_per_million": 8.176,
- "new_cases_smoothed_per_million": 12.827,
- "total_deaths_per_million": 81.531,
- "new_deaths_per_million": 1.659,
- "new_deaths_smoothed_per_million": 1.565,
- "new_tests_smoothed": 49830.0,
- "new_tests_smoothed_per_thousand": 0.595,
- "tests_per_case": 46.36600000000001,
- "positive_rate": 0.022000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 71.76
- },
- {
- "date": "2020-05-06",
- "total_cases": 164897.0,
- "new_cases": 1037.0,
- "new_cases_smoothed": 1036.571,
- "total_deaths": 6996.0,
- "new_deaths": 165.0,
- "new_deaths_smoothed": 125.857,
- "total_cases_per_million": 1968.122,
- "new_cases_per_million": 12.377,
- "new_cases_smoothed_per_million": 12.372,
- "total_deaths_per_million": 83.5,
- "new_deaths_per_million": 1.969,
- "new_deaths_smoothed_per_million": 1.502,
- "new_tests_smoothed": 51404.0,
- "new_tests_smoothed_per_thousand": 0.614,
- "tests_per_case": 49.59,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 66.2
- },
- {
- "date": "2020-05-07",
- "total_cases": 166091.0,
- "new_cases": 1194.0,
- "new_cases_smoothed": 996.0,
- "total_deaths": 7119.0,
- "new_deaths": 123.0,
- "new_deaths_smoothed": 118.714,
- "total_cases_per_million": 1982.373,
- "new_cases_per_million": 14.251,
- "new_cases_smoothed_per_million": 11.888,
- "total_deaths_per_million": 84.969,
- "new_deaths_per_million": 1.468,
- "new_deaths_smoothed_per_million": 1.417,
- "new_tests_smoothed": 52977.0,
- "new_tests_smoothed_per_thousand": 0.632,
- "tests_per_case": 53.19,
- "positive_rate": 0.019,
- "tests_units": "tests performed",
- "stringency_index": 64.35
- },
- {
- "date": "2020-05-08",
- "total_cases": 167300.0,
- "new_cases": 1209.0,
- "new_cases_smoothed": 934.571,
- "total_deaths": 7266.0,
- "new_deaths": 147.0,
- "new_deaths_smoothed": 112.143,
- "total_cases_per_million": 1996.803,
- "new_cases_per_million": 14.43,
- "new_cases_smoothed_per_million": 11.155,
- "total_deaths_per_million": 86.723,
- "new_deaths_per_million": 1.755,
- "new_deaths_smoothed_per_million": 1.338,
- "new_tests_smoothed": 54550.0,
- "new_tests_smoothed_per_thousand": 0.651,
- "tests_per_case": 58.369,
- "positive_rate": 0.017,
- "tests_units": "tests performed",
- "stringency_index": 64.35
- },
- {
- "date": "2020-05-09",
- "total_cases": 168551.0,
- "new_cases": 1251.0,
- "new_cases_smoothed": 978.286,
- "total_deaths": 7369.0,
- "new_deaths": 103.0,
- "new_deaths_smoothed": 113.429,
- "total_cases_per_million": 2011.734,
- "new_cases_per_million": 14.931,
- "new_cases_smoothed_per_million": 11.676,
- "total_deaths_per_million": 87.952,
- "new_deaths_per_million": 1.229,
- "new_deaths_smoothed_per_million": 1.354,
- "new_tests_smoothed": 56123.0,
- "new_tests_smoothed_per_thousand": 0.67,
- "tests_per_case": 57.369,
- "positive_rate": 0.017,
- "tests_units": "tests performed",
- "stringency_index": 64.35
- },
- {
- "date": "2020-05-10",
- "total_cases": 169218.0,
- "new_cases": 667.0,
- "new_cases_smoothed": 960.286,
- "total_deaths": 7395.0,
- "new_deaths": 26.0,
- "new_deaths_smoothed": 106.571,
- "total_cases_per_million": 2019.695,
- "new_cases_per_million": 7.961,
- "new_cases_smoothed_per_million": 11.461,
- "total_deaths_per_million": 88.263,
- "new_deaths_per_million": 0.31,
- "new_deaths_smoothed_per_million": 1.272,
- "total_tests": 3177307.0,
- "total_tests_per_thousand": 37.923,
- "new_tests_smoothed": 57696.0,
- "new_tests_smoothed_per_thousand": 0.689,
- "tests_per_case": 60.082,
- "positive_rate": 0.017,
- "tests_units": "tests performed",
- "stringency_index": 64.35
- },
- {
- "date": "2020-05-11",
- "total_cases": 169575.0,
- "new_cases": 357.0,
- "new_cases_smoothed": 914.286,
- "total_deaths": 7417.0,
- "new_deaths": 22.0,
- "new_deaths_smoothed": 103.571,
- "total_cases_per_million": 2023.956,
- "new_cases_per_million": 4.261,
- "new_cases_smoothed_per_million": 10.912,
- "total_deaths_per_million": 88.525,
- "new_deaths_per_million": 0.263,
- "new_deaths_smoothed_per_million": 1.236,
- "new_tests_smoothed": 58284.0,
- "new_tests_smoothed_per_thousand": 0.696,
- "tests_per_case": 63.748000000000005,
- "positive_rate": 0.016,
- "tests_units": "tests performed",
- "stringency_index": 64.35
- },
- {
- "date": "2020-05-12",
- "total_cases": 170508.0,
- "new_cases": 933.0,
- "new_cases_smoothed": 949.714,
- "total_deaths": 7533.0,
- "new_deaths": 116.0,
- "new_deaths_smoothed": 100.286,
- "total_cases_per_million": 2035.092,
- "new_cases_per_million": 11.136,
- "new_cases_smoothed_per_million": 11.335,
- "total_deaths_per_million": 89.91,
- "new_deaths_per_million": 1.385,
- "new_deaths_smoothed_per_million": 1.197,
- "new_tests_smoothed": 58872.0,
- "new_tests_smoothed_per_thousand": 0.703,
- "tests_per_case": 61.989,
- "positive_rate": 0.016,
- "tests_units": "tests performed",
- "stringency_index": 64.35
- },
- {
- "date": "2020-05-13",
- "total_cases": 171306.0,
- "new_cases": 798.0,
- "new_cases_smoothed": 915.571,
- "total_deaths": 7634.0,
- "new_deaths": 101.0,
- "new_deaths_smoothed": 91.143,
- "total_cases_per_million": 2044.616,
- "new_cases_per_million": 9.524,
- "new_cases_smoothed_per_million": 10.928,
- "total_deaths_per_million": 91.115,
- "new_deaths_per_million": 1.205,
- "new_deaths_smoothed_per_million": 1.088,
- "new_tests_smoothed": 59459.0,
- "new_tests_smoothed_per_thousand": 0.71,
- "tests_per_case": 64.942,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 64.35
- },
- {
- "date": "2020-05-14",
- "total_cases": 172239.0,
- "new_cases": 933.0,
- "new_cases_smoothed": 878.286,
- "total_deaths": 7723.0,
- "new_deaths": 89.0,
- "new_deaths_smoothed": 86.286,
- "total_cases_per_million": 2055.752,
- "new_cases_per_million": 11.136,
- "new_cases_smoothed_per_million": 10.483,
- "total_deaths_per_million": 92.178,
- "new_deaths_per_million": 1.062,
- "new_deaths_smoothed_per_million": 1.03,
- "new_tests_smoothed": 60047.0,
- "new_tests_smoothed_per_thousand": 0.717,
- "tests_per_case": 68.368,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 64.35
- },
- {
- "date": "2020-05-15",
- "total_cases": 173152.0,
- "new_cases": 913.0,
- "new_cases_smoothed": 836.0,
- "total_deaths": 7824.0,
- "new_deaths": 101.0,
- "new_deaths_smoothed": 79.714,
- "total_cases_per_million": 2066.649,
- "new_cases_per_million": 10.897,
- "new_cases_smoothed_per_million": 9.978,
- "total_deaths_per_million": 93.383,
- "new_deaths_per_million": 1.205,
- "new_deaths_smoothed_per_million": 0.951,
- "new_tests_smoothed": 60634.0,
- "new_tests_smoothed_per_thousand": 0.724,
- "tests_per_case": 72.529,
- "positive_rate": 0.013999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 64.35
- },
- {
- "date": "2020-05-16",
- "total_cases": 173772.0,
- "new_cases": 620.0,
- "new_cases_smoothed": 745.857,
- "total_deaths": 7881.0,
- "new_deaths": 57.0,
- "new_deaths_smoothed": 73.143,
- "total_cases_per_million": 2074.049,
- "new_cases_per_million": 7.4,
- "new_cases_smoothed_per_million": 8.902,
- "total_deaths_per_million": 94.063,
- "new_deaths_per_million": 0.68,
- "new_deaths_smoothed_per_million": 0.873,
- "new_tests_smoothed": 61222.0,
- "new_tests_smoothed_per_thousand": 0.731,
- "tests_per_case": 82.083,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 61.57
- },
- {
- "date": "2020-05-17",
- "total_cases": 174355.0,
- "new_cases": 583.0,
- "new_cases_smoothed": 733.857,
- "total_deaths": 7914.0,
- "new_deaths": 33.0,
- "new_deaths_smoothed": 74.143,
- "total_cases_per_million": 2081.007,
- "new_cases_per_million": 6.958,
- "new_cases_smoothed_per_million": 8.759,
- "total_deaths_per_million": 94.457,
- "new_deaths_per_million": 0.394,
- "new_deaths_smoothed_per_million": 0.885,
- "total_tests": 3609973.0,
- "total_tests_per_thousand": 43.087,
- "new_tests_smoothed": 61809.0,
- "new_tests_smoothed_per_thousand": 0.738,
- "tests_per_case": 84.225,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 61.57
- },
- {
- "date": "2020-05-18",
- "total_cases": 174697.0,
- "new_cases": 342.0,
- "new_cases_smoothed": 731.714,
- "total_deaths": 7935.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 74.0,
- "total_cases_per_million": 2085.089,
- "new_cases_per_million": 4.082,
- "new_cases_smoothed_per_million": 8.733,
- "total_deaths_per_million": 94.708,
- "new_deaths_per_million": 0.251,
- "new_deaths_smoothed_per_million": 0.883,
- "new_tests_smoothed": 60193.0,
- "new_tests_smoothed_per_thousand": 0.718,
- "tests_per_case": 82.26299999999999,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 61.57
- },
- {
- "date": "2020-05-19",
- "total_cases": 175210.0,
- "new_cases": 513.0,
- "new_cases_smoothed": 671.714,
- "total_deaths": 8007.0,
- "new_deaths": 72.0,
- "new_deaths_smoothed": 67.714,
- "total_cases_per_million": 2091.212,
- "new_cases_per_million": 6.123,
- "new_cases_smoothed_per_million": 8.017,
- "total_deaths_per_million": 95.567,
- "new_deaths_per_million": 0.859,
- "new_deaths_smoothed_per_million": 0.808,
- "new_tests_smoothed": 58577.0,
- "new_tests_smoothed_per_thousand": 0.699,
- "tests_per_case": 87.205,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-05-20",
- "total_cases": 176007.0,
- "new_cases": 797.0,
- "new_cases_smoothed": 671.571,
- "total_deaths": 8090.0,
- "new_deaths": 83.0,
- "new_deaths_smoothed": 65.143,
- "total_cases_per_million": 2100.725,
- "new_cases_per_million": 9.513,
- "new_cases_smoothed_per_million": 8.016,
- "total_deaths_per_million": 96.558,
- "new_deaths_per_million": 0.991,
- "new_deaths_smoothed_per_million": 0.778,
- "new_tests_smoothed": 56961.0,
- "new_tests_smoothed_per_thousand": 0.68,
- "tests_per_case": 84.81700000000001,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-05-21",
- "total_cases": 176752.0,
- "new_cases": 745.0,
- "new_cases_smoothed": 644.714,
- "total_deaths": 8147.0,
- "new_deaths": 57.0,
- "new_deaths_smoothed": 60.571,
- "total_cases_per_million": 2109.617,
- "new_cases_per_million": 8.892,
- "new_cases_smoothed_per_million": 7.695,
- "total_deaths_per_million": 97.238,
- "new_deaths_per_million": 0.68,
- "new_deaths_smoothed_per_million": 0.723,
- "new_tests_smoothed": 55344.0,
- "new_tests_smoothed_per_thousand": 0.661,
- "tests_per_case": 85.84299999999999,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-05-22",
- "total_cases": 177212.0,
- "new_cases": 460.0,
- "new_cases_smoothed": 580.0,
- "total_deaths": 8174.0,
- "new_deaths": 27.0,
- "new_deaths_smoothed": 50.0,
- "total_cases_per_million": 2115.107,
- "new_cases_per_million": 5.49,
- "new_cases_smoothed_per_million": 6.923,
- "total_deaths_per_million": 97.56,
- "new_deaths_per_million": 0.322,
- "new_deaths_smoothed_per_million": 0.597,
- "new_tests_smoothed": 53728.0,
- "new_tests_smoothed_per_thousand": 0.641,
- "tests_per_case": 92.634,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-05-23",
- "total_cases": 177850.0,
- "new_cases": 638.0,
- "new_cases_smoothed": 582.571,
- "total_deaths": 8216.0,
- "new_deaths": 42.0,
- "new_deaths_smoothed": 47.857,
- "total_cases_per_million": 2122.722,
- "new_cases_per_million": 7.615,
- "new_cases_smoothed_per_million": 6.953,
- "total_deaths_per_million": 98.062,
- "new_deaths_per_million": 0.501,
- "new_deaths_smoothed_per_million": 0.571,
- "new_tests_smoothed": 52112.0,
- "new_tests_smoothed_per_thousand": 0.622,
- "tests_per_case": 89.45200000000001,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-05-24",
- "total_cases": 178281.0,
- "new_cases": 431.0,
- "new_cases_smoothed": 560.857,
- "total_deaths": 8247.0,
- "new_deaths": 31.0,
- "new_deaths_smoothed": 47.571,
- "total_cases_per_million": 2127.866,
- "new_cases_per_million": 5.144,
- "new_cases_smoothed_per_million": 6.694,
- "total_deaths_per_million": 98.432,
- "new_deaths_per_million": 0.37,
- "new_deaths_smoothed_per_million": 0.568,
- "total_tests": 3963440.0,
- "total_tests_per_thousand": 47.305,
- "new_tests_smoothed": 50495.0,
- "new_tests_smoothed_per_thousand": 0.603,
- "tests_per_case": 90.03200000000001,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-05-25",
- "total_cases": 178570.0,
- "new_cases": 289.0,
- "new_cases_smoothed": 553.286,
- "total_deaths": 8257.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 46.0,
- "total_cases_per_million": 2131.315,
- "new_cases_per_million": 3.449,
- "new_cases_smoothed_per_million": 6.604,
- "total_deaths_per_million": 98.551,
- "new_deaths_per_million": 0.119,
- "new_deaths_smoothed_per_million": 0.549,
- "new_tests_smoothed": 51552.0,
- "new_tests_smoothed_per_thousand": 0.615,
- "tests_per_case": 93.17399999999999,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-05-26",
- "total_cases": 179002.0,
- "new_cases": 432.0,
- "new_cases_smoothed": 541.714,
- "total_deaths": 8302.0,
- "new_deaths": 45.0,
- "new_deaths_smoothed": 42.143,
- "total_cases_per_million": 2136.471,
- "new_cases_per_million": 5.156,
- "new_cases_smoothed_per_million": 6.466,
- "total_deaths_per_million": 99.088,
- "new_deaths_per_million": 0.537,
- "new_deaths_smoothed_per_million": 0.503,
- "new_tests_smoothed": 52610.0,
- "new_tests_smoothed_per_thousand": 0.628,
- "tests_per_case": 97.118,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-05-27",
- "total_cases": 179364.0,
- "new_cases": 362.0,
- "new_cases_smoothed": 479.571,
- "total_deaths": 8349.0,
- "new_deaths": 47.0,
- "new_deaths_smoothed": 37.0,
- "total_cases_per_million": 2140.792,
- "new_cases_per_million": 4.321,
- "new_cases_smoothed_per_million": 5.724,
- "total_deaths_per_million": 99.649,
- "new_deaths_per_million": 0.561,
- "new_deaths_smoothed_per_million": 0.442,
- "new_tests_smoothed": 53667.0,
- "new_tests_smoothed_per_thousand": 0.641,
- "tests_per_case": 111.906,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-05-28",
- "total_cases": 179717.0,
- "new_cases": 353.0,
- "new_cases_smoothed": 423.571,
- "total_deaths": 8411.0,
- "new_deaths": 62.0,
- "new_deaths_smoothed": 37.714,
- "total_cases_per_million": 2145.005,
- "new_cases_per_million": 4.213,
- "new_cases_smoothed_per_million": 5.056,
- "total_deaths_per_million": 100.389,
- "new_deaths_per_million": 0.74,
- "new_deaths_smoothed_per_million": 0.45,
- "new_tests_smoothed": 54724.0,
- "new_tests_smoothed_per_thousand": 0.653,
- "tests_per_case": 129.197,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-05-29",
- "total_cases": 180458.0,
- "new_cases": 741.0,
- "new_cases_smoothed": 463.714,
- "total_deaths": 8450.0,
- "new_deaths": 39.0,
- "new_deaths_smoothed": 39.429,
- "total_cases_per_million": 2153.849,
- "new_cases_per_million": 8.844,
- "new_cases_smoothed_per_million": 5.535,
- "total_deaths_per_million": 100.855,
- "new_deaths_per_million": 0.465,
- "new_deaths_smoothed_per_million": 0.471,
- "new_tests_smoothed": 55781.0,
- "new_tests_smoothed_per_thousand": 0.666,
- "tests_per_case": 120.292,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-05-30",
- "total_cases": 181196.0,
- "new_cases": 738.0,
- "new_cases_smoothed": 478.0,
- "total_deaths": 8489.0,
- "new_deaths": 39.0,
- "new_deaths_smoothed": 39.0,
- "total_cases_per_million": 2162.658,
- "new_cases_per_million": 8.808,
- "new_cases_smoothed_per_million": 5.705,
- "total_deaths_per_million": 101.32,
- "new_deaths_per_million": 0.465,
- "new_deaths_smoothed_per_million": 0.465,
- "new_tests_smoothed": 56838.0,
- "new_tests_smoothed_per_thousand": 0.678,
- "tests_per_case": 118.90799999999999,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-05-31",
- "total_cases": 181482.0,
- "new_cases": 286.0,
- "new_cases_smoothed": 457.286,
- "total_deaths": 8500.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 36.143,
- "total_cases_per_million": 2166.071,
- "new_cases_per_million": 3.414,
- "new_cases_smoothed_per_million": 5.458,
- "total_deaths_per_million": 101.451,
- "new_deaths_per_million": 0.131,
- "new_deaths_smoothed_per_million": 0.431,
- "total_tests": 4368709.0,
- "total_tests_per_thousand": 52.143,
- "new_tests_smoothed": 57896.0,
- "new_tests_smoothed_per_thousand": 0.691,
- "tests_per_case": 126.60799999999999,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-06-01",
- "total_cases": 181815.0,
- "new_cases": 333.0,
- "new_cases_smoothed": 463.571,
- "total_deaths": 8511.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 36.286,
- "total_cases_per_million": 2170.046,
- "new_cases_per_million": 3.975,
- "new_cases_smoothed_per_million": 5.533,
- "total_deaths_per_million": 101.583,
- "new_deaths_per_million": 0.131,
- "new_deaths_smoothed_per_million": 0.433,
- "new_tests_smoothed": 56584.0,
- "new_tests_smoothed_per_thousand": 0.675,
- "tests_per_case": 122.061,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-06-02",
- "total_cases": 182028.0,
- "new_cases": 213.0,
- "new_cases_smoothed": 432.286,
- "total_deaths": 8522.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 31.429,
- "total_cases_per_million": 2172.588,
- "new_cases_per_million": 2.542,
- "new_cases_smoothed_per_million": 5.16,
- "total_deaths_per_million": 101.714,
- "new_deaths_per_million": 0.131,
- "new_deaths_smoothed_per_million": 0.375,
- "new_tests_smoothed": 55272.0,
- "new_tests_smoothed_per_thousand": 0.66,
- "tests_per_case": 127.86,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-06-03",
- "total_cases": 182370.0,
- "new_cases": 342.0,
- "new_cases_smoothed": 429.429,
- "total_deaths": 8551.0,
- "new_deaths": 29.0,
- "new_deaths_smoothed": 28.857,
- "total_cases_per_million": 2176.67,
- "new_cases_per_million": 4.082,
- "new_cases_smoothed_per_million": 5.125,
- "total_deaths_per_million": 102.06,
- "new_deaths_per_million": 0.346,
- "new_deaths_smoothed_per_million": 0.344,
- "new_tests_smoothed": 53960.0,
- "new_tests_smoothed_per_thousand": 0.644,
- "tests_per_case": 125.655,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-06-04",
- "total_cases": 182764.0,
- "new_cases": 394.0,
- "new_cases_smoothed": 435.286,
- "total_deaths": 8581.0,
- "new_deaths": 30.0,
- "new_deaths_smoothed": 24.286,
- "total_cases_per_million": 2181.373,
- "new_cases_per_million": 4.703,
- "new_cases_smoothed_per_million": 5.195,
- "total_deaths_per_million": 102.418,
- "new_deaths_per_million": 0.358,
- "new_deaths_smoothed_per_million": 0.29,
- "new_tests_smoothed": 52648.0,
- "new_tests_smoothed_per_thousand": 0.628,
- "tests_per_case": 120.95,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-06-05",
- "total_cases": 183271.0,
- "new_cases": 507.0,
- "new_cases_smoothed": 401.857,
- "total_deaths": 8613.0,
- "new_deaths": 32.0,
- "new_deaths_smoothed": 23.286,
- "total_cases_per_million": 2187.424,
- "new_cases_per_million": 6.051,
- "new_cases_smoothed_per_million": 4.796,
- "total_deaths_per_million": 102.8,
- "new_deaths_per_million": 0.382,
- "new_deaths_smoothed_per_million": 0.278,
- "new_tests_smoothed": 51336.0,
- "new_tests_smoothed_per_thousand": 0.613,
- "tests_per_case": 127.74700000000001,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-06-06",
- "total_cases": 183678.0,
- "new_cases": 407.0,
- "new_cases_smoothed": 354.571,
- "total_deaths": 8646.0,
- "new_deaths": 33.0,
- "new_deaths_smoothed": 22.429,
- "total_cases_per_million": 2192.282,
- "new_cases_per_million": 4.858,
- "new_cases_smoothed_per_million": 4.232,
- "total_deaths_per_million": 103.194,
- "new_deaths_per_million": 0.394,
- "new_deaths_smoothed_per_million": 0.268,
- "new_tests_smoothed": 50024.0,
- "new_tests_smoothed_per_thousand": 0.597,
- "tests_per_case": 141.083,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-06-07",
- "total_cases": 183979.0,
- "new_cases": 301.0,
- "new_cases_smoothed": 356.714,
- "total_deaths": 8668.0,
- "new_deaths": 22.0,
- "new_deaths_smoothed": 24.0,
- "total_cases_per_million": 2195.874,
- "new_cases_per_million": 3.593,
- "new_cases_smoothed_per_million": 4.258,
- "total_deaths_per_million": 103.457,
- "new_deaths_per_million": 0.263,
- "new_deaths_smoothed_per_million": 0.286,
- "total_tests": 4709695.0,
- "total_tests_per_thousand": 56.212,
- "new_tests_smoothed": 48712.0,
- "new_tests_smoothed_per_thousand": 0.581,
- "tests_per_case": 136.55700000000002,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-06-08",
- "total_cases": 184193.0,
- "new_cases": 214.0,
- "new_cases_smoothed": 339.714,
- "total_deaths": 8674.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 23.286,
- "total_cases_per_million": 2198.428,
- "new_cases_per_million": 2.554,
- "new_cases_smoothed_per_million": 4.055,
- "total_deaths_per_million": 103.528,
- "new_deaths_per_million": 0.072,
- "new_deaths_smoothed_per_million": 0.278,
- "new_tests_smoothed": 48431.0,
- "new_tests_smoothed_per_thousand": 0.578,
- "tests_per_case": 142.564,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-06-09",
- "total_cases": 184543.0,
- "new_cases": 350.0,
- "new_cases_smoothed": 359.286,
- "total_deaths": 8711.0,
- "new_deaths": 37.0,
- "new_deaths_smoothed": 27.0,
- "total_cases_per_million": 2202.606,
- "new_cases_per_million": 4.177,
- "new_cases_smoothed_per_million": 4.288,
- "total_deaths_per_million": 103.97,
- "new_deaths_per_million": 0.442,
- "new_deaths_smoothed_per_million": 0.322,
- "new_tests_smoothed": 48149.0,
- "new_tests_smoothed_per_thousand": 0.575,
- "tests_per_case": 134.013,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-06-10",
- "total_cases": 184861.0,
- "new_cases": 318.0,
- "new_cases_smoothed": 355.857,
- "total_deaths": 8729.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 25.429,
- "total_cases_per_million": 2206.401,
- "new_cases_per_million": 3.795,
- "new_cases_smoothed_per_million": 4.247,
- "total_deaths_per_million": 104.185,
- "new_deaths_per_million": 0.215,
- "new_deaths_smoothed_per_million": 0.304,
- "new_tests_smoothed": 47868.0,
- "new_tests_smoothed_per_thousand": 0.571,
- "tests_per_case": 134.515,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-06-11",
- "total_cases": 185416.0,
- "new_cases": 555.0,
- "new_cases_smoothed": 378.857,
- "total_deaths": 8755.0,
- "new_deaths": 26.0,
- "new_deaths_smoothed": 24.857,
- "total_cases_per_million": 2213.025,
- "new_cases_per_million": 6.624,
- "new_cases_smoothed_per_million": 4.522,
- "total_deaths_per_million": 104.495,
- "new_deaths_per_million": 0.31,
- "new_deaths_smoothed_per_million": 0.297,
- "new_tests_smoothed": 47587.0,
- "new_tests_smoothed_per_thousand": 0.568,
- "tests_per_case": 125.60700000000001,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-06-12",
- "total_cases": 185674.0,
- "new_cases": 258.0,
- "new_cases_smoothed": 343.286,
- "total_deaths": 8763.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 21.429,
- "total_cases_per_million": 2216.105,
- "new_cases_per_million": 3.079,
- "new_cases_smoothed_per_million": 4.097,
- "total_deaths_per_million": 104.59,
- "new_deaths_per_million": 0.095,
- "new_deaths_smoothed_per_million": 0.256,
- "new_tests_smoothed": 47305.0,
- "new_tests_smoothed_per_thousand": 0.565,
- "tests_per_case": 137.80100000000002,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-06-13",
- "total_cases": 186022.0,
- "new_cases": 348.0,
- "new_cases_smoothed": 334.857,
- "total_deaths": 8781.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 19.286,
- "total_cases_per_million": 2220.258,
- "new_cases_per_million": 4.154,
- "new_cases_smoothed_per_million": 3.997,
- "total_deaths_per_million": 104.805,
- "new_deaths_per_million": 0.215,
- "new_deaths_smoothed_per_million": 0.23,
- "new_tests_smoothed": 47024.0,
- "new_tests_smoothed_per_thousand": 0.561,
- "tests_per_case": 140.43,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-06-14",
- "total_cases": 186269.0,
- "new_cases": 247.0,
- "new_cases_smoothed": 327.143,
- "total_deaths": 8787.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 17.0,
- "total_cases_per_million": 2223.206,
- "new_cases_per_million": 2.948,
- "new_cases_smoothed_per_million": 3.905,
- "total_deaths_per_million": 104.877,
- "new_deaths_per_million": 0.072,
- "new_deaths_smoothed_per_million": 0.203,
- "total_tests": 5036891.0,
- "total_tests_per_thousand": 60.118,
- "new_tests_smoothed": 46742.0,
- "new_tests_smoothed_per_thousand": 0.558,
- "tests_per_case": 142.879,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-06-15",
- "total_cases": 186461.0,
- "new_cases": 192.0,
- "new_cases_smoothed": 324.0,
- "total_deaths": 8791.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 16.714,
- "total_cases_per_million": 2225.498,
- "new_cases_per_million": 2.292,
- "new_cases_smoothed_per_million": 3.867,
- "total_deaths_per_million": 104.925,
- "new_deaths_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.199,
- "new_tests_smoothed": 47987.0,
- "new_tests_smoothed_per_thousand": 0.573,
- "tests_per_case": 148.108,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-06-16",
- "total_cases": 186839.0,
- "new_cases": 378.0,
- "new_cases_smoothed": 328.0,
- "total_deaths": 8800.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 12.714,
- "total_cases_per_million": 2230.01,
- "new_cases_per_million": 4.512,
- "new_cases_smoothed_per_million": 3.915,
- "total_deaths_per_million": 105.032,
- "new_deaths_per_million": 0.107,
- "new_deaths_smoothed_per_million": 0.152,
- "new_tests_smoothed": 49232.0,
- "new_tests_smoothed_per_thousand": 0.588,
- "tests_per_case": 150.09799999999998,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-06-17",
- "total_cases": 187184.0,
- "new_cases": 345.0,
- "new_cases_smoothed": 331.857,
- "total_deaths": 8830.0,
- "new_deaths": 30.0,
- "new_deaths_smoothed": 14.429,
- "total_cases_per_million": 2234.127,
- "new_cases_per_million": 4.118,
- "new_cases_smoothed_per_million": 3.961,
- "total_deaths_per_million": 105.39,
- "new_deaths_per_million": 0.358,
- "new_deaths_smoothed_per_million": 0.172,
- "new_tests_smoothed": 50476.0,
- "new_tests_smoothed_per_thousand": 0.602,
- "tests_per_case": 152.102,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-06-18",
- "total_cases": 187764.0,
- "new_cases": 580.0,
- "new_cases_smoothed": 335.429,
- "total_deaths": 8856.0,
- "new_deaths": 26.0,
- "new_deaths_smoothed": 14.429,
- "total_cases_per_million": 2241.05,
- "new_cases_per_million": 6.923,
- "new_cases_smoothed_per_million": 4.003,
- "total_deaths_per_million": 105.7,
- "new_deaths_per_million": 0.31,
- "new_deaths_smoothed_per_million": 0.172,
- "new_tests_smoothed": 51721.0,
- "new_tests_smoothed_per_thousand": 0.617,
- "tests_per_case": 154.194,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 63.43
- },
- {
- "date": "2020-06-19",
- "total_cases": 188534.0,
- "new_cases": 770.0,
- "new_cases_smoothed": 408.571,
- "total_deaths": 8872.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 15.571,
- "total_cases_per_million": 2250.24,
- "new_cases_per_million": 9.19,
- "new_cases_smoothed_per_million": 4.876,
- "total_deaths_per_million": 105.891,
- "new_deaths_per_million": 0.191,
- "new_deaths_smoothed_per_million": 0.186,
- "new_tests_smoothed": 52966.0,
- "new_tests_smoothed_per_thousand": 0.632,
- "tests_per_case": 129.637,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 63.43
- },
- {
- "date": "2020-06-20",
- "total_cases": 189135.0,
- "new_cases": 601.0,
- "new_cases_smoothed": 444.714,
- "total_deaths": 8882.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 14.429,
- "total_cases_per_million": 2257.413,
- "new_cases_per_million": 7.173,
- "new_cases_smoothed_per_million": 5.308,
- "total_deaths_per_million": 106.011,
- "new_deaths_per_million": 0.119,
- "new_deaths_smoothed_per_million": 0.172,
- "new_tests_smoothed": 54211.0,
- "new_tests_smoothed_per_thousand": 0.647,
- "tests_per_case": 121.90100000000001,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 63.43
- },
- {
- "date": "2020-06-21",
- "total_cases": 189822.0,
- "new_cases": 687.0,
- "new_cases_smoothed": 507.571,
- "total_deaths": 8882.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 13.571,
- "total_cases_per_million": 2265.613,
- "new_cases_per_million": 8.2,
- "new_cases_smoothed_per_million": 6.058,
- "total_deaths_per_million": 106.011,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.162,
- "total_tests": 5425078.0,
- "total_tests_per_thousand": 64.751,
- "new_tests_smoothed": 55455.0,
- "new_tests_smoothed_per_thousand": 0.662,
- "tests_per_case": 109.256,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 63.43
- },
- {
- "date": "2020-06-22",
- "total_cases": 190359.0,
- "new_cases": 537.0,
- "new_cases_smoothed": 556.857,
- "total_deaths": 8885.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 13.429,
- "total_cases_per_million": 2272.022,
- "new_cases_per_million": 6.409,
- "new_cases_smoothed_per_million": 6.646,
- "total_deaths_per_million": 106.047,
- "new_deaths_per_million": 0.036,
- "new_deaths_smoothed_per_million": 0.16,
- "new_tests_smoothed": 57072.0,
- "new_tests_smoothed_per_thousand": 0.681,
- "tests_per_case": 102.48899999999999,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 63.43
- },
- {
- "date": "2020-06-23",
- "total_cases": 190862.0,
- "new_cases": 503.0,
- "new_cases_smoothed": 574.714,
- "total_deaths": 8895.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 13.571,
- "total_cases_per_million": 2278.026,
- "new_cases_per_million": 6.004,
- "new_cases_smoothed_per_million": 6.859,
- "total_deaths_per_million": 106.166,
- "new_deaths_per_million": 0.119,
- "new_deaths_smoothed_per_million": 0.162,
- "new_tests_smoothed": 58689.0,
- "new_tests_smoothed_per_thousand": 0.7,
- "tests_per_case": 102.119,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 63.43
- },
- {
- "date": "2020-06-24",
- "total_cases": 191449.0,
- "new_cases": 587.0,
- "new_cases_smoothed": 609.286,
- "total_deaths": 8914.0,
- "new_deaths": 19.0,
- "new_deaths_smoothed": 12.0,
- "total_cases_per_million": 2285.032,
- "new_cases_per_million": 7.006,
- "new_cases_smoothed_per_million": 7.272,
- "total_deaths_per_million": 106.393,
- "new_deaths_per_million": 0.227,
- "new_deaths_smoothed_per_million": 0.143,
- "new_tests_smoothed": 60306.0,
- "new_tests_smoothed_per_thousand": 0.72,
- "tests_per_case": 98.978,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 63.43
- },
- {
- "date": "2020-06-25",
- "total_cases": 192079.0,
- "new_cases": 630.0,
- "new_cases_smoothed": 616.429,
- "total_deaths": 8927.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 10.143,
- "total_cases_per_million": 2292.551,
- "new_cases_per_million": 7.519,
- "new_cases_smoothed_per_million": 7.357,
- "total_deaths_per_million": 106.548,
- "new_deaths_per_million": 0.155,
- "new_deaths_smoothed_per_million": 0.121,
- "new_tests_smoothed": 61923.0,
- "new_tests_smoothed_per_thousand": 0.739,
- "tests_per_case": 100.454,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 63.43
- },
- {
- "date": "2020-06-26",
- "total_cases": 192556.0,
- "new_cases": 477.0,
- "new_cases_smoothed": 574.571,
- "total_deaths": 8948.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 10.857,
- "total_cases_per_million": 2298.245,
- "new_cases_per_million": 5.693,
- "new_cases_smoothed_per_million": 6.858,
- "total_deaths_per_million": 106.799,
- "new_deaths_per_million": 0.251,
- "new_deaths_smoothed_per_million": 0.13,
- "new_tests_smoothed": 63540.0,
- "new_tests_smoothed_per_thousand": 0.758,
- "tests_per_case": 110.587,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 63.43
- },
- {
- "date": "2020-06-27",
- "total_cases": 193243.0,
- "new_cases": 687.0,
- "new_cases_smoothed": 586.857,
- "total_deaths": 8954.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 10.286,
- "total_cases_per_million": 2306.444,
- "new_cases_per_million": 8.2,
- "new_cases_smoothed_per_million": 7.004,
- "total_deaths_per_million": 106.87,
- "new_deaths_per_million": 0.072,
- "new_deaths_smoothed_per_million": 0.123,
- "new_tests_smoothed": 65156.0,
- "new_tests_smoothed_per_thousand": 0.778,
- "tests_per_case": 111.025,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 63.43
- },
- {
- "date": "2020-06-28",
- "total_cases": 193499.0,
- "new_cases": 256.0,
- "new_cases_smoothed": 525.286,
- "total_deaths": 8957.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 10.714,
- "total_cases_per_million": 2309.5,
- "new_cases_per_million": 3.055,
- "new_cases_smoothed_per_million": 6.27,
- "total_deaths_per_million": 106.906,
- "new_deaths_per_million": 0.036,
- "new_deaths_smoothed_per_million": 0.128,
- "total_tests": 5892491.0,
- "total_tests_per_thousand": 70.33,
- "new_tests_smoothed": 66773.0,
- "new_tests_smoothed_per_thousand": 0.797,
- "tests_per_case": 127.117,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 63.43
- },
- {
- "date": "2020-06-29",
- "total_cases": 193761.0,
- "new_cases": 262.0,
- "new_cases_smoothed": 486.0,
- "total_deaths": 8961.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 10.857,
- "total_cases_per_million": 2312.627,
- "new_cases_per_million": 3.127,
- "new_cases_smoothed_per_million": 5.801,
- "total_deaths_per_million": 106.954,
- "new_deaths_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.13,
- "new_tests_smoothed": 67571.0,
- "new_tests_smoothed_per_thousand": 0.806,
- "tests_per_case": 139.035,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 63.43
- },
- {
- "date": "2020-06-30",
- "total_cases": 194259.0,
- "new_cases": 498.0,
- "new_cases_smoothed": 485.286,
- "total_deaths": 8973.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 11.143,
- "total_cases_per_million": 2318.571,
- "new_cases_per_million": 5.944,
- "new_cases_smoothed_per_million": 5.792,
- "total_deaths_per_million": 107.097,
- "new_deaths_per_million": 0.143,
- "new_deaths_smoothed_per_million": 0.133,
- "new_tests_smoothed": 68368.0,
- "new_tests_smoothed_per_thousand": 0.816,
- "tests_per_case": 140.882,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 63.43
- },
- {
- "date": "2020-07-01",
- "total_cases": 194725.0,
- "new_cases": 466.0,
- "new_cases_smoothed": 468.0,
- "total_deaths": 8985.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 10.143,
- "total_cases_per_million": 2324.133,
- "new_cases_per_million": 5.562,
- "new_cases_smoothed_per_million": 5.586,
- "total_deaths_per_million": 107.24,
- "new_deaths_per_million": 0.143,
- "new_deaths_smoothed_per_million": 0.121,
- "new_tests_smoothed": 69166.0,
- "new_tests_smoothed_per_thousand": 0.826,
- "tests_per_case": 147.791,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 63.43
- },
- {
- "date": "2020-07-02",
- "total_cases": 195228.0,
- "new_cases": 503.0,
- "new_cases_smoothed": 449.857,
- "total_deaths": 8994.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 9.571,
- "total_cases_per_million": 2330.136,
- "new_cases_per_million": 6.004,
- "new_cases_smoothed_per_million": 5.369,
- "total_deaths_per_million": 107.348,
- "new_deaths_per_million": 0.107,
- "new_deaths_smoothed_per_million": 0.114,
- "new_tests_smoothed": 69963.0,
- "new_tests_smoothed_per_thousand": 0.835,
- "tests_per_case": 155.523,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 63.43
- },
- {
- "date": "2020-07-03",
- "total_cases": 195674.0,
- "new_cases": 446.0,
- "new_cases_smoothed": 445.429,
- "total_deaths": 9003.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 7.857,
- "total_cases_per_million": 2335.459,
- "new_cases_per_million": 5.323,
- "new_cases_smoothed_per_million": 5.316,
- "total_deaths_per_million": 107.455,
- "new_deaths_per_million": 0.107,
- "new_deaths_smoothed_per_million": 0.094,
- "new_tests_smoothed": 70761.0,
- "new_tests_smoothed_per_thousand": 0.845,
- "tests_per_case": 158.86,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 63.43
- },
- {
- "date": "2020-07-04",
- "total_cases": 196096.0,
- "new_cases": 422.0,
- "new_cases_smoothed": 407.571,
- "total_deaths": 9010.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 8.0,
- "total_cases_per_million": 2340.496,
- "new_cases_per_million": 5.037,
- "new_cases_smoothed_per_million": 4.865,
- "total_deaths_per_million": 107.539,
- "new_deaths_per_million": 0.084,
- "new_deaths_smoothed_per_million": 0.095,
- "new_tests_smoothed": 71558.0,
- "new_tests_smoothed_per_thousand": 0.854,
- "tests_per_case": 175.572,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 63.43
- },
- {
- "date": "2020-07-05",
- "total_cases": 196335.0,
- "new_cases": 239.0,
- "new_cases_smoothed": 405.143,
- "total_deaths": 9012.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 7.857,
- "total_cases_per_million": 2343.349,
- "new_cases_per_million": 2.853,
- "new_cases_smoothed_per_million": 4.836,
- "total_deaths_per_million": 107.562,
- "new_deaths_per_million": 0.024,
- "new_deaths_smoothed_per_million": 0.094,
- "total_tests": 6398981.0,
- "total_tests_per_thousand": 76.375,
- "new_tests_smoothed": 72356.0,
- "new_tests_smoothed_per_thousand": 0.864,
- "tests_per_case": 178.59400000000002,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 63.43
- },
- {
- "date": "2020-07-06",
- "total_cases": 196554.0,
- "new_cases": 219.0,
- "new_cases_smoothed": 399.0,
- "total_deaths": 9016.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 7.857,
- "total_cases_per_million": 2345.963,
- "new_cases_per_million": 2.614,
- "new_cases_smoothed_per_million": 4.762,
- "total_deaths_per_million": 107.61,
- "new_deaths_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.094,
- "new_tests_smoothed": 72439.0,
- "new_tests_smoothed_per_thousand": 0.865,
- "tests_per_case": 181.551,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 63.43
- },
- {
- "date": "2020-07-07",
- "total_cases": 196944.0,
- "new_cases": 390.0,
- "new_cases_smoothed": 383.571,
- "total_deaths": 9024.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 7.286,
- "total_cases_per_million": 2350.617,
- "new_cases_per_million": 4.655,
- "new_cases_smoothed_per_million": 4.578,
- "total_deaths_per_million": 107.706,
- "new_deaths_per_million": 0.095,
- "new_deaths_smoothed_per_million": 0.087,
- "new_tests_smoothed": 72521.0,
- "new_tests_smoothed_per_thousand": 0.866,
- "tests_per_case": 189.06799999999998,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 55.09
- },
- {
- "date": "2020-07-08",
- "total_cases": 197341.0,
- "new_cases": 397.0,
- "new_cases_smoothed": 373.714,
- "total_deaths": 9036.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 7.286,
- "total_cases_per_million": 2355.356,
- "new_cases_per_million": 4.738,
- "new_cases_smoothed_per_million": 4.46,
- "total_deaths_per_million": 107.849,
- "new_deaths_per_million": 0.143,
- "new_deaths_smoothed_per_million": 0.087,
- "new_tests_smoothed": 72604.0,
- "new_tests_smoothed_per_thousand": 0.867,
- "tests_per_case": 194.27700000000002,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 55.09
- },
- {
- "date": "2020-07-09",
- "total_cases": 197783.0,
- "new_cases": 442.0,
- "new_cases_smoothed": 365.0,
- "total_deaths": 9048.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 7.714,
- "total_cases_per_million": 2360.631,
- "new_cases_per_million": 5.275,
- "new_cases_smoothed_per_million": 4.356,
- "total_deaths_per_million": 107.992,
- "new_deaths_per_million": 0.143,
- "new_deaths_smoothed_per_million": 0.092,
- "new_tests_smoothed": 72687.0,
- "new_tests_smoothed_per_thousand": 0.868,
- "tests_per_case": 199.142,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 55.09
- },
- {
- "date": "2020-07-10",
- "total_cases": 198178.0,
- "new_cases": 395.0,
- "new_cases_smoothed": 357.714,
- "total_deaths": 9054.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 7.286,
- "total_cases_per_million": 2365.346,
- "new_cases_per_million": 4.715,
- "new_cases_smoothed_per_million": 4.269,
- "total_deaths_per_million": 108.064,
- "new_deaths_per_million": 0.072,
- "new_deaths_smoothed_per_million": 0.087,
- "new_tests_smoothed": 72770.0,
- "new_tests_smoothed_per_thousand": 0.869,
- "tests_per_case": 203.43099999999998,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 55.09
- },
- {
- "date": "2020-07-11",
- "total_cases": 198556.0,
- "new_cases": 378.0,
- "new_cases_smoothed": 351.429,
- "total_deaths": 9060.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 7.143,
- "total_cases_per_million": 2369.857,
- "new_cases_per_million": 4.512,
- "new_cases_smoothed_per_million": 4.194,
- "total_deaths_per_million": 108.135,
- "new_deaths_per_million": 0.072,
- "new_deaths_smoothed_per_million": 0.085,
- "new_tests_smoothed": 72853.0,
- "new_tests_smoothed_per_thousand": 0.87,
- "tests_per_case": 207.305,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 55.09
- },
- {
- "date": "2020-07-12",
- "total_cases": 198804.0,
- "new_cases": 248.0,
- "new_cases_smoothed": 352.714,
- "total_deaths": 9063.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 7.286,
- "total_cases_per_million": 2372.817,
- "new_cases_per_million": 2.96,
- "new_cases_smoothed_per_million": 4.21,
- "total_deaths_per_million": 108.171,
- "new_deaths_per_million": 0.036,
- "new_deaths_smoothed_per_million": 0.087,
- "total_tests": 6909532.0,
- "total_tests_per_thousand": 82.468,
- "new_tests_smoothed": 72936.0,
- "new_tests_smoothed_per_thousand": 0.871,
- "tests_per_case": 206.785,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 55.09
- },
- {
- "date": "2020-07-13",
- "total_cases": 198963.0,
- "new_cases": 159.0,
- "new_cases_smoothed": 344.143,
- "total_deaths": 9064.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 6.857,
- "total_cases_per_million": 2374.715,
- "new_cases_per_million": 1.898,
- "new_cases_smoothed_per_million": 4.108,
- "total_deaths_per_million": 108.183,
- "new_deaths_per_million": 0.012,
- "new_deaths_smoothed_per_million": 0.082,
- "new_tests_smoothed": 73510.0,
- "new_tests_smoothed_per_thousand": 0.877,
- "tests_per_case": 213.60299999999998,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 55.09
- },
- {
- "date": "2020-07-14",
- "total_cases": 199375.0,
- "new_cases": 412.0,
- "new_cases_smoothed": 347.286,
- "total_deaths": 9068.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 6.286,
- "total_cases_per_million": 2379.633,
- "new_cases_per_million": 4.917,
- "new_cases_smoothed_per_million": 4.145,
- "total_deaths_per_million": 108.231,
- "new_deaths_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.075,
- "new_tests_smoothed": 74085.0,
- "new_tests_smoothed_per_thousand": 0.884,
- "tests_per_case": 213.326,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 55.09
- },
- {
- "date": "2020-07-15",
- "total_cases": 199726.0,
- "new_cases": 351.0,
- "new_cases_smoothed": 340.714,
- "total_deaths": 9071.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 2383.822,
- "new_cases_per_million": 4.189,
- "new_cases_smoothed_per_million": 4.067,
- "total_deaths_per_million": 108.267,
- "new_deaths_per_million": 0.036,
- "new_deaths_smoothed_per_million": 0.06,
- "new_tests_smoothed": 74659.0,
- "new_tests_smoothed_per_thousand": 0.891,
- "tests_per_case": 219.125,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 55.09
- },
- {
- "date": "2020-07-16",
- "total_cases": 200260.0,
- "new_cases": 534.0,
- "new_cases_smoothed": 353.857,
- "total_deaths": 9078.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 2390.195,
- "new_cases_per_million": 6.374,
- "new_cases_smoothed_per_million": 4.223,
- "total_deaths_per_million": 108.35,
- "new_deaths_per_million": 0.084,
- "new_deaths_smoothed_per_million": 0.051,
- "new_tests_smoothed": 75234.0,
- "new_tests_smoothed_per_thousand": 0.898,
- "tests_per_case": 212.611,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 55.09
- },
- {
- "date": "2020-07-17",
- "total_cases": 200843.0,
- "new_cases": 583.0,
- "new_cases_smoothed": 380.714,
- "total_deaths": 9082.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 2397.154,
- "new_cases_per_million": 6.958,
- "new_cases_smoothed_per_million": 4.544,
- "total_deaths_per_million": 108.398,
- "new_deaths_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.048,
- "new_tests_smoothed": 75808.0,
- "new_tests_smoothed_per_thousand": 0.905,
- "tests_per_case": 199.12,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 55.09
- },
- {
- "date": "2020-07-18",
- "total_cases": 201372.0,
- "new_cases": 529.0,
- "new_cases_smoothed": 402.286,
- "total_deaths": 9083.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 2403.468,
- "new_cases_per_million": 6.314,
- "new_cases_smoothed_per_million": 4.801,
- "total_deaths_per_million": 108.41,
- "new_deaths_per_million": 0.012,
- "new_deaths_smoothed_per_million": 0.039,
- "new_tests_smoothed": 76383.0,
- "new_tests_smoothed_per_thousand": 0.912,
- "tests_per_case": 189.873,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 55.09
- },
- {
- "date": "2020-07-19",
- "total_cases": 201574.0,
- "new_cases": 202.0,
- "new_cases_smoothed": 395.714,
- "total_deaths": 9084.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 3.0,
- "total_cases_per_million": 2405.879,
- "new_cases_per_million": 2.411,
- "new_cases_smoothed_per_million": 4.723,
- "total_deaths_per_million": 108.422,
- "new_deaths_per_million": 0.012,
- "new_deaths_smoothed_per_million": 0.036,
- "total_tests": 7448233.0,
- "total_tests_per_thousand": 88.898,
- "new_tests_smoothed": 76957.0,
- "new_tests_smoothed_per_thousand": 0.919,
- "tests_per_case": 194.476,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 55.09
- },
- {
- "date": "2020-07-20",
- "total_cases": 201823.0,
- "new_cases": 249.0,
- "new_cases_smoothed": 408.571,
- "total_deaths": 9086.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 2408.851,
- "new_cases_per_million": 2.972,
- "new_cases_smoothed_per_million": 4.876,
- "total_deaths_per_million": 108.446,
- "new_deaths_per_million": 0.024,
- "new_deaths_smoothed_per_million": 0.038,
- "new_tests_smoothed": 77657.0,
- "new_tests_smoothed_per_thousand": 0.927,
- "tests_per_case": 190.07,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 55.09
- },
- {
- "date": "2020-07-21",
- "total_cases": 202345.0,
- "new_cases": 522.0,
- "new_cases_smoothed": 424.286,
- "total_deaths": 9090.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 2415.081,
- "new_cases_per_million": 6.23,
- "new_cases_smoothed_per_million": 5.064,
- "total_deaths_per_million": 108.493,
- "new_deaths_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.038,
- "new_tests_smoothed": 78356.0,
- "new_tests_smoothed_per_thousand": 0.935,
- "tests_per_case": 184.67700000000002,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 55.09
- },
- {
- "date": "2020-07-22",
- "total_cases": 202799.0,
- "new_cases": 454.0,
- "new_cases_smoothed": 439.0,
- "total_deaths": 9095.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 2420.5,
- "new_cases_per_million": 5.419,
- "new_cases_smoothed_per_million": 5.24,
- "total_deaths_per_million": 108.553,
- "new_deaths_per_million": 0.06,
- "new_deaths_smoothed_per_million": 0.041,
- "new_tests_smoothed": 79055.0,
- "new_tests_smoothed_per_thousand": 0.944,
- "tests_per_case": 180.08,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 55.09
- },
- {
- "date": "2020-07-23",
- "total_cases": 203368.0,
- "new_cases": 569.0,
- "new_cases_smoothed": 444.0,
- "total_deaths": 9101.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 2427.291,
- "new_cases_per_million": 6.791,
- "new_cases_smoothed_per_million": 5.299,
- "total_deaths_per_million": 108.625,
- "new_deaths_per_million": 0.072,
- "new_deaths_smoothed_per_million": 0.039,
- "new_tests_smoothed": 79755.0,
- "new_tests_smoothed_per_thousand": 0.952,
- "tests_per_case": 179.628,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 55.09
- },
- {
- "date": "2020-07-24",
- "total_cases": 204183.0,
- "new_cases": 815.0,
- "new_cases_smoothed": 477.143,
- "total_deaths": 9111.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 2437.018,
- "new_cases_per_million": 9.727,
- "new_cases_smoothed_per_million": 5.695,
- "total_deaths_per_million": 108.744,
- "new_deaths_per_million": 0.119,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests_smoothed": 80454.0,
- "new_tests_smoothed_per_thousand": 0.96,
- "tests_per_case": 168.61599999999999,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 55.09
- },
- {
- "date": "2020-07-25",
- "total_cases": 204964.0,
- "new_cases": 781.0,
- "new_cases_smoothed": 513.143,
- "total_deaths": 9118.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 2446.34,
- "new_cases_per_million": 9.322,
- "new_cases_smoothed_per_million": 6.125,
- "total_deaths_per_million": 108.828,
- "new_deaths_per_million": 0.084,
- "new_deaths_smoothed_per_million": 0.06,
- "new_tests_smoothed": 81153.0,
- "new_tests_smoothed_per_thousand": 0.969,
- "tests_per_case": 158.149,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 55.09
- },
- {
- "date": "2020-07-26",
- "total_cases": 205269.0,
- "new_cases": 305.0,
- "new_cases_smoothed": 527.857,
- "total_deaths": 9118.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 2449.98,
- "new_cases_per_million": 3.64,
- "new_cases_smoothed_per_million": 6.3,
- "total_deaths_per_million": 108.828,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.058,
- "total_tests": 8021200.0,
- "total_tests_per_thousand": 95.737,
- "new_tests_smoothed": 81852.0,
- "new_tests_smoothed_per_thousand": 0.977,
- "tests_per_case": 155.065,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 55.09
- },
- {
- "date": "2020-07-27",
- "total_cases": 205609.0,
- "new_cases": 340.0,
- "new_cases_smoothed": 540.857,
- "total_deaths": 9118.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 2454.038,
- "new_cases_per_million": 4.058,
- "new_cases_smoothed_per_million": 6.455,
- "total_deaths_per_million": 108.828,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.055,
- "new_tests_smoothed": 82017.0,
- "new_tests_smoothed_per_thousand": 0.979,
- "tests_per_case": 151.643,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 55.09
- },
- {
- "date": "2020-07-28",
- "total_cases": 206242.0,
- "new_cases": 633.0,
- "new_cases_smoothed": 556.714,
- "total_deaths": 9122.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 2461.593,
- "new_cases_per_million": 7.555,
- "new_cases_smoothed_per_million": 6.645,
- "total_deaths_per_million": 108.875,
- "new_deaths_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.055,
- "new_tests_smoothed": 82182.0,
- "new_tests_smoothed_per_thousand": 0.981,
- "tests_per_case": 147.62,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 55.09
- },
- {
- "date": "2020-07-29",
- "total_cases": 206926.0,
- "new_cases": 684.0,
- "new_cases_smoothed": 589.571,
- "total_deaths": 9128.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 2469.757,
- "new_cases_per_million": 8.164,
- "new_cases_smoothed_per_million": 7.037,
- "total_deaths_per_million": 108.947,
- "new_deaths_per_million": 0.072,
- "new_deaths_smoothed_per_million": 0.056,
- "new_tests_smoothed": 82347.0,
- "new_tests_smoothed_per_thousand": 0.983,
- "tests_per_case": 139.673,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 55.09
- },
- {
- "date": "2020-07-30",
- "total_cases": 207828.0,
- "new_cases": 902.0,
- "new_cases_smoothed": 637.143,
- "total_deaths": 9134.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 2480.523,
- "new_cases_per_million": 10.766,
- "new_cases_smoothed_per_million": 7.605,
- "total_deaths_per_million": 109.018,
- "new_deaths_per_million": 0.072,
- "new_deaths_smoothed_per_million": 0.056,
- "new_tests_smoothed": 82511.0,
- "new_tests_smoothed_per_thousand": 0.985,
- "tests_per_case": 129.502,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 55.09
- },
- {
- "date": "2020-07-31",
- "total_cases": 208698.0,
- "new_cases": 870.0,
- "new_cases_smoothed": 645.0,
- "total_deaths": 9141.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 2490.907,
- "new_cases_per_million": 10.384,
- "new_cases_smoothed_per_million": 7.698,
- "total_deaths_per_million": 109.102,
- "new_deaths_per_million": 0.084,
- "new_deaths_smoothed_per_million": 0.051,
- "new_tests_smoothed": 82676.0,
- "new_tests_smoothed_per_thousand": 0.987,
- "tests_per_case": 128.18,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 57.87
- },
- {
- "date": "2020-08-01",
- "total_cases": 209653.0,
- "new_cases": 955.0,
- "new_cases_smoothed": 669.857,
- "total_deaths": 9141.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 2502.305,
- "new_cases_per_million": 11.398,
- "new_cases_smoothed_per_million": 7.995,
- "total_deaths_per_million": 109.102,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.039,
- "new_tests_smoothed": 82841.0,
- "new_tests_smoothed_per_thousand": 0.989,
- "tests_per_case": 123.67,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 57.87
- },
- {
- "date": "2020-08-02",
- "total_cases": 209893.0,
- "new_cases": 240.0,
- "new_cases_smoothed": 660.571,
- "total_deaths": 9141.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 2505.17,
- "new_cases_per_million": 2.865,
- "new_cases_smoothed_per_million": 7.884,
- "total_deaths_per_million": 109.102,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.039,
- "total_tests": 8602237.0,
- "total_tests_per_thousand": 102.672,
- "new_tests_smoothed": 83005.0,
- "new_tests_smoothed_per_thousand": 0.991,
- "tests_per_case": 125.656,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 57.87
- },
- {
- "date": "2020-08-03",
- "total_cases": 210402.0,
- "new_cases": 509.0,
- "new_cases_smoothed": 684.714,
- "total_deaths": 9148.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 2511.245,
- "new_cases_per_million": 6.075,
- "new_cases_smoothed_per_million": 8.172,
- "total_deaths_per_million": 109.186,
- "new_deaths_per_million": 0.084,
- "new_deaths_smoothed_per_million": 0.051,
- "new_tests_smoothed": 86127.0,
- "new_tests_smoothed_per_thousand": 1.028,
- "tests_per_case": 125.785,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 57.87
- },
- {
- "date": "2020-08-04",
- "total_cases": 211281.0,
- "new_cases": 879.0,
- "new_cases_smoothed": 719.857,
- "total_deaths": 9156.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 2521.736,
- "new_cases_per_million": 10.491,
- "new_cases_smoothed_per_million": 8.592,
- "total_deaths_per_million": 109.281,
- "new_deaths_per_million": 0.095,
- "new_deaths_smoothed_per_million": 0.058,
- "new_tests_smoothed": 89248.0,
- "new_tests_smoothed_per_thousand": 1.065,
- "tests_per_case": 123.98,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 57.87
- },
- {
- "date": "2020-08-05",
- "total_cases": 212022.0,
- "new_cases": 741.0,
- "new_cases_smoothed": 728.0,
- "total_deaths": 9168.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 5.714,
- "total_cases_per_million": 2530.58,
- "new_cases_per_million": 8.844,
- "new_cases_smoothed_per_million": 8.689,
- "total_deaths_per_million": 109.424,
- "new_deaths_per_million": 0.143,
- "new_deaths_smoothed_per_million": 0.068,
- "new_tests_smoothed": 92370.0,
- "new_tests_smoothed_per_thousand": 1.102,
- "tests_per_case": 126.882,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 57.87
- },
- {
- "date": "2020-08-06",
- "total_cases": 213762.0,
- "new_cases": 1740.0,
- "new_cases_smoothed": 847.714,
- "total_deaths": 9175.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 5.857,
- "total_cases_per_million": 2551.348,
- "new_cases_per_million": 20.768,
- "new_cases_smoothed_per_million": 10.118,
- "total_deaths_per_million": 109.508,
- "new_deaths_per_million": 0.084,
- "new_deaths_smoothed_per_million": 0.07,
- "new_tests_smoothed": 95491.0,
- "new_tests_smoothed_per_thousand": 1.14,
- "tests_per_case": 112.645,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 57.87
- },
- {
- "date": "2020-08-07",
- "total_cases": 214926.0,
- "new_cases": 1164.0,
- "new_cases_smoothed": 889.714,
- "total_deaths": 9183.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 6.0,
- "total_cases_per_million": 2565.241,
- "new_cases_per_million": 13.893,
- "new_cases_smoothed_per_million": 10.619,
- "total_deaths_per_million": 109.603,
- "new_deaths_per_million": 0.095,
- "new_deaths_smoothed_per_million": 0.072,
- "new_tests_smoothed": 98613.0,
- "new_tests_smoothed_per_thousand": 1.177,
- "tests_per_case": 110.837,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-08-08",
- "total_cases": 215921.0,
- "new_cases": 995.0,
- "new_cases_smoothed": 895.429,
- "total_deaths": 9195.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 7.714,
- "total_cases_per_million": 2577.117,
- "new_cases_per_million": 11.876,
- "new_cases_smoothed_per_million": 10.687,
- "total_deaths_per_million": 109.747,
- "new_deaths_per_million": 0.143,
- "new_deaths_smoothed_per_million": 0.092,
- "new_tests_smoothed": 101734.0,
- "new_tests_smoothed_per_thousand": 1.214,
- "tests_per_case": 113.615,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 56.94
- },
- {
- "date": "2020-08-09",
- "total_cases": 216625.0,
- "new_cases": 704.0,
- "new_cases_smoothed": 961.714,
- "total_deaths": 9196.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 7.857,
- "total_cases_per_million": 2585.519,
- "new_cases_per_million": 8.403,
- "new_cases_smoothed_per_million": 11.479,
- "total_deaths_per_million": 109.758,
- "new_deaths_per_million": 0.012,
- "new_deaths_smoothed_per_million": 0.094,
- "total_tests": 9336227.0,
- "total_tests_per_thousand": 111.432,
- "new_tests_smoothed": 104856.0,
- "new_tests_smoothed_per_thousand": 1.252,
- "tests_per_case": 109.03,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 56.94
- },
- {
- "date": "2020-08-10",
- "total_cases": 216942.0,
- "new_cases": 317.0,
- "new_cases_smoothed": 934.286,
- "total_deaths": 9197.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 7.0,
- "total_cases_per_million": 2589.303,
- "new_cases_per_million": 3.784,
- "new_cases_smoothed_per_million": 11.151,
- "total_deaths_per_million": 109.77,
- "new_deaths_per_million": 0.012,
- "new_deaths_smoothed_per_million": 0.084,
- "new_tests_smoothed": 108080.0,
- "new_tests_smoothed_per_thousand": 1.29,
- "tests_per_case": 115.682,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 56.94
- },
- {
- "date": "2020-08-11",
- "total_cases": 218021.0,
- "new_cases": 1079.0,
- "new_cases_smoothed": 962.857,
- "total_deaths": 9201.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 6.429,
- "total_cases_per_million": 2602.181,
- "new_cases_per_million": 12.878,
- "new_cases_smoothed_per_million": 11.492,
- "total_deaths_per_million": 109.818,
- "new_deaths_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.077,
- "new_tests_smoothed": 111305.0,
- "new_tests_smoothed_per_thousand": 1.328,
- "tests_per_case": 115.59899999999999,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 56.94
- },
- {
- "date": "2020-08-12",
- "total_cases": 219203.0,
- "new_cases": 1182.0,
- "new_cases_smoothed": 1025.857,
- "total_deaths": 9207.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 2616.289,
- "new_cases_per_million": 14.108,
- "new_cases_smoothed_per_million": 12.244,
- "total_deaths_per_million": 109.89,
- "new_deaths_per_million": 0.072,
- "new_deaths_smoothed_per_million": 0.066,
- "new_tests_smoothed": 114529.0,
- "new_tests_smoothed_per_thousand": 1.367,
- "tests_per_case": 111.64200000000001,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 56.94
- },
- {
- "date": "2020-08-13",
- "total_cases": 220724.0,
- "new_cases": 1521.0,
- "new_cases_smoothed": 994.571,
- "total_deaths": 9211.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 2634.443,
- "new_cases_per_million": 18.154,
- "new_cases_smoothed_per_million": 11.871,
- "total_deaths_per_million": 109.938,
- "new_deaths_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.061,
- "new_tests_smoothed": 117754.0,
- "new_tests_smoothed_per_thousand": 1.405,
- "tests_per_case": 118.397,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 56.94
- },
- {
- "date": "2020-08-14",
- "total_cases": 222176.0,
- "new_cases": 1452.0,
- "new_cases_smoothed": 1035.714,
- "total_deaths": 9225.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 6.0,
- "total_cases_per_million": 2651.773,
- "new_cases_per_million": 17.33,
- "new_cases_smoothed_per_million": 12.362,
- "total_deaths_per_million": 110.105,
- "new_deaths_per_million": 0.167,
- "new_deaths_smoothed_per_million": 0.072,
- "new_tests_smoothed": 120978.0,
- "new_tests_smoothed_per_thousand": 1.444,
- "tests_per_case": 116.806,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 56.94
- },
- {
- "date": "2020-08-15",
- "total_cases": 223515.0,
- "new_cases": 1339.0,
- "new_cases_smoothed": 1084.857,
- "total_deaths": 9231.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 2667.755,
- "new_cases_per_million": 15.982,
- "new_cases_smoothed_per_million": 12.948,
- "total_deaths_per_million": 110.176,
- "new_deaths_per_million": 0.072,
- "new_deaths_smoothed_per_million": 0.061,
- "new_tests_smoothed": 124202.0,
- "new_tests_smoothed_per_thousand": 1.482,
- "tests_per_case": 114.48700000000001,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 56.94
- },
- {
- "date": "2020-08-16",
- "total_cases": 224233.0,
- "new_cases": 718.0,
- "new_cases_smoothed": 1086.857,
- "total_deaths": 9231.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 2676.324,
- "new_cases_per_million": 8.57,
- "new_cases_smoothed_per_million": 12.972,
- "total_deaths_per_million": 110.176,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.06,
- "total_tests": 10228215.0,
- "total_tests_per_thousand": 122.078,
- "new_tests_smoothed": 127427.0,
- "new_tests_smoothed_per_thousand": 1.521,
- "tests_per_case": 117.244,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 56.94
- },
- {
- "date": "2020-08-17",
- "total_cases": 224714.0,
- "new_cases": 481.0,
- "new_cases_smoothed": 1110.286,
- "total_deaths": 9232.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 2682.065,
- "new_cases_per_million": 5.741,
- "new_cases_smoothed_per_million": 13.252,
- "total_deaths_per_million": 110.188,
- "new_deaths_per_million": 0.012,
- "new_deaths_smoothed_per_million": 0.06,
- "new_tests_smoothed": 130767.0,
- "new_tests_smoothed_per_thousand": 1.561,
- "tests_per_case": 117.77799999999999,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 56.94
- },
- {
- "date": "2020-08-18",
- "total_cases": 226145.0,
- "new_cases": 1431.0,
- "new_cases_smoothed": 1160.571,
- "total_deaths": 9232.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 2699.145,
- "new_cases_per_million": 17.08,
- "new_cases_smoothed_per_million": 13.852,
- "total_deaths_per_million": 110.188,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.053,
- "new_tests_smoothed": 134107.0,
- "new_tests_smoothed_per_thousand": 1.601,
- "tests_per_case": 115.553,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 56.94
- },
- {
- "date": "2020-08-19",
- "total_cases": 226914.0,
- "new_cases": 769.0,
- "new_cases_smoothed": 1101.571,
- "total_deaths": 9243.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 2708.323,
- "new_cases_per_million": 9.178,
- "new_cases_smoothed_per_million": 13.148,
- "total_deaths_per_million": 110.319,
- "new_deaths_per_million": 0.131,
- "new_deaths_smoothed_per_million": 0.061,
- "new_tests_smoothed": 137448.0,
- "new_tests_smoothed_per_thousand": 1.641,
- "tests_per_case": 124.774,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 56.94
- },
- {
- "date": "2020-08-20",
- "total_cases": 228621.0,
- "new_cases": 1707.0,
- "new_cases_smoothed": 1128.143,
- "total_deaths": 9253.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 6.0,
- "total_cases_per_million": 2728.697,
- "new_cases_per_million": 20.374,
- "new_cases_smoothed_per_million": 13.465,
- "total_deaths_per_million": 110.439,
- "new_deaths_per_million": 0.119,
- "new_deaths_smoothed_per_million": 0.072,
- "new_tests_smoothed": 140788.0,
- "new_tests_smoothed_per_thousand": 1.68,
- "tests_per_case": 124.796,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 56.94
- },
- {
- "date": "2020-08-21",
- "total_cases": 230948.0,
- "new_cases": 2327.0,
- "new_cases_smoothed": 1253.143,
- "total_deaths": 9260.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 2756.471,
- "new_cases_per_million": 27.774,
- "new_cases_smoothed_per_million": 14.957,
- "total_deaths_per_million": 110.522,
- "new_deaths_per_million": 0.084,
- "new_deaths_smoothed_per_million": 0.06,
- "new_tests_smoothed": 144128.0,
- "new_tests_smoothed_per_thousand": 1.72,
- "tests_per_case": 115.01299999999999,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 56.94
- },
- {
- "date": "2020-08-22",
- "total_cases": 232082.0,
- "new_cases": 1134.0,
- "new_cases_smoothed": 1223.857,
- "total_deaths": 9267.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 2770.006,
- "new_cases_per_million": 13.535,
- "new_cases_smoothed_per_million": 14.607,
- "total_deaths_per_million": 110.606,
- "new_deaths_per_million": 0.084,
- "new_deaths_smoothed_per_million": 0.061,
- "new_tests_smoothed": 147469.0,
- "new_tests_smoothed_per_thousand": 1.76,
- "tests_per_case": 120.495,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 56.94
- },
- {
- "date": "2020-08-23",
- "total_cases": 232864.0,
- "new_cases": 782.0,
- "new_cases_smoothed": 1233.0,
- "total_deaths": 9269.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 5.429,
- "total_cases_per_million": 2779.339,
- "new_cases_per_million": 9.334,
- "new_cases_smoothed_per_million": 14.716,
- "total_deaths_per_million": 110.63,
- "new_deaths_per_million": 0.024,
- "new_deaths_smoothed_per_million": 0.065,
- "total_tests": 11283877.0,
- "total_tests_per_thousand": 134.678,
- "new_tests_smoothed": 150809.0,
- "new_tests_smoothed_per_thousand": 1.8,
- "tests_per_case": 122.311,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 56.94
- },
- {
- "date": "2020-08-24",
- "total_cases": 233575.0,
- "new_cases": 711.0,
- "new_cases_smoothed": 1265.857,
- "total_deaths": 9272.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 5.714,
- "total_cases_per_million": 2787.825,
- "new_cases_per_million": 8.486,
- "new_cases_smoothed_per_million": 15.109,
- "total_deaths_per_million": 110.666,
- "new_deaths_per_million": 0.036,
- "new_deaths_smoothed_per_million": 0.068,
- "new_tests_smoothed": 151740.0,
- "new_tests_smoothed_per_thousand": 1.811,
- "tests_per_case": 119.87100000000001,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-08-25",
- "total_cases": 234853.0,
- "new_cases": 1278.0,
- "new_cases_smoothed": 1244.0,
- "total_deaths": 9277.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 6.429,
- "total_cases_per_million": 2803.079,
- "new_cases_per_million": 15.254,
- "new_cases_smoothed_per_million": 14.848,
- "total_deaths_per_million": 110.725,
- "new_deaths_per_million": 0.06,
- "new_deaths_smoothed_per_million": 0.077,
- "new_tests_smoothed": 152672.0,
- "new_tests_smoothed_per_thousand": 1.822,
- "tests_per_case": 122.727,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-08-26",
- "total_cases": 236429.0,
- "new_cases": 1576.0,
- "new_cases_smoothed": 1359.286,
- "total_deaths": 9280.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 5.286,
- "total_cases_per_million": 2821.889,
- "new_cases_per_million": 18.81,
- "new_cases_smoothed_per_million": 16.224,
- "total_deaths_per_million": 110.761,
- "new_deaths_per_million": 0.036,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests_smoothed": 153603.0,
- "new_tests_smoothed_per_thousand": 1.833,
- "tests_per_case": 113.00299999999999,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-08-27",
- "total_cases": 237936.0,
- "new_cases": 1507.0,
- "new_cases_smoothed": 1330.714,
- "total_deaths": 9285.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 2839.876,
- "new_cases_per_million": 17.987,
- "new_cases_smoothed_per_million": 15.883,
- "total_deaths_per_million": 110.821,
- "new_deaths_per_million": 0.06,
- "new_deaths_smoothed_per_million": 0.055,
- "new_tests_smoothed": 154534.0,
- "new_tests_smoothed_per_thousand": 1.844,
- "tests_per_case": 116.12899999999999,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-08-28",
- "total_cases": 239507.0,
- "new_cases": 1571.0,
- "new_cases_smoothed": 1222.714,
- "total_deaths": 9288.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 2858.626,
- "new_cases_per_million": 18.751,
- "new_cases_smoothed_per_million": 14.594,
- "total_deaths_per_million": 110.857,
- "new_deaths_per_million": 0.036,
- "new_deaths_smoothed_per_million": 0.048,
- "new_tests_smoothed": 155466.0,
- "new_tests_smoothed_per_thousand": 1.856,
- "tests_per_case": 127.148,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-08-29",
- "total_cases": 240986.0,
- "new_cases": 1479.0,
- "new_cases_smoothed": 1272.0,
- "total_deaths": 9289.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 3.143,
- "total_cases_per_million": 2876.279,
- "new_cases_per_million": 17.653,
- "new_cases_smoothed_per_million": 15.182,
- "total_deaths_per_million": 110.868,
- "new_deaths_per_million": 0.012,
- "new_deaths_smoothed_per_million": 0.038,
- "new_tests_smoothed": 156397.0,
- "new_tests_smoothed_per_thousand": 1.867,
- "tests_per_case": 122.954,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-08-30",
- "total_cases": 241771.0,
- "new_cases": 785.0,
- "new_cases_smoothed": 1272.429,
- "total_deaths": 9295.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 2885.648,
- "new_cases_per_million": 9.369,
- "new_cases_smoothed_per_million": 15.187,
- "total_deaths_per_million": 110.94,
- "new_deaths_per_million": 0.072,
- "new_deaths_smoothed_per_million": 0.044,
- "total_tests": 12385176.0,
- "total_tests_per_thousand": 147.823,
- "new_tests_smoothed": 157328.0,
- "new_tests_smoothed_per_thousand": 1.878,
- "tests_per_case": 123.64399999999999,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-08-31",
- "total_cases": 242381.0,
- "new_cases": 610.0,
- "new_cases_smoothed": 1258.0,
- "total_deaths": 9298.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 2892.929,
- "new_cases_per_million": 7.281,
- "new_cases_smoothed_per_million": 15.015,
- "total_deaths_per_million": 110.976,
- "new_deaths_per_million": 0.036,
- "new_deaths_smoothed_per_million": 0.044,
- "new_tests_smoothed": 156304.0,
- "new_tests_smoothed_per_thousand": 1.866,
- "tests_per_case": 124.24799999999999,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-09-01",
- "total_cases": 243599.0,
- "new_cases": 1218.0,
- "new_cases_smoothed": 1249.429,
- "total_deaths": 9302.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 2907.466,
- "new_cases_per_million": 14.537,
- "new_cases_smoothed_per_million": 14.913,
- "total_deaths_per_million": 111.024,
- "new_deaths_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.043,
- "new_tests_smoothed": 155281.0,
- "new_tests_smoothed_per_thousand": 1.853,
- "tests_per_case": 124.28200000000001,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-09-02",
- "total_cases": 244855.0,
- "new_cases": 1256.0,
- "new_cases_smoothed": 1203.714,
- "total_deaths": 9313.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 2922.457,
- "new_cases_per_million": 14.991,
- "new_cases_smoothed_per_million": 14.367,
- "total_deaths_per_million": 111.155,
- "new_deaths_per_million": 0.131,
- "new_deaths_smoothed_per_million": 0.056,
- "new_tests_smoothed": 154257.0,
- "new_tests_smoothed_per_thousand": 1.841,
- "tests_per_case": 128.151,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 59.72
- },
- {
- "date": "2020-09-03",
- "total_cases": 246166.0,
- "new_cases": 1311.0,
- "new_cases_smoothed": 1175.714,
- "total_deaths": 9321.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 2938.105,
- "new_cases_per_million": 15.647,
- "new_cases_smoothed_per_million": 14.033,
- "total_deaths_per_million": 111.25,
- "new_deaths_per_million": 0.095,
- "new_deaths_smoothed_per_million": 0.061,
- "new_tests_smoothed": 153233.0,
- "new_tests_smoothed_per_thousand": 1.829,
- "tests_per_case": 130.332,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 57.87
- },
- {
- "date": "2020-09-04",
- "total_cases": 247619.0,
- "new_cases": 1453.0,
- "new_cases_smoothed": 1158.857,
- "total_deaths": 9322.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 2955.447,
- "new_cases_per_million": 17.342,
- "new_cases_smoothed_per_million": 13.831,
- "total_deaths_per_million": 111.262,
- "new_deaths_per_million": 0.012,
- "new_deaths_smoothed_per_million": 0.058,
- "new_tests_smoothed": 152209.0,
- "new_tests_smoothed_per_thousand": 1.817,
- "tests_per_case": 131.344,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 49.54
- },
- {
- "date": "2020-09-05",
- "total_cases": 248997.0,
- "new_cases": 1378.0,
- "new_cases_smoothed": 1144.429,
- "total_deaths": 9324.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 2971.894,
- "new_cases_per_million": 16.447,
- "new_cases_smoothed_per_million": 13.659,
- "total_deaths_per_million": 111.286,
- "new_deaths_per_million": 0.024,
- "new_deaths_smoothed_per_million": 0.06,
- "new_tests_smoothed": 151185.0,
- "new_tests_smoothed_per_thousand": 1.804,
- "tests_per_case": 132.105,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 49.54
- },
- {
- "date": "2020-09-06",
- "total_cases": 249985.0,
- "new_cases": 988.0,
- "new_cases_smoothed": 1173.429,
- "total_deaths": 9325.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 2983.686,
- "new_cases_per_million": 11.792,
- "new_cases_smoothed_per_million": 14.005,
- "total_deaths_per_million": 111.298,
- "new_deaths_per_million": 0.012,
- "new_deaths_smoothed_per_million": 0.051,
- "total_tests": 13436301.0,
- "total_tests_per_thousand": 160.368,
- "new_tests_smoothed": 150161.0,
- "new_tests_smoothed_per_thousand": 1.792,
- "tests_per_case": 127.96799999999999,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 49.54
- },
- {
- "date": "2020-09-07",
- "total_cases": 250799.0,
- "new_cases": 814.0,
- "new_cases_smoothed": 1202.571,
- "total_deaths": 9325.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 2993.402,
- "new_cases_per_million": 9.715,
- "new_cases_smoothed_per_million": 14.353,
- "total_deaths_per_million": 111.298,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.046,
- "new_tests_smoothed": 151583.0,
- "new_tests_smoothed_per_thousand": 1.809,
- "tests_per_case": 126.04899999999999,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 49.54
- },
- {
- "date": "2020-09-08",
- "total_cases": 252298.0,
- "new_cases": 1499.0,
- "new_cases_smoothed": 1242.714,
- "total_deaths": 9329.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 3011.293,
- "new_cases_per_million": 17.891,
- "new_cases_smoothed_per_million": 14.832,
- "total_deaths_per_million": 111.346,
- "new_deaths_per_million": 0.048,
- "new_deaths_smoothed_per_million": 0.046,
- "new_tests_smoothed": 153006.0,
- "new_tests_smoothed_per_thousand": 1.826,
- "tests_per_case": 123.12200000000001,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 49.54
- },
- {
- "date": "2020-09-09",
- "total_cases": 253474.0,
- "new_cases": 1176.0,
- "new_cases_smoothed": 1231.286,
- "total_deaths": 9338.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 3025.329,
- "new_cases_per_million": 14.036,
- "new_cases_smoothed_per_million": 14.696,
- "total_deaths_per_million": 111.453,
- "new_deaths_per_million": 0.107,
- "new_deaths_smoothed_per_million": 0.043,
- "new_tests_smoothed": 154429.0,
- "new_tests_smoothed_per_thousand": 1.843,
- "tests_per_case": 125.421,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 49.54
- },
- {
- "date": "2020-09-10",
- "total_cases": 255366.0,
- "new_cases": 1892.0,
- "new_cases_smoothed": 1314.286,
- "total_deaths": 9341.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 3047.911,
- "new_cases_per_million": 22.582,
- "new_cases_smoothed_per_million": 15.687,
- "total_deaths_per_million": 111.489,
- "new_deaths_per_million": 0.036,
- "new_deaths_smoothed_per_million": 0.034,
- "new_tests_smoothed": 155851.0,
- "new_tests_smoothed_per_thousand": 1.86,
- "tests_per_case": 118.58200000000001,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 49.54
- },
- {
- "date": "2020-09-11",
- "total_cases": 256850.0,
- "new_cases": 1484.0,
- "new_cases_smoothed": 1318.714,
- "total_deaths": 9342.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 3065.623,
- "new_cases_per_million": 17.712,
- "new_cases_smoothed_per_million": 15.739,
- "total_deaths_per_million": 111.501,
- "new_deaths_per_million": 0.012,
- "new_deaths_smoothed_per_million": 0.034,
- "new_tests_smoothed": 157274.0,
- "new_tests_smoothed_per_thousand": 1.877,
- "tests_per_case": 119.26299999999999,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 49.54
- },
- {
- "date": "2020-09-12",
- "total_cases": 258480.0,
- "new_cases": 1630.0,
- "new_cases_smoothed": 1354.714,
- "total_deaths": 9347.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 3085.078,
- "new_cases_per_million": 19.455,
- "new_cases_smoothed_per_million": 16.169,
- "total_deaths_per_million": 111.561,
- "new_deaths_per_million": 0.06,
- "new_deaths_smoothed_per_million": 0.039,
- "new_tests_smoothed": 158697.0,
- "new_tests_smoothed_per_thousand": 1.894,
- "tests_per_case": 117.14399999999999,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 49.54
- },
- {
- "date": "2020-09-13",
- "total_cases": 259428.0,
- "new_cases": 948.0,
- "new_cases_smoothed": 1349.0,
- "total_deaths": 9349.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 3096.393,
- "new_cases_per_million": 11.315,
- "new_cases_smoothed_per_million": 16.101,
- "total_deaths_per_million": 111.585,
- "new_deaths_per_million": 0.024,
- "new_deaths_smoothed_per_million": 0.041,
- "total_tests": 14557136.0,
- "total_tests_per_thousand": 173.746,
- "new_tests_smoothed": 160119.0,
- "new_tests_smoothed_per_thousand": 1.911,
- "tests_per_case": 118.695,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 49.54
- },
- {
- "date": "2020-09-14",
- "total_cases": 260355.0,
- "new_cases": 927.0,
- "new_cases_smoothed": 1365.143,
- "total_deaths": 9350.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 3107.457,
- "new_cases_per_million": 11.064,
- "new_cases_smoothed_per_million": 16.294,
- "total_deaths_per_million": 111.597,
- "new_deaths_per_million": 0.012,
- "new_deaths_smoothed_per_million": 0.043,
- "new_tests_smoothed": 159399.0,
- "new_tests_smoothed_per_thousand": 1.903,
- "tests_per_case": 116.764,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 49.54
- },
- {
- "date": "2020-09-15",
- "total_cases": 261762.0,
- "new_cases": 1407.0,
- "new_cases_smoothed": 1352.0,
- "total_deaths": 9362.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 3124.25,
- "new_cases_per_million": 16.793,
- "new_cases_smoothed_per_million": 16.137,
- "total_deaths_per_million": 111.74,
- "new_deaths_per_million": 0.143,
- "new_deaths_smoothed_per_million": 0.056,
- "new_tests_smoothed": 158678.0,
- "new_tests_smoothed_per_thousand": 1.894,
- "tests_per_case": 117.365,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 49.54
- },
- {
- "date": "2020-09-16",
- "total_cases": 263663.0,
- "new_cases": 1901.0,
- "new_cases_smoothed": 1455.571,
- "total_deaths": 9368.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 3146.939,
- "new_cases_per_million": 22.689,
- "new_cases_smoothed_per_million": 17.373,
- "total_deaths_per_million": 111.811,
- "new_deaths_per_million": 0.072,
- "new_deaths_smoothed_per_million": 0.051,
- "new_tests_smoothed": 157957.0,
- "new_tests_smoothed_per_thousand": 1.885,
- "tests_per_case": 108.51899999999999,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 49.54
- },
- {
- "date": "2020-09-17",
- "total_cases": 265857.0,
- "new_cases": 2194.0,
- "new_cases_smoothed": 1498.714,
- "total_deaths": 9371.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 3173.126,
- "new_cases_per_million": 26.186,
- "new_cases_smoothed_per_million": 17.888,
- "total_deaths_per_million": 111.847,
- "new_deaths_per_million": 0.036,
- "new_deaths_smoothed_per_million": 0.051,
- "new_tests_smoothed": 157236.0,
- "new_tests_smoothed_per_thousand": 1.877,
- "tests_per_case": 104.914,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 49.54
- },
- {
- "date": "2020-09-18",
- "total_cases": 267773.0,
- "new_cases": 1916.0,
- "new_cases_smoothed": 1560.429,
- "total_deaths": 9378.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 3195.994,
- "new_cases_per_million": 22.868,
- "new_cases_smoothed_per_million": 18.624,
- "total_deaths_per_million": 111.931,
- "new_deaths_per_million": 0.084,
- "new_deaths_smoothed_per_million": 0.061,
- "new_tests_smoothed": 156516.0,
- "new_tests_smoothed_per_thousand": 1.868,
- "tests_per_case": 100.303,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 49.54
- },
- {
- "date": "2020-09-19",
- "total_cases": 270070.0,
- "new_cases": 2297.0,
- "new_cases_smoothed": 1655.714,
- "total_deaths": 9384.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.286,
- "total_cases_per_million": 3223.41,
- "new_cases_per_million": 27.416,
- "new_cases_smoothed_per_million": 19.762,
- "total_deaths_per_million": 112.002,
- "new_deaths_per_million": 0.072,
- "new_deaths_smoothed_per_million": 0.063,
- "new_tests_smoothed": 155795.0,
- "new_tests_smoothed_per_thousand": 1.859,
- "tests_per_case": 94.095,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 49.54
- },
- {
- "date": "2020-09-20",
- "total_cases": 271415.0,
- "new_cases": 1345.0,
- "new_cases_smoothed": 1712.429,
- "total_deaths": 9386.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 5.286,
- "total_cases_per_million": 3239.463,
- "new_cases_per_million": 16.053,
- "new_cases_smoothed_per_million": 20.439,
- "total_deaths_per_million": 112.026,
- "new_deaths_per_million": 0.024,
- "new_deaths_smoothed_per_million": 0.063,
- "total_tests": 15642654.0,
- "total_tests_per_thousand": 186.702,
- "new_tests_smoothed": 155074.0,
- "new_tests_smoothed_per_thousand": 1.851,
- "tests_per_case": 90.55799999999999,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 49.54
- },
- {
- "date": "2020-09-21",
- "total_cases": 272337.0,
- "new_cases": 922.0,
- "new_cases_smoothed": 1711.714,
- "total_deaths": 9386.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 3250.468,
- "new_cases_per_million": 11.004,
- "new_cases_smoothed_per_million": 20.43,
- "total_deaths_per_million": 112.026,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.061,
- "stringency_index": 49.54
- },
- {
- "date": "2020-09-22",
- "total_cases": 274158.0,
- "new_cases": 1821.0,
- "new_cases_smoothed": 1770.857,
- "total_deaths": 9396.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 3272.202,
- "new_cases_per_million": 21.734,
- "new_cases_smoothed_per_million": 21.136,
- "total_deaths_per_million": 112.146,
- "new_deaths_per_million": 0.119,
- "new_deaths_smoothed_per_million": 0.058,
- "stringency_index": 49.54
- },
- {
- "date": "2020-09-23",
- "total_cases": 275927.0,
- "new_cases": 1769.0,
- "new_cases_smoothed": 1752.0,
- "total_deaths": 9409.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 5.857,
- "total_cases_per_million": 3293.316,
- "new_cases_per_million": 21.114,
- "new_cases_smoothed_per_million": 20.911,
- "total_deaths_per_million": 112.301,
- "new_deaths_per_million": 0.155,
- "new_deaths_smoothed_per_million": 0.07,
- "stringency_index": 49.54
- },
- {
- "date": "2020-09-24",
- "total_cases": 278070.0,
- "new_cases": 2143.0,
- "new_cases_smoothed": 1744.714,
- "total_deaths": 9428.0,
- "new_deaths": 19.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 3318.894,
- "new_cases_per_million": 25.578,
- "new_cases_smoothed_per_million": 20.824,
- "total_deaths_per_million": 112.528,
- "new_deaths_per_million": 0.227,
- "new_deaths_smoothed_per_million": 0.097,
- "stringency_index": 49.54
- },
- {
- "date": "2020-09-25",
- "total_cases": 280223.0,
- "new_cases": 2153.0,
- "new_cases_smoothed": 1778.571,
- "total_deaths": 9443.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 9.286,
- "total_cases_per_million": 3344.591,
- "new_cases_per_million": 25.697,
- "new_cases_smoothed_per_million": 21.228,
- "total_deaths_per_million": 112.707,
- "new_deaths_per_million": 0.179,
- "new_deaths_smoothed_per_million": 0.111
- }
- ]
- },
- "DJI": {
- "continent": "Africa",
- "location": "Djibouti",
- "population": 988002.0,
- "population_density": 41.285,
- "median_age": 25.4,
- "aged_65_older": 4.213,
- "aged_70_older": 2.38,
- "gdp_per_capita": 2705.406,
- "extreme_poverty": 22.5,
- "cardiovasc_death_rate": 258.037,
- "diabetes_prevalence": 6.05,
- "female_smokers": 1.7,
- "male_smokers": 24.5,
- "hospital_beds_per_thousand": 1.4,
- "life_expectancy": 67.11,
- "human_development_index": 0.476,
- "data": [
- {
- "date": "2020-03-19",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 1.012,
- "new_cases_per_million": 1.012,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 33.33
- },
- {
- "date": "2020-03-20",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 1.012,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 33.33
- },
- {
- "date": "2020-03-21",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 1.012,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 33.33
- },
- {
- "date": "2020-03-22",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 1.012,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 51.85
- },
- {
- "date": "2020-03-23",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 1.012,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-03-24",
- "total_cases": 3.0,
- "new_cases": 2.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 3.036,
- "new_cases_per_million": 2.024,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-03-25",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.036,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.434,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-03-26",
- "total_cases": 12.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.146,
- "new_cases_per_million": 9.109,
- "new_cases_smoothed_per_million": 1.591,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-03-27",
- "total_cases": 12.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 12.146,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.591,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-03-28",
- "total_cases": 13.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 13.158,
- "new_cases_per_million": 1.012,
- "new_cases_smoothed_per_million": 1.735,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-03-29",
- "total_cases": 15.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 2.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 15.182,
- "new_cases_per_million": 2.024,
- "new_cases_smoothed_per_million": 2.024,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-03-30",
- "total_cases": 19.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 2.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 19.231,
- "new_cases_per_million": 4.049,
- "new_cases_smoothed_per_million": 2.603,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-03-31",
- "total_cases": 26.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 26.316,
- "new_cases_per_million": 7.085,
- "new_cases_smoothed_per_million": 3.326,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-01",
- "total_cases": 31.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 4.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 31.376,
- "new_cases_per_million": 5.061,
- "new_cases_smoothed_per_million": 4.049,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-02",
- "total_cases": 34.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 3.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 34.413,
- "new_cases_per_million": 3.036,
- "new_cases_smoothed_per_million": 3.181,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-03",
- "total_cases": 41.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 41.498,
- "new_cases_per_million": 7.085,
- "new_cases_smoothed_per_million": 4.193,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-04",
- "total_cases": 41.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 41.498,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.049,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-05",
- "total_cases": 51.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 51.619,
- "new_cases_per_million": 10.121,
- "new_cases_smoothed_per_million": 5.205,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-06",
- "total_cases": 59.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 5.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 59.716,
- "new_cases_per_million": 8.097,
- "new_cases_smoothed_per_million": 5.784,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-07",
- "total_cases": 90.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 9.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 91.093,
- "new_cases_per_million": 31.376,
- "new_cases_smoothed_per_million": 9.254,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-08",
- "total_cases": 121.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 12.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 122.469,
- "new_cases_per_million": 31.376,
- "new_cases_smoothed_per_million": 13.013,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-09",
- "total_cases": 135.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 14.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 136.639,
- "new_cases_per_million": 14.17,
- "new_cases_smoothed_per_million": 14.604,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-10",
- "total_cases": 140.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 14.143,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 141.7,
- "new_cases_per_million": 5.061,
- "new_cases_smoothed_per_million": 14.315,
- "total_deaths_per_million": 1.012,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-11",
- "total_cases": 150.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 15.571,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 151.822,
- "new_cases_per_million": 10.121,
- "new_cases_smoothed_per_million": 15.761,
- "total_deaths_per_million": 1.012,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-12",
- "total_cases": 187.0,
- "new_cases": 37.0,
- "new_cases_smoothed": 19.429,
- "total_deaths": 2.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 189.271,
- "new_cases_per_million": 37.449,
- "new_cases_smoothed_per_million": 19.665,
- "total_deaths_per_million": 2.024,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 0.289,
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-13",
- "total_cases": 214.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 22.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 216.599,
- "new_cases_per_million": 27.328,
- "new_cases_smoothed_per_million": 22.412,
- "total_deaths_per_million": 2.024,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.289,
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-14",
- "total_cases": 298.0,
- "new_cases": 84.0,
- "new_cases_smoothed": 29.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 301.619,
- "new_cases_per_million": 85.02,
- "new_cases_smoothed_per_million": 30.075,
- "total_deaths_per_million": 2.024,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.289,
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-15",
- "total_cases": 363.0,
- "new_cases": 65.0,
- "new_cases_smoothed": 34.571,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 367.408,
- "new_cases_per_million": 65.789,
- "new_cases_smoothed_per_million": 34.991,
- "total_deaths_per_million": 2.024,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.289,
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-16",
- "total_cases": 435.0,
- "new_cases": 72.0,
- "new_cases_smoothed": 42.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 440.283,
- "new_cases_per_million": 72.874,
- "new_cases_smoothed_per_million": 43.378,
- "total_deaths_per_million": 2.024,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.289,
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-17",
- "total_cases": 591.0,
- "new_cases": 156.0,
- "new_cases_smoothed": 64.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 598.177,
- "new_cases_per_million": 157.894,
- "new_cases_smoothed_per_million": 65.211,
- "total_deaths_per_million": 2.024,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-18",
- "total_cases": 732.0,
- "new_cases": 141.0,
- "new_cases_smoothed": 83.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 740.889,
- "new_cases_per_million": 142.712,
- "new_cases_smoothed_per_million": 84.153,
- "total_deaths_per_million": 2.024,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-19",
- "total_cases": 732.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 77.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 740.889,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 78.803,
- "total_deaths_per_million": 2.024,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-20",
- "total_cases": 846.0,
- "new_cases": 114.0,
- "new_cases_smoothed": 90.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 856.274,
- "new_cases_per_million": 115.384,
- "new_cases_smoothed_per_million": 91.382,
- "total_deaths_per_million": 2.024,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-21",
- "total_cases": 846.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 78.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 856.274,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 79.236,
- "total_deaths_per_million": 2.024,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-22",
- "total_cases": 945.0,
- "new_cases": 99.0,
- "new_cases_smoothed": 83.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 956.476,
- "new_cases_per_million": 100.202,
- "new_cases_smoothed_per_million": 84.153,
- "total_deaths_per_million": 2.024,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-23",
- "total_cases": 974.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 77.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 985.828,
- "new_cases_per_million": 29.352,
- "new_cases_smoothed_per_million": 77.935,
- "total_deaths_per_million": 2.024,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-24",
- "total_cases": 986.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 56.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 997.974,
- "new_cases_per_million": 12.146,
- "new_cases_smoothed_per_million": 57.114,
- "total_deaths_per_million": 2.024,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-25",
- "total_cases": 999.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 38.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1011.132,
- "new_cases_per_million": 13.158,
- "new_cases_smoothed_per_million": 38.606,
- "total_deaths_per_million": 2.024,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-26",
- "total_cases": 1008.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 39.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1020.241,
- "new_cases_per_million": 9.109,
- "new_cases_smoothed_per_million": 39.907,
- "total_deaths_per_million": 2.024,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-27",
- "total_cases": 1023.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 25.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1035.423,
- "new_cases_per_million": 15.182,
- "new_cases_smoothed_per_million": 25.593,
- "total_deaths_per_million": 2.024,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-28",
- "total_cases": 1035.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 27.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1047.569,
- "new_cases_per_million": 12.146,
- "new_cases_smoothed_per_million": 27.328,
- "total_deaths_per_million": 2.024,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-29",
- "total_cases": 1072.0,
- "new_cases": 37.0,
- "new_cases_smoothed": 18.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1085.018,
- "new_cases_per_million": 37.449,
- "new_cases_smoothed_per_million": 18.363,
- "total_deaths_per_million": 2.024,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-04-30",
- "total_cases": 1077.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 14.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1090.079,
- "new_cases_per_million": 5.061,
- "new_cases_smoothed_per_million": 14.893,
- "total_deaths_per_million": 2.024,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-01",
- "total_cases": 1089.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 14.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1102.224,
- "new_cases_per_million": 12.146,
- "new_cases_smoothed_per_million": 14.893,
- "total_deaths_per_million": 2.024,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-02",
- "total_cases": 1097.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 14.0,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1110.322,
- "new_cases_per_million": 8.097,
- "new_cases_smoothed_per_million": 14.17,
- "total_deaths_per_million": 2.024,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-03",
- "total_cases": 1112.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 14.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1125.504,
- "new_cases_per_million": 15.182,
- "new_cases_smoothed_per_million": 15.038,
- "total_deaths_per_million": 2.024,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-04",
- "total_cases": 1112.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 12.714,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1125.504,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 12.869,
- "total_deaths_per_million": 2.024,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-05",
- "total_cases": 1116.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 11.571,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1129.552,
- "new_cases_per_million": 4.049,
- "new_cases_smoothed_per_million": 11.712,
- "total_deaths_per_million": 2.024,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-06",
- "total_cases": 1120.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 6.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1133.601,
- "new_cases_per_million": 4.049,
- "new_cases_smoothed_per_million": 6.94,
- "total_deaths_per_million": 2.024,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-07",
- "total_cases": 1120.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.143,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1133.601,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.217,
- "total_deaths_per_million": 3.036,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-08",
- "total_cases": 1133.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 6.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1146.759,
- "new_cases_per_million": 13.158,
- "new_cases_smoothed_per_million": 6.362,
- "total_deaths_per_million": 3.036,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-09",
- "total_cases": 1135.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1148.783,
- "new_cases_per_million": 2.024,
- "new_cases_smoothed_per_million": 5.494,
- "total_deaths_per_million": 3.036,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-10",
- "total_cases": 1189.0,
- "new_cases": 54.0,
- "new_cases_smoothed": 11.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1203.439,
- "new_cases_per_million": 54.656,
- "new_cases_smoothed_per_million": 11.134,
- "total_deaths_per_million": 3.036,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-11",
- "total_cases": 1210.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 14.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1224.694,
- "new_cases_per_million": 21.255,
- "new_cases_smoothed_per_million": 14.17,
- "total_deaths_per_million": 3.036,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-12",
- "total_cases": 1227.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 15.857,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1241.9,
- "new_cases_per_million": 17.206,
- "new_cases_smoothed_per_million": 16.05,
- "total_deaths_per_million": 3.036,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-13",
- "total_cases": 1256.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 19.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1271.252,
- "new_cases_per_million": 29.352,
- "new_cases_smoothed_per_million": 19.665,
- "total_deaths_per_million": 3.036,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-14",
- "total_cases": 1268.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 21.143,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1283.398,
- "new_cases_per_million": 12.146,
- "new_cases_smoothed_per_million": 21.4,
- "total_deaths_per_million": 3.036,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-15",
- "total_cases": 1284.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 21.571,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1299.593,
- "new_cases_per_million": 16.194,
- "new_cases_smoothed_per_million": 21.833,
- "total_deaths_per_million": 3.036,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-16",
- "total_cases": 1309.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 24.857,
- "total_deaths": 4.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1324.896,
- "new_cases_per_million": 25.304,
- "new_cases_smoothed_per_million": 25.159,
- "total_deaths_per_million": 4.049,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 100.0
- },
- {
- "date": "2020-05-17",
- "total_cases": 1331.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 20.286,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1347.163,
- "new_cases_per_million": 22.267,
- "new_cases_smoothed_per_million": 20.532,
- "total_deaths_per_million": 4.049,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 59.26
- },
- {
- "date": "2020-05-18",
- "total_cases": 1401.0,
- "new_cases": 70.0,
- "new_cases_smoothed": 27.286,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1418.013,
- "new_cases_per_million": 70.85,
- "new_cases_smoothed_per_million": 27.617,
- "total_deaths_per_million": 4.049,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 59.26
- },
- {
- "date": "2020-05-19",
- "total_cases": 1518.0,
- "new_cases": 117.0,
- "new_cases_smoothed": 41.571,
- "total_deaths": 7.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 1536.434,
- "new_cases_per_million": 118.421,
- "new_cases_smoothed_per_million": 42.076,
- "total_deaths_per_million": 7.085,
- "new_deaths_per_million": 3.036,
- "new_deaths_smoothed_per_million": 0.578,
- "stringency_index": 59.26
- },
- {
- "date": "2020-05-20",
- "total_cases": 1518.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 37.429,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 1536.434,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 37.883,
- "total_deaths_per_million": 7.085,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.578,
- "stringency_index": 59.26
- },
- {
- "date": "2020-05-21",
- "total_cases": 1828.0,
- "new_cases": 310.0,
- "new_cases_smoothed": 80.0,
- "total_deaths": 9.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 1850.199,
- "new_cases_per_million": 313.765,
- "new_cases_smoothed_per_million": 80.971,
- "total_deaths_per_million": 9.109,
- "new_deaths_per_million": 2.024,
- "new_deaths_smoothed_per_million": 0.868,
- "stringency_index": 59.26
- },
- {
- "date": "2020-05-22",
- "total_cases": 2047.0,
- "new_cases": 219.0,
- "new_cases_smoothed": 109.0,
- "total_deaths": 10.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 2071.858,
- "new_cases_per_million": 221.659,
- "new_cases_smoothed_per_million": 110.324,
- "total_deaths_per_million": 10.121,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 1.012,
- "stringency_index": 59.26
- },
- {
- "date": "2020-05-23",
- "total_cases": 2270.0,
- "new_cases": 223.0,
- "new_cases_smoothed": 137.286,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 2297.566,
- "new_cases_per_million": 225.708,
- "new_cases_smoothed_per_million": 138.953,
- "total_deaths_per_million": 10.121,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.868,
- "stringency_index": 53.7
- },
- {
- "date": "2020-05-24",
- "total_cases": 2270.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 134.143,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 2297.566,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 135.772,
- "total_deaths_per_million": 10.121,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.868,
- "stringency_index": 53.7
- },
- {
- "date": "2020-05-25",
- "total_cases": 2270.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 124.143,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 2297.566,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 125.65,
- "total_deaths_per_million": 10.121,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.868,
- "stringency_index": 53.7
- },
- {
- "date": "2020-05-26",
- "total_cases": 2468.0,
- "new_cases": 198.0,
- "new_cases_smoothed": 135.714,
- "total_deaths": 14.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 2497.971,
- "new_cases_per_million": 200.404,
- "new_cases_smoothed_per_million": 137.362,
- "total_deaths_per_million": 14.17,
- "new_deaths_per_million": 4.049,
- "new_deaths_smoothed_per_million": 1.012,
- "stringency_index": 53.7
- },
- {
- "date": "2020-05-27",
- "total_cases": 2468.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 135.714,
- "total_deaths": 14.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 2497.971,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 137.362,
- "total_deaths_per_million": 14.17,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.012,
- "stringency_index": 53.7
- },
- {
- "date": "2020-05-28",
- "total_cases": 2697.0,
- "new_cases": 229.0,
- "new_cases_smoothed": 124.143,
- "total_deaths": 18.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 2729.752,
- "new_cases_per_million": 231.781,
- "new_cases_smoothed_per_million": 125.65,
- "total_deaths_per_million": 18.219,
- "new_deaths_per_million": 4.049,
- "new_deaths_smoothed_per_million": 1.301,
- "stringency_index": 53.7
- },
- {
- "date": "2020-05-29",
- "total_cases": 2914.0,
- "new_cases": 217.0,
- "new_cases_smoothed": 123.857,
- "total_deaths": 20.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 2949.387,
- "new_cases_per_million": 219.635,
- "new_cases_smoothed_per_million": 125.361,
- "total_deaths_per_million": 20.243,
- "new_deaths_per_million": 2.024,
- "new_deaths_smoothed_per_million": 1.446,
- "stringency_index": 53.7
- },
- {
- "date": "2020-05-30",
- "total_cases": 2914.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 92.0,
- "total_deaths": 20.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 2949.387,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 93.117,
- "total_deaths_per_million": 20.243,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.446,
- "stringency_index": 53.7
- },
- {
- "date": "2020-05-31",
- "total_cases": 3194.0,
- "new_cases": 280.0,
- "new_cases_smoothed": 132.0,
- "total_deaths": 22.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 3232.787,
- "new_cases_per_million": 283.4,
- "new_cases_smoothed_per_million": 133.603,
- "total_deaths_per_million": 22.267,
- "new_deaths_per_million": 2.024,
- "new_deaths_smoothed_per_million": 1.735,
- "stringency_index": 53.7
- },
- {
- "date": "2020-06-01",
- "total_cases": 3354.0,
- "new_cases": 160.0,
- "new_cases_smoothed": 154.857,
- "total_deaths": 24.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 3394.73,
- "new_cases_per_million": 161.943,
- "new_cases_smoothed_per_million": 156.738,
- "total_deaths_per_million": 24.291,
- "new_deaths_per_million": 2.024,
- "new_deaths_smoothed_per_million": 2.024,
- "stringency_index": 53.7
- },
- {
- "date": "2020-06-02",
- "total_cases": 3569.0,
- "new_cases": 215.0,
- "new_cases_smoothed": 157.286,
- "total_deaths": 24.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 3612.341,
- "new_cases_per_million": 217.611,
- "new_cases_smoothed_per_million": 159.196,
- "total_deaths_per_million": 24.291,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.446,
- "stringency_index": 53.7
- },
- {
- "date": "2020-06-03",
- "total_cases": 3779.0,
- "new_cases": 210.0,
- "new_cases_smoothed": 187.286,
- "total_deaths": 25.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 3824.891,
- "new_cases_per_million": 212.55,
- "new_cases_smoothed_per_million": 189.56,
- "total_deaths_per_million": 25.304,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 1.591,
- "stringency_index": 53.7
- },
- {
- "date": "2020-06-04",
- "total_cases": 3935.0,
- "new_cases": 156.0,
- "new_cases_smoothed": 176.857,
- "total_deaths": 26.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 3982.785,
- "new_cases_per_million": 157.894,
- "new_cases_smoothed_per_million": 179.005,
- "total_deaths_per_million": 26.316,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 1.157,
- "stringency_index": 53.7
- },
- {
- "date": "2020-06-05",
- "total_cases": 4054.0,
- "new_cases": 119.0,
- "new_cases_smoothed": 162.857,
- "total_deaths": 26.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 4103.231,
- "new_cases_per_million": 120.445,
- "new_cases_smoothed_per_million": 164.835,
- "total_deaths_per_million": 26.316,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.868,
- "stringency_index": 53.7
- },
- {
- "date": "2020-06-06",
- "total_cases": 4123.0,
- "new_cases": 69.0,
- "new_cases_smoothed": 172.714,
- "total_deaths": 26.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 4173.068,
- "new_cases_per_million": 69.838,
- "new_cases_smoothed_per_million": 174.812,
- "total_deaths_per_million": 26.316,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.868,
- "stringency_index": 53.7
- },
- {
- "date": "2020-06-07",
- "total_cases": 4169.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 139.286,
- "total_deaths": 26.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 4219.627,
- "new_cases_per_million": 46.559,
- "new_cases_smoothed_per_million": 140.977,
- "total_deaths_per_million": 26.316,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.578,
- "stringency_index": 53.7
- },
- {
- "date": "2020-06-08",
- "total_cases": 4207.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 121.857,
- "total_deaths": 28.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 4258.089,
- "new_cases_per_million": 38.461,
- "new_cases_smoothed_per_million": 123.337,
- "total_deaths_per_million": 28.34,
- "new_deaths_per_million": 2.024,
- "new_deaths_smoothed_per_million": 0.578,
- "stringency_index": 53.7
- },
- {
- "date": "2020-06-09",
- "total_cases": 4278.0,
- "new_cases": 71.0,
- "new_cases_smoothed": 101.286,
- "total_deaths": 31.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 4329.951,
- "new_cases_per_million": 71.862,
- "new_cases_smoothed_per_million": 102.516,
- "total_deaths_per_million": 31.376,
- "new_deaths_per_million": 3.036,
- "new_deaths_smoothed_per_million": 1.012,
- "stringency_index": 53.7
- },
- {
- "date": "2020-06-10",
- "total_cases": 4331.0,
- "new_cases": 53.0,
- "new_cases_smoothed": 78.857,
- "total_deaths": 34.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 4383.594,
- "new_cases_per_million": 53.644,
- "new_cases_smoothed_per_million": 79.815,
- "total_deaths_per_million": 34.413,
- "new_deaths_per_million": 3.036,
- "new_deaths_smoothed_per_million": 1.301,
- "stringency_index": 53.7
- },
- {
- "date": "2020-06-11",
- "total_cases": 4373.0,
- "new_cases": 42.0,
- "new_cases_smoothed": 62.571,
- "total_deaths": 34.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 4426.104,
- "new_cases_per_million": 42.51,
- "new_cases_smoothed_per_million": 63.331,
- "total_deaths_per_million": 34.413,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.157,
- "stringency_index": 53.7
- },
- {
- "date": "2020-06-12",
- "total_cases": 4398.0,
- "new_cases": 25.0,
- "new_cases_smoothed": 49.143,
- "total_deaths": 37.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 4451.408,
- "new_cases_per_million": 25.304,
- "new_cases_smoothed_per_million": 49.74,
- "total_deaths_per_million": 37.449,
- "new_deaths_per_million": 3.036,
- "new_deaths_smoothed_per_million": 1.591,
- "stringency_index": 53.7
- },
- {
- "date": "2020-06-13",
- "total_cases": 4441.0,
- "new_cases": 43.0,
- "new_cases_smoothed": 45.429,
- "total_deaths": 38.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 4494.93,
- "new_cases_per_million": 43.522,
- "new_cases_smoothed_per_million": 45.98,
- "total_deaths_per_million": 38.461,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 1.735,
- "stringency_index": 53.7
- },
- {
- "date": "2020-06-14",
- "total_cases": 4449.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 40.0,
- "total_deaths": 41.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 4503.027,
- "new_cases_per_million": 8.097,
- "new_cases_smoothed_per_million": 40.486,
- "total_deaths_per_million": 41.498,
- "new_deaths_per_million": 3.036,
- "new_deaths_smoothed_per_million": 2.169,
- "stringency_index": 53.7
- },
- {
- "date": "2020-06-15",
- "total_cases": 4465.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 36.857,
- "total_deaths": 43.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 4519.222,
- "new_cases_per_million": 16.194,
- "new_cases_smoothed_per_million": 37.305,
- "total_deaths_per_million": 43.522,
- "new_deaths_per_million": 2.024,
- "new_deaths_smoothed_per_million": 2.169,
- "stringency_index": 53.7
- },
- {
- "date": "2020-06-16",
- "total_cases": 4501.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 31.857,
- "total_deaths": 43.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 4555.659,
- "new_cases_per_million": 36.437,
- "new_cases_smoothed_per_million": 32.244,
- "total_deaths_per_million": 43.522,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.735,
- "stringency_index": 53.7
- },
- {
- "date": "2020-06-17",
- "total_cases": 4539.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 29.714,
- "total_deaths": 43.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 4594.12,
- "new_cases_per_million": 38.461,
- "new_cases_smoothed_per_million": 30.075,
- "total_deaths_per_million": 43.522,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.301,
- "stringency_index": 53.7
- },
- {
- "date": "2020-06-18",
- "total_cases": 4545.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 24.571,
- "total_deaths": 43.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 4600.193,
- "new_cases_per_million": 6.073,
- "new_cases_smoothed_per_million": 24.87,
- "total_deaths_per_million": 43.522,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.301,
- "stringency_index": 53.7
- },
- {
- "date": "2020-06-19",
- "total_cases": 4557.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 22.714,
- "total_deaths": 43.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 4612.339,
- "new_cases_per_million": 12.146,
- "new_cases_smoothed_per_million": 22.99,
- "total_deaths_per_million": 43.522,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.868,
- "stringency_index": 53.7
- },
- {
- "date": "2020-06-20",
- "total_cases": 4565.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 17.714,
- "total_deaths": 45.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 4620.436,
- "new_cases_per_million": 8.097,
- "new_cases_smoothed_per_million": 17.929,
- "total_deaths_per_million": 45.546,
- "new_deaths_per_million": 2.024,
- "new_deaths_smoothed_per_million": 1.012,
- "stringency_index": 53.7
- },
- {
- "date": "2020-06-21",
- "total_cases": 4565.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 16.571,
- "total_deaths": 45.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 4620.436,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 16.773,
- "total_deaths_per_million": 45.546,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.578,
- "stringency_index": 53.7
- },
- {
- "date": "2020-06-22",
- "total_cases": 4582.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 16.714,
- "total_deaths": 45.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 4637.642,
- "new_cases_per_million": 17.206,
- "new_cases_smoothed_per_million": 16.917,
- "total_deaths_per_million": 45.546,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.289,
- "stringency_index": 53.7
- },
- {
- "date": "2020-06-23",
- "total_cases": 4599.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 14.0,
- "total_deaths": 48.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 4654.849,
- "new_cases_per_million": 17.206,
- "new_cases_smoothed_per_million": 14.17,
- "total_deaths_per_million": 48.583,
- "new_deaths_per_million": 3.036,
- "new_deaths_smoothed_per_million": 0.723,
- "stringency_index": 53.7
- },
- {
- "date": "2020-06-24",
- "total_cases": 4617.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 11.143,
- "total_deaths": 49.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 4673.067,
- "new_cases_per_million": 18.219,
- "new_cases_smoothed_per_million": 11.278,
- "total_deaths_per_million": 49.595,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 0.868,
- "stringency_index": 53.7
- },
- {
- "date": "2020-06-25",
- "total_cases": 4630.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 12.143,
- "total_deaths": 52.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 4686.225,
- "new_cases_per_million": 13.158,
- "new_cases_smoothed_per_million": 12.29,
- "total_deaths_per_million": 52.631,
- "new_deaths_per_million": 3.036,
- "new_deaths_smoothed_per_million": 1.301,
- "stringency_index": 53.7
- },
- {
- "date": "2020-06-26",
- "total_cases": 4635.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 11.143,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 4691.286,
- "new_cases_per_million": 5.061,
- "new_cases_smoothed_per_million": 11.278,
- "total_deaths_per_million": 52.631,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.301,
- "stringency_index": 53.7
- },
- {
- "date": "2020-06-27",
- "total_cases": 4643.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 11.143,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 4699.383,
- "new_cases_per_million": 8.097,
- "new_cases_smoothed_per_million": 11.278,
- "total_deaths_per_million": 52.631,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.012,
- "stringency_index": 53.7
- },
- {
- "date": "2020-06-28",
- "total_cases": 4643.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 11.143,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 4699.383,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 11.278,
- "total_deaths_per_million": 52.631,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.012,
- "stringency_index": 53.7
- },
- {
- "date": "2020-06-29",
- "total_cases": 4643.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 8.714,
- "total_deaths": 52.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 4699.383,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.82,
- "total_deaths_per_million": 52.631,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.012,
- "stringency_index": 53.7
- },
- {
- "date": "2020-06-30",
- "total_cases": 4656.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 8.143,
- "total_deaths": 53.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 4712.541,
- "new_cases_per_million": 13.158,
- "new_cases_smoothed_per_million": 8.242,
- "total_deaths_per_million": 53.644,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 0.723,
- "stringency_index": 53.7
- },
- {
- "date": "2020-07-01",
- "total_cases": 4682.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 9.286,
- "total_deaths": 54.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 4738.857,
- "new_cases_per_million": 26.316,
- "new_cases_smoothed_per_million": 9.398,
- "total_deaths_per_million": 54.656,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 0.723,
- "stringency_index": 53.7
- },
- {
- "date": "2020-07-02",
- "total_cases": 4704.0,
- "new_cases": 22.0,
- "new_cases_smoothed": 10.571,
- "total_deaths": 55.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 4761.124,
- "new_cases_per_million": 22.267,
- "new_cases_smoothed_per_million": 10.7,
- "total_deaths_per_million": 55.668,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 0.434,
- "stringency_index": 53.7
- },
- {
- "date": "2020-07-03",
- "total_cases": 4715.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 11.429,
- "total_deaths": 55.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 4772.258,
- "new_cases_per_million": 11.134,
- "new_cases_smoothed_per_million": 11.567,
- "total_deaths_per_million": 55.668,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.434,
- "stringency_index": 53.7
- },
- {
- "date": "2020-07-04",
- "total_cases": 4736.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 13.286,
- "total_deaths": 55.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 4793.513,
- "new_cases_per_million": 21.255,
- "new_cases_smoothed_per_million": 13.447,
- "total_deaths_per_million": 55.668,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.434,
- "stringency_index": 53.7
- },
- {
- "date": "2020-07-05",
- "total_cases": 4736.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 13.286,
- "total_deaths": 55.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 4793.513,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 13.447,
- "total_deaths_per_million": 55.668,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.434,
- "stringency_index": 53.7
- },
- {
- "date": "2020-07-06",
- "total_cases": 4792.0,
- "new_cases": 56.0,
- "new_cases_smoothed": 21.286,
- "total_deaths": 55.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 4850.193,
- "new_cases_per_million": 56.68,
- "new_cases_smoothed_per_million": 21.544,
- "total_deaths_per_million": 55.668,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.434,
- "stringency_index": 53.7
- },
- {
- "date": "2020-07-07",
- "total_cases": 4822.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 23.714,
- "total_deaths": 55.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 4880.557,
- "new_cases_per_million": 30.364,
- "new_cases_smoothed_per_million": 24.002,
- "total_deaths_per_million": 55.668,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.289,
- "stringency_index": 53.7
- },
- {
- "date": "2020-07-08",
- "total_cases": 4878.0,
- "new_cases": 56.0,
- "new_cases_smoothed": 28.0,
- "total_deaths": 55.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 4937.237,
- "new_cases_per_million": 56.68,
- "new_cases_smoothed_per_million": 28.34,
- "total_deaths_per_million": 55.668,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 53.7
- },
- {
- "date": "2020-07-09",
- "total_cases": 4889.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 26.429,
- "total_deaths": 55.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 4948.371,
- "new_cases_per_million": 11.134,
- "new_cases_smoothed_per_million": 26.75,
- "total_deaths_per_million": 55.668,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 53.7
- },
- {
- "date": "2020-07-10",
- "total_cases": 4955.0,
- "new_cases": 66.0,
- "new_cases_smoothed": 34.286,
- "total_deaths": 56.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 5015.172,
- "new_cases_per_million": 66.801,
- "new_cases_smoothed_per_million": 34.702,
- "total_deaths_per_million": 56.68,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 53.7
- },
- {
- "date": "2020-07-11",
- "total_cases": 4955.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 31.286,
- "total_deaths": 56.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 5015.172,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 31.666,
- "total_deaths_per_million": 56.68,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 53.7
- },
- {
- "date": "2020-07-12",
- "total_cases": 4955.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 31.286,
- "total_deaths": 56.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 5015.172,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 31.666,
- "total_deaths_per_million": 56.68,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 53.7
- },
- {
- "date": "2020-07-13",
- "total_cases": 4972.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 25.714,
- "total_deaths": 56.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 5032.378,
- "new_cases_per_million": 17.206,
- "new_cases_smoothed_per_million": 26.027,
- "total_deaths_per_million": 56.68,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 53.7
- },
- {
- "date": "2020-07-14",
- "total_cases": 4977.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 22.143,
- "total_deaths": 56.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 5037.439,
- "new_cases_per_million": 5.061,
- "new_cases_smoothed_per_million": 22.412,
- "total_deaths_per_million": 56.68,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 53.7
- },
- {
- "date": "2020-07-15",
- "total_cases": 4979.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 14.429,
- "total_deaths": 56.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 5039.463,
- "new_cases_per_million": 2.024,
- "new_cases_smoothed_per_million": 14.604,
- "total_deaths_per_million": 56.68,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 53.7
- },
- {
- "date": "2020-07-16",
- "total_cases": 4985.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 13.714,
- "total_deaths": 56.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 5045.536,
- "new_cases_per_million": 6.073,
- "new_cases_smoothed_per_million": 13.881,
- "total_deaths_per_million": 56.68,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 53.7
- },
- {
- "date": "2020-07-17",
- "total_cases": 4993.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 56.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5053.633,
- "new_cases_per_million": 8.097,
- "new_cases_smoothed_per_million": 5.494,
- "total_deaths_per_million": 56.68,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-18",
- "total_cases": 5003.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 6.857,
- "total_deaths": 56.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5063.755,
- "new_cases_per_million": 10.121,
- "new_cases_smoothed_per_million": 6.94,
- "total_deaths_per_million": 56.68,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-19",
- "total_cases": 5003.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.857,
- "total_deaths": 56.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5063.755,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.94,
- "total_deaths_per_million": 56.68,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-20",
- "total_cases": 5011.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 56.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5071.852,
- "new_cases_per_million": 8.097,
- "new_cases_smoothed_per_million": 5.639,
- "total_deaths_per_million": 56.68,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-21",
- "total_cases": 5020.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 6.143,
- "total_deaths": 56.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5080.961,
- "new_cases_per_million": 9.109,
- "new_cases_smoothed_per_million": 6.217,
- "total_deaths_per_million": 56.68,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-22",
- "total_cases": 5027.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 6.857,
- "total_deaths": 56.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5088.046,
- "new_cases_per_million": 7.085,
- "new_cases_smoothed_per_million": 6.94,
- "total_deaths_per_million": 56.68,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-23",
- "total_cases": 5030.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 6.429,
- "total_deaths": 58.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 5091.083,
- "new_cases_per_million": 3.036,
- "new_cases_smoothed_per_million": 6.507,
- "total_deaths_per_million": 58.704,
- "new_deaths_per_million": 2.024,
- "new_deaths_smoothed_per_million": 0.289,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-24",
- "total_cases": 5031.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 58.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 5092.095,
- "new_cases_per_million": 1.012,
- "new_cases_smoothed_per_million": 5.494,
- "total_deaths_per_million": 58.704,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.289,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-25",
- "total_cases": 5039.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 58.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 5100.192,
- "new_cases_per_million": 8.097,
- "new_cases_smoothed_per_million": 5.205,
- "total_deaths_per_million": 58.704,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.289,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-26",
- "total_cases": 5039.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 5.143,
- "total_deaths": 58.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 5100.192,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.205,
- "total_deaths_per_million": 58.704,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.289,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-27",
- "total_cases": 5050.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 58.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 5111.326,
- "new_cases_per_million": 11.134,
- "new_cases_smoothed_per_million": 5.639,
- "total_deaths_per_million": 58.704,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.289,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-28",
- "total_cases": 5059.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 5.571,
- "total_deaths": 58.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 5120.435,
- "new_cases_per_million": 9.109,
- "new_cases_smoothed_per_million": 5.639,
- "total_deaths_per_million": 58.704,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.289,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-29",
- "total_cases": 5068.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 5.857,
- "total_deaths": 58.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 5129.544,
- "new_cases_per_million": 9.109,
- "new_cases_smoothed_per_million": 5.928,
- "total_deaths_per_million": 58.704,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.289,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-30",
- "total_cases": 5081.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 7.286,
- "total_deaths": 58.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5142.702,
- "new_cases_per_million": 13.158,
- "new_cases_smoothed_per_million": 7.374,
- "total_deaths_per_million": 58.704,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-07-31",
- "total_cases": 5081.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 7.143,
- "total_deaths": 58.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5142.702,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.23,
- "total_deaths_per_million": 58.704,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-01",
- "total_cases": 5081.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.0,
- "total_deaths": 58.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5142.702,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.073,
- "total_deaths_per_million": 58.704,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-02",
- "total_cases": 5081.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 6.0,
- "total_deaths": 58.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5142.702,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.073,
- "total_deaths_per_million": 58.704,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-03",
- "total_cases": 5161.0,
- "new_cases": 80.0,
- "new_cases_smoothed": 15.857,
- "total_deaths": 59.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 5223.674,
- "new_cases_per_million": 80.971,
- "new_cases_smoothed_per_million": 16.05,
- "total_deaths_per_million": 59.716,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-04",
- "total_cases": 5240.0,
- "new_cases": 79.0,
- "new_cases_smoothed": 25.857,
- "total_deaths": 59.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 5303.633,
- "new_cases_per_million": 79.959,
- "new_cases_smoothed_per_million": 26.171,
- "total_deaths_per_million": 59.716,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-05",
- "total_cases": 5248.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 25.714,
- "total_deaths": 59.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 5311.73,
- "new_cases_per_million": 8.097,
- "new_cases_smoothed_per_million": 26.027,
- "total_deaths_per_million": 59.716,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-06",
- "total_cases": 5330.0,
- "new_cases": 82.0,
- "new_cases_smoothed": 35.571,
- "total_deaths": 59.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 5394.726,
- "new_cases_per_million": 82.996,
- "new_cases_smoothed_per_million": 36.003,
- "total_deaths_per_million": 59.716,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-07",
- "total_cases": 5334.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 36.143,
- "total_deaths": 59.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 5398.774,
- "new_cases_per_million": 4.049,
- "new_cases_smoothed_per_million": 36.582,
- "total_deaths_per_million": 59.716,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-08",
- "total_cases": 5338.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 36.714,
- "total_deaths": 59.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 5402.823,
- "new_cases_per_million": 4.049,
- "new_cases_smoothed_per_million": 37.16,
- "total_deaths_per_million": 59.716,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-09",
- "total_cases": 5338.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 36.714,
- "total_deaths": 59.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 5402.823,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 37.16,
- "total_deaths_per_million": 59.716,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-10",
- "total_cases": 5344.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 26.143,
- "total_deaths": 59.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5408.896,
- "new_cases_per_million": 6.073,
- "new_cases_smoothed_per_million": 26.46,
- "total_deaths_per_million": 59.716,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-11",
- "total_cases": 5347.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 15.286,
- "total_deaths": 59.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5411.932,
- "new_cases_per_million": 3.036,
- "new_cases_smoothed_per_million": 15.471,
- "total_deaths_per_million": 59.716,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-12",
- "total_cases": 5348.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 14.286,
- "total_deaths": 59.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5412.945,
- "new_cases_per_million": 1.012,
- "new_cases_smoothed_per_million": 14.459,
- "total_deaths_per_million": 59.716,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-13",
- "total_cases": 5358.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 4.0,
- "total_deaths": 59.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5423.066,
- "new_cases_per_million": 10.121,
- "new_cases_smoothed_per_million": 4.049,
- "total_deaths_per_million": 59.716,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-14",
- "total_cases": 5358.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 3.429,
- "total_deaths": 59.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5423.066,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.47,
- "total_deaths_per_million": 59.716,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-15",
- "total_cases": 5367.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 59.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5432.175,
- "new_cases_per_million": 9.109,
- "new_cases_smoothed_per_million": 4.193,
- "total_deaths_per_million": 59.716,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-16",
- "total_cases": 5367.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 4.143,
- "total_deaths": 59.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5432.175,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.193,
- "total_deaths_per_million": 59.716,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-17",
- "total_cases": 5369.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 3.571,
- "total_deaths": 59.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5434.2,
- "new_cases_per_million": 2.024,
- "new_cases_smoothed_per_million": 3.615,
- "total_deaths_per_million": 59.716,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-18",
- "total_cases": 5372.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 3.571,
- "total_deaths": 59.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5437.236,
- "new_cases_per_million": 3.036,
- "new_cases_smoothed_per_million": 3.615,
- "total_deaths_per_million": 59.716,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-19",
- "total_cases": 5374.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 3.714,
- "total_deaths": 59.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5439.26,
- "new_cases_per_million": 2.024,
- "new_cases_smoothed_per_million": 3.759,
- "total_deaths_per_million": 59.716,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-20",
- "total_cases": 5374.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 59.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5439.26,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.313,
- "total_deaths_per_million": 59.716,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-21",
- "total_cases": 5374.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 59.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5439.26,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.313,
- "total_deaths_per_million": 59.716,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-22",
- "total_cases": 5382.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 60.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 5447.357,
- "new_cases_per_million": 8.097,
- "new_cases_smoothed_per_million": 2.169,
- "total_deaths_per_million": 60.729,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-23",
- "total_cases": 5382.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 60.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 5447.357,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.169,
- "total_deaths_per_million": 60.729,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-24",
- "total_cases": 5382.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 60.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 5447.357,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.88,
- "total_deaths_per_million": 60.729,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-25",
- "total_cases": 5383.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 60.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 5448.37,
- "new_cases_per_million": 1.012,
- "new_cases_smoothed_per_million": 1.591,
- "total_deaths_per_million": 60.729,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-26",
- "total_cases": 5383.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 60.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 5448.37,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.301,
- "total_deaths_per_million": 60.729,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-27",
- "total_cases": 5383.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 60.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 5448.37,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.301,
- "total_deaths_per_million": 60.729,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-28",
- "total_cases": 5383.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 60.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 5448.37,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.301,
- "total_deaths_per_million": 60.729,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-29",
- "total_cases": 5383.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 60.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5448.37,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.145,
- "total_deaths_per_million": 60.729,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-30",
- "total_cases": 5385.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 60.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5450.394,
- "new_cases_per_million": 2.024,
- "new_cases_smoothed_per_million": 0.434,
- "total_deaths_per_million": 60.729,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-08-31",
- "total_cases": 5385.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 60.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5450.394,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.434,
- "total_deaths_per_million": 60.729,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-09-01",
- "total_cases": 5387.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 60.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5452.418,
- "new_cases_per_million": 2.024,
- "new_cases_smoothed_per_million": 0.578,
- "total_deaths_per_million": 60.729,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-09-02",
- "total_cases": 5387.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 60.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5452.418,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.578,
- "total_deaths_per_million": 60.729,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-09-03",
- "total_cases": 5387.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 60.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5452.418,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.578,
- "total_deaths_per_million": 60.729,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-09-04",
- "total_cases": 5387.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 60.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5452.418,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.578,
- "total_deaths_per_million": 60.729,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-09-05",
- "total_cases": 5387.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 60.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5452.418,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.578,
- "total_deaths_per_million": 60.729,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-09-06",
- "total_cases": 5387.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 60.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5452.418,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.289,
- "total_deaths_per_million": 60.729,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 45.37
- },
- {
- "date": "2020-09-07",
- "total_cases": 5388.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 61.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 5453.43,
- "new_cases_per_million": 1.012,
- "new_cases_smoothed_per_million": 0.434,
- "total_deaths_per_million": 61.741,
- "new_deaths_per_million": 1.012,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 37.96
- },
- {
- "date": "2020-09-08",
- "total_cases": 5388.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 5453.43,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.145,
- "total_deaths_per_million": 61.741,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 37.96
- },
- {
- "date": "2020-09-09",
- "total_cases": 5388.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 5453.43,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.145,
- "total_deaths_per_million": 61.741,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 37.96
- },
- {
- "date": "2020-09-10",
- "total_cases": 5391.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 5456.467,
- "new_cases_per_million": 3.036,
- "new_cases_smoothed_per_million": 0.578,
- "total_deaths_per_million": 61.741,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 37.96
- },
- {
- "date": "2020-09-11",
- "total_cases": 5394.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 5459.503,
- "new_cases_per_million": 3.036,
- "new_cases_smoothed_per_million": 1.012,
- "total_deaths_per_million": 61.741,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 37.96
- },
- {
- "date": "2020-09-12",
- "total_cases": 5394.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 5459.503,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.012,
- "total_deaths_per_million": 61.741,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 37.96
- },
- {
- "date": "2020-09-13",
- "total_cases": 5394.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 5459.503,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.012,
- "total_deaths_per_million": 61.741,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.145,
- "stringency_index": 37.96
- },
- {
- "date": "2020-09-14",
- "total_cases": 5395.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5460.515,
- "new_cases_per_million": 1.012,
- "new_cases_smoothed_per_million": 1.012,
- "total_deaths_per_million": 61.741,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-09-15",
- "total_cases": 5396.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5461.527,
- "new_cases_per_million": 1.012,
- "new_cases_smoothed_per_million": 1.157,
- "total_deaths_per_million": 61.741,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-09-16",
- "total_cases": 5396.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5461.527,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.157,
- "total_deaths_per_million": 61.741,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-09-17",
- "total_cases": 5399.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5464.564,
- "new_cases_per_million": 3.036,
- "new_cases_smoothed_per_million": 1.157,
- "total_deaths_per_million": 61.741,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-09-18",
- "total_cases": 5401.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5466.588,
- "new_cases_per_million": 2.024,
- "new_cases_smoothed_per_million": 1.012,
- "total_deaths_per_million": 61.741,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-09-19",
- "total_cases": 5403.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5468.612,
- "new_cases_per_million": 2.024,
- "new_cases_smoothed_per_million": 1.301,
- "total_deaths_per_million": 61.741,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-09-20",
- "total_cases": 5403.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5468.612,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.301,
- "total_deaths_per_million": 61.741,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-09-21",
- "total_cases": 5403.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5468.612,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.157,
- "total_deaths_per_million": 61.741,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-09-22",
- "total_cases": 5404.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5469.625,
- "new_cases_per_million": 1.012,
- "new_cases_smoothed_per_million": 1.157,
- "total_deaths_per_million": 61.741,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-09-23",
- "total_cases": 5407.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5472.661,
- "new_cases_per_million": 3.036,
- "new_cases_smoothed_per_million": 1.591,
- "total_deaths_per_million": 61.741,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 37.96
- },
- {
- "date": "2020-09-24",
- "total_cases": 5407.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5472.661,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.157,
- "total_deaths_per_million": 61.741,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-25",
- "total_cases": 5407.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 61.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5472.661,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.868,
- "total_deaths_per_million": 61.741,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- }
- ]
- },
- "DMA": {
- "continent": "North America",
- "location": "Dominica",
- "population": 71991.0,
- "population_density": 98.567,
- "gdp_per_capita": 9673.367,
- "cardiovasc_death_rate": 227.376,
- "diabetes_prevalence": 11.62,
- "hospital_beds_per_thousand": 3.8,
- "life_expectancy": 75.0,
- "human_development_index": 0.715,
- "data": [
- {
- "date": "2020-03-23",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 13.891,
- "new_cases_per_million": 13.891,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 25.0
- },
- {
- "date": "2020-03-24",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 13.891,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 25.0
- },
- {
- "date": "2020-03-25",
- "total_cases": 2.0,
- "new_cases": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 27.781,
- "new_cases_per_million": 13.891,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 25.0
- },
- {
- "date": "2020-03-26",
- "total_cases": 7.0,
- "new_cases": 5.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 97.234,
- "new_cases_per_million": 69.453,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 25.0
- },
- {
- "date": "2020-03-27",
- "total_cases": 11.0,
- "new_cases": 4.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 152.797,
- "new_cases_per_million": 55.563,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 25.0
- },
- {
- "date": "2020-03-28",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 152.797,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-29",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 152.797,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 21.828,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-30",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 152.797,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 19.844,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-31",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 152.797,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 19.844,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 30.56
- },
- {
- "date": "2020-04-01",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 152.797,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 17.859,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-02",
- "total_cases": 12.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 166.688,
- "new_cases_per_million": 13.891,
- "new_cases_smoothed_per_million": 9.922,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-03",
- "total_cases": 12.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 166.688,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.984,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-04",
- "total_cases": 14.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 194.469,
- "new_cases_per_million": 27.781,
- "new_cases_smoothed_per_million": 5.953,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-05",
- "total_cases": 14.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 194.469,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.953,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-06",
- "total_cases": 14.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 194.469,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.953,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-07",
- "total_cases": 15.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 208.359,
- "new_cases_per_million": 13.891,
- "new_cases_smoothed_per_million": 7.938,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-08",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 208.359,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.938,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-09",
- "total_cases": 15.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 208.359,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.953,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-10",
- "total_cases": 16.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 13.891,
- "new_cases_smoothed_per_million": 7.938,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-11",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.969,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-12",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.969,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-13",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.969,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-14",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.984,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-15",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.984,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-16",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.984,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-17",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-18",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-19",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-20",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-21",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-22",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-23",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-24",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-25",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-26",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-27",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-28",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-29",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-04-30",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-05-01",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-05-02",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-05-03",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-05-04",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-05-05",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-05-06",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 79.63
- },
- {
- "date": "2020-05-07",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-08",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-09",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-10",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-11",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 75.93
- },
- {
- "date": "2020-05-12",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-13",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-14",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-15",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-16",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-17",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-18",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-19",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-20",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-21",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-22",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-23",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-24",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-25",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-26",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-27",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-28",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-29",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-30",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-05-31",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-01",
- "total_cases": 16.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 222.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-02",
- "total_cases": 18.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 27.781,
- "new_cases_smoothed_per_million": 3.969,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-03",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.969,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-04",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.969,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-05",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.969,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-06",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.969,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-07",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.969,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-08",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.969,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-09",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-10",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-11",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-12",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-13",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-14",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-15",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-16",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-17",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-18",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-19",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-20",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-21",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-22",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-23",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-24",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-25",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-26",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 72.22
- },
- {
- "date": "2020-06-27",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-06-28",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-06-29",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-06-30",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-07-01",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-07-02",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-07-03",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-07-04",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-07-05",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-07-06",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-07-07",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-07-08",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-07-09",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-07-10",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-07-11",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-07-12",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-07-13",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-07-14",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-07-15",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-07-16",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-07-17",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-07-18",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-07-19",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-07-20",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-07-21",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-07-22",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-07-23",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-07-24",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-07-25",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-07-26",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-07-27",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-07-28",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-07-29",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-07-30",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-07-31",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-08-01",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-08-02",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-08-03",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-08-04",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-08-05",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-08-06",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 44.44
- },
- {
- "date": "2020-08-07",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-08",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-09",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-10",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-11",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-12",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-13",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-14",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-15",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-16",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-17",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-18",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-19",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-20",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-21",
- "total_cases": 18.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 250.031,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-22",
- "total_cases": 19.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 263.922,
- "new_cases_per_million": 13.891,
- "new_cases_smoothed_per_million": 1.984,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-23",
- "total_cases": 19.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 263.922,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.984,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-24",
- "total_cases": 19.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 263.922,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.984,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-25",
- "total_cases": 20.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 277.813,
- "new_cases_per_million": 13.891,
- "new_cases_smoothed_per_million": 3.969,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-26",
- "total_cases": 20.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 277.813,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.969,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-27",
- "total_cases": 20.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 277.813,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.969,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-28",
- "total_cases": 20.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 277.813,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.969,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-29",
- "total_cases": 20.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 277.813,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.984,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-30",
- "total_cases": 20.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 277.813,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.984,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-08-31",
- "total_cases": 20.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 277.813,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 1.984,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-01",
- "total_cases": 20.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 277.813,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-02",
- "total_cases": 20.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 277.813,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-03",
- "total_cases": 20.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 277.813,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-04",
- "total_cases": 20.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 277.813,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-05",
- "total_cases": 20.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 277.813,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-06",
- "total_cases": 20.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 277.813,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-09-07",
- "total_cases": 20.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 277.813,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 25.0
- },
- {
- "date": "2020-09-08",
- "total_cases": 20.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 277.813,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 25.0
- },
- {
- "date": "2020-09-09",
- "total_cases": 20.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 277.813,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 25.0
- },
- {
- "date": "2020-09-10",
- "total_cases": 24.0,
- "new_cases": 4.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 333.375,
- "new_cases_per_million": 55.563,
- "new_cases_smoothed_per_million": 7.938,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 25.0
- },
- {
- "date": "2020-09-11",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 333.375,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.938,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 25.0
- },
- {
- "date": "2020-09-12",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 333.375,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.938,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 25.0
- },
- {
- "date": "2020-09-13",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 333.375,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.938,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 25.0
- },
- {
- "date": "2020-09-14",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 333.375,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.938,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 25.0
- },
- {
- "date": "2020-09-15",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 333.375,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.938,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 25.0
- },
- {
- "date": "2020-09-16",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 333.375,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.938,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 25.0
- },
- {
- "date": "2020-09-17",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 333.375,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 25.0
- },
- {
- "date": "2020-09-18",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 333.375,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-19",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 333.375,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-20",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 333.375,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-21",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 333.375,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-22",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 333.375,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-23",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 333.375,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-24",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 333.375,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- },
- {
- "date": "2020-09-25",
- "total_cases": 24.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 333.375,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0
- }
- ]
- },
- "DNK": {
- "continent": "Europe",
- "location": "Denmark",
- "population": 5792203.0,
- "population_density": 136.52,
- "median_age": 42.3,
- "aged_65_older": 19.677,
- "aged_70_older": 12.325,
- "gdp_per_capita": 46682.515,
- "extreme_poverty": 0.2,
- "cardiovasc_death_rate": 114.767,
- "diabetes_prevalence": 6.41,
- "female_smokers": 19.3,
- "male_smokers": 18.8,
- "hospital_beds_per_thousand": 2.5,
- "life_expectancy": 80.9,
- "human_development_index": 0.929,
- "data": [
- {
- "date": "2019-12-31",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-01-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-02",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-03",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-04",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-05",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-06",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-07",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-08",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-09",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-10",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-11",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-12",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-13",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-14",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-15",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-16",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-17",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-18",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-19",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-20",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-21",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-22",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-23",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-24",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-25",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-26",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-27",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1.0,
- "total_tests": 1.0,
- "total_tests_per_thousand": 0.0,
- "new_tests_per_thousand": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-28",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-29",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1.0,
- "total_tests": 2.0,
- "total_tests_per_thousand": 0.0,
- "new_tests_per_thousand": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-30",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-31",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-02",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1.0,
- "total_tests": 3.0,
- "total_tests_per_thousand": 0.001,
- "new_tests_per_thousand": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-03",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1.0,
- "total_tests": 4.0,
- "total_tests_per_thousand": 0.001,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 0.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-04",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 0.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-05",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1.0,
- "total_tests": 5.0,
- "total_tests_per_thousand": 0.001,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 0.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-06",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1.0,
- "total_tests": 6.0,
- "total_tests_per_thousand": 0.001,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 1.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-07",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1.0,
- "total_tests": 7.0,
- "total_tests_per_thousand": 0.001,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 1.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-08",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 1.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-09",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 1.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-10",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 1.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-11",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 1.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-12",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 2.0,
- "total_tests": 9.0,
- "total_tests_per_thousand": 0.002,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 1.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-13",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1.0,
- "total_tests": 10.0,
- "total_tests_per_thousand": 0.002,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 1.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-14",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1.0,
- "total_tests": 11.0,
- "total_tests_per_thousand": 0.002,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 1.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-15",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 1.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-16",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 1.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-17",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1.0,
- "total_tests": 12.0,
- "total_tests_per_thousand": 0.002,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 1.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-18",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 2.0,
- "total_tests": 14.0,
- "total_tests_per_thousand": 0.002,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 1.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-19",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 3.0,
- "total_tests": 17.0,
- "total_tests_per_thousand": 0.003,
- "new_tests_per_thousand": 0.001,
- "new_tests_smoothed": 1.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-20",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 2.0,
- "total_tests": 19.0,
- "total_tests_per_thousand": 0.003,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 1.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-21",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 1.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-22",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1.0,
- "total_tests": 20.0,
- "total_tests_per_thousand": 0.003,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 1.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-23",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests_smoothed": 1.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-24",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 1.0,
- "total_tests": 21.0,
- "total_tests_per_thousand": 0.004,
- "new_tests_per_thousand": 0.0,
- "new_tests_smoothed": 1.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-25",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 10.0,
- "total_tests": 31.0,
- "total_tests_per_thousand": 0.005,
- "new_tests_per_thousand": 0.002,
- "new_tests_smoothed": 2.0,
- "new_tests_smoothed_per_thousand": 0.0,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-26",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 31.0,
- "total_tests": 62.0,
- "total_tests_per_thousand": 0.011,
- "new_tests_per_thousand": 0.005,
- "new_tests_smoothed": 6.0,
- "new_tests_smoothed_per_thousand": 0.001,
- "positive_rate": 0.0,
- "tests_units": "tests performed",
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-27",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.173,
- "new_cases_per_million": 0.173,
- "new_cases_smoothed_per_million": 0.025,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 111.0,
- "total_tests": 173.0,
- "total_tests_per_thousand": 0.03,
- "new_tests_per_thousand": 0.019,
- "new_tests_smoothed": 22.0,
- "new_tests_smoothed_per_thousand": 0.004,
- "tests_per_case": 154.0,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-28",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.173,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.025,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 61.0,
- "total_tests": 234.0,
- "total_tests_per_thousand": 0.04,
- "new_tests_per_thousand": 0.011,
- "new_tests_smoothed": 31.0,
- "new_tests_smoothed_per_thousand": 0.005,
- "tests_per_case": 217.0,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-02-29",
- "total_cases": 2.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.345,
- "new_cases_per_million": 0.173,
- "new_cases_smoothed_per_million": 0.049,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 74.0,
- "total_tests": 308.0,
- "total_tests_per_thousand": 0.053,
- "new_tests_per_thousand": 0.013,
- "new_tests_smoothed": 41.0,
- "new_tests_smoothed_per_thousand": 0.007,
- "tests_per_case": 143.5,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-01",
- "total_cases": 3.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.518,
- "new_cases_per_million": 0.173,
- "new_cases_smoothed_per_million": 0.074,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 49.0,
- "total_tests": 357.0,
- "total_tests_per_thousand": 0.062,
- "new_tests_per_thousand": 0.008,
- "new_tests_smoothed": 48.0,
- "new_tests_smoothed_per_thousand": 0.008,
- "tests_per_case": 112.0,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-02",
- "total_cases": 4.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.691,
- "new_cases_per_million": 0.173,
- "new_cases_smoothed_per_million": 0.099,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 80.0,
- "total_tests": 437.0,
- "total_tests_per_thousand": 0.075,
- "new_tests_per_thousand": 0.014,
- "new_tests_smoothed": 59.0,
- "new_tests_smoothed_per_thousand": 0.01,
- "tests_per_case": 103.25,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-03",
- "total_cases": 5.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.863,
- "new_cases_per_million": 0.173,
- "new_cases_smoothed_per_million": 0.123,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 63.0,
- "total_tests": 500.0,
- "total_tests_per_thousand": 0.086,
- "new_tests_per_thousand": 0.011,
- "new_tests_smoothed": 67.0,
- "new_tests_smoothed_per_thousand": 0.012,
- "tests_per_case": 93.8,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 20.37
- },
- {
- "date": "2020-03-04",
- "total_cases": 8.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.381,
- "new_cases_per_million": 0.518,
- "new_cases_smoothed_per_million": 0.197,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 89.0,
- "total_tests": 589.0,
- "total_tests_per_thousand": 0.102,
- "new_tests_per_thousand": 0.015,
- "new_tests_smoothed": 75.0,
- "new_tests_smoothed_per_thousand": 0.013,
- "tests_per_case": 65.625,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 20.37
- },
- {
- "date": "2020-03-05",
- "total_cases": 10.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.726,
- "new_cases_per_million": 0.345,
- "new_cases_smoothed_per_million": 0.222,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 109.0,
- "total_tests": 698.0,
- "total_tests_per_thousand": 0.121,
- "new_tests_per_thousand": 0.019,
- "new_tests_smoothed": 75.0,
- "new_tests_smoothed_per_thousand": 0.013,
- "tests_per_case": 58.333,
- "positive_rate": 0.017,
- "tests_units": "tests performed",
- "stringency_index": 20.37
- },
- {
- "date": "2020-03-06",
- "total_cases": 20.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 2.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.453,
- "new_cases_per_million": 1.726,
- "new_cases_smoothed_per_million": 0.469,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 127.0,
- "total_tests": 825.0,
- "total_tests_per_thousand": 0.142,
- "new_tests_per_thousand": 0.022,
- "new_tests_smoothed": 84.0,
- "new_tests_smoothed_per_thousand": 0.015,
- "tests_per_case": 30.947,
- "positive_rate": 0.032,
- "tests_units": "tests performed",
- "stringency_index": 25.93
- },
- {
- "date": "2020-03-07",
- "total_cases": 23.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 3.971,
- "new_cases_per_million": 0.518,
- "new_cases_smoothed_per_million": 0.518,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 108.0,
- "total_tests": 933.0,
- "total_tests_per_thousand": 0.161,
- "new_tests_per_thousand": 0.019,
- "new_tests_smoothed": 89.0,
- "new_tests_smoothed_per_thousand": 0.015,
- "tests_per_case": 29.666999999999998,
- "positive_rate": 0.034,
- "tests_units": "tests performed",
- "stringency_index": 25.93
- },
- {
- "date": "2020-03-08",
- "total_cases": 31.0,
- "new_cases": 8.0,
- "new_cases_smoothed": 4.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 5.352,
- "new_cases_per_million": 1.381,
- "new_cases_smoothed_per_million": 0.691,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 229.0,
- "total_tests": 1162.0,
- "total_tests_per_thousand": 0.201,
- "new_tests_per_thousand": 0.04,
- "new_tests_smoothed": 115.0,
- "new_tests_smoothed_per_thousand": 0.02,
- "tests_per_case": 28.75,
- "positive_rate": 0.035,
- "tests_units": "tests performed",
- "stringency_index": 25.93
- },
- {
- "date": "2020-03-09",
- "total_cases": 38.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 4.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 6.561,
- "new_cases_per_million": 1.209,
- "new_cases_smoothed_per_million": 0.839,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 578.0,
- "total_tests": 1740.0,
- "total_tests_per_thousand": 0.3,
- "new_tests_per_thousand": 0.1,
- "new_tests_smoothed": 186.0,
- "new_tests_smoothed_per_thousand": 0.032,
- "tests_per_case": 38.294000000000004,
- "positive_rate": 0.026000000000000002,
- "tests_units": "tests performed",
- "stringency_index": 25.93
- },
- {
- "date": "2020-03-10",
- "total_cases": 113.0,
- "new_cases": 75.0,
- "new_cases_smoothed": 15.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 19.509,
- "new_cases_per_million": 12.948,
- "new_cases_smoothed_per_million": 2.664,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 806.0,
- "total_tests": 2546.0,
- "total_tests_per_thousand": 0.44,
- "new_tests_per_thousand": 0.139,
- "new_tests_smoothed": 292.0,
- "new_tests_smoothed_per_thousand": 0.05,
- "tests_per_case": 18.926,
- "positive_rate": 0.053,
- "tests_units": "tests performed",
- "stringency_index": 31.48
- },
- {
- "date": "2020-03-11",
- "total_cases": 264.0,
- "new_cases": 151.0,
- "new_cases_smoothed": 36.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 45.579,
- "new_cases_per_million": 26.07,
- "new_cases_smoothed_per_million": 6.314,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 883.0,
- "total_tests": 3429.0,
- "total_tests_per_thousand": 0.592,
- "new_tests_per_thousand": 0.152,
- "new_tests_smoothed": 406.0,
- "new_tests_smoothed_per_thousand": 0.07,
- "tests_per_case": 11.102,
- "positive_rate": 0.09,
- "tests_units": "tests performed",
- "stringency_index": 37.96
- },
- {
- "date": "2020-03-12",
- "total_cases": 516.0,
- "new_cases": 252.0,
- "new_cases_smoothed": 72.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 89.085,
- "new_cases_per_million": 43.507,
- "new_cases_smoothed_per_million": 12.48,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 676.0,
- "total_tests": 4105.0,
- "total_tests_per_thousand": 0.709,
- "new_tests_per_thousand": 0.117,
- "new_tests_smoothed": 487.0,
- "new_tests_smoothed_per_thousand": 0.084,
- "tests_per_case": 6.737,
- "positive_rate": 0.14800000000000002,
- "tests_units": "tests performed",
- "stringency_index": 37.96
- },
- {
- "date": "2020-03-13",
- "total_cases": 676.0,
- "new_cases": 160.0,
- "new_cases_smoothed": 93.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 116.709,
- "new_cases_per_million": 27.623,
- "new_cases_smoothed_per_million": 16.179,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 710.0,
- "total_tests": 4815.0,
- "total_tests_per_thousand": 0.831,
- "new_tests_per_thousand": 0.123,
- "new_tests_smoothed": 570.0,
- "new_tests_smoothed_per_thousand": 0.098,
- "tests_per_case": 6.082000000000001,
- "positive_rate": 0.16399999999999998,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-03-14",
- "total_cases": 804.0,
- "new_cases": 128.0,
- "new_cases_smoothed": 111.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 138.807,
- "new_cases_per_million": 22.099,
- "new_cases_smoothed_per_million": 19.262,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 583.0,
- "total_tests": 5398.0,
- "total_tests_per_thousand": 0.932,
- "new_tests_per_thousand": 0.101,
- "new_tests_smoothed": 638.0,
- "new_tests_smoothed_per_thousand": 0.11,
- "tests_per_case": 5.718,
- "positive_rate": 0.175,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-03-15",
- "total_cases": 827.0,
- "new_cases": 23.0,
- "new_cases_smoothed": 113.714,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 142.778,
- "new_cases_per_million": 3.971,
- "new_cases_smoothed_per_million": 19.632,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 723.0,
- "total_tests": 6121.0,
- "total_tests_per_thousand": 1.057,
- "new_tests_per_thousand": 0.125,
- "new_tests_smoothed": 708.0,
- "new_tests_smoothed_per_thousand": 0.122,
- "tests_per_case": 6.226,
- "positive_rate": 0.161,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-03-16",
- "total_cases": 875.0,
- "new_cases": 48.0,
- "new_cases_smoothed": 119.571,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 151.065,
- "new_cases_per_million": 8.287,
- "new_cases_smoothed_per_million": 20.644,
- "total_deaths_per_million": 0.173,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.025,
- "new_tests": 1016.0,
- "total_tests": 7137.0,
- "total_tests_per_thousand": 1.232,
- "new_tests_per_thousand": 0.175,
- "new_tests_smoothed": 771.0,
- "new_tests_smoothed_per_thousand": 0.133,
- "tests_per_case": 6.4479999999999995,
- "positive_rate": 0.155,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-03-17",
- "total_cases": 932.0,
- "new_cases": 57.0,
- "new_cases_smoothed": 117.0,
- "total_deaths": 1.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 160.906,
- "new_cases_per_million": 9.841,
- "new_cases_smoothed_per_million": 20.2,
- "total_deaths_per_million": 0.173,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.025,
- "new_tests": 948.0,
- "total_tests": 8085.0,
- "total_tests_per_thousand": 1.396,
- "new_tests_per_thousand": 0.164,
- "new_tests_smoothed": 791.0,
- "new_tests_smoothed_per_thousand": 0.137,
- "tests_per_case": 6.761,
- "positive_rate": 0.14800000000000002,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-03-18",
- "total_cases": 1024.0,
- "new_cases": 92.0,
- "new_cases_smoothed": 108.571,
- "total_deaths": 4.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 176.789,
- "new_cases_per_million": 15.883,
- "new_cases_smoothed_per_million": 18.744,
- "total_deaths_per_million": 0.691,
- "new_deaths_per_million": 0.518,
- "new_deaths_smoothed_per_million": 0.099,
- "new_tests": 1226.0,
- "total_tests": 9311.0,
- "total_tests_per_thousand": 1.608,
- "new_tests_per_thousand": 0.212,
- "new_tests_smoothed": 840.0,
- "new_tests_smoothed_per_thousand": 0.145,
- "tests_per_case": 7.737,
- "positive_rate": 0.129,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-03-19",
- "total_cases": 1115.0,
- "new_cases": 91.0,
- "new_cases_smoothed": 85.571,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 192.5,
- "new_cases_per_million": 15.711,
- "new_cases_smoothed_per_million": 14.774,
- "total_deaths_per_million": 0.691,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.099,
- "new_tests": 1848.0,
- "total_tests": 11159.0,
- "total_tests_per_thousand": 1.927,
- "new_tests_per_thousand": 0.319,
- "new_tests_smoothed": 1008.0,
- "new_tests_smoothed_per_thousand": 0.174,
- "tests_per_case": 11.78,
- "positive_rate": 0.085,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-03-20",
- "total_cases": 1151.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 67.857,
- "total_deaths": 6.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 198.715,
- "new_cases_per_million": 6.215,
- "new_cases_smoothed_per_million": 11.715,
- "total_deaths_per_million": 1.036,
- "new_deaths_per_million": 0.345,
- "new_deaths_smoothed_per_million": 0.148,
- "new_tests": 1179.0,
- "total_tests": 12338.0,
- "total_tests_per_thousand": 2.13,
- "new_tests_per_thousand": 0.204,
- "new_tests_smoothed": 1075.0,
- "new_tests_smoothed_per_thousand": 0.186,
- "tests_per_case": 15.842,
- "positive_rate": 0.063,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-03-21",
- "total_cases": 1255.0,
- "new_cases": 104.0,
- "new_cases_smoothed": 64.429,
- "total_deaths": 9.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.286,
- "total_cases_per_million": 216.671,
- "new_cases_per_million": 17.955,
- "new_cases_smoothed_per_million": 11.123,
- "total_deaths_per_million": 1.554,
- "new_deaths_per_million": 0.518,
- "new_deaths_smoothed_per_million": 0.222,
- "new_tests": 602.0,
- "total_tests": 12940.0,
- "total_tests_per_thousand": 2.234,
- "new_tests_per_thousand": 0.104,
- "new_tests_smoothed": 1077.0,
- "new_tests_smoothed_per_thousand": 0.186,
- "tests_per_case": 16.715999999999998,
- "positive_rate": 0.06,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-03-22",
- "total_cases": 1326.0,
- "new_cases": 71.0,
- "new_cases_smoothed": 71.286,
- "total_deaths": 13.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 228.928,
- "new_cases_per_million": 12.258,
- "new_cases_smoothed_per_million": 12.307,
- "total_deaths_per_million": 2.244,
- "new_deaths_per_million": 0.691,
- "new_deaths_smoothed_per_million": 0.321,
- "new_tests": 533.0,
- "total_tests": 13473.0,
- "total_tests_per_thousand": 2.326,
- "new_tests_per_thousand": 0.092,
- "new_tests_smoothed": 1050.0,
- "new_tests_smoothed_per_thousand": 0.181,
- "tests_per_case": 14.729000000000001,
- "positive_rate": 0.068,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-03-23",
- "total_cases": 1395.0,
- "new_cases": 69.0,
- "new_cases_smoothed": 74.286,
- "total_deaths": 13.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 240.841,
- "new_cases_per_million": 11.913,
- "new_cases_smoothed_per_million": 12.825,
- "total_deaths_per_million": 2.244,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.296,
- "new_tests": 1125.0,
- "total_tests": 14598.0,
- "total_tests_per_thousand": 2.52,
- "new_tests_per_thousand": 0.194,
- "new_tests_smoothed": 1066.0,
- "new_tests_smoothed_per_thousand": 0.184,
- "tests_per_case": 14.35,
- "positive_rate": 0.07,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-03-24",
- "total_cases": 1460.0,
- "new_cases": 65.0,
- "new_cases_smoothed": 75.429,
- "total_deaths": 24.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 252.063,
- "new_cases_per_million": 11.222,
- "new_cases_smoothed_per_million": 13.022,
- "total_deaths_per_million": 4.144,
- "new_deaths_per_million": 1.899,
- "new_deaths_smoothed_per_million": 0.567,
- "new_tests": 1123.0,
- "total_tests": 15721.0,
- "total_tests_per_thousand": 2.714,
- "new_tests_per_thousand": 0.194,
- "new_tests_smoothed": 1091.0,
- "new_tests_smoothed_per_thousand": 0.188,
- "tests_per_case": 14.464,
- "positive_rate": 0.069,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-03-25",
- "total_cases": 1591.0,
- "new_cases": 131.0,
- "new_cases_smoothed": 81.0,
- "total_deaths": 32.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 274.68,
- "new_cases_per_million": 22.617,
- "new_cases_smoothed_per_million": 13.984,
- "total_deaths_per_million": 5.525,
- "new_deaths_per_million": 1.381,
- "new_deaths_smoothed_per_million": 0.691,
- "new_tests": 1372.0,
- "total_tests": 17093.0,
- "total_tests_per_thousand": 2.951,
- "new_tests_per_thousand": 0.237,
- "new_tests_smoothed": 1112.0,
- "new_tests_smoothed_per_thousand": 0.192,
- "tests_per_case": 13.728,
- "positive_rate": 0.073,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-03-26",
- "total_cases": 1724.0,
- "new_cases": 133.0,
- "new_cases_smoothed": 87.0,
- "total_deaths": 34.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 297.642,
- "new_cases_per_million": 22.962,
- "new_cases_smoothed_per_million": 15.02,
- "total_deaths_per_million": 5.87,
- "new_deaths_per_million": 0.345,
- "new_deaths_smoothed_per_million": 0.74,
- "new_tests": 1611.0,
- "total_tests": 18704.0,
- "total_tests_per_thousand": 3.229,
- "new_tests_per_thousand": 0.278,
- "new_tests_smoothed": 1078.0,
- "new_tests_smoothed_per_thousand": 0.186,
- "tests_per_case": 12.390999999999998,
- "positive_rate": 0.081,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-03-27",
- "total_cases": 1877.0,
- "new_cases": 153.0,
- "new_cases_smoothed": 103.714,
- "total_deaths": 41.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 324.056,
- "new_cases_per_million": 26.415,
- "new_cases_smoothed_per_million": 17.906,
- "total_deaths_per_million": 7.078,
- "new_deaths_per_million": 1.209,
- "new_deaths_smoothed_per_million": 0.863,
- "new_tests": 2110.0,
- "total_tests": 20814.0,
- "total_tests_per_thousand": 3.593,
- "new_tests_per_thousand": 0.364,
- "new_tests_smoothed": 1211.0,
- "new_tests_smoothed_per_thousand": 0.209,
- "tests_per_case": 11.675999999999998,
- "positive_rate": 0.086,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-03-28",
- "total_cases": 2046.0,
- "new_cases": 169.0,
- "new_cases_smoothed": 113.0,
- "total_deaths": 52.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 6.143,
- "total_cases_per_million": 353.233,
- "new_cases_per_million": 29.177,
- "new_cases_smoothed_per_million": 19.509,
- "total_deaths_per_million": 8.978,
- "new_deaths_per_million": 1.899,
- "new_deaths_smoothed_per_million": 1.061,
- "new_tests": 1383.0,
- "total_tests": 22197.0,
- "total_tests_per_thousand": 3.832,
- "new_tests_per_thousand": 0.239,
- "new_tests_smoothed": 1322.0,
- "new_tests_smoothed_per_thousand": 0.228,
- "tests_per_case": 11.699000000000002,
- "positive_rate": 0.085,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-03-29",
- "total_cases": 2201.0,
- "new_cases": 155.0,
- "new_cases_smoothed": 125.0,
- "total_deaths": 65.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 7.429,
- "total_cases_per_million": 379.994,
- "new_cases_per_million": 26.76,
- "new_cases_smoothed_per_million": 21.581,
- "total_deaths_per_million": 11.222,
- "new_deaths_per_million": 2.244,
- "new_deaths_smoothed_per_million": 1.283,
- "new_tests": 1301.0,
- "total_tests": 23498.0,
- "total_tests_per_thousand": 4.057,
- "new_tests_per_thousand": 0.225,
- "new_tests_smoothed": 1432.0,
- "new_tests_smoothed_per_thousand": 0.247,
- "tests_per_case": 11.456,
- "positive_rate": 0.087,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-03-30",
- "total_cases": 2395.0,
- "new_cases": 194.0,
- "new_cases_smoothed": 142.857,
- "total_deaths": 72.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 8.429,
- "total_cases_per_million": 413.487,
- "new_cases_per_million": 33.493,
- "new_cases_smoothed_per_million": 24.664,
- "total_deaths_per_million": 12.431,
- "new_deaths_per_million": 1.209,
- "new_deaths_smoothed_per_million": 1.455,
- "new_tests": 3218.0,
- "total_tests": 26716.0,
- "total_tests_per_thousand": 4.612,
- "new_tests_per_thousand": 0.556,
- "new_tests_smoothed": 1731.0,
- "new_tests_smoothed_per_thousand": 0.299,
- "tests_per_case": 12.117,
- "positive_rate": 0.083,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-03-31",
- "total_cases": 2577.0,
- "new_cases": 182.0,
- "new_cases_smoothed": 159.571,
- "total_deaths": 77.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 7.571,
- "total_cases_per_million": 444.908,
- "new_cases_per_million": 31.422,
- "new_cases_smoothed_per_million": 27.549,
- "total_deaths_per_million": 13.294,
- "new_deaths_per_million": 0.863,
- "new_deaths_smoothed_per_million": 1.307,
- "new_tests": 3210.0,
- "total_tests": 29926.0,
- "total_tests_per_thousand": 5.167,
- "new_tests_per_thousand": 0.554,
- "new_tests_smoothed": 2029.0,
- "new_tests_smoothed_per_thousand": 0.35,
- "tests_per_case": 12.715,
- "positive_rate": 0.079,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-04-01",
- "total_cases": 2860.0,
- "new_cases": 283.0,
- "new_cases_smoothed": 181.286,
- "total_deaths": 90.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 8.286,
- "total_cases_per_million": 493.767,
- "new_cases_per_million": 48.859,
- "new_cases_smoothed_per_million": 31.298,
- "total_deaths_per_million": 15.538,
- "new_deaths_per_million": 2.244,
- "new_deaths_smoothed_per_million": 1.43,
- "new_tests": 3557.0,
- "total_tests": 33483.0,
- "total_tests_per_thousand": 5.781,
- "new_tests_per_thousand": 0.614,
- "new_tests_smoothed": 2341.0,
- "new_tests_smoothed_per_thousand": 0.404,
- "tests_per_case": 12.913,
- "positive_rate": 0.077,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-04-02",
- "total_cases": 3107.0,
- "new_cases": 247.0,
- "new_cases_smoothed": 197.571,
- "total_deaths": 104.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 10.0,
- "total_cases_per_million": 536.411,
- "new_cases_per_million": 42.644,
- "new_cases_smoothed_per_million": 34.11,
- "total_deaths_per_million": 17.955,
- "new_deaths_per_million": 2.417,
- "new_deaths_smoothed_per_million": 1.726,
- "new_tests": 5752.0,
- "total_tests": 39235.0,
- "total_tests_per_thousand": 6.774,
- "new_tests_per_thousand": 0.993,
- "new_tests_smoothed": 2933.0,
- "new_tests_smoothed_per_thousand": 0.506,
- "tests_per_case": 14.845,
- "positive_rate": 0.067,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-04-03",
- "total_cases": 3386.0,
- "new_cases": 279.0,
- "new_cases_smoothed": 215.571,
- "total_deaths": 123.0,
- "new_deaths": 19.0,
- "new_deaths_smoothed": 11.714,
- "total_cases_per_million": 584.579,
- "new_cases_per_million": 48.168,
- "new_cases_smoothed_per_million": 37.218,
- "total_deaths_per_million": 21.235,
- "new_deaths_per_million": 3.28,
- "new_deaths_smoothed_per_million": 2.022,
- "new_tests": 6617.0,
- "total_tests": 45852.0,
- "total_tests_per_thousand": 7.916,
- "new_tests_per_thousand": 1.142,
- "new_tests_smoothed": 3577.0,
- "new_tests_smoothed_per_thousand": 0.618,
- "tests_per_case": 16.593,
- "positive_rate": 0.06,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-04-04",
- "total_cases": 3757.0,
- "new_cases": 371.0,
- "new_cases_smoothed": 244.429,
- "total_deaths": 139.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 12.429,
- "total_cases_per_million": 648.631,
- "new_cases_per_million": 64.052,
- "new_cases_smoothed_per_million": 42.2,
- "total_deaths_per_million": 23.998,
- "new_deaths_per_million": 2.762,
- "new_deaths_smoothed_per_million": 2.146,
- "new_tests": 3697.0,
- "total_tests": 49549.0,
- "total_tests_per_thousand": 8.554,
- "new_tests_per_thousand": 0.638,
- "new_tests_smoothed": 3907.0,
- "new_tests_smoothed_per_thousand": 0.675,
- "tests_per_case": 15.984000000000002,
- "positive_rate": 0.063,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-04-05",
- "total_cases": 4077.0,
- "new_cases": 320.0,
- "new_cases_smoothed": 268.0,
- "total_deaths": 161.0,
- "new_deaths": 22.0,
- "new_deaths_smoothed": 13.714,
- "total_cases_per_million": 703.877,
- "new_cases_per_million": 55.247,
- "new_cases_smoothed_per_million": 46.269,
- "total_deaths_per_million": 27.796,
- "new_deaths_per_million": 3.798,
- "new_deaths_smoothed_per_million": 2.368,
- "new_tests": 2213.0,
- "total_tests": 51762.0,
- "total_tests_per_thousand": 8.936,
- "new_tests_per_thousand": 0.382,
- "new_tests_smoothed": 4038.0,
- "new_tests_smoothed_per_thousand": 0.697,
- "tests_per_case": 15.067,
- "positive_rate": 0.066,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-04-06",
- "total_cases": 4369.0,
- "new_cases": 292.0,
- "new_cases_smoothed": 282.0,
- "total_deaths": 179.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 15.286,
- "total_cases_per_million": 754.29,
- "new_cases_per_million": 50.413,
- "new_cases_smoothed_per_million": 48.686,
- "total_deaths_per_million": 30.904,
- "new_deaths_per_million": 3.108,
- "new_deaths_smoothed_per_million": 2.639,
- "new_tests": 6569.0,
- "total_tests": 58331.0,
- "total_tests_per_thousand": 10.071,
- "new_tests_per_thousand": 1.134,
- "new_tests_smoothed": 4516.0,
- "new_tests_smoothed_per_thousand": 0.78,
- "tests_per_case": 16.014,
- "positive_rate": 0.062,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-04-07",
- "total_cases": 4681.0,
- "new_cases": 312.0,
- "new_cases_smoothed": 300.571,
- "total_deaths": 187.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 15.714,
- "total_cases_per_million": 808.155,
- "new_cases_per_million": 53.866,
- "new_cases_smoothed_per_million": 51.892,
- "total_deaths_per_million": 32.285,
- "new_deaths_per_million": 1.381,
- "new_deaths_smoothed_per_million": 2.713,
- "new_tests": 6384.0,
- "total_tests": 64715.0,
- "total_tests_per_thousand": 11.173,
- "new_tests_per_thousand": 1.102,
- "new_tests_smoothed": 4970.0,
- "new_tests_smoothed_per_thousand": 0.858,
- "tests_per_case": 16.535,
- "positive_rate": 0.06,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-04-08",
- "total_cases": 5071.0,
- "new_cases": 390.0,
- "new_cases_smoothed": 315.857,
- "total_deaths": 203.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 16.143,
- "total_cases_per_million": 875.487,
- "new_cases_per_million": 67.332,
- "new_cases_smoothed_per_million": 54.531,
- "total_deaths_per_million": 35.047,
- "new_deaths_per_million": 2.762,
- "new_deaths_smoothed_per_million": 2.787,
- "new_tests": 5632.0,
- "total_tests": 70347.0,
- "total_tests_per_thousand": 12.145,
- "new_tests_per_thousand": 0.972,
- "new_tests_smoothed": 5266.0,
- "new_tests_smoothed_per_thousand": 0.909,
- "tests_per_case": 16.672,
- "positive_rate": 0.06,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-04-09",
- "total_cases": 5402.0,
- "new_cases": 331.0,
- "new_cases_smoothed": 327.857,
- "total_deaths": 218.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 16.286,
- "total_cases_per_million": 932.633,
- "new_cases_per_million": 57.146,
- "new_cases_smoothed_per_million": 56.603,
- "total_deaths_per_million": 37.637,
- "new_deaths_per_million": 2.59,
- "new_deaths_smoothed_per_million": 2.812,
- "new_tests": 2558.0,
- "total_tests": 72905.0,
- "total_tests_per_thousand": 12.587,
- "new_tests_per_thousand": 0.442,
- "new_tests_smoothed": 4810.0,
- "new_tests_smoothed_per_thousand": 0.83,
- "tests_per_case": 14.671,
- "positive_rate": 0.068,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-04-10",
- "total_cases": 5635.0,
- "new_cases": 233.0,
- "new_cases_smoothed": 321.286,
- "total_deaths": 237.0,
- "new_deaths": 19.0,
- "new_deaths_smoothed": 16.286,
- "total_cases_per_million": 972.86,
- "new_cases_per_million": 40.226,
- "new_cases_smoothed_per_million": 55.469,
- "total_deaths_per_million": 40.917,
- "new_deaths_per_million": 3.28,
- "new_deaths_smoothed_per_million": 2.812,
- "new_tests": 2326.0,
- "total_tests": 75231.0,
- "total_tests_per_thousand": 12.988,
- "new_tests_per_thousand": 0.402,
- "new_tests_smoothed": 4197.0,
- "new_tests_smoothed_per_thousand": 0.725,
- "tests_per_case": 13.062999999999999,
- "positive_rate": 0.077,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-04-11",
- "total_cases": 5819.0,
- "new_cases": 184.0,
- "new_cases_smoothed": 294.571,
- "total_deaths": 247.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 15.429,
- "total_cases_per_million": 1004.626,
- "new_cases_per_million": 31.767,
- "new_cases_smoothed_per_million": 50.857,
- "total_deaths_per_million": 42.644,
- "new_deaths_per_million": 1.726,
- "new_deaths_smoothed_per_million": 2.664,
- "new_tests": 2229.0,
- "total_tests": 77460.0,
- "total_tests_per_thousand": 13.373,
- "new_tests_per_thousand": 0.385,
- "new_tests_smoothed": 3987.0,
- "new_tests_smoothed_per_thousand": 0.688,
- "tests_per_case": 13.535,
- "positive_rate": 0.07400000000000001,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-04-12",
- "total_cases": 5996.0,
- "new_cases": 177.0,
- "new_cases_smoothed": 274.143,
- "total_deaths": 260.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 14.143,
- "total_cases_per_million": 1035.185,
- "new_cases_per_million": 30.558,
- "new_cases_smoothed_per_million": 47.33,
- "total_deaths_per_million": 44.888,
- "new_deaths_per_million": 2.244,
- "new_deaths_smoothed_per_million": 2.442,
- "new_tests": 2143.0,
- "total_tests": 79603.0,
- "total_tests_per_thousand": 13.743,
- "new_tests_per_thousand": 0.37,
- "new_tests_smoothed": 3977.0,
- "new_tests_smoothed_per_thousand": 0.687,
- "tests_per_case": 14.507,
- "positive_rate": 0.069,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-04-13",
- "total_cases": 6174.0,
- "new_cases": 178.0,
- "new_cases_smoothed": 257.857,
- "total_deaths": 273.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 13.429,
- "total_cases_per_million": 1065.916,
- "new_cases_per_million": 30.731,
- "new_cases_smoothed_per_million": 44.518,
- "total_deaths_per_million": 47.132,
- "new_deaths_per_million": 2.244,
- "new_deaths_smoothed_per_million": 2.318,
- "new_tests": 2149.0,
- "total_tests": 81752.0,
- "total_tests_per_thousand": 14.114,
- "new_tests_per_thousand": 0.371,
- "new_tests_smoothed": 3346.0,
- "new_tests_smoothed_per_thousand": 0.578,
- "tests_per_case": 12.975999999999999,
- "positive_rate": 0.077,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-04-14",
- "total_cases": 6318.0,
- "new_cases": 144.0,
- "new_cases_smoothed": 233.857,
- "total_deaths": 285.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 14.0,
- "total_cases_per_million": 1090.777,
- "new_cases_per_million": 24.861,
- "new_cases_smoothed_per_million": 40.374,
- "total_deaths_per_million": 49.204,
- "new_deaths_per_million": 2.072,
- "new_deaths_smoothed_per_million": 2.417,
- "new_tests": 6219.0,
- "total_tests": 87971.0,
- "total_tests_per_thousand": 15.188,
- "new_tests_per_thousand": 1.074,
- "new_tests_smoothed": 3322.0,
- "new_tests_smoothed_per_thousand": 0.574,
- "tests_per_case": 14.205,
- "positive_rate": 0.07,
- "tests_units": "tests performed",
- "stringency_index": 72.22
- },
- {
- "date": "2020-04-15",
- "total_cases": 6511.0,
- "new_cases": 193.0,
- "new_cases_smoothed": 205.714,
- "total_deaths": 299.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 13.714,
- "total_cases_per_million": 1124.097,
- "new_cases_per_million": 33.321,
- "new_cases_smoothed_per_million": 35.516,
- "total_deaths_per_million": 51.621,
- "new_deaths_per_million": 2.417,
- "new_deaths_smoothed_per_million": 2.368,
- "new_tests": 5634.0,
- "total_tests": 93605.0,
- "total_tests_per_thousand": 16.161,
- "new_tests_per_thousand": 0.973,
- "new_tests_smoothed": 3323.0,
- "new_tests_smoothed_per_thousand": 0.574,
- "tests_per_case": 16.153,
- "positive_rate": 0.062,
- "tests_units": "tests performed",
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-16",
- "total_cases": 6681.0,
- "new_cases": 170.0,
- "new_cases_smoothed": 182.714,
- "total_deaths": 309.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 13.0,
- "total_cases_per_million": 1153.447,
- "new_cases_per_million": 29.35,
- "new_cases_smoothed_per_million": 31.545,
- "total_deaths_per_million": 53.348,
- "new_deaths_per_million": 1.726,
- "new_deaths_smoothed_per_million": 2.244,
- "new_tests": 5332.0,
- "total_tests": 98937.0,
- "total_tests_per_thousand": 17.081,
- "new_tests_per_thousand": 0.921,
- "new_tests_smoothed": 3719.0,
- "new_tests_smoothed_per_thousand": 0.642,
- "tests_per_case": 20.354,
- "positive_rate": 0.049,
- "tests_units": "tests performed",
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-17",
- "total_cases": 6879.0,
- "new_cases": 198.0,
- "new_cases_smoothed": 177.714,
- "total_deaths": 321.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 12.0,
- "total_cases_per_million": 1187.631,
- "new_cases_per_million": 34.184,
- "new_cases_smoothed_per_million": 30.682,
- "total_deaths_per_million": 55.419,
- "new_deaths_per_million": 2.072,
- "new_deaths_smoothed_per_million": 2.072,
- "new_tests": 4803.0,
- "total_tests": 103740.0,
- "total_tests_per_thousand": 17.91,
- "new_tests_per_thousand": 0.829,
- "new_tests_smoothed": 4073.0,
- "new_tests_smoothed_per_thousand": 0.703,
- "tests_per_case": 22.919,
- "positive_rate": 0.044000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-18",
- "total_cases": 7073.0,
- "new_cases": 194.0,
- "new_cases_smoothed": 179.143,
- "total_deaths": 336.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 12.714,
- "total_cases_per_million": 1221.124,
- "new_cases_per_million": 33.493,
- "new_cases_smoothed_per_million": 30.928,
- "total_deaths_per_million": 58.009,
- "new_deaths_per_million": 2.59,
- "new_deaths_smoothed_per_million": 2.195,
- "new_tests": 2302.0,
- "total_tests": 106042.0,
- "total_tests_per_thousand": 18.308,
- "new_tests_per_thousand": 0.397,
- "new_tests_smoothed": 4083.0,
- "new_tests_smoothed_per_thousand": 0.705,
- "tests_per_case": 22.791999999999998,
- "positive_rate": 0.044000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-19",
- "total_cases": 7242.0,
- "new_cases": 169.0,
- "new_cases_smoothed": 178.0,
- "total_deaths": 346.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 12.286,
- "total_cases_per_million": 1250.301,
- "new_cases_per_million": 29.177,
- "new_cases_smoothed_per_million": 30.731,
- "total_deaths_per_million": 59.735,
- "new_deaths_per_million": 1.726,
- "new_deaths_smoothed_per_million": 2.121,
- "new_tests": 1886.0,
- "total_tests": 107928.0,
- "total_tests_per_thousand": 18.633,
- "new_tests_per_thousand": 0.326,
- "new_tests_smoothed": 4046.0,
- "new_tests_smoothed_per_thousand": 0.699,
- "tests_per_case": 22.73,
- "positive_rate": 0.044000000000000004,
- "tests_units": "tests performed",
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-20",
- "total_cases": 7384.0,
- "new_cases": 142.0,
- "new_cases_smoothed": 172.857,
- "total_deaths": 355.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 11.714,
- "total_cases_per_million": 1274.817,
- "new_cases_per_million": 24.516,
- "new_cases_smoothed_per_million": 29.843,
- "total_deaths_per_million": 61.289,
- "new_deaths_per_million": 1.554,
- "new_deaths_smoothed_per_million": 2.022,
- "new_tests": 6670.0,
- "total_tests": 114598.0,
- "total_tests_per_thousand": 19.785,
- "new_tests_per_thousand": 1.152,
- "new_tests_smoothed": 4692.0,
- "new_tests_smoothed_per_thousand": 0.81,
- "tests_per_case": 27.144000000000002,
- "positive_rate": 0.037000000000000005,
- "tests_units": "tests performed",
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-21",
- "total_cases": 7515.0,
- "new_cases": 131.0,
- "new_cases_smoothed": 171.0,
- "total_deaths": 364.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 11.286,
- "total_cases_per_million": 1297.434,
- "new_cases_per_million": 22.617,
- "new_cases_smoothed_per_million": 29.522,
- "total_deaths_per_million": 62.843,
- "new_deaths_per_million": 1.554,
- "new_deaths_smoothed_per_million": 1.948,
- "new_tests": 9775.0,
- "total_tests": 124373.0,
- "total_tests_per_thousand": 21.472,
- "new_tests_per_thousand": 1.688,
- "new_tests_smoothed": 5200.0,
- "new_tests_smoothed_per_thousand": 0.898,
- "tests_per_case": 30.409000000000002,
- "positive_rate": 0.033,
- "tests_units": "tests performed",
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-22",
- "total_cases": 7695.0,
- "new_cases": 180.0,
- "new_cases_smoothed": 169.143,
- "total_deaths": 370.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 10.143,
- "total_cases_per_million": 1328.51,
- "new_cases_per_million": 31.076,
- "new_cases_smoothed_per_million": 29.202,
- "total_deaths_per_million": 63.879,
- "new_deaths_per_million": 1.036,
- "new_deaths_smoothed_per_million": 1.751,
- "new_tests": 11605.0,
- "total_tests": 135978.0,
- "total_tests_per_thousand": 23.476,
- "new_tests_per_thousand": 2.004,
- "new_tests_smoothed": 6053.0,
- "new_tests_smoothed_per_thousand": 1.045,
- "tests_per_case": 35.786,
- "positive_rate": 0.027999999999999997,
- "tests_units": "tests performed",
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-23",
- "total_cases": 7912.0,
- "new_cases": 217.0,
- "new_cases_smoothed": 175.857,
- "total_deaths": 384.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 10.714,
- "total_cases_per_million": 1365.974,
- "new_cases_per_million": 37.464,
- "new_cases_smoothed_per_million": 30.361,
- "total_deaths_per_million": 66.296,
- "new_deaths_per_million": 2.417,
- "new_deaths_smoothed_per_million": 1.85,
- "new_tests": 12486.0,
- "total_tests": 148464.0,
- "total_tests_per_thousand": 25.632,
- "new_tests_per_thousand": 2.156,
- "new_tests_smoothed": 7075.0,
- "new_tests_smoothed_per_thousand": 1.221,
- "tests_per_case": 40.232,
- "positive_rate": 0.025,
- "tests_units": "tests performed",
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-24",
- "total_cases": 8073.0,
- "new_cases": 161.0,
- "new_cases_smoothed": 170.571,
- "total_deaths": 394.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 10.429,
- "total_cases_per_million": 1393.77,
- "new_cases_per_million": 27.796,
- "new_cases_smoothed_per_million": 29.448,
- "total_deaths_per_million": 68.022,
- "new_deaths_per_million": 1.726,
- "new_deaths_smoothed_per_million": 1.8,
- "new_tests": 14819.0,
- "total_tests": 163283.0,
- "total_tests_per_thousand": 28.19,
- "new_tests_per_thousand": 2.558,
- "new_tests_smoothed": 8506.0,
- "new_tests_smoothed_per_thousand": 1.469,
- "tests_per_case": 49.868,
- "positive_rate": 0.02,
- "tests_units": "tests performed",
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-25",
- "total_cases": 8210.0,
- "new_cases": 137.0,
- "new_cases_smoothed": 162.429,
- "total_deaths": 403.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 9.571,
- "total_cases_per_million": 1417.423,
- "new_cases_per_million": 23.652,
- "new_cases_smoothed_per_million": 28.043,
- "total_deaths_per_million": 69.576,
- "new_deaths_per_million": 1.554,
- "new_deaths_smoothed_per_million": 1.652,
- "new_tests": 12432.0,
- "total_tests": 175715.0,
- "total_tests_per_thousand": 30.336,
- "new_tests_per_thousand": 2.146,
- "new_tests_smoothed": 9953.0,
- "new_tests_smoothed_per_thousand": 1.718,
- "tests_per_case": 61.276,
- "positive_rate": 0.016,
- "tests_units": "tests performed",
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-26",
- "total_cases": 8445.0,
- "new_cases": 235.0,
- "new_cases_smoothed": 171.857,
- "total_deaths": 418.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 10.286,
- "total_cases_per_million": 1457.994,
- "new_cases_per_million": 40.572,
- "new_cases_smoothed_per_million": 29.67,
- "total_deaths_per_million": 72.166,
- "new_deaths_per_million": 2.59,
- "new_deaths_smoothed_per_million": 1.776,
- "new_tests": 10327.0,
- "total_tests": 186042.0,
- "total_tests_per_thousand": 32.119,
- "new_tests_per_thousand": 1.783,
- "new_tests_smoothed": 11159.0,
- "new_tests_smoothed_per_thousand": 1.927,
- "tests_per_case": 64.932,
- "positive_rate": 0.015,
- "tests_units": "tests performed",
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-27",
- "total_cases": 8575.0,
- "new_cases": 130.0,
- "new_cases_smoothed": 170.143,
- "total_deaths": 422.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 9.571,
- "total_cases_per_million": 1480.438,
- "new_cases_per_million": 22.444,
- "new_cases_smoothed_per_million": 29.374,
- "total_deaths_per_million": 72.857,
- "new_deaths_per_million": 0.691,
- "new_deaths_smoothed_per_million": 1.652,
- "new_tests": 17351.0,
- "total_tests": 203393.0,
- "total_tests_per_thousand": 35.115,
- "new_tests_per_thousand": 2.996,
- "new_tests_smoothed": 12685.0,
- "new_tests_smoothed_per_thousand": 2.19,
- "tests_per_case": 74.555,
- "positive_rate": 0.013000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-28",
- "total_cases": 8698.0,
- "new_cases": 123.0,
- "new_cases_smoothed": 169.0,
- "total_deaths": 427.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 9.0,
- "total_cases_per_million": 1501.674,
- "new_cases_per_million": 21.235,
- "new_cases_smoothed_per_million": 29.177,
- "total_deaths_per_million": 73.72,
- "new_deaths_per_million": 0.863,
- "new_deaths_smoothed_per_million": 1.554,
- "new_tests": 16267.0,
- "total_tests": 219660.0,
- "total_tests_per_thousand": 37.923,
- "new_tests_per_thousand": 2.808,
- "new_tests_smoothed": 13612.0,
- "new_tests_smoothed_per_thousand": 2.35,
- "tests_per_case": 80.544,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-29",
- "total_cases": 8851.0,
- "new_cases": 153.0,
- "new_cases_smoothed": 165.143,
- "total_deaths": 434.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 9.143,
- "total_cases_per_million": 1528.089,
- "new_cases_per_million": 26.415,
- "new_cases_smoothed_per_million": 28.511,
- "total_deaths_per_million": 74.928,
- "new_deaths_per_million": 1.209,
- "new_deaths_smoothed_per_million": 1.578,
- "new_tests": 16077.0,
- "total_tests": 235737.0,
- "total_tests_per_thousand": 40.699,
- "new_tests_per_thousand": 2.776,
- "new_tests_smoothed": 14251.0,
- "new_tests_smoothed_per_thousand": 2.46,
- "tests_per_case": 86.295,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 68.52
- },
- {
- "date": "2020-04-30",
- "total_cases": 9008.0,
- "new_cases": 157.0,
- "new_cases_smoothed": 156.571,
- "total_deaths": 443.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 8.429,
- "total_cases_per_million": 1555.194,
- "new_cases_per_million": 27.105,
- "new_cases_smoothed_per_million": 27.031,
- "total_deaths_per_million": 76.482,
- "new_deaths_per_million": 1.554,
- "new_deaths_smoothed_per_million": 1.455,
- "new_tests": 15951.0,
- "total_tests": 251688.0,
- "total_tests_per_thousand": 43.453,
- "new_tests_per_thousand": 2.754,
- "new_tests_smoothed": 14746.0,
- "new_tests_smoothed_per_thousand": 2.546,
- "tests_per_case": 94.181,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 68.52
- },
- {
- "date": "2020-05-01",
- "total_cases": 9158.0,
- "new_cases": 150.0,
- "new_cases_smoothed": 155.0,
- "total_deaths": 452.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 8.286,
- "total_cases_per_million": 1581.091,
- "new_cases_per_million": 25.897,
- "new_cases_smoothed_per_million": 26.76,
- "total_deaths_per_million": 78.036,
- "new_deaths_per_million": 1.554,
- "new_deaths_smoothed_per_million": 1.43,
- "new_tests": 14445.0,
- "total_tests": 266133.0,
- "total_tests_per_thousand": 45.947,
- "new_tests_per_thousand": 2.494,
- "new_tests_smoothed": 14693.0,
- "new_tests_smoothed_per_thousand": 2.537,
- "tests_per_case": 94.794,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 68.52
- },
- {
- "date": "2020-05-02",
- "total_cases": 9311.0,
- "new_cases": 153.0,
- "new_cases_smoothed": 157.286,
- "total_deaths": 462.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 8.429,
- "total_cases_per_million": 1607.506,
- "new_cases_per_million": 26.415,
- "new_cases_smoothed_per_million": 27.155,
- "total_deaths_per_million": 79.762,
- "new_deaths_per_million": 1.726,
- "new_deaths_smoothed_per_million": 1.455,
- "new_tests": 11146.0,
- "total_tests": 277279.0,
- "total_tests_per_thousand": 47.871,
- "new_tests_per_thousand": 1.924,
- "new_tests_smoothed": 14509.0,
- "new_tests_smoothed_per_thousand": 2.505,
- "tests_per_case": 92.24600000000001,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 68.52
- },
- {
- "date": "2020-05-03",
- "total_cases": 9407.0,
- "new_cases": 96.0,
- "new_cases_smoothed": 137.429,
- "total_deaths": 473.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 7.857,
- "total_cases_per_million": 1624.08,
- "new_cases_per_million": 16.574,
- "new_cases_smoothed_per_million": 23.726,
- "total_deaths_per_million": 81.662,
- "new_deaths_per_million": 1.899,
- "new_deaths_smoothed_per_million": 1.357,
- "new_tests": 8999.0,
- "total_tests": 286278.0,
- "total_tests_per_thousand": 49.425,
- "new_tests_per_thousand": 1.554,
- "new_tests_smoothed": 14319.0,
- "new_tests_smoothed_per_thousand": 2.472,
- "tests_per_case": 104.19200000000001,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 68.52
- },
- {
- "date": "2020-05-04",
- "total_cases": 9523.0,
- "new_cases": 116.0,
- "new_cases_smoothed": 135.429,
- "total_deaths": 481.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 8.429,
- "total_cases_per_million": 1644.107,
- "new_cases_per_million": 20.027,
- "new_cases_smoothed_per_million": 23.381,
- "total_deaths_per_million": 83.043,
- "new_deaths_per_million": 1.381,
- "new_deaths_smoothed_per_million": 1.455,
- "new_tests": 17780.0,
- "total_tests": 304058.0,
- "total_tests_per_thousand": 52.494,
- "new_tests_per_thousand": 3.07,
- "new_tests_smoothed": 14381.0,
- "new_tests_smoothed_per_thousand": 2.483,
- "tests_per_case": 106.189,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 68.52
- },
- {
- "date": "2020-05-05",
- "total_cases": 9670.0,
- "new_cases": 147.0,
- "new_cases_smoothed": 138.857,
- "total_deaths": 490.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 9.0,
- "total_cases_per_million": 1669.486,
- "new_cases_per_million": 25.379,
- "new_cases_smoothed_per_million": 23.973,
- "total_deaths_per_million": 84.596,
- "new_deaths_per_million": 1.554,
- "new_deaths_smoothed_per_million": 1.554,
- "new_tests": 15795.0,
- "total_tests": 319853.0,
- "total_tests_per_thousand": 55.221,
- "new_tests_per_thousand": 2.727,
- "new_tests_smoothed": 14313.0,
- "new_tests_smoothed_per_thousand": 2.471,
- "tests_per_case": 103.07700000000001,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 68.52
- },
- {
- "date": "2020-05-06",
- "total_cases": 9821.0,
- "new_cases": 151.0,
- "new_cases_smoothed": 138.571,
- "total_deaths": 497.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 9.0,
- "total_cases_per_million": 1695.555,
- "new_cases_per_million": 26.07,
- "new_cases_smoothed_per_million": 23.924,
- "total_deaths_per_million": 85.805,
- "new_deaths_per_million": 1.209,
- "new_deaths_smoothed_per_million": 1.554,
- "new_tests": 14328.0,
- "total_tests": 334181.0,
- "total_tests_per_thousand": 57.695,
- "new_tests_per_thousand": 2.474,
- "new_tests_smoothed": 14063.0,
- "new_tests_smoothed_per_thousand": 2.428,
- "tests_per_case": 101.486,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 68.52
- },
- {
- "date": "2020-05-07",
- "total_cases": 9983.0,
- "new_cases": 162.0,
- "new_cases_smoothed": 139.286,
- "total_deaths": 500.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 1723.524,
- "new_cases_per_million": 27.969,
- "new_cases_smoothed_per_million": 24.047,
- "total_deaths_per_million": 86.323,
- "new_deaths_per_million": 0.518,
- "new_deaths_smoothed_per_million": 1.406,
- "new_tests": 14371.0,
- "total_tests": 348552.0,
- "total_tests_per_thousand": 60.176,
- "new_tests_per_thousand": 2.481,
- "new_tests_smoothed": 13838.0,
- "new_tests_smoothed_per_thousand": 2.389,
- "tests_per_case": 99.35,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 68.52
- },
- {
- "date": "2020-05-08",
- "total_cases": 10083.0,
- "new_cases": 100.0,
- "new_cases_smoothed": 132.143,
- "total_deaths": 506.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 7.714,
- "total_cases_per_million": 1740.788,
- "new_cases_per_million": 17.265,
- "new_cases_smoothed_per_million": 22.814,
- "total_deaths_per_million": 87.359,
- "new_deaths_per_million": 1.036,
- "new_deaths_smoothed_per_million": 1.332,
- "new_tests": 8373.0,
- "total_tests": 356925.0,
- "total_tests_per_thousand": 61.622,
- "new_tests_per_thousand": 1.446,
- "new_tests_smoothed": 12970.0,
- "new_tests_smoothed_per_thousand": 2.239,
- "tests_per_case": 98.15100000000001,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-09",
- "total_cases": 10218.0,
- "new_cases": 135.0,
- "new_cases_smoothed": 129.571,
- "total_deaths": 512.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 7.143,
- "total_cases_per_million": 1764.096,
- "new_cases_per_million": 23.307,
- "new_cases_smoothed_per_million": 22.37,
- "total_deaths_per_million": 88.395,
- "new_deaths_per_million": 1.036,
- "new_deaths_smoothed_per_million": 1.233,
- "new_tests": 8246.0,
- "total_tests": 365171.0,
- "total_tests_per_thousand": 63.045,
- "new_tests_per_thousand": 1.424,
- "new_tests_smoothed": 12556.0,
- "new_tests_smoothed_per_thousand": 2.168,
- "tests_per_case": 96.904,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-10",
- "total_cases": 10319.0,
- "new_cases": 101.0,
- "new_cases_smoothed": 130.286,
- "total_deaths": 516.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 6.143,
- "total_cases_per_million": 1781.533,
- "new_cases_per_million": 17.437,
- "new_cases_smoothed_per_million": 22.493,
- "total_deaths_per_million": 89.085,
- "new_deaths_per_million": 0.691,
- "new_deaths_smoothed_per_million": 1.061,
- "new_tests": 6687.0,
- "total_tests": 371858.0,
- "total_tests_per_thousand": 64.2,
- "new_tests_per_thousand": 1.154,
- "new_tests_smoothed": 12226.0,
- "new_tests_smoothed_per_thousand": 2.111,
- "tests_per_case": 93.84,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-11",
- "total_cases": 10429.0,
- "new_cases": 110.0,
- "new_cases_smoothed": 129.429,
- "total_deaths": 519.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 5.429,
- "total_cases_per_million": 1800.524,
- "new_cases_per_million": 18.991,
- "new_cases_smoothed_per_million": 22.345,
- "total_deaths_per_million": 89.603,
- "new_deaths_per_million": 0.518,
- "new_deaths_smoothed_per_million": 0.937,
- "new_tests": 16448.0,
- "total_tests": 388306.0,
- "total_tests_per_thousand": 67.039,
- "new_tests_per_thousand": 2.84,
- "new_tests_smoothed": 12035.0,
- "new_tests_smoothed_per_thousand": 2.078,
- "tests_per_case": 92.986,
- "positive_rate": 0.011000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-12",
- "total_cases": 10513.0,
- "new_cases": 84.0,
- "new_cases_smoothed": 120.429,
- "total_deaths": 524.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 1815.026,
- "new_cases_per_million": 14.502,
- "new_cases_smoothed_per_million": 20.791,
- "total_deaths_per_million": 90.466,
- "new_deaths_per_million": 0.863,
- "new_deaths_smoothed_per_million": 0.839,
- "new_tests": 14783.0,
- "total_tests": 403089.0,
- "total_tests_per_thousand": 69.592,
- "new_tests_per_thousand": 2.552,
- "new_tests_smoothed": 11891.0,
- "new_tests_smoothed_per_thousand": 2.053,
- "tests_per_case": 98.73899999999999,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-13",
- "total_cases": 10591.0,
- "new_cases": 78.0,
- "new_cases_smoothed": 110.0,
- "total_deaths": 528.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 1828.493,
- "new_cases_per_million": 13.466,
- "new_cases_smoothed_per_million": 18.991,
- "total_deaths_per_million": 91.157,
- "new_deaths_per_million": 0.691,
- "new_deaths_smoothed_per_million": 0.765,
- "new_tests": 14759.0,
- "total_tests": 417848.0,
- "total_tests_per_thousand": 72.14,
- "new_tests_per_thousand": 2.548,
- "new_tests_smoothed": 11952.0,
- "new_tests_smoothed_per_thousand": 2.063,
- "tests_per_case": 108.655,
- "positive_rate": 0.009000000000000001,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-14",
- "total_cases": 10667.0,
- "new_cases": 76.0,
- "new_cases_smoothed": 97.714,
- "total_deaths": 534.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 1841.614,
- "new_cases_per_million": 13.121,
- "new_cases_smoothed_per_million": 16.87,
- "total_deaths_per_million": 92.193,
- "new_deaths_per_million": 1.036,
- "new_deaths_smoothed_per_million": 0.839,
- "new_tests": 12995.0,
- "total_tests": 430843.0,
- "total_tests_per_thousand": 74.383,
- "new_tests_per_thousand": 2.244,
- "new_tests_smoothed": 11756.0,
- "new_tests_smoothed_per_thousand": 2.03,
- "tests_per_case": 120.31,
- "positive_rate": 0.008,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-15",
- "total_cases": 10713.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 90.0,
- "total_deaths": 538.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 1849.555,
- "new_cases_per_million": 7.942,
- "new_cases_smoothed_per_million": 15.538,
- "total_deaths_per_million": 92.883,
- "new_deaths_per_million": 0.691,
- "new_deaths_smoothed_per_million": 0.789,
- "new_tests": 12670.0,
- "total_tests": 443513.0,
- "total_tests_per_thousand": 76.571,
- "new_tests_per_thousand": 2.187,
- "new_tests_smoothed": 12370.0,
- "new_tests_smoothed_per_thousand": 2.136,
- "tests_per_case": 137.444,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-16",
- "total_cases": 10791.0,
- "new_cases": 78.0,
- "new_cases_smoothed": 81.857,
- "total_deaths": 538.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 1863.022,
- "new_cases_per_million": 13.466,
- "new_cases_smoothed_per_million": 14.132,
- "total_deaths_per_million": 92.883,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.641,
- "new_tests": 7698.0,
- "total_tests": 451211.0,
- "total_tests_per_thousand": 77.9,
- "new_tests_per_thousand": 1.329,
- "new_tests_smoothed": 12291.0,
- "new_tests_smoothed_per_thousand": 2.122,
- "tests_per_case": 150.15200000000002,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-17",
- "total_cases": 10858.0,
- "new_cases": 67.0,
- "new_cases_smoothed": 77.0,
- "total_deaths": 543.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 1874.589,
- "new_cases_per_million": 11.567,
- "new_cases_smoothed_per_million": 13.294,
- "total_deaths_per_million": 93.747,
- "new_deaths_per_million": 0.863,
- "new_deaths_smoothed_per_million": 0.666,
- "new_tests": 7070.0,
- "total_tests": 458281.0,
- "total_tests_per_thousand": 79.12,
- "new_tests_per_thousand": 1.221,
- "new_tests_smoothed": 12346.0,
- "new_tests_smoothed_per_thousand": 2.131,
- "tests_per_case": 160.338,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-18",
- "total_cases": 10927.0,
- "new_cases": 69.0,
- "new_cases_smoothed": 71.143,
- "total_deaths": 547.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 1886.502,
- "new_cases_per_million": 11.913,
- "new_cases_smoothed_per_million": 12.283,
- "total_deaths_per_million": 94.437,
- "new_deaths_per_million": 0.691,
- "new_deaths_smoothed_per_million": 0.691,
- "new_tests": 15281.0,
- "total_tests": 473562.0,
- "total_tests_per_thousand": 81.759,
- "new_tests_per_thousand": 2.638,
- "new_tests_smoothed": 12179.0,
- "new_tests_smoothed_per_thousand": 2.103,
- "tests_per_case": 171.19099999999997,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-19",
- "total_cases": 10968.0,
- "new_cases": 41.0,
- "new_cases_smoothed": 65.0,
- "total_deaths": 548.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 3.429,
- "total_cases_per_million": 1893.58,
- "new_cases_per_million": 7.078,
- "new_cases_smoothed_per_million": 11.222,
- "total_deaths_per_million": 94.61,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.592,
- "new_tests": 14983.0,
- "total_tests": 488545.0,
- "total_tests_per_thousand": 84.345,
- "new_tests_per_thousand": 2.587,
- "new_tests_smoothed": 12208.0,
- "new_tests_smoothed_per_thousand": 2.108,
- "tests_per_case": 187.815,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-20",
- "total_cases": 11044.0,
- "new_cases": 76.0,
- "new_cases_smoothed": 64.714,
- "total_deaths": 551.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 1906.701,
- "new_cases_per_million": 13.121,
- "new_cases_smoothed_per_million": 11.173,
- "total_deaths_per_million": 95.128,
- "new_deaths_per_million": 0.518,
- "new_deaths_smoothed_per_million": 0.567,
- "new_tests": 14461.0,
- "total_tests": 503006.0,
- "total_tests_per_thousand": 86.842,
- "new_tests_per_thousand": 2.497,
- "new_tests_smoothed": 12165.0,
- "new_tests_smoothed_per_thousand": 2.1,
- "tests_per_case": 187.98,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-21",
- "total_cases": 11117.0,
- "new_cases": 73.0,
- "new_cases_smoothed": 64.286,
- "total_deaths": 554.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.857,
- "total_cases_per_million": 1919.304,
- "new_cases_per_million": 12.603,
- "new_cases_smoothed_per_million": 11.099,
- "total_deaths_per_million": 95.646,
- "new_deaths_per_million": 0.518,
- "new_deaths_smoothed_per_million": 0.493,
- "new_tests": 8472.0,
- "total_tests": 511478.0,
- "total_tests_per_thousand": 88.305,
- "new_tests_per_thousand": 1.463,
- "new_tests_smoothed": 11519.0,
- "new_tests_smoothed_per_thousand": 1.989,
- "tests_per_case": 179.18400000000003,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-22",
- "total_cases": 11182.0,
- "new_cases": 65.0,
- "new_cases_smoothed": 67.0,
- "total_deaths": 561.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 1930.526,
- "new_cases_per_million": 11.222,
- "new_cases_smoothed_per_million": 11.567,
- "total_deaths_per_million": 96.854,
- "new_deaths_per_million": 1.209,
- "new_deaths_smoothed_per_million": 0.567,
- "new_tests": 12305.0,
- "total_tests": 523783.0,
- "total_tests_per_thousand": 90.429,
- "new_tests_per_thousand": 2.124,
- "new_tests_smoothed": 11467.0,
- "new_tests_smoothed_per_thousand": 1.98,
- "tests_per_case": 171.149,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-23",
- "total_cases": 11230.0,
- "new_cases": 48.0,
- "new_cases_smoothed": 62.714,
- "total_deaths": 561.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 3.286,
- "total_cases_per_million": 1938.813,
- "new_cases_per_million": 8.287,
- "new_cases_smoothed_per_million": 10.827,
- "total_deaths_per_million": 96.854,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.567,
- "new_tests": 8781.0,
- "total_tests": 532564.0,
- "total_tests_per_thousand": 91.945,
- "new_tests_per_thousand": 1.516,
- "new_tests_smoothed": 11622.0,
- "new_tests_smoothed_per_thousand": 2.006,
- "tests_per_case": 185.317,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-24",
- "total_cases": 11289.0,
- "new_cases": 59.0,
- "new_cases_smoothed": 61.571,
- "total_deaths": 561.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 1948.999,
- "new_cases_per_million": 10.186,
- "new_cases_smoothed_per_million": 10.63,
- "total_deaths_per_million": 96.854,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.444,
- "new_tests": 8666.0,
- "total_tests": 541230.0,
- "total_tests_per_thousand": 93.441,
- "new_tests_per_thousand": 1.496,
- "new_tests_smoothed": 11850.0,
- "new_tests_smoothed_per_thousand": 2.046,
- "tests_per_case": 192.459,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 65.74
- },
- {
- "date": "2020-05-25",
- "total_cases": 11360.0,
- "new_cases": 71.0,
- "new_cases_smoothed": 61.857,
- "total_deaths": 562.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 1961.257,
- "new_cases_per_million": 12.258,
- "new_cases_smoothed_per_million": 10.679,
- "total_deaths_per_million": 97.027,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.37,
- "new_tests": 18296.0,
- "total_tests": 559526.0,
- "total_tests_per_thousand": 96.6,
- "new_tests_per_thousand": 3.159,
- "new_tests_smoothed": 12281.0,
- "new_tests_smoothed_per_thousand": 2.12,
- "tests_per_case": 198.53799999999998,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-05-26",
- "total_cases": 11387.0,
- "new_cases": 27.0,
- "new_cases_smoothed": 59.857,
- "total_deaths": 563.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 1965.919,
- "new_cases_per_million": 4.661,
- "new_cases_smoothed_per_million": 10.334,
- "total_deaths_per_million": 97.2,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.37,
- "new_tests": 15978.0,
- "total_tests": 575504.0,
- "total_tests_per_thousand": 99.358,
- "new_tests_per_thousand": 2.759,
- "new_tests_smoothed": 12423.0,
- "new_tests_smoothed_per_thousand": 2.145,
- "tests_per_case": 207.544,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-05-27",
- "total_cases": 11428.0,
- "new_cases": 41.0,
- "new_cases_smoothed": 54.857,
- "total_deaths": 563.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 1972.997,
- "new_cases_per_million": 7.078,
- "new_cases_smoothed_per_million": 9.471,
- "total_deaths_per_million": 97.2,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.296,
- "new_tests": 14787.0,
- "total_tests": 590291.0,
- "total_tests_per_thousand": 101.911,
- "new_tests_per_thousand": 2.553,
- "new_tests_smoothed": 12469.0,
- "new_tests_smoothed_per_thousand": 2.153,
- "tests_per_case": 227.299,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-05-28",
- "total_cases": 11480.0,
- "new_cases": 52.0,
- "new_cases_smoothed": 51.857,
- "total_deaths": 565.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 1981.975,
- "new_cases_per_million": 8.978,
- "new_cases_smoothed_per_million": 8.953,
- "total_deaths_per_million": 97.545,
- "new_deaths_per_million": 0.345,
- "new_deaths_smoothed_per_million": 0.271,
- "new_tests": 13164.0,
- "total_tests": 603455.0,
- "total_tests_per_thousand": 104.184,
- "new_tests_per_thousand": 2.273,
- "new_tests_smoothed": 13140.0,
- "new_tests_smoothed_per_thousand": 2.269,
- "tests_per_case": 253.388,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-05-29",
- "total_cases": 11512.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 47.143,
- "total_deaths": 568.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 1987.499,
- "new_cases_per_million": 5.525,
- "new_cases_smoothed_per_million": 8.139,
- "total_deaths_per_million": 98.063,
- "new_deaths_per_million": 0.518,
- "new_deaths_smoothed_per_million": 0.173,
- "new_tests": 11781.0,
- "total_tests": 615236.0,
- "total_tests_per_thousand": 106.218,
- "new_tests_per_thousand": 2.034,
- "new_tests_smoothed": 13065.0,
- "new_tests_smoothed_per_thousand": 2.256,
- "tests_per_case": 277.13599999999997,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-05-30",
- "total_cases": 11593.0,
- "new_cases": 81.0,
- "new_cases_smoothed": 51.857,
- "total_deaths": 568.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 2001.484,
- "new_cases_per_million": 13.984,
- "new_cases_smoothed_per_million": 8.953,
- "total_deaths_per_million": 98.063,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.173,
- "new_tests": 7178.0,
- "total_tests": 622414.0,
- "total_tests_per_thousand": 107.457,
- "new_tests_per_thousand": 1.239,
- "new_tests_smoothed": 12836.0,
- "new_tests_smoothed_per_thousand": 2.216,
- "tests_per_case": 247.52599999999998,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-05-31",
- "total_cases": 11633.0,
- "new_cases": 40.0,
- "new_cases_smoothed": 49.143,
- "total_deaths": 571.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 2008.39,
- "new_cases_per_million": 6.906,
- "new_cases_smoothed_per_million": 8.484,
- "total_deaths_per_million": 98.581,
- "new_deaths_per_million": 0.518,
- "new_deaths_smoothed_per_million": 0.247,
- "new_tests": 7636.0,
- "total_tests": 630050.0,
- "total_tests_per_thousand": 108.776,
- "new_tests_per_thousand": 1.318,
- "new_tests_smoothed": 12689.0,
- "new_tests_smoothed_per_thousand": 2.191,
- "tests_per_case": 258.20599999999996,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-01",
- "total_cases": 11669.0,
- "new_cases": 36.0,
- "new_cases_smoothed": 44.143,
- "total_deaths": 574.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 2014.605,
- "new_cases_per_million": 6.215,
- "new_cases_smoothed_per_million": 7.621,
- "total_deaths_per_million": 99.099,
- "new_deaths_per_million": 0.518,
- "new_deaths_smoothed_per_million": 0.296,
- "new_tests": 8723.0,
- "total_tests": 638773.0,
- "total_tests_per_thousand": 110.282,
- "new_tests_per_thousand": 1.506,
- "new_tests_smoothed": 11321.0,
- "new_tests_smoothed_per_thousand": 1.955,
- "tests_per_case": 256.46299999999997,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-02",
- "total_cases": 11699.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 44.571,
- "total_deaths": 576.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 2019.784,
- "new_cases_per_million": 5.179,
- "new_cases_smoothed_per_million": 7.695,
- "total_deaths_per_million": 99.444,
- "new_deaths_per_million": 0.345,
- "new_deaths_smoothed_per_million": 0.321,
- "new_tests": 15535.0,
- "total_tests": 654308.0,
- "total_tests_per_thousand": 112.964,
- "new_tests_per_thousand": 2.682,
- "new_tests_smoothed": 11258.0,
- "new_tests_smoothed_per_thousand": 1.944,
- "tests_per_case": 252.583,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-03",
- "total_cases": 11734.0,
- "new_cases": 35.0,
- "new_cases_smoothed": 43.714,
- "total_deaths": 580.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 2025.827,
- "new_cases_per_million": 6.043,
- "new_cases_smoothed_per_million": 7.547,
- "total_deaths_per_million": 100.135,
- "new_deaths_per_million": 0.691,
- "new_deaths_smoothed_per_million": 0.419,
- "new_tests": 13459.0,
- "total_tests": 667767.0,
- "total_tests_per_thousand": 115.287,
- "new_tests_per_thousand": 2.324,
- "new_tests_smoothed": 11068.0,
- "new_tests_smoothed_per_thousand": 1.911,
- "tests_per_case": 253.19,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-04",
- "total_cases": 11771.0,
- "new_cases": 37.0,
- "new_cases_smoothed": 41.571,
- "total_deaths": 580.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 2032.215,
- "new_cases_per_million": 6.388,
- "new_cases_smoothed_per_million": 7.177,
- "total_deaths_per_million": 100.135,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.37,
- "new_tests": 11866.0,
- "total_tests": 679633.0,
- "total_tests_per_thousand": 117.336,
- "new_tests_per_thousand": 2.049,
- "new_tests_smoothed": 10883.0,
- "new_tests_smoothed_per_thousand": 1.879,
- "tests_per_case": 261.79,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-05",
- "total_cases": 11811.0,
- "new_cases": 40.0,
- "new_cases_smoothed": 42.714,
- "total_deaths": 582.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 2039.121,
- "new_cases_per_million": 6.906,
- "new_cases_smoothed_per_million": 7.374,
- "total_deaths_per_million": 100.48,
- "new_deaths_per_million": 0.345,
- "new_deaths_smoothed_per_million": 0.345,
- "new_tests": 9656.0,
- "total_tests": 689289.0,
- "total_tests_per_thousand": 119.003,
- "new_tests_per_thousand": 1.667,
- "new_tests_smoothed": 10579.0,
- "new_tests_smoothed_per_thousand": 1.826,
- "tests_per_case": 247.669,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-06",
- "total_cases": 11875.0,
- "new_cases": 64.0,
- "new_cases_smoothed": 40.286,
- "total_deaths": 586.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 2050.17,
- "new_cases_per_million": 11.049,
- "new_cases_smoothed_per_million": 6.955,
- "total_deaths_per_million": 101.17,
- "new_deaths_per_million": 0.691,
- "new_deaths_smoothed_per_million": 0.444,
- "new_tests": 7971.0,
- "total_tests": 697260.0,
- "total_tests_per_thousand": 120.379,
- "new_tests_per_thousand": 1.376,
- "new_tests_smoothed": 10692.0,
- "new_tests_smoothed_per_thousand": 1.846,
- "tests_per_case": 265.404,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-07",
- "total_cases": 11924.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 41.571,
- "total_deaths": 587.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 2058.63,
- "new_cases_per_million": 8.46,
- "new_cases_smoothed_per_million": 7.177,
- "total_deaths_per_million": 101.343,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.395,
- "new_tests": 7745.0,
- "total_tests": 705005.0,
- "total_tests_per_thousand": 121.716,
- "new_tests_per_thousand": 1.337,
- "new_tests_smoothed": 10708.0,
- "new_tests_smoothed_per_thousand": 1.849,
- "tests_per_case": 257.58099999999996,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-08",
- "total_cases": 11948.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 39.857,
- "total_deaths": 589.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 2062.773,
- "new_cases_per_million": 4.144,
- "new_cases_smoothed_per_million": 6.881,
- "total_deaths_per_million": 101.688,
- "new_deaths_per_million": 0.345,
- "new_deaths_smoothed_per_million": 0.37,
- "new_tests": 16859.0,
- "total_tests": 721864.0,
- "total_tests_per_thousand": 124.627,
- "new_tests_per_thousand": 2.911,
- "new_tests_smoothed": 11870.0,
- "new_tests_smoothed_per_thousand": 2.049,
- "tests_per_case": 297.814,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-09",
- "total_cases": 11962.0,
- "new_cases": 14.0,
- "new_cases_smoothed": 37.571,
- "total_deaths": 593.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.429,
- "total_cases_per_million": 2065.19,
- "new_cases_per_million": 2.417,
- "new_cases_smoothed_per_million": 6.487,
- "total_deaths_per_million": 102.379,
- "new_deaths_per_million": 0.691,
- "new_deaths_smoothed_per_million": 0.419,
- "new_tests": 15649.0,
- "total_tests": 737513.0,
- "total_tests_per_thousand": 127.329,
- "new_tests_per_thousand": 2.702,
- "new_tests_smoothed": 11886.0,
- "new_tests_smoothed_per_thousand": 2.052,
- "tests_per_case": 316.357,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-10",
- "total_cases": 12001.0,
- "new_cases": 39.0,
- "new_cases_smoothed": 38.143,
- "total_deaths": 593.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 2071.923,
- "new_cases_per_million": 6.733,
- "new_cases_smoothed_per_million": 6.585,
- "total_deaths_per_million": 102.379,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.321,
- "new_tests": 14960.0,
- "total_tests": 752473.0,
- "total_tests_per_thousand": 129.911,
- "new_tests_per_thousand": 2.583,
- "new_tests_smoothed": 12101.0,
- "new_tests_smoothed_per_thousand": 2.089,
- "tests_per_case": 317.255,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-11",
- "total_cases": 12016.0,
- "new_cases": 15.0,
- "new_cases_smoothed": 35.0,
- "total_deaths": 593.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 2074.513,
- "new_cases_per_million": 2.59,
- "new_cases_smoothed_per_million": 6.043,
- "total_deaths_per_million": 102.379,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.321,
- "new_tests": 14548.0,
- "total_tests": 767021.0,
- "total_tests_per_thousand": 132.423,
- "new_tests_per_thousand": 2.512,
- "new_tests_smoothed": 12484.0,
- "new_tests_smoothed_per_thousand": 2.155,
- "tests_per_case": 356.686,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-12",
- "total_cases": 12035.0,
- "new_cases": 19.0,
- "new_cases_smoothed": 32.0,
- "total_deaths": 593.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.571,
- "total_cases_per_million": 2077.793,
- "new_cases_per_million": 3.28,
- "new_cases_smoothed_per_million": 5.525,
- "total_deaths_per_million": 102.379,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.271,
- "new_tests": 14870.0,
- "total_tests": 781891.0,
- "total_tests_per_thousand": 134.99,
- "new_tests_per_thousand": 2.567,
- "new_tests_smoothed": 13229.0,
- "new_tests_smoothed_per_thousand": 2.284,
- "tests_per_case": 413.406,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-13",
- "total_cases": 12099.0,
- "new_cases": 64.0,
- "new_cases_smoothed": 32.0,
- "total_deaths": 594.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 2088.843,
- "new_cases_per_million": 11.049,
- "new_cases_smoothed_per_million": 5.525,
- "total_deaths_per_million": 102.552,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.197,
- "new_tests": 10009.0,
- "total_tests": 791900.0,
- "total_tests_per_thousand": 136.718,
- "new_tests_per_thousand": 1.728,
- "new_tests_smoothed": 13520.0,
- "new_tests_smoothed_per_thousand": 2.334,
- "tests_per_case": 422.5,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-14",
- "total_cases": 12139.0,
- "new_cases": 40.0,
- "new_cases_smoothed": 30.714,
- "total_deaths": 597.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 2095.748,
- "new_cases_per_million": 6.906,
- "new_cases_smoothed_per_million": 5.303,
- "total_deaths_per_million": 103.07,
- "new_deaths_per_million": 0.518,
- "new_deaths_smoothed_per_million": 0.247,
- "new_tests": 9060.0,
- "total_tests": 800960.0,
- "total_tests_per_thousand": 138.282,
- "new_tests_per_thousand": 1.564,
- "new_tests_smoothed": 13708.0,
- "new_tests_smoothed_per_thousand": 2.367,
- "tests_per_case": 446.30699999999996,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-15",
- "total_cases": 12193.0,
- "new_cases": 54.0,
- "new_cases_smoothed": 35.0,
- "total_deaths": 597.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 2105.071,
- "new_cases_per_million": 9.323,
- "new_cases_smoothed_per_million": 6.043,
- "total_deaths_per_million": 103.07,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.197,
- "new_tests": 17714.0,
- "total_tests": 818674.0,
- "total_tests_per_thousand": 141.341,
- "new_tests_per_thousand": 3.058,
- "new_tests_smoothed": 13830.0,
- "new_tests_smoothed_per_thousand": 2.388,
- "tests_per_case": 395.14300000000003,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-16",
- "total_cases": 12217.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 36.429,
- "total_deaths": 598.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 2109.215,
- "new_cases_per_million": 4.144,
- "new_cases_smoothed_per_million": 6.289,
- "total_deaths_per_million": 103.242,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.123,
- "new_tests": 18201.0,
- "total_tests": 836875.0,
- "total_tests_per_thousand": 144.483,
- "new_tests_per_thousand": 3.142,
- "new_tests_smoothed": 14195.0,
- "new_tests_smoothed_per_thousand": 2.451,
- "tests_per_case": 389.667,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-17",
- "total_cases": 12250.0,
- "new_cases": 33.0,
- "new_cases_smoothed": 35.571,
- "total_deaths": 598.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 2114.912,
- "new_cases_per_million": 5.697,
- "new_cases_smoothed_per_million": 6.141,
- "total_deaths_per_million": 103.242,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.123,
- "new_tests": 19225.0,
- "total_tests": 856100.0,
- "total_tests_per_thousand": 147.802,
- "new_tests_per_thousand": 3.319,
- "new_tests_smoothed": 14804.0,
- "new_tests_smoothed_per_thousand": 2.556,
- "tests_per_case": 416.17699999999996,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-18",
- "total_cases": 12294.0,
- "new_cases": 44.0,
- "new_cases_smoothed": 39.714,
- "total_deaths": 598.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 2122.508,
- "new_cases_per_million": 7.596,
- "new_cases_smoothed_per_million": 6.857,
- "total_deaths_per_million": 103.242,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.123,
- "new_tests": 17516.0,
- "total_tests": 873616.0,
- "total_tests_per_thousand": 150.826,
- "new_tests_per_thousand": 3.024,
- "new_tests_smoothed": 15228.0,
- "new_tests_smoothed_per_thousand": 2.629,
- "tests_per_case": 383.439,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-19",
- "total_cases": 12344.0,
- "new_cases": 50.0,
- "new_cases_smoothed": 44.143,
- "total_deaths": 600.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 2131.141,
- "new_cases_per_million": 8.632,
- "new_cases_smoothed_per_million": 7.621,
- "total_deaths_per_million": 103.588,
- "new_deaths_per_million": 0.345,
- "new_deaths_smoothed_per_million": 0.173,
- "new_tests": 16991.0,
- "total_tests": 890607.0,
- "total_tests_per_thousand": 153.76,
- "new_tests_per_thousand": 2.933,
- "new_tests_smoothed": 15531.0,
- "new_tests_smoothed_per_thousand": 2.681,
- "tests_per_case": 351.835,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-20",
- "total_cases": 12391.0,
- "new_cases": 47.0,
- "new_cases_smoothed": 41.714,
- "total_deaths": 600.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 2139.255,
- "new_cases_per_million": 8.114,
- "new_cases_smoothed_per_million": 7.202,
- "total_deaths_per_million": 103.588,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.148,
- "new_tests": 12098.0,
- "total_tests": 902705.0,
- "total_tests_per_thousand": 155.848,
- "new_tests_per_thousand": 2.089,
- "new_tests_smoothed": 15829.0,
- "new_tests_smoothed_per_thousand": 2.733,
- "tests_per_case": 379.462,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-21",
- "total_cases": 12391.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 36.0,
- "total_deaths": 600.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2139.255,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.215,
- "total_deaths_per_million": 103.588,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.074,
- "new_tests": 11415.0,
- "total_tests": 914120.0,
- "total_tests_per_thousand": 157.819,
- "new_tests_per_thousand": 1.971,
- "new_tests_smoothed": 16166.0,
- "new_tests_smoothed_per_thousand": 2.791,
- "tests_per_case": 449.056,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-22",
- "total_cases": 12391.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 28.286,
- "total_deaths": 600.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2139.255,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 4.883,
- "total_deaths_per_million": 103.588,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.074,
- "new_tests": 21457.0,
- "total_tests": 935577.0,
- "total_tests_per_thousand": 161.524,
- "new_tests_per_thousand": 3.704,
- "new_tests_smoothed": 16700.0,
- "new_tests_smoothed_per_thousand": 2.883,
- "tests_per_case": 590.404,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-23",
- "total_cases": 12527.0,
- "new_cases": 136.0,
- "new_cases_smoothed": 44.286,
- "total_deaths": 602.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 2162.735,
- "new_cases_per_million": 23.48,
- "new_cases_smoothed_per_million": 7.646,
- "total_deaths_per_million": 103.933,
- "new_deaths_per_million": 0.345,
- "new_deaths_smoothed_per_million": 0.099,
- "new_tests": 20913.0,
- "total_tests": 956490.0,
- "total_tests_per_thousand": 165.134,
- "new_tests_per_thousand": 3.611,
- "new_tests_smoothed": 17088.0,
- "new_tests_smoothed_per_thousand": 2.95,
- "tests_per_case": 385.858,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-24",
- "total_cases": 12561.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 44.429,
- "total_deaths": 603.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 2168.605,
- "new_cases_per_million": 5.87,
- "new_cases_smoothed_per_million": 7.67,
- "total_deaths_per_million": 104.105,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.123,
- "new_tests": 20079.0,
- "total_tests": 976569.0,
- "total_tests_per_thousand": 168.601,
- "new_tests_per_thousand": 3.467,
- "new_tests_smoothed": 17210.0,
- "new_tests_smoothed_per_thousand": 2.971,
- "tests_per_case": 387.36300000000006,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-25",
- "total_cases": 12615.0,
- "new_cases": 54.0,
- "new_cases_smoothed": 45.857,
- "total_deaths": 603.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 2177.928,
- "new_cases_per_million": 9.323,
- "new_cases_smoothed_per_million": 7.917,
- "total_deaths_per_million": 104.105,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.123,
- "new_tests": 16830.0,
- "total_tests": 993399.0,
- "total_tests_per_thousand": 171.506,
- "new_tests_per_thousand": 2.906,
- "new_tests_smoothed": 17112.0,
- "new_tests_smoothed_per_thousand": 2.954,
- "tests_per_case": 373.159,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-26",
- "total_cases": 12636.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 41.714,
- "total_deaths": 603.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2181.553,
- "new_cases_per_million": 3.626,
- "new_cases_smoothed_per_million": 7.202,
- "total_deaths_per_million": 104.105,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.074,
- "new_tests": 15838.0,
- "total_tests": 1009237.0,
- "total_tests_per_thousand": 174.241,
- "new_tests_per_thousand": 2.734,
- "new_tests_smoothed": 16947.0,
- "new_tests_smoothed_per_thousand": 2.926,
- "tests_per_case": 406.264,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-27",
- "total_cases": 12675.0,
- "new_cases": 39.0,
- "new_cases_smoothed": 40.571,
- "total_deaths": 604.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 2188.287,
- "new_cases_per_million": 6.733,
- "new_cases_smoothed_per_million": 7.004,
- "total_deaths_per_million": 104.278,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.099,
- "new_tests": 9484.0,
- "total_tests": 1018721.0,
- "total_tests_per_thousand": 175.878,
- "new_tests_per_thousand": 1.637,
- "new_tests_smoothed": 16574.0,
- "new_tests_smoothed_per_thousand": 2.861,
- "tests_per_case": 408.514,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-28",
- "total_cases": 12675.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 40.571,
- "total_deaths": 604.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 2188.287,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.004,
- "total_deaths_per_million": 104.278,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.099,
- "new_tests": 9461.0,
- "total_tests": 1028182.0,
- "total_tests_per_thousand": 177.511,
- "new_tests_per_thousand": 1.633,
- "new_tests_smoothed": 16295.0,
- "new_tests_smoothed_per_thousand": 2.813,
- "tests_per_case": 401.63699999999994,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-29",
- "total_cases": 12675.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 40.571,
- "total_deaths": 604.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 2188.287,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 7.004,
- "total_deaths_per_million": 104.278,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.099,
- "new_tests": 18719.0,
- "total_tests": 1046901.0,
- "total_tests_per_thousand": 180.743,
- "new_tests_per_thousand": 3.232,
- "new_tests_smoothed": 15903.0,
- "new_tests_smoothed_per_thousand": 2.746,
- "tests_per_case": 391.975,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-06-30",
- "total_cases": 12751.0,
- "new_cases": 76.0,
- "new_cases_smoothed": 32.0,
- "total_deaths": 605.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2201.408,
- "new_cases_per_million": 13.121,
- "new_cases_smoothed_per_million": 5.525,
- "total_deaths_per_million": 104.451,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.074,
- "new_tests": 17884.0,
- "total_tests": 1064785.0,
- "total_tests_per_thousand": 183.831,
- "new_tests_per_thousand": 3.088,
- "new_tests_smoothed": 15471.0,
- "new_tests_smoothed_per_thousand": 2.671,
- "tests_per_case": 483.469,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-07-01",
- "total_cases": 12768.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 29.571,
- "total_deaths": 605.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2204.343,
- "new_cases_per_million": 2.935,
- "new_cases_smoothed_per_million": 5.105,
- "total_deaths_per_million": 104.451,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 17615.0,
- "total_tests": 1082400.0,
- "total_tests_per_thousand": 186.872,
- "new_tests_per_thousand": 3.041,
- "new_tests_smoothed": 15119.0,
- "new_tests_smoothed_per_thousand": 2.61,
- "tests_per_case": 511.27099999999996,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-07-02",
- "total_cases": 12794.0,
- "new_cases": 26.0,
- "new_cases_smoothed": 25.571,
- "total_deaths": 606.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2208.831,
- "new_cases_per_million": 4.489,
- "new_cases_smoothed_per_million": 4.415,
- "total_deaths_per_million": 104.623,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.074,
- "new_tests": 15361.0,
- "total_tests": 1097761.0,
- "total_tests_per_thousand": 189.524,
- "new_tests_per_thousand": 2.652,
- "new_tests_smoothed": 14909.0,
- "new_tests_smoothed_per_thousand": 2.574,
- "tests_per_case": 583.034,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-07-03",
- "total_cases": 12815.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 25.571,
- "total_deaths": 606.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2212.457,
- "new_cases_per_million": 3.626,
- "new_cases_smoothed_per_million": 4.415,
- "total_deaths_per_million": 104.623,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.074,
- "new_tests": 14320.0,
- "total_tests": 1112081.0,
- "total_tests_per_thousand": 191.996,
- "new_tests_per_thousand": 2.472,
- "new_tests_smoothed": 14692.0,
- "new_tests_smoothed_per_thousand": 2.537,
- "tests_per_case": 574.547,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-07-04",
- "total_cases": 12832.0,
- "new_cases": 17.0,
- "new_cases_smoothed": 22.429,
- "total_deaths": 606.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2215.392,
- "new_cases_per_million": 2.935,
- "new_cases_smoothed_per_million": 3.872,
- "total_deaths_per_million": 104.623,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 9624.0,
- "total_tests": 1121705.0,
- "total_tests_per_thousand": 193.658,
- "new_tests_per_thousand": 1.662,
- "new_tests_smoothed": 14712.0,
- "new_tests_smoothed_per_thousand": 2.54,
- "tests_per_case": 655.949,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-07-05",
- "total_cases": 12832.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 22.429,
- "total_deaths": 606.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2215.392,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.872,
- "total_deaths_per_million": 104.623,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 9737.0,
- "total_tests": 1131442.0,
- "total_tests_per_thousand": 195.339,
- "new_tests_per_thousand": 1.681,
- "new_tests_smoothed": 14751.0,
- "new_tests_smoothed_per_thousand": 2.547,
- "tests_per_case": 657.688,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-07-06",
- "total_cases": 12832.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 22.429,
- "total_deaths": 606.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2215.392,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 3.872,
- "total_deaths_per_million": 104.623,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 17841.0,
- "total_tests": 1149283.0,
- "total_tests_per_thousand": 198.419,
- "new_tests_per_thousand": 3.08,
- "new_tests_smoothed": 14626.0,
- "new_tests_smoothed_per_thousand": 2.525,
- "tests_per_case": 652.115,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-07-07",
- "total_cases": 12878.0,
- "new_cases": 46.0,
- "new_cases_smoothed": 18.143,
- "total_deaths": 607.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2223.334,
- "new_cases_per_million": 7.942,
- "new_cases_smoothed_per_million": 3.132,
- "total_deaths_per_million": 104.796,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 16513.0,
- "total_tests": 1165796.0,
- "total_tests_per_thousand": 201.27,
- "new_tests_per_thousand": 2.851,
- "new_tests_smoothed": 14430.0,
- "new_tests_smoothed_per_thousand": 2.491,
- "tests_per_case": 795.3539999999999,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 62.96
- },
- {
- "date": "2020-07-08",
- "total_cases": 12888.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 17.143,
- "total_deaths": 609.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 2225.06,
- "new_cases_per_million": 1.726,
- "new_cases_smoothed_per_million": 2.96,
- "total_deaths_per_million": 105.141,
- "new_deaths_per_million": 0.345,
- "new_deaths_smoothed_per_million": 0.099,
- "new_tests": 15903.0,
- "total_tests": 1181699.0,
- "total_tests_per_thousand": 204.015,
- "new_tests_per_thousand": 2.746,
- "new_tests_smoothed": 14186.0,
- "new_tests_smoothed_per_thousand": 2.449,
- "tests_per_case": 827.5169999999999,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-09",
- "total_cases": 12900.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 15.143,
- "total_deaths": 609.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2227.132,
- "new_cases_per_million": 2.072,
- "new_cases_smoothed_per_million": 2.614,
- "total_deaths_per_million": 105.141,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.074,
- "new_tests": 14303.0,
- "total_tests": 1196002.0,
- "total_tests_per_thousand": 206.485,
- "new_tests_per_thousand": 2.469,
- "new_tests_smoothed": 14034.0,
- "new_tests_smoothed_per_thousand": 2.423,
- "tests_per_case": 926.7739999999999,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-10",
- "total_cases": 12916.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 14.429,
- "total_deaths": 609.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2229.894,
- "new_cases_per_million": 2.762,
- "new_cases_smoothed_per_million": 2.491,
- "total_deaths_per_million": 105.141,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.074,
- "new_tests": 14186.0,
- "total_tests": 1210188.0,
- "total_tests_per_thousand": 208.934,
- "new_tests_per_thousand": 2.449,
- "new_tests_smoothed": 14015.0,
- "new_tests_smoothed_per_thousand": 2.42,
- "tests_per_case": 971.337,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-11",
- "total_cases": 12946.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 16.286,
- "total_deaths": 609.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2235.074,
- "new_cases_per_million": 5.179,
- "new_cases_smoothed_per_million": 2.812,
- "total_deaths_per_million": 105.141,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.074,
- "new_tests": 9650.0,
- "total_tests": 1219838.0,
- "total_tests_per_thousand": 210.6,
- "new_tests_per_thousand": 1.666,
- "new_tests_smoothed": 14019.0,
- "new_tests_smoothed_per_thousand": 2.42,
- "tests_per_case": 860.816,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-12",
- "total_cases": 12946.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 16.286,
- "total_deaths": 609.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2235.074,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.812,
- "total_deaths_per_million": 105.141,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.074,
- "new_tests": 9133.0,
- "total_tests": 1228971.0,
- "total_tests_per_thousand": 212.177,
- "new_tests_per_thousand": 1.577,
- "new_tests_smoothed": 13933.0,
- "new_tests_smoothed_per_thousand": 2.405,
- "tests_per_case": 855.535,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-13",
- "total_cases": 12946.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 16.286,
- "total_deaths": 609.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2235.074,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.812,
- "total_deaths_per_million": 105.141,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.074,
- "new_tests": 18280.0,
- "total_tests": 1247251.0,
- "total_tests_per_thousand": 215.333,
- "new_tests_per_thousand": 3.156,
- "new_tests_smoothed": 13995.0,
- "new_tests_smoothed_per_thousand": 2.416,
- "tests_per_case": 859.342,
- "positive_rate": 0.001,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-14",
- "total_cases": 13037.0,
- "new_cases": 91.0,
- "new_cases_smoothed": 22.714,
- "total_deaths": 610.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2250.784,
- "new_cases_per_million": 15.711,
- "new_cases_smoothed_per_million": 3.922,
- "total_deaths_per_million": 105.314,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.074,
- "new_tests": 16717.0,
- "total_tests": 1263968.0,
- "total_tests_per_thousand": 218.219,
- "new_tests_per_thousand": 2.886,
- "new_tests_smoothed": 14025.0,
- "new_tests_smoothed_per_thousand": 2.421,
- "tests_per_case": 617.453,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-15",
- "total_cases": 13061.0,
- "new_cases": 24.0,
- "new_cases_smoothed": 24.714,
- "total_deaths": 610.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2254.928,
- "new_cases_per_million": 4.144,
- "new_cases_smoothed_per_million": 4.267,
- "total_deaths_per_million": 105.314,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.025,
- "new_tests": 16345.0,
- "total_tests": 1280313.0,
- "total_tests_per_thousand": 221.041,
- "new_tests_per_thousand": 2.822,
- "new_tests_smoothed": 14088.0,
- "new_tests_smoothed_per_thousand": 2.432,
- "tests_per_case": 570.035,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-16",
- "total_cases": 13092.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 27.429,
- "total_deaths": 610.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2260.28,
- "new_cases_per_million": 5.352,
- "new_cases_smoothed_per_million": 4.735,
- "total_deaths_per_million": 105.314,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.025,
- "new_tests": 15182.0,
- "total_tests": 1295495.0,
- "total_tests_per_thousand": 223.662,
- "new_tests_per_thousand": 2.621,
- "new_tests_smoothed": 14213.0,
- "new_tests_smoothed_per_thousand": 2.454,
- "tests_per_case": 518.182,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-17",
- "total_cases": 13124.0,
- "new_cases": 32.0,
- "new_cases_smoothed": 29.714,
- "total_deaths": 610.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2265.805,
- "new_cases_per_million": 5.525,
- "new_cases_smoothed_per_million": 5.13,
- "total_deaths_per_million": 105.314,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.025,
- "new_tests": 14271.0,
- "total_tests": 1309766.0,
- "total_tests_per_thousand": 226.126,
- "new_tests_per_thousand": 2.464,
- "new_tests_smoothed": 14225.0,
- "new_tests_smoothed_per_thousand": 2.456,
- "tests_per_case": 478.726,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-18",
- "total_cases": 13173.0,
- "new_cases": 49.0,
- "new_cases_smoothed": 32.429,
- "total_deaths": 611.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2274.264,
- "new_cases_per_million": 8.46,
- "new_cases_smoothed_per_million": 5.599,
- "total_deaths_per_million": 105.487,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 10669.0,
- "total_tests": 1320435.0,
- "total_tests_per_thousand": 227.968,
- "new_tests_per_thousand": 1.842,
- "new_tests_smoothed": 14371.0,
- "new_tests_smoothed_per_thousand": 2.481,
- "tests_per_case": 443.159,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-19",
- "total_cases": 13173.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 32.429,
- "total_deaths": 611.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2274.264,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.599,
- "total_deaths_per_million": 105.487,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 10936.0,
- "total_tests": 1331371.0,
- "total_tests_per_thousand": 229.856,
- "new_tests_per_thousand": 1.888,
- "new_tests_smoothed": 14629.0,
- "new_tests_smoothed_per_thousand": 2.526,
- "tests_per_case": 451.115,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-20",
- "total_cases": 13173.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 32.429,
- "total_deaths": 611.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2274.264,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 5.599,
- "total_deaths_per_million": 105.487,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 18211.0,
- "total_tests": 1349582.0,
- "total_tests_per_thousand": 233.0,
- "new_tests_per_thousand": 3.144,
- "new_tests_smoothed": 14619.0,
- "new_tests_smoothed_per_thousand": 2.524,
- "tests_per_case": 450.806,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-21",
- "total_cases": 13262.0,
- "new_cases": 89.0,
- "new_cases_smoothed": 32.143,
- "total_deaths": 611.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2289.63,
- "new_cases_per_million": 15.365,
- "new_cases_smoothed_per_million": 5.549,
- "total_deaths_per_million": 105.487,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.025,
- "new_tests": 16692.0,
- "total_tests": 1366274.0,
- "total_tests_per_thousand": 235.882,
- "new_tests_per_thousand": 2.882,
- "new_tests_smoothed": 14615.0,
- "new_tests_smoothed_per_thousand": 2.523,
- "tests_per_case": 454.689,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-22",
- "total_cases": 13302.0,
- "new_cases": 40.0,
- "new_cases_smoothed": 34.429,
- "total_deaths": 611.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2296.536,
- "new_cases_per_million": 6.906,
- "new_cases_smoothed_per_million": 5.944,
- "total_deaths_per_million": 105.487,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.025,
- "new_tests": 16637.0,
- "total_tests": 1382911.0,
- "total_tests_per_thousand": 238.754,
- "new_tests_per_thousand": 2.872,
- "new_tests_smoothed": 14657.0,
- "new_tests_smoothed_per_thousand": 2.53,
- "tests_per_case": 425.722,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-23",
- "total_cases": 13350.0,
- "new_cases": 48.0,
- "new_cases_smoothed": 36.857,
- "total_deaths": 611.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2304.823,
- "new_cases_per_million": 8.287,
- "new_cases_smoothed_per_million": 6.363,
- "total_deaths_per_million": 105.487,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.025,
- "new_tests": 15793.0,
- "total_tests": 1398704.0,
- "total_tests_per_thousand": 241.48,
- "new_tests_per_thousand": 2.727,
- "new_tests_smoothed": 14744.0,
- "new_tests_smoothed_per_thousand": 2.545,
- "tests_per_case": 400.031,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-24",
- "total_cases": 13390.0,
- "new_cases": 40.0,
- "new_cases_smoothed": 38.0,
- "total_deaths": 612.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2311.728,
- "new_cases_per_million": 6.906,
- "new_cases_smoothed_per_million": 6.561,
- "total_deaths_per_million": 105.659,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 16108.0,
- "total_tests": 1414812.0,
- "total_tests_per_thousand": 244.261,
- "new_tests_per_thousand": 2.781,
- "new_tests_smoothed": 15007.0,
- "new_tests_smoothed_per_thousand": 2.591,
- "tests_per_case": 394.921,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-25",
- "total_cases": 13438.0,
- "new_cases": 48.0,
- "new_cases_smoothed": 37.857,
- "total_deaths": 613.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2320.015,
- "new_cases_per_million": 8.287,
- "new_cases_smoothed_per_million": 6.536,
- "total_deaths_per_million": 105.832,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 11731.0,
- "total_tests": 1426543.0,
- "total_tests_per_thousand": 246.287,
- "new_tests_per_thousand": 2.025,
- "new_tests_smoothed": 15158.0,
- "new_tests_smoothed_per_thousand": 2.617,
- "tests_per_case": 400.4,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-26",
- "total_cases": 13438.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 37.857,
- "total_deaths": 613.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2320.015,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.536,
- "total_deaths_per_million": 105.832,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 12813.0,
- "total_tests": 1439356.0,
- "total_tests_per_thousand": 248.499,
- "new_tests_per_thousand": 2.212,
- "new_tests_smoothed": 15426.0,
- "new_tests_smoothed_per_thousand": 2.663,
- "tests_per_case": 407.47900000000004,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-27",
- "total_cases": 13438.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 37.857,
- "total_deaths": 613.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2320.015,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 6.536,
- "total_deaths_per_million": 105.832,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 20720.0,
- "total_tests": 1460076.0,
- "total_tests_per_thousand": 252.076,
- "new_tests_per_thousand": 3.577,
- "new_tests_smoothed": 15785.0,
- "new_tests_smoothed_per_thousand": 2.725,
- "tests_per_case": 416.962,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-28",
- "total_cases": 13547.0,
- "new_cases": 109.0,
- "new_cases_smoothed": 40.714,
- "total_deaths": 613.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2338.834,
- "new_cases_per_million": 18.818,
- "new_cases_smoothed_per_million": 7.029,
- "total_deaths_per_million": 105.832,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 20376.0,
- "total_tests": 1480452.0,
- "total_tests_per_thousand": 255.594,
- "new_tests_per_thousand": 3.518,
- "new_tests_smoothed": 16311.0,
- "new_tests_smoothed_per_thousand": 2.816,
- "tests_per_case": 400.621,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-29",
- "total_cases": 13577.0,
- "new_cases": 30.0,
- "new_cases_smoothed": 39.286,
- "total_deaths": 613.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2344.013,
- "new_cases_per_million": 5.179,
- "new_cases_smoothed_per_million": 6.783,
- "total_deaths_per_million": 105.832,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 20218.0,
- "total_tests": 1500670.0,
- "total_tests_per_thousand": 259.084,
- "new_tests_per_thousand": 3.491,
- "new_tests_smoothed": 16823.0,
- "new_tests_smoothed_per_thousand": 2.904,
- "tests_per_case": 428.222,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-30",
- "total_cases": 13634.0,
- "new_cases": 57.0,
- "new_cases_smoothed": 40.571,
- "total_deaths": 614.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2353.854,
- "new_cases_per_million": 9.841,
- "new_cases_smoothed_per_million": 7.004,
- "total_deaths_per_million": 106.005,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.074,
- "new_tests": 20547.0,
- "total_tests": 1521217.0,
- "total_tests_per_thousand": 262.632,
- "new_tests_per_thousand": 3.547,
- "new_tests_smoothed": 17502.0,
- "new_tests_smoothed_per_thousand": 3.022,
- "tests_per_case": 431.38699999999994,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-07-31",
- "total_cases": 13725.0,
- "new_cases": 91.0,
- "new_cases_smoothed": 47.857,
- "total_deaths": 615.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2369.565,
- "new_cases_per_million": 15.711,
- "new_cases_smoothed_per_million": 8.262,
- "total_deaths_per_million": 106.177,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.074,
- "new_tests": 19917.0,
- "total_tests": 1541134.0,
- "total_tests_per_thousand": 266.07,
- "new_tests_per_thousand": 3.439,
- "new_tests_smoothed": 18046.0,
- "new_tests_smoothed_per_thousand": 3.116,
- "tests_per_case": 377.08099999999996,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 60.19
- },
- {
- "date": "2020-08-01",
- "total_cases": 13789.0,
- "new_cases": 64.0,
- "new_cases_smoothed": 50.143,
- "total_deaths": 615.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2380.614,
- "new_cases_per_million": 11.049,
- "new_cases_smoothed_per_million": 8.657,
- "total_deaths_per_million": 106.177,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 14305.0,
- "total_tests": 1555439.0,
- "total_tests_per_thousand": 268.54,
- "new_tests_per_thousand": 2.47,
- "new_tests_smoothed": 18414.0,
- "new_tests_smoothed_per_thousand": 3.179,
- "tests_per_case": 367.231,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-02",
- "total_cases": 13789.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 50.143,
- "total_deaths": 615.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2380.614,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.657,
- "total_deaths_per_million": 106.177,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 15713.0,
- "total_tests": 1571152.0,
- "total_tests_per_thousand": 271.253,
- "new_tests_per_thousand": 2.713,
- "new_tests_smoothed": 18828.0,
- "new_tests_smoothed_per_thousand": 3.251,
- "tests_per_case": 375.48699999999997,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-03",
- "total_cases": 13789.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 50.143,
- "total_deaths": 615.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2380.614,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 8.657,
- "total_deaths_per_million": 106.177,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 23844.0,
- "total_tests": 1594996.0,
- "total_tests_per_thousand": 275.369,
- "new_tests_per_thousand": 4.117,
- "new_tests_smoothed": 19274.0,
- "new_tests_smoothed_per_thousand": 3.328,
- "tests_per_case": 384.38199999999995,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-04",
- "total_cases": 13996.0,
- "new_cases": 207.0,
- "new_cases_smoothed": 64.143,
- "total_deaths": 616.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2416.352,
- "new_cases_per_million": 35.738,
- "new_cases_smoothed_per_million": 11.074,
- "total_deaths_per_million": 106.35,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.074,
- "new_tests": 24940.0,
- "total_tests": 1619936.0,
- "total_tests_per_thousand": 279.675,
- "new_tests_per_thousand": 4.306,
- "new_tests_smoothed": 19926.0,
- "new_tests_smoothed_per_thousand": 3.44,
- "tests_per_case": 310.65,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-05",
- "total_cases": 14073.0,
- "new_cases": 77.0,
- "new_cases_smoothed": 70.857,
- "total_deaths": 616.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2429.646,
- "new_cases_per_million": 13.294,
- "new_cases_smoothed_per_million": 12.233,
- "total_deaths_per_million": 106.35,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.074,
- "new_tests": 24878.0,
- "total_tests": 1644814.0,
- "total_tests_per_thousand": 283.97,
- "new_tests_per_thousand": 4.295,
- "new_tests_smoothed": 20592.0,
- "new_tests_smoothed_per_thousand": 3.555,
- "tests_per_case": 290.613,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-06",
- "total_cases": 14185.0,
- "new_cases": 112.0,
- "new_cases_smoothed": 78.714,
- "total_deaths": 616.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2448.982,
- "new_cases_per_million": 19.336,
- "new_cases_smoothed_per_million": 13.59,
- "total_deaths_per_million": 106.35,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 26853.0,
- "total_tests": 1671667.0,
- "total_tests_per_thousand": 288.606,
- "new_tests_per_thousand": 4.636,
- "new_tests_smoothed": 21493.0,
- "new_tests_smoothed_per_thousand": 3.711,
- "tests_per_case": 273.051,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-07",
- "total_cases": 14306.0,
- "new_cases": 121.0,
- "new_cases_smoothed": 83.0,
- "total_deaths": 617.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2469.872,
- "new_cases_per_million": 20.89,
- "new_cases_smoothed_per_million": 14.33,
- "total_deaths_per_million": 106.523,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 27073.0,
- "total_tests": 1698740.0,
- "total_tests_per_thousand": 293.28,
- "new_tests_per_thousand": 4.674,
- "new_tests_smoothed": 22515.0,
- "new_tests_smoothed_per_thousand": 3.887,
- "tests_per_case": 271.265,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-08",
- "total_cases": 14442.0,
- "new_cases": 136.0,
- "new_cases_smoothed": 93.286,
- "total_deaths": 617.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2493.352,
- "new_cases_per_million": 23.48,
- "new_cases_smoothed_per_million": 16.105,
- "total_deaths_per_million": 106.523,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 20789.0,
- "total_tests": 1719529.0,
- "total_tests_per_thousand": 296.87,
- "new_tests_per_thousand": 3.589,
- "new_tests_smoothed": 23441.0,
- "new_tests_smoothed_per_thousand": 4.047,
- "tests_per_case": 251.282,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-09",
- "total_cases": 14442.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 93.286,
- "total_deaths": 617.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2493.352,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 16.105,
- "total_deaths_per_million": 106.523,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 20934.0,
- "total_tests": 1740463.0,
- "total_tests_per_thousand": 300.484,
- "new_tests_per_thousand": 3.614,
- "new_tests_smoothed": 24187.0,
- "new_tests_smoothed_per_thousand": 4.176,
- "tests_per_case": 259.279,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-10",
- "total_cases": 14442.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 93.286,
- "total_deaths": 617.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2493.352,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 16.105,
- "total_deaths_per_million": 106.523,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 30947.0,
- "total_tests": 1771410.0,
- "total_tests_per_thousand": 305.827,
- "new_tests_per_thousand": 5.343,
- "new_tests_smoothed": 25202.0,
- "new_tests_smoothed_per_thousand": 4.351,
- "tests_per_case": 270.159,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-11",
- "total_cases": 14815.0,
- "new_cases": 373.0,
- "new_cases_smoothed": 117.0,
- "total_deaths": 620.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 2557.749,
- "new_cases_per_million": 64.397,
- "new_cases_smoothed_per_million": 20.2,
- "total_deaths_per_million": 107.04,
- "new_deaths_per_million": 0.518,
- "new_deaths_smoothed_per_million": 0.099,
- "new_tests": 33524.0,
- "total_tests": 1804934.0,
- "total_tests_per_thousand": 311.614,
- "new_tests_per_thousand": 5.788,
- "new_tests_smoothed": 26428.0,
- "new_tests_smoothed_per_thousand": 4.563,
- "tests_per_case": 225.88,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-12",
- "total_cases": 14959.0,
- "new_cases": 144.0,
- "new_cases_smoothed": 126.571,
- "total_deaths": 621.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 2582.61,
- "new_cases_per_million": 24.861,
- "new_cases_smoothed_per_million": 21.852,
- "total_deaths_per_million": 107.213,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.123,
- "new_tests": 34727.0,
- "total_tests": 1839661.0,
- "total_tests_per_thousand": 317.61,
- "new_tests_per_thousand": 5.995,
- "new_tests_smoothed": 27835.0,
- "new_tests_smoothed_per_thousand": 4.806,
- "tests_per_case": 219.915,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-13",
- "total_cases": 15070.0,
- "new_cases": 111.0,
- "new_cases_smoothed": 126.429,
- "total_deaths": 621.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 2601.773,
- "new_cases_per_million": 19.164,
- "new_cases_smoothed_per_million": 21.827,
- "total_deaths_per_million": 107.213,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.123,
- "new_tests": 33775.0,
- "total_tests": 1873436.0,
- "total_tests_per_thousand": 323.441,
- "new_tests_per_thousand": 5.831,
- "new_tests_smoothed": 28824.0,
- "new_tests_smoothed_per_thousand": 4.976,
- "tests_per_case": 227.986,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-14",
- "total_cases": 15214.0,
- "new_cases": 144.0,
- "new_cases_smoothed": 129.714,
- "total_deaths": 621.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 2626.634,
- "new_cases_per_million": 24.861,
- "new_cases_smoothed_per_million": 22.395,
- "total_deaths_per_million": 107.213,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.099,
- "new_tests": 32563.0,
- "total_tests": 1905999.0,
- "total_tests_per_thousand": 329.063,
- "new_tests_per_thousand": 5.622,
- "new_tests_smoothed": 29608.0,
- "new_tests_smoothed_per_thousand": 5.112,
- "tests_per_case": 228.25599999999997,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-15",
- "total_cases": 15379.0,
- "new_cases": 165.0,
- "new_cases_smoothed": 133.857,
- "total_deaths": 621.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 2655.121,
- "new_cases_per_million": 28.487,
- "new_cases_smoothed_per_million": 23.11,
- "total_deaths_per_million": 107.213,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.099,
- "new_tests": 25240.0,
- "total_tests": 1931239.0,
- "total_tests_per_thousand": 333.42,
- "new_tests_per_thousand": 4.358,
- "new_tests_smoothed": 30244.0,
- "new_tests_smoothed_per_thousand": 5.222,
- "tests_per_case": 225.942,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-16",
- "total_cases": 15483.0,
- "new_cases": 104.0,
- "new_cases_smoothed": 148.714,
- "total_deaths": 621.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 2673.076,
- "new_cases_per_million": 17.955,
- "new_cases_smoothed_per_million": 25.675,
- "total_deaths_per_million": 107.213,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.099,
- "new_tests": 25604.0,
- "total_tests": 1956843.0,
- "total_tests_per_thousand": 337.841,
- "new_tests_per_thousand": 4.42,
- "new_tests_smoothed": 30911.0,
- "new_tests_smoothed_per_thousand": 5.337,
- "tests_per_case": 207.855,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-17",
- "total_cases": 15617.0,
- "new_cases": 134.0,
- "new_cases_smoothed": 167.857,
- "total_deaths": 621.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 2696.211,
- "new_cases_per_million": 23.135,
- "new_cases_smoothed_per_million": 28.98,
- "total_deaths_per_million": 107.213,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.099,
- "new_tests": 35591.0,
- "total_tests": 1992434.0,
- "total_tests_per_thousand": 343.986,
- "new_tests_per_thousand": 6.145,
- "new_tests_smoothed": 31575.0,
- "new_tests_smoothed_per_thousand": 5.451,
- "tests_per_case": 188.106,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-18",
- "total_cases": 15740.0,
- "new_cases": 123.0,
- "new_cases_smoothed": 132.143,
- "total_deaths": 621.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2717.446,
- "new_cases_per_million": 21.235,
- "new_cases_smoothed_per_million": 22.814,
- "total_deaths_per_million": 107.213,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.025,
- "new_tests": 37884.0,
- "total_tests": 2030318.0,
- "total_tests_per_thousand": 350.526,
- "new_tests_per_thousand": 6.541,
- "new_tests_smoothed": 32198.0,
- "new_tests_smoothed_per_thousand": 5.559,
- "tests_per_case": 243.66099999999997,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-19",
- "total_cases": 15855.0,
- "new_cases": 115.0,
- "new_cases_smoothed": 128.0,
- "total_deaths": 621.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2737.3,
- "new_cases_per_million": 19.854,
- "new_cases_smoothed_per_million": 22.099,
- "total_deaths_per_million": 107.213,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 39063.0,
- "total_tests": 2069381.0,
- "total_tests_per_thousand": 357.27,
- "new_tests_per_thousand": 6.744,
- "new_tests_smoothed": 32817.0,
- "new_tests_smoothed_per_thousand": 5.666,
- "tests_per_case": 256.383,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-20",
- "total_cases": 15940.0,
- "new_cases": 85.0,
- "new_cases_smoothed": 124.286,
- "total_deaths": 621.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2751.975,
- "new_cases_per_million": 14.675,
- "new_cases_smoothed_per_million": 21.457,
- "total_deaths_per_million": 107.213,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 38011.0,
- "total_tests": 2107392.0,
- "total_tests_per_thousand": 363.833,
- "new_tests_per_thousand": 6.562,
- "new_tests_smoothed": 33422.0,
- "new_tests_smoothed_per_thousand": 5.77,
- "tests_per_case": 268.913,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-21",
- "total_cases": 16056.0,
- "new_cases": 116.0,
- "new_cases_smoothed": 120.286,
- "total_deaths": 621.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2772.002,
- "new_cases_per_million": 20.027,
- "new_cases_smoothed_per_million": 20.767,
- "total_deaths_per_million": 107.213,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 35704.0,
- "total_tests": 2143096.0,
- "total_tests_per_thousand": 369.997,
- "new_tests_per_thousand": 6.164,
- "new_tests_smoothed": 33871.0,
- "new_tests_smoothed_per_thousand": 5.848,
- "tests_per_case": 281.58799999999997,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-22",
- "total_cases": 16127.0,
- "new_cases": 71.0,
- "new_cases_smoothed": 106.857,
- "total_deaths": 621.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2784.26,
- "new_cases_per_million": 12.258,
- "new_cases_smoothed_per_million": 18.448,
- "total_deaths_per_million": 107.213,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 28636.0,
- "total_tests": 2171732.0,
- "total_tests_per_thousand": 374.941,
- "new_tests_per_thousand": 4.944,
- "new_tests_smoothed": 34356.0,
- "new_tests_smoothed_per_thousand": 5.931,
- "tests_per_case": 321.513,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-23",
- "total_cases": 16127.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 92.0,
- "total_deaths": 621.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2784.26,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 15.883,
- "total_deaths_per_million": 107.213,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 27560.0,
- "total_tests": 2199292.0,
- "total_tests_per_thousand": 379.699,
- "new_tests_per_thousand": 4.758,
- "new_tests_smoothed": 34636.0,
- "new_tests_smoothed_per_thousand": 5.98,
- "tests_per_case": 376.478,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-24",
- "total_cases": 16127.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 72.857,
- "total_deaths": 621.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 2784.26,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 12.578,
- "total_deaths_per_million": 107.213,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "new_tests": 39326.0,
- "total_tests": 2238618.0,
- "total_tests_per_thousand": 386.488,
- "new_tests_per_thousand": 6.789,
- "new_tests_smoothed": 35169.0,
- "new_tests_smoothed_per_thousand": 6.072,
- "tests_per_case": 482.712,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-25",
- "total_cases": 16397.0,
- "new_cases": 270.0,
- "new_cases_smoothed": 93.857,
- "total_deaths": 623.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2830.875,
- "new_cases_per_million": 46.614,
- "new_cases_smoothed_per_million": 16.204,
- "total_deaths_per_million": 107.558,
- "new_deaths_per_million": 0.345,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 39747.0,
- "total_tests": 2278365.0,
- "total_tests_per_thousand": 393.35,
- "new_tests_per_thousand": 6.862,
- "new_tests_smoothed": 35435.0,
- "new_tests_smoothed_per_thousand": 6.118,
- "tests_per_case": 377.542,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-26",
- "total_cases": 16480.0,
- "new_cases": 83.0,
- "new_cases_smoothed": 89.286,
- "total_deaths": 623.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2845.204,
- "new_cases_per_million": 14.33,
- "new_cases_smoothed_per_million": 15.415,
- "total_deaths_per_million": 107.558,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 40061.0,
- "total_tests": 2318426.0,
- "total_tests_per_thousand": 400.267,
- "new_tests_per_thousand": 6.916,
- "new_tests_smoothed": 35578.0,
- "new_tests_smoothed_per_thousand": 6.142,
- "tests_per_case": 398.474,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-27",
- "total_cases": 16537.0,
- "new_cases": 57.0,
- "new_cases_smoothed": 85.286,
- "total_deaths": 623.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2855.045,
- "new_cases_per_million": 9.841,
- "new_cases_smoothed_per_million": 14.724,
- "total_deaths_per_million": 107.558,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 38676.0,
- "total_tests": 2357102.0,
- "total_tests_per_thousand": 406.944,
- "new_tests_per_thousand": 6.677,
- "new_tests_smoothed": 35673.0,
- "new_tests_smoothed_per_thousand": 6.159,
- "tests_per_case": 418.276,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-28",
- "total_cases": 16627.0,
- "new_cases": 90.0,
- "new_cases_smoothed": 81.571,
- "total_deaths": 624.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2870.583,
- "new_cases_per_million": 15.538,
- "new_cases_smoothed_per_million": 14.083,
- "total_deaths_per_million": 107.731,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.074,
- "new_tests": 35436.0,
- "total_tests": 2392538.0,
- "total_tests_per_thousand": 413.062,
- "new_tests_per_thousand": 6.118,
- "new_tests_smoothed": 35635.0,
- "new_tests_smoothed_per_thousand": 6.152,
- "tests_per_case": 436.856,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-29",
- "total_cases": 16700.0,
- "new_cases": 73.0,
- "new_cases_smoothed": 81.857,
- "total_deaths": 624.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2883.186,
- "new_cases_per_million": 12.603,
- "new_cases_smoothed_per_million": 14.132,
- "total_deaths_per_million": 107.731,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.074,
- "new_tests": 25183.0,
- "total_tests": 2417721.0,
- "total_tests_per_thousand": 417.41,
- "new_tests_per_thousand": 4.348,
- "new_tests_smoothed": 35141.0,
- "new_tests_smoothed_per_thousand": 6.067,
- "tests_per_case": 429.29699999999997,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-30",
- "total_cases": 16700.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 81.857,
- "total_deaths": 624.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2883.186,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 14.132,
- "total_deaths_per_million": 107.731,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.074,
- "new_tests": 25243.0,
- "total_tests": 2442964.0,
- "total_tests_per_thousand": 421.768,
- "new_tests_per_thousand": 4.358,
- "new_tests_smoothed": 34810.0,
- "new_tests_smoothed_per_thousand": 6.01,
- "tests_per_case": 425.25300000000004,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-08-31",
- "total_cases": 16700.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 81.857,
- "total_deaths": 624.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2883.186,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 14.132,
- "total_deaths_per_million": 107.731,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.074,
- "new_tests": 39626.0,
- "total_tests": 2482590.0,
- "total_tests_per_thousand": 428.609,
- "new_tests_per_thousand": 6.841,
- "new_tests_smoothed": 34853.0,
- "new_tests_smoothed_per_thousand": 6.017,
- "tests_per_case": 425.778,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-09-01",
- "total_cases": 16985.0,
- "new_cases": 285.0,
- "new_cases_smoothed": 84.0,
- "total_deaths": 624.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 2932.39,
- "new_cases_per_million": 49.204,
- "new_cases_smoothed_per_million": 14.502,
- "total_deaths_per_million": 107.731,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.025,
- "new_tests": 39209.0,
- "total_tests": 2521799.0,
- "total_tests_per_thousand": 435.378,
- "new_tests_per_thousand": 6.769,
- "new_tests_smoothed": 34776.0,
- "new_tests_smoothed_per_thousand": 6.004,
- "tests_per_case": 414.0,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-09-02",
- "total_cases": 17084.0,
- "new_cases": 99.0,
- "new_cases_smoothed": 86.286,
- "total_deaths": 625.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2949.482,
- "new_cases_per_million": 17.092,
- "new_cases_smoothed_per_million": 14.897,
- "total_deaths_per_million": 107.904,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 40013.0,
- "total_tests": 2561812.0,
- "total_tests_per_thousand": 442.286,
- "new_tests_per_thousand": 6.908,
- "new_tests_smoothed": 34769.0,
- "new_tests_smoothed_per_thousand": 6.003,
- "tests_per_case": 402.952,
- "positive_rate": 0.002,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-09-03",
- "total_cases": 17195.0,
- "new_cases": 111.0,
- "new_cases_smoothed": 94.0,
- "total_deaths": 626.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 2968.646,
- "new_cases_per_million": 19.164,
- "new_cases_smoothed_per_million": 16.229,
- "total_deaths_per_million": 108.076,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.074,
- "new_tests": 38808.0,
- "total_tests": 2600620.0,
- "total_tests_per_thousand": 448.986,
- "new_tests_per_thousand": 6.7,
- "new_tests_smoothed": 34788.0,
- "new_tests_smoothed_per_thousand": 6.006,
- "tests_per_case": 370.085,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-09-04",
- "total_cases": 17374.0,
- "new_cases": 179.0,
- "new_cases_smoothed": 106.714,
- "total_deaths": 626.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2999.55,
- "new_cases_per_million": 30.904,
- "new_cases_smoothed_per_million": 18.424,
- "total_deaths_per_million": 108.076,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 40136.0,
- "total_tests": 2640756.0,
- "total_tests_per_thousand": 455.916,
- "new_tests_per_thousand": 6.929,
- "new_tests_smoothed": 35460.0,
- "new_tests_smoothed_per_thousand": 6.122,
- "tests_per_case": 332.289,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-09-05",
- "total_cases": 17547.0,
- "new_cases": 173.0,
- "new_cases_smoothed": 121.0,
- "total_deaths": 627.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 3029.417,
- "new_cases_per_million": 29.868,
- "new_cases_smoothed_per_million": 20.89,
- "total_deaths_per_million": 108.249,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.074,
- "new_tests": 28558.0,
- "total_tests": 2669314.0,
- "total_tests_per_thousand": 460.846,
- "new_tests_per_thousand": 4.93,
- "new_tests_smoothed": 35942.0,
- "new_tests_smoothed_per_thousand": 6.205,
- "tests_per_case": 297.041,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-09-06",
- "total_cases": 17547.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 121.0,
- "total_deaths": 627.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 3029.417,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 20.89,
- "total_deaths_per_million": 108.249,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.074,
- "new_tests": 29780.0,
- "total_tests": 2699094.0,
- "total_tests_per_thousand": 465.987,
- "new_tests_per_thousand": 5.141,
- "new_tests_smoothed": 36590.0,
- "new_tests_smoothed_per_thousand": 6.317,
- "tests_per_case": 302.397,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-09-07",
- "total_cases": 17547.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 121.0,
- "total_deaths": 627.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 3029.417,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 20.89,
- "total_deaths_per_million": 108.249,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.074,
- "new_tests": 47808.0,
- "total_tests": 2746902.0,
- "total_tests_per_thousand": 474.241,
- "new_tests_per_thousand": 8.254,
- "new_tests_smoothed": 37759.0,
- "new_tests_smoothed_per_thousand": 6.519,
- "tests_per_case": 312.058,
- "positive_rate": 0.003,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-09-08",
- "total_cases": 18113.0,
- "new_cases": 566.0,
- "new_cases_smoothed": 161.143,
- "total_deaths": 628.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 3127.135,
- "new_cases_per_million": 97.718,
- "new_cases_smoothed_per_million": 27.821,
- "total_deaths_per_million": 108.422,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.099,
- "new_tests": 48320.0,
- "total_tests": 2795222.0,
- "total_tests_per_thousand": 482.584,
- "new_tests_per_thousand": 8.342,
- "new_tests_smoothed": 39060.0,
- "new_tests_smoothed_per_thousand": 6.744,
- "tests_per_case": 242.394,
- "positive_rate": 0.004,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-09-09",
- "total_cases": 18356.0,
- "new_cases": 243.0,
- "new_cases_smoothed": 181.714,
- "total_deaths": 628.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 3169.088,
- "new_cases_per_million": 41.953,
- "new_cases_smoothed_per_million": 31.372,
- "total_deaths_per_million": 108.422,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.074,
- "new_tests": 48820.0,
- "total_tests": 2844042.0,
- "total_tests_per_thousand": 491.012,
- "new_tests_per_thousand": 8.429,
- "new_tests_smoothed": 40319.0,
- "new_tests_smoothed_per_thousand": 6.961,
- "tests_per_case": 221.88099999999997,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 53.24
- },
- {
- "date": "2020-09-10",
- "total_cases": 18607.0,
- "new_cases": 251.0,
- "new_cases_smoothed": 201.714,
- "total_deaths": 628.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3212.422,
- "new_cases_per_million": 43.334,
- "new_cases_smoothed_per_million": 34.825,
- "total_deaths_per_million": 108.422,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 52150.0,
- "total_tests": 2896192.0,
- "total_tests_per_thousand": 500.016,
- "new_tests_per_thousand": 9.003,
- "new_tests_smoothed": 42225.0,
- "new_tests_smoothed_per_thousand": 7.29,
- "tests_per_case": 209.331,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 53.24
- },
- {
- "date": "2020-09-11",
- "total_cases": 18924.0,
- "new_cases": 317.0,
- "new_cases_smoothed": 221.429,
- "total_deaths": 629.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 3267.151,
- "new_cases_per_million": 54.729,
- "new_cases_smoothed_per_million": 38.229,
- "total_deaths_per_million": 108.594,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.074,
- "new_tests": 50568.0,
- "total_tests": 2946760.0,
- "total_tests_per_thousand": 508.746,
- "new_tests_per_thousand": 8.73,
- "new_tests_smoothed": 43715.0,
- "new_tests_smoothed_per_thousand": 7.547,
- "tests_per_case": 197.423,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 53.24
- },
- {
- "date": "2020-09-12",
- "total_cases": 19216.0,
- "new_cases": 292.0,
- "new_cases_smoothed": 238.429,
- "total_deaths": 629.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3317.563,
- "new_cases_per_million": 50.413,
- "new_cases_smoothed_per_million": 41.164,
- "total_deaths_per_million": 108.594,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 41339.0,
- "total_tests": 2988099.0,
- "total_tests_per_thousand": 515.883,
- "new_tests_per_thousand": 7.137,
- "new_tests_smoothed": 45541.0,
- "new_tests_smoothed_per_thousand": 7.862,
- "tests_per_case": 191.005,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 53.24
- },
- {
- "date": "2020-09-13",
- "total_cases": 19216.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 238.429,
- "total_deaths": 629.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3317.563,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 41.164,
- "total_deaths_per_million": 108.594,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 41890.0,
- "total_tests": 3029989.0,
- "total_tests_per_thousand": 523.115,
- "new_tests_per_thousand": 7.232,
- "new_tests_smoothed": 47271.0,
- "new_tests_smoothed_per_thousand": 8.161,
- "tests_per_case": 198.261,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 53.24
- },
- {
- "date": "2020-09-14",
- "total_cases": 19216.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 238.429,
- "total_deaths": 629.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3317.563,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 41.164,
- "total_deaths_per_million": 108.594,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 55729.0,
- "total_tests": 3085718.0,
- "total_tests_per_thousand": 532.737,
- "new_tests_per_thousand": 9.621,
- "new_tests_smoothed": 48402.0,
- "new_tests_smoothed_per_thousand": 8.356,
- "tests_per_case": 203.00400000000002,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 53.24
- },
- {
- "date": "2020-09-15",
- "total_cases": 19800.0,
- "new_cases": 584.0,
- "new_cases_smoothed": 241.0,
- "total_deaths": 633.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 3418.388,
- "new_cases_per_million": 100.825,
- "new_cases_smoothed_per_million": 41.608,
- "total_deaths_per_million": 109.285,
- "new_deaths_per_million": 0.691,
- "new_deaths_smoothed_per_million": 0.123,
- "new_tests": 56132.0,
- "total_tests": 3141850.0,
- "total_tests_per_thousand": 542.427,
- "new_tests_per_thousand": 9.691,
- "new_tests_smoothed": 49518.0,
- "new_tests_smoothed_per_thousand": 8.549,
- "tests_per_case": 205.46900000000002,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 53.24
- },
- {
- "date": "2020-09-16",
- "total_cases": 20129.0,
- "new_cases": 329.0,
- "new_cases_smoothed": 253.286,
- "total_deaths": 633.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 3475.189,
- "new_cases_per_million": 56.8,
- "new_cases_smoothed_per_million": 43.729,
- "total_deaths_per_million": 109.285,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.123,
- "new_tests": 56669.0,
- "total_tests": 3198519.0,
- "total_tests_per_thousand": 552.211,
- "new_tests_per_thousand": 9.784,
- "new_tests_smoothed": 50640.0,
- "new_tests_smoothed_per_thousand": 8.743,
- "tests_per_case": 199.93200000000002,
- "positive_rate": 0.005,
- "tests_units": "tests performed",
- "stringency_index": 53.24
- },
- {
- "date": "2020-09-17",
- "total_cases": 20571.0,
- "new_cases": 442.0,
- "new_cases_smoothed": 280.571,
- "total_deaths": 633.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 3551.498,
- "new_cases_per_million": 76.309,
- "new_cases_smoothed_per_million": 48.44,
- "total_deaths_per_million": 109.285,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.123,
- "new_tests": 52001.0,
- "total_tests": 3250520.0,
- "total_tests_per_thousand": 561.189,
- "new_tests_per_thousand": 8.978,
- "new_tests_smoothed": 50618.0,
- "new_tests_smoothed_per_thousand": 8.739,
- "tests_per_case": 180.41,
- "positive_rate": 0.006,
- "tests_units": "tests performed",
- "stringency_index": 53.24
- },
- {
- "date": "2020-09-18",
- "total_cases": 21393.0,
- "new_cases": 822.0,
- "new_cases_smoothed": 352.714,
- "total_deaths": 635.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 3693.413,
- "new_cases_per_million": 141.915,
- "new_cases_smoothed_per_million": 60.895,
- "total_deaths_per_million": 109.63,
- "new_deaths_per_million": 0.345,
- "new_deaths_smoothed_per_million": 0.148,
- "new_tests": 51484.0,
- "total_tests": 3302004.0,
- "total_tests_per_thousand": 570.077,
- "new_tests_per_thousand": 8.889,
- "new_tests_smoothed": 50749.0,
- "new_tests_smoothed_per_thousand": 8.762,
- "tests_per_case": 143.881,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 53.24
- },
- {
- "date": "2020-09-19",
- "total_cases": 21847.0,
- "new_cases": 454.0,
- "new_cases_smoothed": 375.857,
- "total_deaths": 635.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 3771.795,
- "new_cases_per_million": 78.381,
- "new_cases_smoothed_per_million": 64.89,
- "total_deaths_per_million": 109.63,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.148,
- "new_tests": 40034.0,
- "total_tests": 3342038.0,
- "total_tests_per_thousand": 576.989,
- "new_tests_per_thousand": 6.912,
- "new_tests_smoothed": 50563.0,
- "new_tests_smoothed_per_thousand": 8.729,
- "tests_per_case": 134.52700000000002,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-09-20",
- "total_cases": 21847.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 375.857,
- "total_deaths": 635.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 3771.795,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 64.89,
- "total_deaths_per_million": 109.63,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.148,
- "new_tests": 40962.0,
- "total_tests": 3383000.0,
- "total_tests_per_thousand": 584.061,
- "new_tests_per_thousand": 7.072,
- "new_tests_smoothed": 50430.0,
- "new_tests_smoothed_per_thousand": 8.707,
- "tests_per_case": 134.173,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-09-21",
- "total_cases": 21847.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 375.857,
- "total_deaths": 635.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 3771.795,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 64.89,
- "total_deaths_per_million": 109.63,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.148,
- "new_tests": 53865.0,
- "total_tests": 3436865.0,
- "total_tests_per_thousand": 593.361,
- "new_tests_per_thousand": 9.3,
- "new_tests_smoothed": 50164.0,
- "new_tests_smoothed_per_thousand": 8.661,
- "tests_per_case": 133.466,
- "positive_rate": 0.006999999999999999,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-09-22",
- "total_cases": 23323.0,
- "new_cases": 1476.0,
- "new_cases_smoothed": 503.286,
- "total_deaths": 640.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 1.0,
- "total_cases_per_million": 4026.62,
- "new_cases_per_million": 254.825,
- "new_cases_smoothed_per_million": 86.89,
- "total_deaths_per_million": 110.493,
- "new_deaths_per_million": 0.863,
- "new_deaths_smoothed_per_million": 0.173,
- "new_tests": 48046.0,
- "total_tests": 3484911.0,
- "total_tests_per_thousand": 601.656,
- "new_tests_per_thousand": 8.295,
- "new_tests_smoothed": 49009.0,
- "new_tests_smoothed_per_thousand": 8.461,
- "tests_per_case": 97.37799999999999,
- "positive_rate": 0.01,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-09-23",
- "total_cases": 23799.0,
- "new_cases": 476.0,
- "new_cases_smoothed": 524.286,
- "total_deaths": 641.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 4108.799,
- "new_cases_per_million": 82.179,
- "new_cases_smoothed_per_million": 90.516,
- "total_deaths_per_million": 110.666,
- "new_deaths_per_million": 0.173,
- "new_deaths_smoothed_per_million": 0.197,
- "new_tests": 7279.0,
- "total_tests": 3492190.0,
- "total_tests_per_thousand": 602.912,
- "new_tests_per_thousand": 1.257,
- "new_tests_smoothed": 41953.0,
- "new_tests_smoothed_per_thousand": 7.243,
- "tests_per_case": 80.01899999999999,
- "positive_rate": 0.012,
- "tests_units": "tests performed",
- "stringency_index": 56.48
- },
- {
- "date": "2020-09-24",
- "total_cases": 24357.0,
- "new_cases": 558.0,
- "new_cases_smoothed": 540.857,
- "total_deaths": 643.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 4205.136,
- "new_cases_per_million": 96.336,
- "new_cases_smoothed_per_million": 93.377,
- "total_deaths_per_million": 111.011,
- "new_deaths_per_million": 0.345,
- "new_deaths_smoothed_per_million": 0.247,
- "stringency_index": 56.48
- },
- {
- "date": "2020-09-25",
- "total_cases": 24916.0,
- "new_cases": 559.0,
- "new_cases_smoothed": 503.286,
- "total_deaths": 645.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 4301.645,
- "new_cases_per_million": 96.509,
- "new_cases_smoothed_per_million": 86.89,
- "total_deaths_per_million": 111.357,
- "new_deaths_per_million": 0.345,
- "new_deaths_smoothed_per_million": 0.247
- }
- ]
- },
- "DOM": {
- "continent": "North America",
- "location": "Dominican Republic",
- "population": 10847904.0,
- "population_density": 222.873,
- "median_age": 27.6,
- "aged_65_older": 6.981,
- "aged_70_older": 4.419,
- "gdp_per_capita": 14600.861,
- "extreme_poverty": 1.6,
- "cardiovasc_death_rate": 266.653,
- "diabetes_prevalence": 8.2,
- "female_smokers": 8.5,
- "male_smokers": 19.1,
- "handwashing_facilities": 55.182,
- "hospital_beds_per_thousand": 1.6,
- "life_expectancy": 74.08,
- "human_development_index": 0.736,
- "data": [
- {
- "date": "2019-12-31",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-01-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-02",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-03",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-04",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-05",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-06",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-07",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-08",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-09",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-10",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-11",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-12",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-13",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-14",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-15",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-16",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-17",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-18",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-19",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-20",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-21",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-22",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-23",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-24",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-25",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-26",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-27",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-28",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-29",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-30",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-31",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-02",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-03",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-04",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-05",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-06",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-07",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-08",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-09",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-10",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-11",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-12",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-13",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-14",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-15",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-16",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-17",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-18",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-19",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-20",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-21",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-22",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-23",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-24",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-25",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-26",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-27",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-28",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-29",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-02",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.092,
- "new_cases_per_million": 0.092,
- "new_cases_smoothed_per_million": 0.013,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-03",
- "new_cases_smoothed": 0.143,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.013,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-04",
- "new_cases_smoothed": 0.143,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.013,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-05",
- "new_cases_smoothed": 0.143,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.013,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-06",
- "new_cases_smoothed": 0.143,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.013,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-07",
- "total_cases": 2.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.184,
- "new_cases_per_million": 0.092,
- "new_cases_smoothed_per_million": 0.026,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-08",
- "new_cases_smoothed": 0.286,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.026,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-09",
- "new_cases_smoothed": 0.143,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.013,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-10",
- "total_cases": 5.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.461,
- "new_cases_per_million": 0.277,
- "new_cases_smoothed_per_million": 0.053,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-11",
- "new_cases_smoothed": 0.571,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.053,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-12",
- "new_cases_smoothed": 0.571,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.053,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-13",
- "new_cases_smoothed": 0.571,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.053,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-14",
- "total_cases": 11.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.014,
- "new_cases_per_million": 0.553,
- "new_cases_smoothed_per_million": 0.119,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-15",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.014,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.119,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 11.11
- },
- {
- "date": "2020-03-16",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.014,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.119,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 23.15
- },
- {
- "date": "2020-03-17",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.014,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.079,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 26.85
- },
- {
- "date": "2020-03-18",
- "total_cases": 11.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.014,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.079,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "total_tests": 88.0,
- "total_tests_per_thousand": 0.008,
- "tests_units": "samples tested",
- "stringency_index": 26.85
- },
- {
- "date": "2020-03-19",
- "total_cases": 21.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.936,
- "new_cases_per_million": 0.922,
- "new_cases_smoothed_per_million": 0.211,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "tests_units": "samples tested",
- "stringency_index": 70.37
- },
- {
- "date": "2020-03-20",
- "total_cases": 21.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 1.936,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.211,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "total_tests": 288.0,
- "total_tests_per_thousand": 0.027,
- "tests_units": "samples tested",
- "stringency_index": 81.48
- },
- {
- "date": "2020-03-21",
- "total_cases": 34.0,
- "new_cases": 13.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 2.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3.134,
- "new_cases_per_million": 1.198,
- "new_cases_smoothed_per_million": 0.303,
- "total_deaths_per_million": 0.184,
- "new_deaths_per_million": 0.184,
- "new_deaths_smoothed_per_million": 0.026,
- "new_tests": 309.0,
- "total_tests": 597.0,
- "total_tests_per_thousand": 0.055,
- "new_tests_per_thousand": 0.028,
- "tests_units": "samples tested",
- "stringency_index": 81.48
- },
- {
- "date": "2020-03-22",
- "total_cases": 112.0,
- "new_cases": 78.0,
- "new_cases_smoothed": 14.429,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 10.325,
- "new_cases_per_million": 7.19,
- "new_cases_smoothed_per_million": 1.33,
- "total_deaths_per_million": 0.277,
- "new_deaths_per_million": 0.092,
- "new_deaths_smoothed_per_million": 0.04,
- "new_tests": 191.0,
- "total_tests": 788.0,
- "total_tests_per_thousand": 0.073,
- "new_tests_per_thousand": 0.018,
- "tests_units": "samples tested",
- "stringency_index": 81.48
- },
- {
- "date": "2020-03-23",
- "total_cases": 202.0,
- "new_cases": 90.0,
- "new_cases_smoothed": 27.286,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 18.621,
- "new_cases_per_million": 8.297,
- "new_cases_smoothed_per_million": 2.515,
- "total_deaths_per_million": 0.277,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.04,
- "new_tests": 185.0,
- "total_tests": 973.0,
- "total_tests_per_thousand": 0.09,
- "new_tests_per_thousand": 0.017,
- "tests_units": "samples tested",
- "stringency_index": 81.48
- },
- {
- "date": "2020-03-24",
- "total_cases": 245.0,
- "new_cases": 43.0,
- "new_cases_smoothed": 33.429,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 22.585,
- "new_cases_per_million": 3.964,
- "new_cases_smoothed_per_million": 3.082,
- "total_deaths_per_million": 0.277,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.04,
- "new_tests": 134.0,
- "total_tests": 1107.0,
- "total_tests_per_thousand": 0.102,
- "new_tests_per_thousand": 0.012,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-03-25",
- "total_cases": 312.0,
- "new_cases": 67.0,
- "new_cases_smoothed": 43.0,
- "total_deaths": 6.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 28.761,
- "new_cases_per_million": 6.176,
- "new_cases_smoothed_per_million": 3.964,
- "total_deaths_per_million": 0.553,
- "new_deaths_per_million": 0.277,
- "new_deaths_smoothed_per_million": 0.079,
- "new_tests": 341.0,
- "total_tests": 1448.0,
- "total_tests_per_thousand": 0.133,
- "new_tests_per_thousand": 0.031,
- "new_tests_smoothed": 194.0,
- "new_tests_smoothed_per_thousand": 0.018,
- "tests_per_case": 4.512,
- "positive_rate": 0.222,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-03-26",
- "total_cases": 392.0,
- "new_cases": 80.0,
- "new_cases_smoothed": 53.0,
- "total_deaths": 10.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 36.136,
- "new_cases_per_million": 7.375,
- "new_cases_smoothed_per_million": 4.886,
- "total_deaths_per_million": 0.922,
- "new_deaths_per_million": 0.369,
- "new_deaths_smoothed_per_million": 0.132,
- "new_tests": 282.0,
- "total_tests": 1730.0,
- "total_tests_per_thousand": 0.159,
- "new_tests_per_thousand": 0.026,
- "new_tests_smoothed": 220.0,
- "new_tests_smoothed_per_thousand": 0.02,
- "tests_per_case": 4.151,
- "positive_rate": 0.24100000000000002,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-03-27",
- "total_cases": 488.0,
- "new_cases": 96.0,
- "new_cases_smoothed": 66.714,
- "total_deaths": 10.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.429,
- "total_cases_per_million": 44.986,
- "new_cases_per_million": 8.85,
- "new_cases_smoothed_per_million": 6.15,
- "total_deaths_per_million": 0.922,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.132,
- "new_tests": 423.0,
- "total_tests": 2153.0,
- "total_tests_per_thousand": 0.198,
- "new_tests_per_thousand": 0.039,
- "new_tests_smoothed": 266.0,
- "new_tests_smoothed_per_thousand": 0.025,
- "tests_per_case": 3.987,
- "positive_rate": 0.251,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-03-28",
- "total_cases": 581.0,
- "new_cases": 93.0,
- "new_cases_smoothed": 78.143,
- "total_deaths": 20.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 53.559,
- "new_cases_per_million": 8.573,
- "new_cases_smoothed_per_million": 7.203,
- "total_deaths_per_million": 1.844,
- "new_deaths_per_million": 0.922,
- "new_deaths_smoothed_per_million": 0.237,
- "new_tests": 437.0,
- "total_tests": 2590.0,
- "total_tests_per_thousand": 0.239,
- "new_tests_per_thousand": 0.04,
- "new_tests_smoothed": 285.0,
- "new_tests_smoothed_per_thousand": 0.026,
- "tests_per_case": 3.647,
- "positive_rate": 0.27399999999999997,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-03-29",
- "total_cases": 719.0,
- "new_cases": 138.0,
- "new_cases_smoothed": 86.714,
- "total_deaths": 28.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 66.28,
- "new_cases_per_million": 12.721,
- "new_cases_smoothed_per_million": 7.994,
- "total_deaths_per_million": 2.581,
- "new_deaths_per_million": 0.737,
- "new_deaths_smoothed_per_million": 0.329,
- "new_tests": 366.0,
- "total_tests": 2956.0,
- "total_tests_per_thousand": 0.272,
- "new_tests_per_thousand": 0.034,
- "new_tests_smoothed": 310.0,
- "new_tests_smoothed_per_thousand": 0.029,
- "tests_per_case": 3.575,
- "positive_rate": 0.28,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-03-30",
- "total_cases": 859.0,
- "new_cases": 140.0,
- "new_cases_smoothed": 93.857,
- "total_deaths": 39.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 79.186,
- "new_cases_per_million": 12.906,
- "new_cases_smoothed_per_million": 8.652,
- "total_deaths_per_million": 3.595,
- "new_deaths_per_million": 1.014,
- "new_deaths_smoothed_per_million": 0.474,
- "new_tests": 299.0,
- "total_tests": 3255.0,
- "total_tests_per_thousand": 0.3,
- "new_tests_per_thousand": 0.028,
- "new_tests_smoothed": 326.0,
- "new_tests_smoothed_per_thousand": 0.03,
- "tests_per_case": 3.4730000000000003,
- "positive_rate": 0.28800000000000003,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-03-31",
- "total_cases": 901.0,
- "new_cases": 42.0,
- "new_cases_smoothed": 93.714,
- "total_deaths": 42.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 83.058,
- "new_cases_per_million": 3.872,
- "new_cases_smoothed_per_million": 8.639,
- "total_deaths_per_million": 3.872,
- "new_deaths_per_million": 0.277,
- "new_deaths_smoothed_per_million": 0.514,
- "new_tests": 447.0,
- "total_tests": 3702.0,
- "total_tests_per_thousand": 0.341,
- "new_tests_per_thousand": 0.041,
- "new_tests_smoothed": 371.0,
- "new_tests_smoothed_per_thousand": 0.034,
- "tests_per_case": 3.9589999999999996,
- "positive_rate": 0.253,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-01",
- "total_cases": 1109.0,
- "new_cases": 208.0,
- "new_cases_smoothed": 113.857,
- "total_deaths": 51.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 6.429,
- "total_cases_per_million": 102.232,
- "new_cases_per_million": 19.174,
- "new_cases_smoothed_per_million": 10.496,
- "total_deaths_per_million": 4.701,
- "new_deaths_per_million": 0.83,
- "new_deaths_smoothed_per_million": 0.593,
- "new_tests": 316.0,
- "total_tests": 4018.0,
- "total_tests_per_thousand": 0.37,
- "new_tests_per_thousand": 0.029,
- "new_tests_smoothed": 367.0,
- "new_tests_smoothed_per_thousand": 0.034,
- "tests_per_case": 3.2230000000000003,
- "positive_rate": 0.31,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-02",
- "total_cases": 1284.0,
- "new_cases": 175.0,
- "new_cases_smoothed": 127.429,
- "total_deaths": 57.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 6.714,
- "total_cases_per_million": 118.364,
- "new_cases_per_million": 16.132,
- "new_cases_smoothed_per_million": 11.747,
- "total_deaths_per_million": 5.254,
- "new_deaths_per_million": 0.553,
- "new_deaths_smoothed_per_million": 0.619,
- "new_tests": 182.0,
- "total_tests": 4200.0,
- "total_tests_per_thousand": 0.387,
- "new_tests_per_thousand": 0.017,
- "new_tests_smoothed": 353.0,
- "new_tests_smoothed_per_thousand": 0.033,
- "tests_per_case": 2.77,
- "positive_rate": 0.361,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-03",
- "total_cases": 1380.0,
- "new_cases": 96.0,
- "new_cases_smoothed": 127.429,
- "total_deaths": 60.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 7.143,
- "total_cases_per_million": 127.214,
- "new_cases_per_million": 8.85,
- "new_cases_smoothed_per_million": 11.747,
- "total_deaths_per_million": 5.531,
- "new_deaths_per_million": 0.277,
- "new_deaths_smoothed_per_million": 0.658,
- "new_tests": 342.0,
- "total_tests": 4542.0,
- "total_tests_per_thousand": 0.419,
- "new_tests_per_thousand": 0.032,
- "new_tests_smoothed": 341.0,
- "new_tests_smoothed_per_thousand": 0.031,
- "tests_per_case": 2.676,
- "positive_rate": 0.374,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-04",
- "total_cases": 1488.0,
- "new_cases": 108.0,
- "new_cases_smoothed": 129.571,
- "total_deaths": 68.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 6.857,
- "total_cases_per_million": 137.169,
- "new_cases_per_million": 9.956,
- "new_cases_smoothed_per_million": 11.944,
- "total_deaths_per_million": 6.268,
- "new_deaths_per_million": 0.737,
- "new_deaths_smoothed_per_million": 0.632,
- "new_tests": 641.0,
- "total_tests": 5183.0,
- "total_tests_per_thousand": 0.478,
- "new_tests_per_thousand": 0.059,
- "new_tests_smoothed": 370.0,
- "new_tests_smoothed_per_thousand": 0.034,
- "tests_per_case": 2.8560000000000003,
- "positive_rate": 0.35,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-05",
- "total_cases": 1578.0,
- "new_cases": 90.0,
- "new_cases_smoothed": 122.714,
- "total_deaths": 77.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 7.0,
- "total_cases_per_million": 145.466,
- "new_cases_per_million": 8.297,
- "new_cases_smoothed_per_million": 11.312,
- "total_deaths_per_million": 7.098,
- "new_deaths_per_million": 0.83,
- "new_deaths_smoothed_per_million": 0.645,
- "new_tests": 306.0,
- "total_tests": 5489.0,
- "total_tests_per_thousand": 0.506,
- "new_tests_per_thousand": 0.028,
- "new_tests_smoothed": 362.0,
- "new_tests_smoothed_per_thousand": 0.033,
- "tests_per_case": 2.95,
- "positive_rate": 0.33899999999999997,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-06",
- "total_cases": 1745.0,
- "new_cases": 167.0,
- "new_cases_smoothed": 126.571,
- "total_deaths": 82.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 6.143,
- "total_cases_per_million": 160.861,
- "new_cases_per_million": 15.395,
- "new_cases_smoothed_per_million": 11.668,
- "total_deaths_per_million": 7.559,
- "new_deaths_per_million": 0.461,
- "new_deaths_smoothed_per_million": 0.566,
- "new_tests": 331.0,
- "total_tests": 5820.0,
- "total_tests_per_thousand": 0.537,
- "new_tests_per_thousand": 0.031,
- "new_tests_smoothed": 366.0,
- "new_tests_smoothed_per_thousand": 0.034,
- "tests_per_case": 2.892,
- "positive_rate": 0.34600000000000003,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-07",
- "total_cases": 1828.0,
- "new_cases": 83.0,
- "new_cases_smoothed": 132.429,
- "total_deaths": 86.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 6.286,
- "total_cases_per_million": 168.512,
- "new_cases_per_million": 7.651,
- "new_cases_smoothed_per_million": 12.208,
- "total_deaths_per_million": 7.928,
- "new_deaths_per_million": 0.369,
- "new_deaths_smoothed_per_million": 0.579,
- "new_tests": 538.0,
- "total_tests": 6358.0,
- "total_tests_per_thousand": 0.586,
- "new_tests_per_thousand": 0.05,
- "new_tests_smoothed": 379.0,
- "new_tests_smoothed_per_thousand": 0.035,
- "tests_per_case": 2.862,
- "positive_rate": 0.349,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-08",
- "total_cases": 1956.0,
- "new_cases": 128.0,
- "new_cases_smoothed": 121.0,
- "total_deaths": 98.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 6.714,
- "total_cases_per_million": 180.311,
- "new_cases_per_million": 11.8,
- "new_cases_smoothed_per_million": 11.154,
- "total_deaths_per_million": 9.034,
- "new_deaths_per_million": 1.106,
- "new_deaths_smoothed_per_million": 0.619,
- "new_tests": 793.0,
- "total_tests": 7151.0,
- "total_tests_per_thousand": 0.659,
- "new_tests_per_thousand": 0.073,
- "new_tests_smoothed": 448.0,
- "new_tests_smoothed_per_thousand": 0.041,
- "tests_per_case": 3.702,
- "positive_rate": 0.27,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-09",
- "total_cases": 2111.0,
- "new_cases": 155.0,
- "new_cases_smoothed": 118.143,
- "total_deaths": 108.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 7.286,
- "total_cases_per_million": 194.6,
- "new_cases_per_million": 14.288,
- "new_cases_smoothed_per_million": 10.891,
- "total_deaths_per_million": 9.956,
- "new_deaths_per_million": 0.922,
- "new_deaths_smoothed_per_million": 0.672,
- "new_tests": 785.0,
- "total_tests": 7936.0,
- "total_tests_per_thousand": 0.732,
- "new_tests_per_thousand": 0.072,
- "new_tests_smoothed": 534.0,
- "new_tests_smoothed_per_thousand": 0.049,
- "tests_per_case": 4.52,
- "positive_rate": 0.221,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-10",
- "total_cases": 2349.0,
- "new_cases": 238.0,
- "new_cases_smoothed": 138.429,
- "total_deaths": 118.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 8.286,
- "total_cases_per_million": 216.54,
- "new_cases_per_million": 21.94,
- "new_cases_smoothed_per_million": 12.761,
- "total_deaths_per_million": 10.878,
- "new_deaths_per_million": 0.922,
- "new_deaths_smoothed_per_million": 0.764,
- "new_tests": 533.0,
- "total_tests": 8469.0,
- "total_tests_per_thousand": 0.781,
- "new_tests_per_thousand": 0.049,
- "new_tests_smoothed": 561.0,
- "new_tests_smoothed_per_thousand": 0.052,
- "tests_per_case": 4.053,
- "positive_rate": 0.247,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-11",
- "total_cases": 2620.0,
- "new_cases": 271.0,
- "new_cases_smoothed": 161.714,
- "total_deaths": 126.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 8.286,
- "total_cases_per_million": 241.521,
- "new_cases_per_million": 24.982,
- "new_cases_smoothed_per_million": 14.907,
- "total_deaths_per_million": 11.615,
- "new_deaths_per_million": 0.737,
- "new_deaths_smoothed_per_million": 0.764,
- "new_tests": 806.0,
- "total_tests": 9275.0,
- "total_tests_per_thousand": 0.855,
- "new_tests_per_thousand": 0.074,
- "new_tests_smoothed": 585.0,
- "new_tests_smoothed_per_thousand": 0.054,
- "tests_per_case": 3.617,
- "positive_rate": 0.276,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-12",
- "total_cases": 2759.0,
- "new_cases": 139.0,
- "new_cases_smoothed": 168.714,
- "total_deaths": 135.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 8.286,
- "total_cases_per_million": 254.335,
- "new_cases_per_million": 12.814,
- "new_cases_smoothed_per_million": 15.553,
- "total_deaths_per_million": 12.445,
- "new_deaths_per_million": 0.83,
- "new_deaths_smoothed_per_million": 0.764,
- "new_tests": 800.0,
- "total_tests": 10075.0,
- "total_tests_per_thousand": 0.929,
- "new_tests_per_thousand": 0.074,
- "new_tests_smoothed": 655.0,
- "new_tests_smoothed_per_thousand": 0.06,
- "tests_per_case": 3.8819999999999997,
- "positive_rate": 0.258,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-13",
- "total_cases": 2967.0,
- "new_cases": 208.0,
- "new_cases_smoothed": 174.571,
- "total_deaths": 173.0,
- "new_deaths": 38.0,
- "new_deaths_smoothed": 13.0,
- "total_cases_per_million": 273.509,
- "new_cases_per_million": 19.174,
- "new_cases_smoothed_per_million": 16.093,
- "total_deaths_per_million": 15.948,
- "new_deaths_per_million": 3.503,
- "new_deaths_smoothed_per_million": 1.198,
- "new_tests": 373.0,
- "total_tests": 10448.0,
- "total_tests_per_thousand": 0.963,
- "new_tests_per_thousand": 0.034,
- "new_tests_smoothed": 661.0,
- "new_tests_smoothed_per_thousand": 0.061,
- "tests_per_case": 3.786,
- "positive_rate": 0.264,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-14",
- "total_cases": 3167.0,
- "new_cases": 200.0,
- "new_cases_smoothed": 191.286,
- "total_deaths": 177.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 13.0,
- "total_cases_per_million": 291.946,
- "new_cases_per_million": 18.437,
- "new_cases_smoothed_per_million": 17.633,
- "total_deaths_per_million": 16.317,
- "new_deaths_per_million": 0.369,
- "new_deaths_smoothed_per_million": 1.198,
- "new_tests": 1293.0,
- "total_tests": 11741.0,
- "total_tests_per_thousand": 1.082,
- "new_tests_per_thousand": 0.119,
- "new_tests_smoothed": 769.0,
- "new_tests_smoothed_per_thousand": 0.071,
- "tests_per_case": 4.02,
- "positive_rate": 0.249,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-15",
- "total_cases": 3286.0,
- "new_cases": 119.0,
- "new_cases_smoothed": 190.0,
- "total_deaths": 183.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 12.143,
- "total_cases_per_million": 302.916,
- "new_cases_per_million": 10.97,
- "new_cases_smoothed_per_million": 17.515,
- "total_deaths_per_million": 16.87,
- "new_deaths_per_million": 0.553,
- "new_deaths_smoothed_per_million": 1.119,
- "new_tests": 488.0,
- "total_tests": 12229.0,
- "total_tests_per_thousand": 1.127,
- "new_tests_per_thousand": 0.045,
- "new_tests_smoothed": 725.0,
- "new_tests_smoothed_per_thousand": 0.067,
- "tests_per_case": 3.8160000000000003,
- "positive_rate": 0.262,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-16",
- "total_cases": 3614.0,
- "new_cases": 328.0,
- "new_cases_smoothed": 214.714,
- "total_deaths": 189.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 11.571,
- "total_cases_per_million": 333.152,
- "new_cases_per_million": 30.236,
- "new_cases_smoothed_per_million": 19.793,
- "total_deaths_per_million": 17.423,
- "new_deaths_per_million": 0.553,
- "new_deaths_smoothed_per_million": 1.067,
- "new_tests": 1053.0,
- "total_tests": 13282.0,
- "total_tests_per_thousand": 1.224,
- "new_tests_per_thousand": 0.097,
- "new_tests_smoothed": 764.0,
- "new_tests_smoothed_per_thousand": 0.07,
- "tests_per_case": 3.5580000000000003,
- "positive_rate": 0.281,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-17",
- "total_cases": 3755.0,
- "new_cases": 141.0,
- "new_cases_smoothed": 200.857,
- "total_deaths": 196.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 11.143,
- "total_cases_per_million": 346.15,
- "new_cases_per_million": 12.998,
- "new_cases_smoothed_per_million": 18.516,
- "total_deaths_per_million": 18.068,
- "new_deaths_per_million": 0.645,
- "new_deaths_smoothed_per_million": 1.027,
- "new_tests": 1091.0,
- "total_tests": 14373.0,
- "total_tests_per_thousand": 1.325,
- "new_tests_per_thousand": 0.101,
- "new_tests_smoothed": 843.0,
- "new_tests_smoothed_per_thousand": 0.078,
- "tests_per_case": 4.197,
- "positive_rate": 0.23800000000000002,
- "tests_units": "samples tested",
- "stringency_index": 89.81
- },
- {
- "date": "2020-04-18",
- "total_cases": 4126.0,
- "new_cases": 371.0,
- "new_cases_smoothed": 215.143,
- "total_deaths": 200.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 10.571,
- "total_cases_per_million": 380.35,
- "new_cases_per_million": 34.2,
- "new_cases_smoothed_per_million": 19.833,
- "total_deaths_per_million": 18.437,
- "new_deaths_per_million": 0.369,
- "new_deaths_smoothed_per_million": 0.975,
- "new_tests": 1210.0,
- "total_tests": 15583.0,
- "total_tests_per_thousand": 1.436,
- "new_tests_per_thousand": 0.112,
- "new_tests_smoothed": 901.0,
- "new_tests_smoothed_per_thousand": 0.083,
- "tests_per_case": 4.188,
- "positive_rate": 0.239,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-19",
- "total_cases": 4335.0,
- "new_cases": 209.0,
- "new_cases_smoothed": 225.143,
- "total_deaths": 217.0,
- "new_deaths": 17.0,
- "new_deaths_smoothed": 11.714,
- "total_cases_per_million": 399.616,
- "new_cases_per_million": 19.266,
- "new_cases_smoothed_per_million": 20.755,
- "total_deaths_per_million": 20.004,
- "new_deaths_per_million": 1.567,
- "new_deaths_smoothed_per_million": 1.08,
- "new_tests": 1099.0,
- "total_tests": 16682.0,
- "total_tests_per_thousand": 1.538,
- "new_tests_per_thousand": 0.101,
- "new_tests_smoothed": 944.0,
- "new_tests_smoothed_per_thousand": 0.087,
- "tests_per_case": 4.1930000000000005,
- "positive_rate": 0.23800000000000002,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-20",
- "total_cases": 4680.0,
- "new_cases": 345.0,
- "new_cases_smoothed": 244.714,
- "total_deaths": 226.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 7.571,
- "total_cases_per_million": 431.42,
- "new_cases_per_million": 31.803,
- "new_cases_smoothed_per_million": 22.559,
- "total_deaths_per_million": 20.834,
- "new_deaths_per_million": 0.83,
- "new_deaths_smoothed_per_million": 0.698,
- "new_tests": 291.0,
- "total_tests": 16973.0,
- "total_tests_per_thousand": 1.565,
- "new_tests_per_thousand": 0.027,
- "new_tests_smoothed": 932.0,
- "new_tests_smoothed_per_thousand": 0.086,
- "tests_per_case": 3.8089999999999997,
- "positive_rate": 0.263,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-21",
- "total_cases": 4964.0,
- "new_cases": 284.0,
- "new_cases_smoothed": 256.714,
- "total_deaths": 235.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 8.286,
- "total_cases_per_million": 457.6,
- "new_cases_per_million": 26.18,
- "new_cases_smoothed_per_million": 23.665,
- "total_deaths_per_million": 21.663,
- "new_deaths_per_million": 0.83,
- "new_deaths_smoothed_per_million": 0.764,
- "new_tests": 1288.0,
- "total_tests": 18261.0,
- "total_tests_per_thousand": 1.683,
- "new_tests_per_thousand": 0.119,
- "new_tests_smoothed": 931.0,
- "new_tests_smoothed_per_thousand": 0.086,
- "tests_per_case": 3.627,
- "positive_rate": 0.276,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-22",
- "total_cases": 5044.0,
- "new_cases": 80.0,
- "new_cases_smoothed": 251.143,
- "total_deaths": 245.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 8.857,
- "total_cases_per_million": 464.975,
- "new_cases_per_million": 7.375,
- "new_cases_smoothed_per_million": 23.151,
- "total_deaths_per_million": 22.585,
- "new_deaths_per_million": 0.922,
- "new_deaths_smoothed_per_million": 0.816,
- "new_tests": 1019.0,
- "total_tests": 19280.0,
- "total_tests_per_thousand": 1.777,
- "new_tests_per_thousand": 0.094,
- "new_tests_smoothed": 1007.0,
- "new_tests_smoothed_per_thousand": 0.093,
- "tests_per_case": 4.01,
- "positive_rate": 0.249,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-23",
- "total_cases": 5300.0,
- "new_cases": 256.0,
- "new_cases_smoothed": 240.857,
- "total_deaths": 260.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 10.143,
- "total_cases_per_million": 488.574,
- "new_cases_per_million": 23.599,
- "new_cases_smoothed_per_million": 22.203,
- "total_deaths_per_million": 23.968,
- "new_deaths_per_million": 1.383,
- "new_deaths_smoothed_per_million": 0.935,
- "new_tests": 990.0,
- "total_tests": 20270.0,
- "total_tests_per_thousand": 1.869,
- "new_tests_per_thousand": 0.091,
- "new_tests_smoothed": 998.0,
- "new_tests_smoothed_per_thousand": 0.092,
- "tests_per_case": 4.144,
- "positive_rate": 0.24100000000000002,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-24",
- "total_cases": 5543.0,
- "new_cases": 243.0,
- "new_cases_smoothed": 255.429,
- "total_deaths": 265.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 9.857,
- "total_cases_per_million": 510.974,
- "new_cases_per_million": 22.401,
- "new_cases_smoothed_per_million": 23.546,
- "total_deaths_per_million": 24.429,
- "new_deaths_per_million": 0.461,
- "new_deaths_smoothed_per_million": 0.909,
- "new_tests": 1014.0,
- "total_tests": 21284.0,
- "total_tests_per_thousand": 1.962,
- "new_tests_per_thousand": 0.093,
- "new_tests_smoothed": 987.0,
- "new_tests_smoothed_per_thousand": 0.091,
- "tests_per_case": 3.864,
- "positive_rate": 0.259,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-25",
- "total_cases": 5749.0,
- "new_cases": 206.0,
- "new_cases_smoothed": 231.857,
- "total_deaths": 267.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 9.571,
- "total_cases_per_million": 529.964,
- "new_cases_per_million": 18.99,
- "new_cases_smoothed_per_million": 21.373,
- "total_deaths_per_million": 24.613,
- "new_deaths_per_million": 0.184,
- "new_deaths_smoothed_per_million": 0.882,
- "new_tests": 1214.0,
- "total_tests": 22498.0,
- "total_tests_per_thousand": 2.074,
- "new_tests_per_thousand": 0.112,
- "new_tests_smoothed": 988.0,
- "new_tests_smoothed_per_thousand": 0.091,
- "tests_per_case": 4.261,
- "positive_rate": 0.235,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-26",
- "total_cases": 5926.0,
- "new_cases": 177.0,
- "new_cases_smoothed": 227.286,
- "total_deaths": 273.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 8.0,
- "total_cases_per_million": 546.281,
- "new_cases_per_million": 16.317,
- "new_cases_smoothed_per_million": 20.952,
- "total_deaths_per_million": 25.166,
- "new_deaths_per_million": 0.553,
- "new_deaths_smoothed_per_million": 0.737,
- "new_tests": 987.0,
- "total_tests": 23485.0,
- "total_tests_per_thousand": 2.165,
- "new_tests_per_thousand": 0.091,
- "new_tests_smoothed": 972.0,
- "new_tests_smoothed_per_thousand": 0.09,
- "tests_per_case": 4.277,
- "positive_rate": 0.23399999999999999,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-27",
- "total_cases": 6135.0,
- "new_cases": 209.0,
- "new_cases_smoothed": 207.857,
- "total_deaths": 278.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 7.429,
- "total_cases_per_million": 565.547,
- "new_cases_per_million": 19.266,
- "new_cases_smoothed_per_million": 19.161,
- "total_deaths_per_million": 25.627,
- "new_deaths_per_million": 0.461,
- "new_deaths_smoothed_per_million": 0.685,
- "new_tests": 494.0,
- "total_tests": 23979.0,
- "total_tests_per_thousand": 2.21,
- "new_tests_per_thousand": 0.046,
- "new_tests_smoothed": 1001.0,
- "new_tests_smoothed_per_thousand": 0.092,
- "tests_per_case": 4.816,
- "positive_rate": 0.20800000000000002,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-28",
- "total_cases": 6135.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 167.286,
- "total_deaths": 278.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 6.143,
- "total_cases_per_million": 565.547,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 15.421,
- "total_deaths_per_million": 25.627,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.566,
- "new_tests": 1389.0,
- "total_tests": 25368.0,
- "total_tests_per_thousand": 2.339,
- "new_tests_per_thousand": 0.128,
- "new_tests_smoothed": 1015.0,
- "new_tests_smoothed_per_thousand": 0.094,
- "tests_per_case": 6.067,
- "positive_rate": 0.165,
- "tests_units": "samples tested",
- "stringency_index": 97.22
- },
- {
- "date": "2020-04-29",
- "total_cases": 6416.0,
- "new_cases": 281.0,
- "new_cases_smoothed": 196.0,
- "total_deaths": 286.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 5.857,
- "total_cases_per_million": 591.451,
- "new_cases_per_million": 25.904,
- "new_cases_smoothed_per_million": 18.068,
- "total_deaths_per_million": 26.365,
- "new_deaths_per_million": 0.737,
- "new_deaths_smoothed_per_million": 0.54,
- "new_tests": 1613.0,
- "total_tests": 26981.0,
- "total_tests_per_thousand": 2.487,
- "new_tests_per_thousand": 0.149,
- "new_tests_smoothed": 1100.0,
- "new_tests_smoothed_per_thousand": 0.101,
- "tests_per_case": 5.612,
- "positive_rate": 0.17800000000000002,
- "tests_units": "samples tested",
- "stringency_index": 97.22
- },
- {
- "date": "2020-04-30",
- "total_cases": 6652.0,
- "new_cases": 236.0,
- "new_cases_smoothed": 193.143,
- "total_deaths": 293.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 613.206,
- "new_cases_per_million": 21.755,
- "new_cases_smoothed_per_million": 17.805,
- "total_deaths_per_million": 27.01,
- "new_deaths_per_million": 0.645,
- "new_deaths_smoothed_per_million": 0.435,
- "new_tests": 1465.0,
- "total_tests": 28446.0,
- "total_tests_per_thousand": 2.622,
- "new_tests_per_thousand": 0.135,
- "new_tests_smoothed": 1168.0,
- "new_tests_smoothed_per_thousand": 0.108,
- "tests_per_case": 6.047000000000001,
- "positive_rate": 0.165,
- "tests_units": "samples tested",
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-01",
- "total_cases": 6972.0,
- "new_cases": 320.0,
- "new_cases_smoothed": 204.143,
- "total_deaths": 301.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 642.705,
- "new_cases_per_million": 29.499,
- "new_cases_smoothed_per_million": 18.819,
- "total_deaths_per_million": 27.747,
- "new_deaths_per_million": 0.737,
- "new_deaths_smoothed_per_million": 0.474,
- "new_tests": 1656.0,
- "total_tests": 30102.0,
- "total_tests_per_thousand": 2.775,
- "new_tests_per_thousand": 0.153,
- "new_tests_smoothed": 1260.0,
- "new_tests_smoothed_per_thousand": 0.116,
- "tests_per_case": 6.172000000000001,
- "positive_rate": 0.162,
- "tests_units": "samples tested",
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-02",
- "total_cases": 7288.0,
- "new_cases": 316.0,
- "new_cases_smoothed": 219.857,
- "total_deaths": 313.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 671.835,
- "new_cases_per_million": 29.13,
- "new_cases_smoothed_per_million": 20.267,
- "total_deaths_per_million": 28.854,
- "new_deaths_per_million": 1.106,
- "new_deaths_smoothed_per_million": 0.606,
- "new_tests": 1923.0,
- "total_tests": 32025.0,
- "total_tests_per_thousand": 2.952,
- "new_tests_per_thousand": 0.177,
- "new_tests_smoothed": 1361.0,
- "new_tests_smoothed_per_thousand": 0.125,
- "tests_per_case": 6.19,
- "positive_rate": 0.162,
- "tests_units": "samples tested",
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-03",
- "total_cases": 7578.0,
- "new_cases": 290.0,
- "new_cases_smoothed": 236.0,
- "total_deaths": 326.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 7.571,
- "total_cases_per_million": 698.568,
- "new_cases_per_million": 26.733,
- "new_cases_smoothed_per_million": 21.755,
- "total_deaths_per_million": 30.052,
- "new_deaths_per_million": 1.198,
- "new_deaths_smoothed_per_million": 0.698,
- "new_tests": 1352.0,
- "total_tests": 33377.0,
- "total_tests_per_thousand": 3.077,
- "new_tests_per_thousand": 0.125,
- "new_tests_smoothed": 1413.0,
- "new_tests_smoothed_per_thousand": 0.13,
- "tests_per_case": 5.987,
- "positive_rate": 0.16699999999999998,
- "tests_units": "samples tested",
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-04",
- "total_cases": 7954.0,
- "new_cases": 376.0,
- "new_cases_smoothed": 259.857,
- "total_deaths": 333.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 7.857,
- "total_cases_per_million": 733.229,
- "new_cases_per_million": 34.661,
- "new_cases_smoothed_per_million": 23.955,
- "total_deaths_per_million": 30.697,
- "new_deaths_per_million": 0.645,
- "new_deaths_smoothed_per_million": 0.724,
- "new_tests": 959.0,
- "total_tests": 34336.0,
- "total_tests_per_thousand": 3.165,
- "new_tests_per_thousand": 0.088,
- "new_tests_smoothed": 1480.0,
- "new_tests_smoothed_per_thousand": 0.136,
- "tests_per_case": 5.695,
- "positive_rate": 0.17600000000000002,
- "tests_units": "samples tested",
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-05",
- "total_cases": 8235.0,
- "new_cases": 281.0,
- "new_cases_smoothed": 300.0,
- "total_deaths": 346.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 9.714,
- "total_cases_per_million": 759.133,
- "new_cases_per_million": 25.904,
- "new_cases_smoothed_per_million": 27.655,
- "total_deaths_per_million": 31.896,
- "new_deaths_per_million": 1.198,
- "new_deaths_smoothed_per_million": 0.895,
- "new_tests": 1004.0,
- "total_tests": 35340.0,
- "total_tests_per_thousand": 3.258,
- "new_tests_per_thousand": 0.093,
- "new_tests_smoothed": 1425.0,
- "new_tests_smoothed_per_thousand": 0.131,
- "tests_per_case": 4.75,
- "positive_rate": 0.21100000000000002,
- "tests_units": "samples tested",
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-06",
- "total_cases": 8480.0,
- "new_cases": 245.0,
- "new_cases_smoothed": 294.857,
- "total_deaths": 354.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 9.714,
- "total_cases_per_million": 781.718,
- "new_cases_per_million": 22.585,
- "new_cases_smoothed_per_million": 27.181,
- "total_deaths_per_million": 32.633,
- "new_deaths_per_million": 0.737,
- "new_deaths_smoothed_per_million": 0.895,
- "new_tests": 1619.0,
- "total_tests": 36959.0,
- "total_tests_per_thousand": 3.407,
- "new_tests_per_thousand": 0.149,
- "new_tests_smoothed": 1425.0,
- "new_tests_smoothed_per_thousand": 0.131,
- "tests_per_case": 4.833,
- "positive_rate": 0.207,
- "tests_units": "samples tested",
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-07",
- "total_cases": 8807.0,
- "new_cases": 327.0,
- "new_cases_smoothed": 307.857,
- "total_deaths": 362.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 9.857,
- "total_cases_per_million": 811.862,
- "new_cases_per_million": 30.144,
- "new_cases_smoothed_per_million": 28.379,
- "total_deaths_per_million": 33.371,
- "new_deaths_per_million": 0.737,
- "new_deaths_smoothed_per_million": 0.909,
- "new_tests": 1584.0,
- "total_tests": 38543.0,
- "total_tests_per_thousand": 3.553,
- "new_tests_per_thousand": 0.146,
- "new_tests_smoothed": 1442.0,
- "new_tests_smoothed_per_thousand": 0.133,
- "tests_per_case": 4.684,
- "positive_rate": 0.213,
- "tests_units": "samples tested",
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-08",
- "total_cases": 9095.0,
- "new_cases": 288.0,
- "new_cases_smoothed": 303.286,
- "total_deaths": 373.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 10.286,
- "total_cases_per_million": 838.411,
- "new_cases_per_million": 26.549,
- "new_cases_smoothed_per_million": 27.958,
- "total_deaths_per_million": 34.385,
- "new_deaths_per_million": 1.014,
- "new_deaths_smoothed_per_million": 0.948,
- "new_tests": 2048.0,
- "total_tests": 40591.0,
- "total_tests_per_thousand": 3.742,
- "new_tests_per_thousand": 0.189,
- "new_tests_smoothed": 1498.0,
- "new_tests_smoothed_per_thousand": 0.138,
- "tests_per_case": 4.939,
- "positive_rate": 0.20199999999999999,
- "tests_units": "samples tested",
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-09",
- "total_cases": 9376.0,
- "new_cases": 281.0,
- "new_cases_smoothed": 298.286,
- "total_deaths": 380.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 9.571,
- "total_cases_per_million": 864.314,
- "new_cases_per_million": 25.904,
- "new_cases_smoothed_per_million": 27.497,
- "total_deaths_per_million": 35.03,
- "new_deaths_per_million": 0.645,
- "new_deaths_smoothed_per_million": 0.882,
- "new_tests": 2024.0,
- "total_tests": 42615.0,
- "total_tests_per_thousand": 3.928,
- "new_tests_per_thousand": 0.187,
- "new_tests_smoothed": 1513.0,
- "new_tests_smoothed_per_thousand": 0.139,
- "tests_per_case": 5.072,
- "positive_rate": 0.19699999999999998,
- "tests_units": "samples tested",
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-10",
- "total_cases": 9882.0,
- "new_cases": 506.0,
- "new_cases_smoothed": 329.143,
- "total_deaths": 385.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 8.429,
- "total_cases_per_million": 910.959,
- "new_cases_per_million": 46.645,
- "new_cases_smoothed_per_million": 30.342,
- "total_deaths_per_million": 35.491,
- "new_deaths_per_million": 0.461,
- "new_deaths_smoothed_per_million": 0.777,
- "new_tests": 1672.0,
- "total_tests": 44287.0,
- "total_tests_per_thousand": 4.083,
- "new_tests_per_thousand": 0.154,
- "new_tests_smoothed": 1559.0,
- "new_tests_smoothed_per_thousand": 0.144,
- "tests_per_case": 4.737,
- "positive_rate": 0.21100000000000002,
- "tests_units": "samples tested",
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-11",
- "total_cases": 10347.0,
- "new_cases": 465.0,
- "new_cases_smoothed": 341.857,
- "total_deaths": 388.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 7.857,
- "total_cases_per_million": 953.825,
- "new_cases_per_million": 42.865,
- "new_cases_smoothed_per_million": 31.514,
- "total_deaths_per_million": 35.767,
- "new_deaths_per_million": 0.277,
- "new_deaths_smoothed_per_million": 0.724,
- "new_tests": 1038.0,
- "total_tests": 45325.0,
- "total_tests_per_thousand": 4.178,
- "new_tests_per_thousand": 0.096,
- "new_tests_smoothed": 1570.0,
- "new_tests_smoothed_per_thousand": 0.145,
- "tests_per_case": 4.593,
- "positive_rate": 0.218,
- "tests_units": "samples tested",
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-12",
- "total_cases": 10634.0,
- "new_cases": 287.0,
- "new_cases_smoothed": 342.714,
- "total_deaths": 393.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 6.714,
- "total_cases_per_million": 980.282,
- "new_cases_per_million": 26.457,
- "new_cases_smoothed_per_million": 31.593,
- "total_deaths_per_million": 36.228,
- "new_deaths_per_million": 0.461,
- "new_deaths_smoothed_per_million": 0.619,
- "new_tests": 1792.0,
- "total_tests": 47117.0,
- "total_tests_per_thousand": 4.343,
- "new_tests_per_thousand": 0.165,
- "new_tests_smoothed": 1682.0,
- "new_tests_smoothed_per_thousand": 0.155,
- "tests_per_case": 4.908,
- "positive_rate": 0.204,
- "tests_units": "samples tested",
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-13",
- "total_cases": 10900.0,
- "new_cases": 266.0,
- "new_cases_smoothed": 345.714,
- "total_deaths": 402.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 6.857,
- "total_cases_per_million": 1004.802,
- "new_cases_per_million": 24.521,
- "new_cases_smoothed_per_million": 31.869,
- "total_deaths_per_million": 37.058,
- "new_deaths_per_million": 0.83,
- "new_deaths_smoothed_per_million": 0.632,
- "new_tests": 746.0,
- "total_tests": 47863.0,
- "total_tests_per_thousand": 4.412,
- "new_tests_per_thousand": 0.069,
- "new_tests_smoothed": 1558.0,
- "new_tests_smoothed_per_thousand": 0.144,
- "tests_per_case": 4.507,
- "positive_rate": 0.222,
- "tests_units": "samples tested",
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-14",
- "total_cases": 11196.0,
- "new_cases": 296.0,
- "new_cases_smoothed": 341.286,
- "total_deaths": 409.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 6.714,
- "total_cases_per_million": 1032.089,
- "new_cases_per_million": 27.286,
- "new_cases_smoothed_per_million": 31.461,
- "total_deaths_per_million": 37.703,
- "new_deaths_per_million": 0.645,
- "new_deaths_smoothed_per_million": 0.619,
- "new_tests": 2245.0,
- "total_tests": 50108.0,
- "total_tests_per_thousand": 4.619,
- "new_tests_per_thousand": 0.207,
- "new_tests_smoothed": 1652.0,
- "new_tests_smoothed_per_thousand": 0.152,
- "tests_per_case": 4.841,
- "positive_rate": 0.207,
- "tests_units": "samples tested",
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-15",
- "total_cases": 11320.0,
- "new_cases": 124.0,
- "new_cases_smoothed": 317.857,
- "total_deaths": 422.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 7.0,
- "total_cases_per_million": 1043.52,
- "new_cases_per_million": 11.431,
- "new_cases_smoothed_per_million": 29.301,
- "total_deaths_per_million": 38.902,
- "new_deaths_per_million": 1.198,
- "new_deaths_smoothed_per_million": 0.645,
- "new_tests": 2251.0,
- "total_tests": 52359.0,
- "total_tests_per_thousand": 4.827,
- "new_tests_per_thousand": 0.208,
- "new_tests_smoothed": 1681.0,
- "new_tests_smoothed_per_thousand": 0.155,
- "tests_per_case": 5.289,
- "positive_rate": 0.18899999999999997,
- "tests_units": "samples tested",
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-16",
- "total_cases": 11739.0,
- "new_cases": 419.0,
- "new_cases_smoothed": 337.571,
- "total_deaths": 424.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 6.286,
- "total_cases_per_million": 1082.145,
- "new_cases_per_million": 38.625,
- "new_cases_smoothed_per_million": 31.119,
- "total_deaths_per_million": 39.086,
- "new_deaths_per_million": 0.184,
- "new_deaths_smoothed_per_million": 0.579,
- "new_tests": 921.0,
- "total_tests": 53280.0,
- "total_tests_per_thousand": 4.912,
- "new_tests_per_thousand": 0.085,
- "new_tests_smoothed": 1524.0,
- "new_tests_smoothed_per_thousand": 0.14,
- "tests_per_case": 4.515,
- "positive_rate": 0.222,
- "tests_units": "samples tested",
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-17",
- "total_cases": 11893.0,
- "new_cases": 154.0,
- "new_cases_smoothed": 287.286,
- "total_deaths": 424.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 1096.341,
- "new_cases_per_million": 14.196,
- "new_cases_smoothed_per_million": 26.483,
- "total_deaths_per_million": 39.086,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.514,
- "new_tests": 2189.0,
- "total_tests": 55469.0,
- "total_tests_per_thousand": 5.113,
- "new_tests_per_thousand": 0.202,
- "new_tests_smoothed": 1597.0,
- "new_tests_smoothed_per_thousand": 0.147,
- "tests_per_case": 5.559,
- "positive_rate": 0.18,
- "tests_units": "samples tested",
- "stringency_index": 97.22
- },
- {
- "date": "2020-05-18",
- "total_cases": 12314.0,
- "new_cases": 421.0,
- "new_cases_smoothed": 281.0,
- "total_deaths": 428.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 5.714,
- "total_cases_per_million": 1135.15,
- "new_cases_per_million": 38.809,
- "new_cases_smoothed_per_million": 25.904,
- "total_deaths_per_million": 39.455,
- "new_deaths_per_million": 0.369,
- "new_deaths_smoothed_per_million": 0.527,
- "new_tests_smoothed": 1771.0,
- "new_tests_smoothed_per_thousand": 0.163,
- "tests_per_case": 6.3020000000000005,
- "positive_rate": 0.159,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-05-19",
- "total_cases": 12725.0,
- "new_cases": 411.0,
- "new_cases_smoothed": 298.714,
- "total_deaths": 434.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.857,
- "total_cases_per_million": 1173.038,
- "new_cases_per_million": 37.888,
- "new_cases_smoothed_per_million": 27.537,
- "total_deaths_per_million": 40.008,
- "new_deaths_per_million": 0.553,
- "new_deaths_smoothed_per_million": 0.54,
- "total_tests": 59976.0,
- "total_tests_per_thousand": 5.529,
- "new_tests_smoothed": 1837.0,
- "new_tests_smoothed_per_thousand": 0.169,
- "tests_per_case": 6.15,
- "positive_rate": 0.163,
- "tests_units": "samples tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-05-20",
- "total_cases": 13223.0,
- "new_cases": 498.0,
- "new_cases_smoothed": 331.857,
- "total_deaths": 441.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 1218.945,
- "new_cases_per_million": 45.907,
- "new_cases_smoothed_per_million": 30.592,
- "total_deaths_per_million": 40.653,
- "new_deaths_per_million": 0.645,
- "new_deaths_smoothed_per_million": 0.514,
- "new_tests": 1354.0,
- "total_tests": 61330.0,
- "total_tests_per_thousand": 5.654,
- "new_tests_per_thousand": 0.125,
- "new_tests_smoothed": 1924.0,
- "new_tests_smoothed_per_thousand": 0.177,
- "tests_per_case": 5.797999999999999,
- "positive_rate": 0.172,
- "tests_units": "samples tested",
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-21",
- "total_cases": 13477.0,
- "new_cases": 254.0,
- "new_cases_smoothed": 325.857,
- "total_deaths": 446.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.286,
- "total_cases_per_million": 1242.36,
- "new_cases_per_million": 23.415,
- "new_cases_smoothed_per_million": 30.039,
- "total_deaths_per_million": 41.114,
- "new_deaths_per_million": 0.461,
- "new_deaths_smoothed_per_million": 0.487,
- "new_tests": 2189.0,
- "total_tests": 63519.0,
- "total_tests_per_thousand": 5.855,
- "new_tests_per_thousand": 0.202,
- "new_tests_smoothed": 1916.0,
- "new_tests_smoothed_per_thousand": 0.177,
- "tests_per_case": 5.88,
- "positive_rate": 0.17,
- "tests_units": "samples tested",
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-22",
- "total_cases": 13657.0,
- "new_cases": 180.0,
- "new_cases_smoothed": 333.857,
- "total_deaths": 448.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 1258.953,
- "new_cases_per_million": 16.593,
- "new_cases_smoothed_per_million": 30.776,
- "total_deaths_per_million": 41.298,
- "new_deaths_per_million": 0.184,
- "new_deaths_smoothed_per_million": 0.342,
- "new_tests": 1836.0,
- "total_tests": 65355.0,
- "total_tests_per_thousand": 6.025,
- "new_tests_per_thousand": 0.169,
- "new_tests_smoothed": 1857.0,
- "new_tests_smoothed_per_thousand": 0.171,
- "tests_per_case": 5.562,
- "positive_rate": 0.18,
- "tests_units": "samples tested",
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-23",
- "total_cases": 13989.0,
- "new_cases": 332.0,
- "new_cases_smoothed": 321.429,
- "total_deaths": 456.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 1289.558,
- "new_cases_per_million": 30.605,
- "new_cases_smoothed_per_million": 29.63,
- "total_deaths_per_million": 42.036,
- "new_deaths_per_million": 0.737,
- "new_deaths_smoothed_per_million": 0.421,
- "new_tests": 2585.0,
- "total_tests": 67940.0,
- "total_tests_per_thousand": 6.263,
- "new_tests_per_thousand": 0.238,
- "new_tests_smoothed": 2094.0,
- "new_tests_smoothed_per_thousand": 0.193,
- "tests_per_case": 6.515,
- "positive_rate": 0.153,
- "tests_units": "samples tested",
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-24",
- "total_cases": 14422.0,
- "new_cases": 433.0,
- "new_cases_smoothed": 361.286,
- "total_deaths": 458.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 1329.473,
- "new_cases_per_million": 39.916,
- "new_cases_smoothed_per_million": 33.305,
- "total_deaths_per_million": 42.22,
- "new_deaths_per_million": 0.184,
- "new_deaths_smoothed_per_million": 0.448,
- "new_tests": 1668.0,
- "total_tests": 69608.0,
- "total_tests_per_thousand": 6.417,
- "new_tests_per_thousand": 0.154,
- "new_tests_smoothed": 2020.0,
- "new_tests_smoothed_per_thousand": 0.186,
- "tests_per_case": 5.591,
- "positive_rate": 0.179,
- "tests_units": "samples tested",
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-25",
- "total_cases": 14422.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 301.143,
- "total_deaths": 458.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 4.286,
- "total_cases_per_million": 1329.473,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 27.76,
- "total_deaths_per_million": 42.22,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.395,
- "new_tests": 1364.0,
- "total_tests": 70972.0,
- "total_tests_per_thousand": 6.542,
- "new_tests_per_thousand": 0.126,
- "new_tests_smoothed": 1893.0,
- "new_tests_smoothed_per_thousand": 0.175,
- "tests_per_case": 6.2860000000000005,
- "positive_rate": 0.159,
- "tests_units": "samples tested",
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-26",
- "total_cases": 15073.0,
- "new_cases": 651.0,
- "new_cases_smoothed": 335.429,
- "total_deaths": 460.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 1389.485,
- "new_cases_per_million": 60.012,
- "new_cases_smoothed_per_million": 30.921,
- "total_deaths_per_million": 42.405,
- "new_deaths_per_million": 0.184,
- "new_deaths_smoothed_per_million": 0.342,
- "new_tests": 2149.0,
- "total_tests": 73121.0,
- "total_tests_per_thousand": 6.741,
- "new_tests_per_thousand": 0.198,
- "new_tests_smoothed": 1878.0,
- "new_tests_smoothed_per_thousand": 0.173,
- "tests_per_case": 5.599,
- "positive_rate": 0.179,
- "tests_units": "samples tested",
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-27",
- "total_cases": 15264.0,
- "new_cases": 191.0,
- "new_cases_smoothed": 291.571,
- "total_deaths": 468.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 3.857,
- "total_cases_per_million": 1407.092,
- "new_cases_per_million": 17.607,
- "new_cases_smoothed_per_million": 26.878,
- "total_deaths_per_million": 43.142,
- "new_deaths_per_million": 0.737,
- "new_deaths_smoothed_per_million": 0.356,
- "new_tests": 1491.0,
- "total_tests": 74612.0,
- "total_tests_per_thousand": 6.878,
- "new_tests_per_thousand": 0.137,
- "new_tests_smoothed": 1897.0,
- "new_tests_smoothed_per_thousand": 0.175,
- "tests_per_case": 6.506,
- "positive_rate": 0.154,
- "tests_units": "samples tested",
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-28",
- "total_cases": 15723.0,
- "new_cases": 459.0,
- "new_cases_smoothed": 320.857,
- "total_deaths": 474.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.0,
- "total_cases_per_million": 1449.404,
- "new_cases_per_million": 42.312,
- "new_cases_smoothed_per_million": 29.578,
- "total_deaths_per_million": 43.695,
- "new_deaths_per_million": 0.553,
- "new_deaths_smoothed_per_million": 0.369,
- "new_tests": 2318.0,
- "total_tests": 76930.0,
- "total_tests_per_thousand": 7.092,
- "new_tests_per_thousand": 0.214,
- "new_tests_smoothed": 1916.0,
- "new_tests_smoothed_per_thousand": 0.177,
- "tests_per_case": 5.972,
- "positive_rate": 0.16699999999999998,
- "tests_units": "samples tested",
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-29",
- "total_cases": 16068.0,
- "new_cases": 345.0,
- "new_cases_smoothed": 344.429,
- "total_deaths": 485.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 5.286,
- "total_cases_per_million": 1481.208,
- "new_cases_per_million": 31.803,
- "new_cases_smoothed_per_million": 31.751,
- "total_deaths_per_million": 44.709,
- "new_deaths_per_million": 1.014,
- "new_deaths_smoothed_per_million": 0.487,
- "new_tests": 2242.0,
- "total_tests": 79172.0,
- "total_tests_per_thousand": 7.298,
- "new_tests_per_thousand": 0.207,
- "new_tests_smoothed": 1974.0,
- "new_tests_smoothed_per_thousand": 0.182,
- "tests_per_case": 5.731,
- "positive_rate": 0.174,
- "tests_units": "samples tested",
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-30",
- "total_cases": 16531.0,
- "new_cases": 463.0,
- "new_cases_smoothed": 363.143,
- "total_deaths": 488.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 1523.889,
- "new_cases_per_million": 42.681,
- "new_cases_smoothed_per_million": 33.476,
- "total_deaths_per_million": 44.986,
- "new_deaths_per_million": 0.277,
- "new_deaths_smoothed_per_million": 0.421,
- "new_tests": 2475.0,
- "total_tests": 81647.0,
- "total_tests_per_thousand": 7.527,
- "new_tests_per_thousand": 0.228,
- "new_tests_smoothed": 1958.0,
- "new_tests_smoothed_per_thousand": 0.18,
- "tests_per_case": 5.392,
- "positive_rate": 0.185,
- "tests_units": "samples tested",
- "stringency_index": 84.26
- },
- {
- "date": "2020-05-31",
- "total_cases": 16908.0,
- "new_cases": 377.0,
- "new_cases_smoothed": 355.143,
- "total_deaths": 498.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 5.714,
- "total_cases_per_million": 1558.642,
- "new_cases_per_million": 34.753,
- "new_cases_smoothed_per_million": 32.738,
- "total_deaths_per_million": 45.907,
- "new_deaths_per_million": 0.922,
- "new_deaths_smoothed_per_million": 0.527,
- "new_tests": 1797.0,
- "total_tests": 83444.0,
- "total_tests_per_thousand": 7.692,
- "new_tests_per_thousand": 0.166,
- "new_tests_smoothed": 1977.0,
- "new_tests_smoothed_per_thousand": 0.182,
- "tests_per_case": 5.567,
- "positive_rate": 0.18,
- "tests_units": "samples tested",
- "stringency_index": 84.26
- },
- {
- "date": "2020-06-01",
- "total_cases": 17285.0,
- "new_cases": 377.0,
- "new_cases_smoothed": 409.0,
- "total_deaths": 502.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 6.286,
- "total_cases_per_million": 1593.395,
- "new_cases_per_million": 34.753,
- "new_cases_smoothed_per_million": 37.703,
- "total_deaths_per_million": 46.276,
- "new_deaths_per_million": 0.369,
- "new_deaths_smoothed_per_million": 0.579,
- "new_tests": 1194.0,
- "total_tests": 84638.0,
- "total_tests_per_thousand": 7.802,
- "new_tests_per_thousand": 0.11,
- "new_tests_smoothed": 1952.0,
- "new_tests_smoothed_per_thousand": 0.18,
- "tests_per_case": 4.773,
- "positive_rate": 0.21,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-02",
- "total_cases": 17572.0,
- "new_cases": 287.0,
- "new_cases_smoothed": 357.0,
- "total_deaths": 502.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 6.0,
- "total_cases_per_million": 1619.852,
- "new_cases_per_million": 26.457,
- "new_cases_smoothed_per_million": 32.91,
- "total_deaths_per_million": 46.276,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.553,
- "new_tests": 1647.0,
- "total_tests": 86285.0,
- "total_tests_per_thousand": 7.954,
- "new_tests_per_thousand": 0.152,
- "new_tests_smoothed": 1881.0,
- "new_tests_smoothed_per_thousand": 0.173,
- "tests_per_case": 5.269,
- "positive_rate": 0.19,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-03",
- "total_cases": 17752.0,
- "new_cases": 180.0,
- "new_cases_smoothed": 355.429,
- "total_deaths": 515.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 6.714,
- "total_cases_per_million": 1636.445,
- "new_cases_per_million": 16.593,
- "new_cases_smoothed_per_million": 32.765,
- "total_deaths_per_million": 47.475,
- "new_deaths_per_million": 1.198,
- "new_deaths_smoothed_per_million": 0.619,
- "new_tests": 1771.0,
- "total_tests": 88056.0,
- "total_tests_per_thousand": 8.117,
- "new_tests_per_thousand": 0.163,
- "new_tests_smoothed": 1921.0,
- "new_tests_smoothed_per_thousand": 0.177,
- "tests_per_case": 5.405,
- "positive_rate": 0.185,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-04",
- "total_cases": 18040.0,
- "new_cases": 288.0,
- "new_cases_smoothed": 331.0,
- "total_deaths": 516.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 6.0,
- "total_cases_per_million": 1662.994,
- "new_cases_per_million": 26.549,
- "new_cases_smoothed_per_million": 30.513,
- "total_deaths_per_million": 47.567,
- "new_deaths_per_million": 0.092,
- "new_deaths_smoothed_per_million": 0.553,
- "new_tests": 2085.0,
- "total_tests": 90141.0,
- "total_tests_per_thousand": 8.31,
- "new_tests_per_thousand": 0.192,
- "new_tests_smoothed": 1887.0,
- "new_tests_smoothed_per_thousand": 0.174,
- "tests_per_case": 5.7010000000000005,
- "positive_rate": 0.175,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-05",
- "total_cases": 18319.0,
- "new_cases": 279.0,
- "new_cases_smoothed": 321.571,
- "total_deaths": 520.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 1688.713,
- "new_cases_per_million": 25.719,
- "new_cases_smoothed_per_million": 29.644,
- "total_deaths_per_million": 47.936,
- "new_deaths_per_million": 0.369,
- "new_deaths_smoothed_per_million": 0.461,
- "new_tests": 2079.0,
- "total_tests": 92220.0,
- "total_tests_per_thousand": 8.501,
- "new_tests_per_thousand": 0.192,
- "new_tests_smoothed": 1864.0,
- "new_tests_smoothed_per_thousand": 0.172,
- "tests_per_case": 5.797000000000001,
- "positive_rate": 0.17300000000000001,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-06",
- "total_cases": 18708.0,
- "new_cases": 389.0,
- "new_cases_smoothed": 311.0,
- "total_deaths": 525.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.286,
- "total_cases_per_million": 1724.573,
- "new_cases_per_million": 35.859,
- "new_cases_smoothed_per_million": 28.669,
- "total_deaths_per_million": 48.396,
- "new_deaths_per_million": 0.461,
- "new_deaths_smoothed_per_million": 0.487,
- "new_tests": 2291.0,
- "total_tests": 94511.0,
- "total_tests_per_thousand": 8.712,
- "new_tests_per_thousand": 0.211,
- "new_tests_smoothed": 1838.0,
- "new_tests_smoothed_per_thousand": 0.169,
- "tests_per_case": 5.91,
- "positive_rate": 0.16899999999999998,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-07",
- "total_cases": 19195.0,
- "new_cases": 487.0,
- "new_cases_smoothed": 326.714,
- "total_deaths": 536.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 5.429,
- "total_cases_per_million": 1769.466,
- "new_cases_per_million": 44.893,
- "new_cases_smoothed_per_million": 30.118,
- "total_deaths_per_million": 49.41,
- "new_deaths_per_million": 1.014,
- "new_deaths_smoothed_per_million": 0.5,
- "new_tests": 2529.0,
- "total_tests": 97040.0,
- "total_tests_per_thousand": 8.946,
- "new_tests_per_thousand": 0.233,
- "new_tests_smoothed": 1942.0,
- "new_tests_smoothed_per_thousand": 0.179,
- "tests_per_case": 5.944,
- "positive_rate": 0.168,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-08",
- "total_cases": 19600.0,
- "new_cases": 405.0,
- "new_cases_smoothed": 330.714,
- "total_deaths": 538.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 5.143,
- "total_cases_per_million": 1806.801,
- "new_cases_per_million": 37.334,
- "new_cases_smoothed_per_million": 30.486,
- "total_deaths_per_million": 49.595,
- "new_deaths_per_million": 0.184,
- "new_deaths_smoothed_per_million": 0.474,
- "new_tests": 1060.0,
- "total_tests": 98100.0,
- "total_tests_per_thousand": 9.043,
- "new_tests_per_thousand": 0.098,
- "new_tests_smoothed": 1923.0,
- "new_tests_smoothed_per_thousand": 0.177,
- "tests_per_case": 5.815,
- "positive_rate": 0.172,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-09",
- "total_cases": 20126.0,
- "new_cases": 526.0,
- "new_cases_smoothed": 364.857,
- "total_deaths": 539.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 5.286,
- "total_cases_per_million": 1855.289,
- "new_cases_per_million": 48.489,
- "new_cases_smoothed_per_million": 33.634,
- "total_deaths_per_million": 49.687,
- "new_deaths_per_million": 0.092,
- "new_deaths_smoothed_per_million": 0.487,
- "new_tests": 1935.0,
- "total_tests": 100035.0,
- "total_tests_per_thousand": 9.222,
- "new_tests_per_thousand": 0.178,
- "new_tests_smoothed": 1964.0,
- "new_tests_smoothed_per_thousand": 0.181,
- "tests_per_case": 5.382999999999999,
- "positive_rate": 0.18600000000000003,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-10",
- "total_cases": 20415.0,
- "new_cases": 289.0,
- "new_cases_smoothed": 380.429,
- "total_deaths": 544.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.143,
- "total_cases_per_million": 1881.93,
- "new_cases_per_million": 26.641,
- "new_cases_smoothed_per_million": 35.069,
- "total_deaths_per_million": 50.148,
- "new_deaths_per_million": 0.461,
- "new_deaths_smoothed_per_million": 0.382,
- "new_tests": 2465.0,
- "total_tests": 102500.0,
- "total_tests_per_thousand": 9.449,
- "new_tests_per_thousand": 0.227,
- "new_tests_smoothed": 2063.0,
- "new_tests_smoothed_per_thousand": 0.19,
- "tests_per_case": 5.422999999999999,
- "positive_rate": 0.184,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-11",
- "total_cases": 20808.0,
- "new_cases": 393.0,
- "new_cases_smoothed": 395.429,
- "total_deaths": 550.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 1918.159,
- "new_cases_per_million": 36.228,
- "new_cases_smoothed_per_million": 36.452,
- "total_deaths_per_million": 50.701,
- "new_deaths_per_million": 0.553,
- "new_deaths_smoothed_per_million": 0.448,
- "new_tests": 2516.0,
- "total_tests": 105016.0,
- "total_tests_per_thousand": 9.681,
- "new_tests_per_thousand": 0.232,
- "new_tests_smoothed": 2125.0,
- "new_tests_smoothed_per_thousand": 0.196,
- "tests_per_case": 5.374,
- "positive_rate": 0.18600000000000003,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-12",
- "total_cases": 21437.0,
- "new_cases": 629.0,
- "new_cases_smoothed": 445.429,
- "total_deaths": 561.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 5.857,
- "total_cases_per_million": 1976.142,
- "new_cases_per_million": 57.984,
- "new_cases_smoothed_per_million": 41.061,
- "total_deaths_per_million": 51.715,
- "new_deaths_per_million": 1.014,
- "new_deaths_smoothed_per_million": 0.54,
- "new_tests": 2159.0,
- "total_tests": 107175.0,
- "total_tests_per_thousand": 9.88,
- "new_tests_per_thousand": 0.199,
- "new_tests_smoothed": 2136.0,
- "new_tests_smoothed_per_thousand": 0.197,
- "tests_per_case": 4.795,
- "positive_rate": 0.209,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-13",
- "total_cases": 22008.0,
- "new_cases": 571.0,
- "new_cases_smoothed": 471.429,
- "total_deaths": 568.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 6.143,
- "total_cases_per_million": 2028.779,
- "new_cases_per_million": 52.637,
- "new_cases_smoothed_per_million": 43.458,
- "total_deaths_per_million": 52.36,
- "new_deaths_per_million": 0.645,
- "new_deaths_smoothed_per_million": 0.566,
- "new_tests": 1847.0,
- "total_tests": 109022.0,
- "total_tests_per_thousand": 10.05,
- "new_tests_per_thousand": 0.17,
- "new_tests_smoothed": 2073.0,
- "new_tests_smoothed_per_thousand": 0.191,
- "tests_per_case": 4.397,
- "positive_rate": 0.22699999999999998,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-14",
- "total_cases": 22572.0,
- "new_cases": 564.0,
- "new_cases_smoothed": 482.429,
- "total_deaths": 577.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 5.857,
- "total_cases_per_million": 2080.771,
- "new_cases_per_million": 51.992,
- "new_cases_smoothed_per_million": 44.472,
- "total_deaths_per_million": 53.19,
- "new_deaths_per_million": 0.83,
- "new_deaths_smoothed_per_million": 0.54,
- "new_tests": 1759.0,
- "total_tests": 110781.0,
- "total_tests_per_thousand": 10.212,
- "new_tests_per_thousand": 0.162,
- "new_tests_smoothed": 1963.0,
- "new_tests_smoothed_per_thousand": 0.181,
- "tests_per_case": 4.069,
- "positive_rate": 0.24600000000000002,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-15",
- "total_cases": 22962.0,
- "new_cases": 390.0,
- "new_cases_smoothed": 480.286,
- "total_deaths": 592.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 7.714,
- "total_cases_per_million": 2116.722,
- "new_cases_per_million": 35.952,
- "new_cases_smoothed_per_million": 44.275,
- "total_deaths_per_million": 54.573,
- "new_deaths_per_million": 1.383,
- "new_deaths_smoothed_per_million": 0.711,
- "new_tests": 1822.0,
- "total_tests": 112603.0,
- "total_tests_per_thousand": 10.38,
- "new_tests_per_thousand": 0.168,
- "new_tests_smoothed": 2072.0,
- "new_tests_smoothed_per_thousand": 0.191,
- "tests_per_case": 4.314,
- "positive_rate": 0.23199999999999998,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-16",
- "total_cases": 23271.0,
- "new_cases": 309.0,
- "new_cases_smoothed": 449.286,
- "total_deaths": 605.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 9.429,
- "total_cases_per_million": 2145.207,
- "new_cases_per_million": 28.485,
- "new_cases_smoothed_per_million": 41.417,
- "total_deaths_per_million": 55.771,
- "new_deaths_per_million": 1.198,
- "new_deaths_smoothed_per_million": 0.869,
- "new_tests": 1932.0,
- "total_tests": 114535.0,
- "total_tests_per_thousand": 10.558,
- "new_tests_per_thousand": 0.178,
- "new_tests_smoothed": 2071.0,
- "new_tests_smoothed_per_thousand": 0.191,
- "tests_per_case": 4.61,
- "positive_rate": 0.217,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-17",
- "total_cases": 23686.0,
- "new_cases": 415.0,
- "new_cases_smoothed": 467.286,
- "total_deaths": 615.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 10.143,
- "total_cases_per_million": 2183.463,
- "new_cases_per_million": 38.256,
- "new_cases_smoothed_per_million": 43.076,
- "total_deaths_per_million": 56.693,
- "new_deaths_per_million": 0.922,
- "new_deaths_smoothed_per_million": 0.935,
- "new_tests": 2584.0,
- "total_tests": 117119.0,
- "total_tests_per_thousand": 10.796,
- "new_tests_per_thousand": 0.238,
- "new_tests_smoothed": 2088.0,
- "new_tests_smoothed_per_thousand": 0.192,
- "tests_per_case": 4.468,
- "positive_rate": 0.22399999999999998,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-18",
- "total_cases": 24105.0,
- "new_cases": 419.0,
- "new_cases_smoothed": 471.0,
- "total_deaths": 633.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 11.857,
- "total_cases_per_million": 2222.088,
- "new_cases_per_million": 38.625,
- "new_cases_smoothed_per_million": 43.419,
- "total_deaths_per_million": 58.352,
- "new_deaths_per_million": 1.659,
- "new_deaths_smoothed_per_million": 1.093,
- "new_tests": 2200.0,
- "total_tests": 119319.0,
- "total_tests_per_thousand": 10.999,
- "new_tests_per_thousand": 0.203,
- "new_tests_smoothed": 2043.0,
- "new_tests_smoothed_per_thousand": 0.188,
- "tests_per_case": 4.338,
- "positive_rate": 0.231,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-19",
- "total_cases": 24645.0,
- "new_cases": 540.0,
- "new_cases_smoothed": 458.286,
- "total_deaths": 635.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 10.571,
- "total_cases_per_million": 2271.867,
- "new_cases_per_million": 49.779,
- "new_cases_smoothed_per_million": 42.246,
- "total_deaths_per_million": 58.537,
- "new_deaths_per_million": 0.184,
- "new_deaths_smoothed_per_million": 0.975,
- "new_tests": 3327.0,
- "total_tests": 122646.0,
- "total_tests_per_thousand": 11.306,
- "new_tests_per_thousand": 0.307,
- "new_tests_smoothed": 2210.0,
- "new_tests_smoothed_per_thousand": 0.204,
- "tests_per_case": 4.822,
- "positive_rate": 0.207,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-20",
- "total_cases": 25068.0,
- "new_cases": 423.0,
- "new_cases_smoothed": 437.143,
- "total_deaths": 647.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 11.286,
- "total_cases_per_million": 2310.861,
- "new_cases_per_million": 38.994,
- "new_cases_smoothed_per_million": 40.297,
- "total_deaths_per_million": 59.643,
- "new_deaths_per_million": 1.106,
- "new_deaths_smoothed_per_million": 1.04,
- "new_tests": 3222.0,
- "total_tests": 125868.0,
- "total_tests_per_thousand": 11.603,
- "new_tests_per_thousand": 0.297,
- "new_tests_smoothed": 2407.0,
- "new_tests_smoothed_per_thousand": 0.222,
- "tests_per_case": 5.506,
- "positive_rate": 0.182,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-21",
- "total_cases": 25778.0,
- "new_cases": 710.0,
- "new_cases_smoothed": 458.0,
- "total_deaths": 655.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 11.143,
- "total_cases_per_million": 2376.312,
- "new_cases_per_million": 65.45,
- "new_cases_smoothed_per_million": 42.22,
- "total_deaths_per_million": 60.38,
- "new_deaths_per_million": 0.737,
- "new_deaths_smoothed_per_million": 1.027,
- "new_tests": 2907.0,
- "total_tests": 128775.0,
- "total_tests_per_thousand": 11.871,
- "new_tests_per_thousand": 0.268,
- "new_tests_smoothed": 2571.0,
- "new_tests_smoothed_per_thousand": 0.237,
- "tests_per_case": 5.614,
- "positive_rate": 0.17800000000000002,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-22",
- "total_cases": 26677.0,
- "new_cases": 899.0,
- "new_cases_smoothed": 530.714,
- "total_deaths": 662.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 10.0,
- "total_cases_per_million": 2459.185,
- "new_cases_per_million": 82.873,
- "new_cases_smoothed_per_million": 48.923,
- "total_deaths_per_million": 61.026,
- "new_deaths_per_million": 0.645,
- "new_deaths_smoothed_per_million": 0.922,
- "new_tests": 1970.0,
- "total_tests": 130745.0,
- "total_tests_per_thousand": 12.053,
- "new_tests_per_thousand": 0.182,
- "new_tests_smoothed": 2592.0,
- "new_tests_smoothed_per_thousand": 0.239,
- "tests_per_case": 4.8839999999999995,
- "positive_rate": 0.205,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-23",
- "total_cases": 27370.0,
- "new_cases": 693.0,
- "new_cases_smoothed": 585.571,
- "total_deaths": 669.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 9.143,
- "total_cases_per_million": 2523.068,
- "new_cases_per_million": 63.883,
- "new_cases_smoothed_per_million": 53.98,
- "total_deaths_per_million": 61.671,
- "new_deaths_per_million": 0.645,
- "new_deaths_smoothed_per_million": 0.843,
- "new_tests": 2973.0,
- "total_tests": 133718.0,
- "total_tests_per_thousand": 12.327,
- "new_tests_per_thousand": 0.274,
- "new_tests_smoothed": 2740.0,
- "new_tests_smoothed_per_thousand": 0.253,
- "tests_per_case": 4.678999999999999,
- "positive_rate": 0.214,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-24",
- "total_cases": 27936.0,
- "new_cases": 566.0,
- "new_cases_smoothed": 607.143,
- "total_deaths": 675.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 2575.244,
- "new_cases_per_million": 52.176,
- "new_cases_smoothed_per_million": 55.969,
- "total_deaths_per_million": 62.224,
- "new_deaths_per_million": 0.553,
- "new_deaths_smoothed_per_million": 0.79,
- "new_tests": 2251.0,
- "total_tests": 135969.0,
- "total_tests_per_thousand": 12.534,
- "new_tests_per_thousand": 0.208,
- "new_tests_smoothed": 2693.0,
- "new_tests_smoothed_per_thousand": 0.248,
- "tests_per_case": 4.436,
- "positive_rate": 0.225,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-25",
- "total_cases": 28631.0,
- "new_cases": 695.0,
- "new_cases_smoothed": 646.571,
- "total_deaths": 691.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 8.286,
- "total_cases_per_million": 2639.312,
- "new_cases_per_million": 64.068,
- "new_cases_smoothed_per_million": 59.603,
- "total_deaths_per_million": 63.699,
- "new_deaths_per_million": 1.475,
- "new_deaths_smoothed_per_million": 0.764,
- "new_tests": 2729.0,
- "total_tests": 138698.0,
- "total_tests_per_thousand": 12.786,
- "new_tests_per_thousand": 0.252,
- "new_tests_smoothed": 2768.0,
- "new_tests_smoothed_per_thousand": 0.255,
- "tests_per_case": 4.281000000000001,
- "positive_rate": 0.23399999999999999,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-26",
- "total_cases": 29141.0,
- "new_cases": 510.0,
- "new_cases_smoothed": 642.286,
- "total_deaths": 698.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 9.0,
- "total_cases_per_million": 2686.325,
- "new_cases_per_million": 47.014,
- "new_cases_smoothed_per_million": 59.208,
- "total_deaths_per_million": 64.344,
- "new_deaths_per_million": 0.645,
- "new_deaths_smoothed_per_million": 0.83,
- "new_tests": 3642.0,
- "total_tests": 142340.0,
- "total_tests_per_thousand": 13.121,
- "new_tests_per_thousand": 0.336,
- "new_tests_smoothed": 2813.0,
- "new_tests_smoothed_per_thousand": 0.259,
- "tests_per_case": 4.38,
- "positive_rate": 0.228,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-27",
- "total_cases": 29764.0,
- "new_cases": 623.0,
- "new_cases_smoothed": 670.857,
- "total_deaths": 712.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 9.286,
- "total_cases_per_million": 2743.756,
- "new_cases_per_million": 57.43,
- "new_cases_smoothed_per_million": 61.842,
- "total_deaths_per_million": 65.635,
- "new_deaths_per_million": 1.291,
- "new_deaths_smoothed_per_million": 0.856,
- "new_tests": 3720.0,
- "total_tests": 146060.0,
- "total_tests_per_thousand": 13.464,
- "new_tests_per_thousand": 0.343,
- "new_tests_smoothed": 2885.0,
- "new_tests_smoothed_per_thousand": 0.266,
- "tests_per_case": 4.3,
- "positive_rate": 0.233,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-06-28",
- "total_cases": 30619.0,
- "new_cases": 855.0,
- "new_cases_smoothed": 691.571,
- "total_deaths": 718.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 9.0,
- "total_cases_per_million": 2822.573,
- "new_cases_per_million": 78.817,
- "new_cases_smoothed_per_million": 63.752,
- "total_deaths_per_million": 66.188,
- "new_deaths_per_million": 0.553,
- "new_deaths_smoothed_per_million": 0.83,
- "new_tests": 2148.0,
- "total_tests": 148208.0,
- "total_tests_per_thousand": 13.662,
- "new_tests_per_thousand": 0.198,
- "new_tests_smoothed": 2776.0,
- "new_tests_smoothed_per_thousand": 0.256,
- "tests_per_case": 4.013999999999999,
- "positive_rate": 0.249,
- "tests_units": "samples tested",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-29",
- "total_cases": 31373.0,
- "new_cases": 754.0,
- "new_cases_smoothed": 670.857,
- "total_deaths": 726.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 9.143,
- "total_cases_per_million": 2892.079,
- "new_cases_per_million": 69.507,
- "new_cases_smoothed_per_million": 61.842,
- "total_deaths_per_million": 66.925,
- "new_deaths_per_million": 0.737,
- "new_deaths_smoothed_per_million": 0.843,
- "new_tests": 2711.0,
- "total_tests": 150919.0,
- "total_tests_per_thousand": 13.912,
- "new_tests_per_thousand": 0.25,
- "new_tests_smoothed": 2882.0,
- "new_tests_smoothed_per_thousand": 0.266,
- "tests_per_case": 4.296,
- "positive_rate": 0.233,
- "tests_units": "samples tested",
- "stringency_index": 75.0
- },
- {
- "date": "2020-06-30",
- "total_cases": 31816.0,
- "new_cases": 443.0,
- "new_cases_smoothed": 635.143,
- "total_deaths": 733.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 9.143,
- "total_cases_per_million": 2932.917,
- "new_cases_per_million": 40.837,
- "new_cases_smoothed_per_million": 58.55,
- "total_deaths_per_million": 67.571,
- "new_deaths_per_million": 0.645,
- "new_deaths_smoothed_per_million": 0.843,
- "new_tests": 3210.0,
- "total_tests": 154129.0,
- "total_tests_per_thousand": 14.208,
- "new_tests_per_thousand": 0.296,
- "new_tests_smoothed": 2916.0,
- "new_tests_smoothed_per_thousand": 0.269,
- "tests_per_case": 4.591,
- "positive_rate": 0.218,
- "tests_units": "samples tested",
- "stringency_index": 80.56
- },
- {
- "date": "2020-07-01",
- "total_cases": 32568.0,
- "new_cases": 752.0,
- "new_cases_smoothed": 661.714,
- "total_deaths": 747.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 10.286,
- "total_cases_per_million": 3002.239,
- "new_cases_per_million": 69.322,
- "new_cases_smoothed_per_million": 60.999,
- "total_deaths_per_million": 68.861,
- "new_deaths_per_million": 1.291,
- "new_deaths_smoothed_per_million": 0.948,
- "new_tests": 2916.0,
- "total_tests": 157045.0,
- "total_tests_per_thousand": 14.477,
- "new_tests_per_thousand": 0.269,
- "new_tests_smoothed": 3011.0,
- "new_tests_smoothed_per_thousand": 0.278,
- "tests_per_case": 4.55,
- "positive_rate": 0.22,
- "tests_units": "samples tested",
- "stringency_index": 75.0
- },
- {
- "date": "2020-07-02",
- "total_cases": 33387.0,
- "new_cases": 819.0,
- "new_cases_smoothed": 679.429,
- "total_deaths": 754.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 9.0,
- "total_cases_per_million": 3077.737,
- "new_cases_per_million": 75.498,
- "new_cases_smoothed_per_million": 62.632,
- "total_deaths_per_million": 69.507,
- "new_deaths_per_million": 0.645,
- "new_deaths_smoothed_per_million": 0.83,
- "new_tests": 3496.0,
- "total_tests": 160541.0,
- "total_tests_per_thousand": 14.799,
- "new_tests_per_thousand": 0.322,
- "new_tests_smoothed": 3120.0,
- "new_tests_smoothed_per_thousand": 0.288,
- "tests_per_case": 4.592,
- "positive_rate": 0.218,
- "tests_units": "samples tested",
- "stringency_index": 75.0
- },
- {
- "date": "2020-07-03",
- "total_cases": 34197.0,
- "new_cases": 810.0,
- "new_cases_smoothed": 722.286,
- "total_deaths": 765.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 9.571,
- "total_cases_per_million": 3152.406,
- "new_cases_per_million": 74.669,
- "new_cases_smoothed_per_million": 66.583,
- "total_deaths_per_million": 70.521,
- "new_deaths_per_million": 1.014,
- "new_deaths_smoothed_per_million": 0.882,
- "new_tests": 3186.0,
- "total_tests": 163727.0,
- "total_tests_per_thousand": 15.093,
- "new_tests_per_thousand": 0.294,
- "new_tests_smoothed": 3055.0,
- "new_tests_smoothed_per_thousand": 0.282,
- "tests_per_case": 4.23,
- "positive_rate": 0.23600000000000002,
- "tests_units": "samples tested",
- "stringency_index": 75.0
- },
- {
- "date": "2020-07-04",
- "total_cases": 35148.0,
- "new_cases": 951.0,
- "new_cases_smoothed": 769.143,
- "total_deaths": 775.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 9.0,
- "total_cases_per_million": 3240.073,
- "new_cases_per_million": 87.667,
- "new_cases_smoothed_per_million": 70.902,
- "total_deaths_per_million": 71.442,
- "new_deaths_per_million": 0.922,
- "new_deaths_smoothed_per_million": 0.83,
- "new_tests": 3645.0,
- "total_tests": 167372.0,
- "total_tests_per_thousand": 15.429,
- "new_tests_per_thousand": 0.336,
- "new_tests_smoothed": 3045.0,
- "new_tests_smoothed_per_thousand": 0.281,
- "tests_per_case": 3.9589999999999996,
- "positive_rate": 0.253,
- "tests_units": "samples tested",
- "stringency_index": 75.0
- },
- {
- "date": "2020-07-05",
- "total_cases": 36184.0,
- "new_cases": 1036.0,
- "new_cases_smoothed": 795.0,
- "total_deaths": 786.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 9.714,
- "total_cases_per_million": 3335.575,
- "new_cases_per_million": 95.502,
- "new_cases_smoothed_per_million": 73.286,
- "total_deaths_per_million": 72.456,
- "new_deaths_per_million": 1.014,
- "new_deaths_smoothed_per_million": 0.895,
- "new_tests": 2627.0,
- "total_tests": 169999.0,
- "total_tests_per_thousand": 15.671,
- "new_tests_per_thousand": 0.242,
- "new_tests_smoothed": 3113.0,
- "new_tests_smoothed_per_thousand": 0.287,
- "tests_per_case": 3.9160000000000004,
- "positive_rate": 0.255,
- "tests_units": "samples tested",
- "stringency_index": 75.0
- },
- {
- "date": "2020-07-06",
- "total_cases": 37425.0,
- "new_cases": 1241.0,
- "new_cases_smoothed": 864.571,
- "total_deaths": 794.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 9.714,
- "total_cases_per_million": 3449.975,
- "new_cases_per_million": 114.4,
- "new_cases_smoothed_per_million": 79.699,
- "total_deaths_per_million": 73.194,
- "new_deaths_per_million": 0.737,
- "new_deaths_smoothed_per_million": 0.895,
- "new_tests": 1098.0,
- "total_tests": 171097.0,
- "total_tests_per_thousand": 15.772,
- "new_tests_per_thousand": 0.101,
- "new_tests_smoothed": 2883.0,
- "new_tests_smoothed_per_thousand": 0.266,
- "tests_per_case": 3.335,
- "positive_rate": 0.3,
- "tests_units": "samples tested",
- "stringency_index": 75.0
- },
- {
- "date": "2020-07-07",
- "total_cases": 38128.0,
- "new_cases": 703.0,
- "new_cases_smoothed": 901.714,
- "total_deaths": 804.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 10.143,
- "total_cases_per_million": 3514.78,
- "new_cases_per_million": 64.805,
- "new_cases_smoothed_per_million": 83.123,
- "total_deaths_per_million": 74.116,
- "new_deaths_per_million": 0.922,
- "new_deaths_smoothed_per_million": 0.935,
- "new_tests": 3654.0,
- "total_tests": 174751.0,
- "total_tests_per_thousand": 16.109,
- "new_tests_per_thousand": 0.337,
- "new_tests_smoothed": 2946.0,
- "new_tests_smoothed_per_thousand": 0.272,
- "tests_per_case": 3.267,
- "positive_rate": 0.306,
- "tests_units": "samples tested",
- "stringency_index": 75.0
- },
- {
- "date": "2020-07-08",
- "total_cases": 38430.0,
- "new_cases": 302.0,
- "new_cases_smoothed": 837.429,
- "total_deaths": 821.0,
- "new_deaths": 17.0,
- "new_deaths_smoothed": 10.571,
- "total_cases_per_million": 3542.62,
- "new_cases_per_million": 27.839,
- "new_cases_smoothed_per_million": 77.197,
- "total_deaths_per_million": 75.683,
- "new_deaths_per_million": 1.567,
- "new_deaths_smoothed_per_million": 0.975,
- "new_tests": 4087.0,
- "total_tests": 178838.0,
- "total_tests_per_thousand": 16.486,
- "new_tests_per_thousand": 0.377,
- "new_tests_smoothed": 3113.0,
- "new_tests_smoothed_per_thousand": 0.287,
- "tests_per_case": 3.717,
- "positive_rate": 0.26899999999999996,
- "tests_units": "samples tested",
- "stringency_index": 75.0
- },
- {
- "date": "2020-07-09",
- "total_cases": 39588.0,
- "new_cases": 1158.0,
- "new_cases_smoothed": 885.857,
- "total_deaths": 829.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 10.714,
- "total_cases_per_million": 3649.369,
- "new_cases_per_million": 106.749,
- "new_cases_smoothed_per_million": 81.662,
- "total_deaths_per_million": 76.42,
- "new_deaths_per_million": 0.737,
- "new_deaths_smoothed_per_million": 0.988,
- "new_tests": 3425.0,
- "total_tests": 182263.0,
- "total_tests_per_thousand": 16.802,
- "new_tests_per_thousand": 0.316,
- "new_tests_smoothed": 3103.0,
- "new_tests_smoothed_per_thousand": 0.286,
- "tests_per_case": 3.503,
- "positive_rate": 0.285,
- "tests_units": "samples tested",
- "stringency_index": 75.0
- },
- {
- "date": "2020-07-10",
- "total_cases": 40790.0,
- "new_cases": 1202.0,
- "new_cases_smoothed": 941.857,
- "total_deaths": 842.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 11.0,
- "total_cases_per_million": 3760.173,
- "new_cases_per_million": 110.805,
- "new_cases_smoothed_per_million": 86.824,
- "total_deaths_per_million": 77.619,
- "new_deaths_per_million": 1.198,
- "new_deaths_smoothed_per_million": 1.014,
- "new_tests": 3590.0,
- "total_tests": 185853.0,
- "total_tests_per_thousand": 17.133,
- "new_tests_per_thousand": 0.331,
- "new_tests_smoothed": 3161.0,
- "new_tests_smoothed_per_thousand": 0.291,
- "tests_per_case": 3.3560000000000003,
- "positive_rate": 0.298,
- "tests_units": "samples tested",
- "stringency_index": 75.0
- },
- {
- "date": "2020-07-11",
- "total_cases": 41915.0,
- "new_cases": 1125.0,
- "new_cases_smoothed": 966.714,
- "total_deaths": 864.0,
- "new_deaths": 22.0,
- "new_deaths_smoothed": 12.714,
- "total_cases_per_million": 3863.88,
- "new_cases_per_million": 103.707,
- "new_cases_smoothed_per_million": 89.115,
- "total_deaths_per_million": 79.647,
- "new_deaths_per_million": 2.028,
- "new_deaths_smoothed_per_million": 1.172,
- "new_tests": 3538.0,
- "total_tests": 189391.0,
- "total_tests_per_thousand": 17.459,
- "new_tests_per_thousand": 0.326,
- "new_tests_smoothed": 3146.0,
- "new_tests_smoothed_per_thousand": 0.29,
- "tests_per_case": 3.2539999999999996,
- "positive_rate": 0.307,
- "tests_units": "samples tested",
- "stringency_index": 75.0
- },
- {
- "date": "2020-07-12",
- "total_cases": 43114.0,
- "new_cases": 1199.0,
- "new_cases_smoothed": 990.0,
- "total_deaths": 880.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 13.429,
- "total_cases_per_million": 3974.408,
- "new_cases_per_million": 110.528,
- "new_cases_smoothed_per_million": 91.262,
- "total_deaths_per_million": 81.122,
- "new_deaths_per_million": 1.475,
- "new_deaths_smoothed_per_million": 1.238,
- "new_tests": 2969.0,
- "total_tests": 192360.0,
- "total_tests_per_thousand": 17.732,
- "new_tests_per_thousand": 0.274,
- "new_tests_smoothed": 3194.0,
- "new_tests_smoothed_per_thousand": 0.294,
- "tests_per_case": 3.2260000000000004,
- "positive_rate": 0.31,
- "tests_units": "samples tested",
- "stringency_index": 75.0
- },
- {
- "date": "2020-07-13",
- "total_cases": 44532.0,
- "new_cases": 1418.0,
- "new_cases_smoothed": 1015.286,
- "total_deaths": 897.0,
- "new_deaths": 17.0,
- "new_deaths_smoothed": 14.714,
- "total_cases_per_million": 4105.125,
- "new_cases_per_million": 130.716,
- "new_cases_smoothed_per_million": 93.593,
- "total_deaths_per_million": 82.689,
- "new_deaths_per_million": 1.567,
- "new_deaths_smoothed_per_million": 1.356,
- "new_tests": 2101.0,
- "total_tests": 194461.0,
- "total_tests_per_thousand": 17.926,
- "new_tests_per_thousand": 0.194,
- "new_tests_smoothed": 3338.0,
- "new_tests_smoothed_per_thousand": 0.308,
- "tests_per_case": 3.2880000000000003,
- "positive_rate": 0.304,
- "tests_units": "samples tested",
- "stringency_index": 75.0
- },
- {
- "date": "2020-07-14",
- "total_cases": 45506.0,
- "new_cases": 974.0,
- "new_cases_smoothed": 1054.0,
- "total_deaths": 903.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 14.143,
- "total_cases_per_million": 4194.912,
- "new_cases_per_million": 89.787,
- "new_cases_smoothed_per_million": 97.162,
- "total_deaths_per_million": 83.242,
- "new_deaths_per_million": 0.553,
- "new_deaths_smoothed_per_million": 1.304,
- "new_tests": 4035.0,
- "total_tests": 198496.0,
- "total_tests_per_thousand": 18.298,
- "new_tests_per_thousand": 0.372,
- "new_tests_smoothed": 3392.0,
- "new_tests_smoothed_per_thousand": 0.313,
- "tests_per_case": 3.218,
- "positive_rate": 0.311,
- "tests_units": "samples tested",
- "stringency_index": 75.0
- },
- {
- "date": "2020-07-15",
- "total_cases": 46305.0,
- "new_cases": 799.0,
- "new_cases_smoothed": 1125.0,
- "total_deaths": 910.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 12.714,
- "total_cases_per_million": 4268.567,
- "new_cases_per_million": 73.655,
- "new_cases_smoothed_per_million": 103.707,
- "total_deaths_per_million": 83.887,
- "new_deaths_per_million": 0.645,
- "new_deaths_smoothed_per_million": 1.172,
- "new_tests": 3173.0,
- "total_tests": 201669.0,
- "total_tests_per_thousand": 18.591,
- "new_tests_per_thousand": 0.292,
- "new_tests_smoothed": 3262.0,
- "new_tests_smoothed_per_thousand": 0.301,
- "tests_per_case": 2.9,
- "positive_rate": 0.345,
- "tests_units": "samples tested",
- "stringency_index": 75.0
- },
- {
- "date": "2020-07-16",
- "total_cases": 47671.0,
- "new_cases": 1366.0,
- "new_cases_smoothed": 1154.714,
- "total_deaths": 929.0,
- "new_deaths": 19.0,
- "new_deaths_smoothed": 14.286,
- "total_cases_per_million": 4394.489,
- "new_cases_per_million": 125.923,
- "new_cases_smoothed_per_million": 106.446,
- "total_deaths_per_million": 85.639,
- "new_deaths_per_million": 1.751,
- "new_deaths_smoothed_per_million": 1.317,
- "new_tests": 3769.0,
- "total_tests": 205438.0,
- "total_tests_per_thousand": 18.938,
- "new_tests_per_thousand": 0.347,
- "new_tests_smoothed": 3311.0,
- "new_tests_smoothed_per_thousand": 0.305,
- "tests_per_case": 2.867,
- "positive_rate": 0.349,
- "tests_units": "samples tested",
- "stringency_index": 75.0
- },
- {
- "date": "2020-07-17",
- "total_cases": 48743.0,
- "new_cases": 1072.0,
- "new_cases_smoothed": 1136.143,
- "total_deaths": 941.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 14.143,
- "total_cases_per_million": 4493.31,
- "new_cases_per_million": 98.821,
- "new_cases_smoothed_per_million": 104.734,
- "total_deaths_per_million": 86.745,
- "new_deaths_per_million": 1.106,
- "new_deaths_smoothed_per_million": 1.304,
- "new_tests": 3814.0,
- "total_tests": 209252.0,
- "total_tests_per_thousand": 19.29,
- "new_tests_per_thousand": 0.352,
- "new_tests_smoothed": 3343.0,
- "new_tests_smoothed_per_thousand": 0.308,
- "tests_per_case": 2.9419999999999997,
- "positive_rate": 0.34,
- "tests_units": "samples tested",
- "stringency_index": 75.0
- },
- {
- "date": "2020-07-18",
- "total_cases": 50113.0,
- "new_cases": 1370.0,
- "new_cases_smoothed": 1171.143,
- "total_deaths": 942.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 11.143,
- "total_cases_per_million": 4619.602,
- "new_cases_per_million": 126.292,
- "new_cases_smoothed_per_million": 107.96,
- "total_deaths_per_million": 86.837,
- "new_deaths_per_million": 0.092,
- "new_deaths_smoothed_per_million": 1.027,
- "new_tests": 3833.0,
- "total_tests": 213085.0,
- "total_tests_per_thousand": 19.643,
- "new_tests_per_thousand": 0.353,
- "new_tests_smoothed": 3385.0,
- "new_tests_smoothed_per_thousand": 0.312,
- "tests_per_case": 2.89,
- "positive_rate": 0.34600000000000003,
- "tests_units": "samples tested",
- "stringency_index": 75.0
- },
- {
- "date": "2020-07-19",
- "total_cases": 51519.0,
- "new_cases": 1406.0,
- "new_cases_smoothed": 1200.714,
- "total_deaths": 971.0,
- "new_deaths": 29.0,
- "new_deaths_smoothed": 13.0,
- "total_cases_per_million": 4749.212,
- "new_cases_per_million": 129.61,
- "new_cases_smoothed_per_million": 110.686,
- "total_deaths_per_million": 89.51,
- "new_deaths_per_million": 2.673,
- "new_deaths_smoothed_per_million": 1.198,
- "new_tests": 3396.0,
- "total_tests": 216481.0,
- "total_tests_per_thousand": 19.956,
- "new_tests_per_thousand": 0.313,
- "new_tests_smoothed": 3446.0,
- "new_tests_smoothed_per_thousand": 0.318,
- "tests_per_case": 2.87,
- "positive_rate": 0.348,
- "tests_units": "samples tested",
- "stringency_index": 75.0
- },
- {
- "date": "2020-07-20",
- "total_cases": 52855.0,
- "new_cases": 1336.0,
- "new_cases_smoothed": 1189.0,
- "total_deaths": 981.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 12.0,
- "total_cases_per_million": 4872.37,
- "new_cases_per_million": 123.157,
- "new_cases_smoothed_per_million": 109.606,
- "total_deaths_per_million": 90.432,
- "new_deaths_per_million": 0.922,
- "new_deaths_smoothed_per_million": 1.106,
- "new_tests": 2345.0,
- "total_tests": 218826.0,
- "total_tests_per_thousand": 20.172,
- "new_tests_per_thousand": 0.216,
- "new_tests_smoothed": 3481.0,
- "new_tests_smoothed_per_thousand": 0.321,
- "tests_per_case": 2.928,
- "positive_rate": 0.342,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-21",
- "total_cases": 53956.0,
- "new_cases": 1101.0,
- "new_cases_smoothed": 1207.143,
- "total_deaths": 993.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 12.857,
- "total_cases_per_million": 4973.864,
- "new_cases_per_million": 101.494,
- "new_cases_smoothed_per_million": 111.279,
- "total_deaths_per_million": 91.538,
- "new_deaths_per_million": 1.106,
- "new_deaths_smoothed_per_million": 1.185,
- "new_tests": 3760.0,
- "total_tests": 222586.0,
- "total_tests_per_thousand": 20.519,
- "new_tests_per_thousand": 0.347,
- "new_tests_smoothed": 3441.0,
- "new_tests_smoothed_per_thousand": 0.317,
- "tests_per_case": 2.8510000000000004,
- "positive_rate": 0.35100000000000003,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-22",
- "total_cases": 54797.0,
- "new_cases": 841.0,
- "new_cases_smoothed": 1213.143,
- "total_deaths": 999.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 12.714,
- "total_cases_per_million": 5051.391,
- "new_cases_per_million": 77.526,
- "new_cases_smoothed_per_million": 111.832,
- "total_deaths_per_million": 92.092,
- "new_deaths_per_million": 0.553,
- "new_deaths_smoothed_per_million": 1.172,
- "new_tests": 4107.0,
- "total_tests": 226693.0,
- "total_tests_per_thousand": 20.897,
- "new_tests_per_thousand": 0.379,
- "new_tests_smoothed": 3575.0,
- "new_tests_smoothed_per_thousand": 0.33,
- "tests_per_case": 2.947,
- "positive_rate": 0.33899999999999997,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-23",
- "total_cases": 56043.0,
- "new_cases": 1246.0,
- "new_cases_smoothed": 1196.0,
- "total_deaths": 1005.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 10.857,
- "total_cases_per_million": 5166.251,
- "new_cases_per_million": 114.861,
- "new_cases_smoothed_per_million": 110.252,
- "total_deaths_per_million": 92.645,
- "new_deaths_per_million": 0.553,
- "new_deaths_smoothed_per_million": 1.001,
- "new_tests": 3961.0,
- "total_tests": 230654.0,
- "total_tests_per_thousand": 21.263,
- "new_tests_per_thousand": 0.365,
- "new_tests_smoothed": 3602.0,
- "new_tests_smoothed_per_thousand": 0.332,
- "tests_per_case": 3.012,
- "positive_rate": 0.332,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-24",
- "total_cases": 57615.0,
- "new_cases": 1572.0,
- "new_cases_smoothed": 1267.429,
- "total_deaths": 1006.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 9.286,
- "total_cases_per_million": 5311.164,
- "new_cases_per_million": 144.913,
- "new_cases_smoothed_per_million": 116.836,
- "total_deaths_per_million": 92.737,
- "new_deaths_per_million": 0.092,
- "new_deaths_smoothed_per_million": 0.856,
- "new_tests": 4635.0,
- "total_tests": 235289.0,
- "total_tests_per_thousand": 21.69,
- "new_tests_per_thousand": 0.427,
- "new_tests_smoothed": 3720.0,
- "new_tests_smoothed_per_thousand": 0.343,
- "tests_per_case": 2.935,
- "positive_rate": 0.341,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-25",
- "total_cases": 59077.0,
- "new_cases": 1462.0,
- "new_cases_smoothed": 1280.571,
- "total_deaths": 1036.0,
- "new_deaths": 30.0,
- "new_deaths_smoothed": 13.429,
- "total_cases_per_million": 5445.937,
- "new_cases_per_million": 134.773,
- "new_cases_smoothed_per_million": 118.048,
- "total_deaths_per_million": 95.502,
- "new_deaths_per_million": 2.766,
- "new_deaths_smoothed_per_million": 1.238,
- "new_tests": 5487.0,
- "total_tests": 240776.0,
- "total_tests_per_thousand": 22.196,
- "new_tests_per_thousand": 0.506,
- "new_tests_smoothed": 3956.0,
- "new_tests_smoothed_per_thousand": 0.365,
- "tests_per_case": 3.089,
- "positive_rate": 0.324,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-26",
- "total_cases": 60896.0,
- "new_cases": 1819.0,
- "new_cases_smoothed": 1339.571,
- "total_deaths": 1055.0,
- "new_deaths": 19.0,
- "new_deaths_smoothed": 12.0,
- "total_cases_per_million": 5613.619,
- "new_cases_per_million": 167.682,
- "new_cases_smoothed_per_million": 123.487,
- "total_deaths_per_million": 97.254,
- "new_deaths_per_million": 1.751,
- "new_deaths_smoothed_per_million": 1.106,
- "new_tests": 3867.0,
- "total_tests": 244643.0,
- "total_tests_per_thousand": 22.552,
- "new_tests_per_thousand": 0.356,
- "new_tests_smoothed": 4023.0,
- "new_tests_smoothed_per_thousand": 0.371,
- "tests_per_case": 3.003,
- "positive_rate": 0.33299999999999996,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-27",
- "total_cases": 62908.0,
- "new_cases": 2012.0,
- "new_cases_smoothed": 1436.143,
- "total_deaths": 1063.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 11.714,
- "total_cases_per_million": 5799.093,
- "new_cases_per_million": 185.474,
- "new_cases_smoothed_per_million": 132.389,
- "total_deaths_per_million": 97.991,
- "new_deaths_per_million": 0.737,
- "new_deaths_smoothed_per_million": 1.08,
- "new_tests": 2310.0,
- "total_tests": 246953.0,
- "total_tests_per_thousand": 22.765,
- "new_tests_per_thousand": 0.213,
- "new_tests_smoothed": 4018.0,
- "new_tests_smoothed_per_thousand": 0.37,
- "tests_per_case": 2.798,
- "positive_rate": 0.35700000000000004,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-28",
- "total_cases": 64156.0,
- "new_cases": 1248.0,
- "new_cases_smoothed": 1457.143,
- "total_deaths": 1083.0,
- "new_deaths": 20.0,
- "new_deaths_smoothed": 12.857,
- "total_cases_per_million": 5914.138,
- "new_cases_per_million": 115.045,
- "new_cases_smoothed_per_million": 134.325,
- "total_deaths_per_million": 99.835,
- "new_deaths_per_million": 1.844,
- "new_deaths_smoothed_per_million": 1.185,
- "new_tests": 3471.0,
- "total_tests": 250424.0,
- "total_tests_per_thousand": 23.085,
- "new_tests_per_thousand": 0.32,
- "new_tests_smoothed": 3977.0,
- "new_tests_smoothed_per_thousand": 0.367,
- "tests_per_case": 2.7289999999999996,
- "positive_rate": 0.366,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-29",
- "total_cases": 64690.0,
- "new_cases": 534.0,
- "new_cases_smoothed": 1413.286,
- "total_deaths": 1101.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 14.571,
- "total_cases_per_million": 5963.364,
- "new_cases_per_million": 49.226,
- "new_cases_smoothed_per_million": 130.282,
- "total_deaths_per_million": 101.494,
- "new_deaths_per_million": 1.659,
- "new_deaths_smoothed_per_million": 1.343,
- "new_tests_smoothed": 3977.0,
- "new_tests_smoothed_per_thousand": 0.367,
- "tests_per_case": 2.8139999999999996,
- "positive_rate": 0.355,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-30",
- "total_cases": 66182.0,
- "new_cases": 1492.0,
- "new_cases_smoothed": 1448.429,
- "total_deaths": 1123.0,
- "new_deaths": 22.0,
- "new_deaths_smoothed": 16.857,
- "total_cases_per_million": 6100.902,
- "new_cases_per_million": 137.538,
- "new_cases_smoothed_per_million": 133.522,
- "total_deaths_per_million": 103.522,
- "new_deaths_per_million": 2.028,
- "new_deaths_smoothed_per_million": 1.554,
- "new_tests_smoothed": 3997.0,
- "new_tests_smoothed_per_thousand": 0.368,
- "tests_per_case": 2.76,
- "positive_rate": 0.36200000000000004,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-07-31",
- "total_cases": 67915.0,
- "new_cases": 1733.0,
- "new_cases_smoothed": 1471.429,
- "total_deaths": 1146.0,
- "new_deaths": 23.0,
- "new_deaths_smoothed": 20.0,
- "total_cases_per_million": 6260.656,
- "new_cases_per_million": 159.754,
- "new_cases_smoothed_per_million": 135.642,
- "total_deaths_per_million": 105.643,
- "new_deaths_per_million": 2.12,
- "new_deaths_smoothed_per_million": 1.844,
- "new_tests_smoothed": 3921.0,
- "new_tests_smoothed_per_thousand": 0.361,
- "tests_per_case": 2.665,
- "positive_rate": 0.375,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-08-01",
- "total_cases": 69649.0,
- "new_cases": 1734.0,
- "new_cases_smoothed": 1510.286,
- "total_deaths": 1160.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 17.714,
- "total_cases_per_million": 6420.503,
- "new_cases_per_million": 159.847,
- "new_cases_smoothed_per_million": 139.224,
- "total_deaths_per_million": 106.933,
- "new_deaths_per_million": 1.291,
- "new_deaths_smoothed_per_million": 1.633,
- "total_tests": 266844.0,
- "total_tests_per_thousand": 24.599,
- "new_tests_smoothed": 3724.0,
- "new_tests_smoothed_per_thousand": 0.343,
- "tests_per_case": 2.4659999999999997,
- "positive_rate": 0.406,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-08-02",
- "total_cases": 71415.0,
- "new_cases": 1766.0,
- "new_cases_smoothed": 1502.714,
- "total_deaths": 1170.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 16.429,
- "total_cases_per_million": 6583.299,
- "new_cases_per_million": 162.796,
- "new_cases_smoothed_per_million": 138.526,
- "total_deaths_per_million": 107.855,
- "new_deaths_per_million": 0.922,
- "new_deaths_smoothed_per_million": 1.514,
- "new_tests": 1685.0,
- "total_tests": 268529.0,
- "total_tests_per_thousand": 24.754,
- "new_tests_per_thousand": 0.155,
- "new_tests_smoothed": 3412.0,
- "new_tests_smoothed_per_thousand": 0.315,
- "tests_per_case": 2.271,
- "positive_rate": 0.44,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-08-03",
- "total_cases": 72243.0,
- "new_cases": 828.0,
- "new_cases_smoothed": 1333.571,
- "total_deaths": 1178.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 16.429,
- "total_cases_per_million": 6659.628,
- "new_cases_per_million": 76.328,
- "new_cases_smoothed_per_million": 122.934,
- "total_deaths_per_million": 108.592,
- "new_deaths_per_million": 0.737,
- "new_deaths_smoothed_per_million": 1.514,
- "new_tests": 5172.0,
- "total_tests": 273701.0,
- "total_tests_per_thousand": 25.231,
- "new_tests_per_thousand": 0.477,
- "new_tests_smoothed": 3821.0,
- "new_tests_smoothed_per_thousand": 0.352,
- "tests_per_case": 2.865,
- "positive_rate": 0.349,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-08-04",
- "total_cases": 73117.0,
- "new_cases": 874.0,
- "new_cases_smoothed": 1280.143,
- "total_deaths": 1183.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 14.286,
- "total_cases_per_million": 6740.196,
- "new_cases_per_million": 80.569,
- "new_cases_smoothed_per_million": 118.008,
- "total_deaths_per_million": 109.053,
- "new_deaths_per_million": 0.461,
- "new_deaths_smoothed_per_million": 1.317,
- "new_tests": 4734.0,
- "total_tests": 278435.0,
- "total_tests_per_thousand": 25.667,
- "new_tests_per_thousand": 0.436,
- "new_tests_smoothed": 4002.0,
- "new_tests_smoothed_per_thousand": 0.369,
- "tests_per_case": 3.1260000000000003,
- "positive_rate": 0.32,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-08-05",
- "total_cases": 74295.0,
- "new_cases": 1178.0,
- "new_cases_smoothed": 1372.143,
- "total_deaths": 1213.0,
- "new_deaths": 30.0,
- "new_deaths_smoothed": 16.0,
- "total_cases_per_million": 6848.788,
- "new_cases_per_million": 108.592,
- "new_cases_smoothed_per_million": 126.489,
- "total_deaths_per_million": 111.819,
- "new_deaths_per_million": 2.766,
- "new_deaths_smoothed_per_million": 1.475,
- "new_tests": 3491.0,
- "total_tests": 281926.0,
- "total_tests_per_thousand": 25.989,
- "new_tests_per_thousand": 0.322,
- "new_tests_smoothed": 3914.0,
- "new_tests_smoothed_per_thousand": 0.361,
- "tests_per_case": 2.852,
- "positive_rate": 0.35100000000000003,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-08-06",
- "total_cases": 75660.0,
- "new_cases": 1365.0,
- "new_cases_smoothed": 1354.0,
- "total_deaths": 1222.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 14.143,
- "total_cases_per_million": 6974.619,
- "new_cases_per_million": 125.831,
- "new_cases_smoothed_per_million": 124.817,
- "total_deaths_per_million": 112.648,
- "new_deaths_per_million": 0.83,
- "new_deaths_smoothed_per_million": 1.304,
- "new_tests": 4202.0,
- "total_tests": 286128.0,
- "total_tests_per_thousand": 26.376,
- "new_tests_per_thousand": 0.387,
- "new_tests_smoothed": 3928.0,
- "new_tests_smoothed_per_thousand": 0.362,
- "tests_per_case": 2.9010000000000002,
- "positive_rate": 0.345,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-08-07",
- "total_cases": 76536.0,
- "new_cases": 876.0,
- "new_cases_smoothed": 1231.571,
- "total_deaths": 1246.0,
- "new_deaths": 24.0,
- "new_deaths_smoothed": 14.286,
- "total_cases_per_million": 7055.372,
- "new_cases_per_million": 80.753,
- "new_cases_smoothed_per_million": 113.531,
- "total_deaths_per_million": 114.861,
- "new_deaths_per_million": 2.212,
- "new_deaths_smoothed_per_million": 1.317,
- "new_tests": 4139.0,
- "total_tests": 290267.0,
- "total_tests_per_thousand": 26.758,
- "new_tests_per_thousand": 0.382,
- "new_tests_smoothed": 3933.0,
- "new_tests_smoothed_per_thousand": 0.363,
- "tests_per_case": 3.193,
- "positive_rate": 0.313,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-08-08",
- "total_cases": 77709.0,
- "new_cases": 1173.0,
- "new_cases_smoothed": 1151.429,
- "total_deaths": 1259.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 14.143,
- "total_cases_per_million": 7163.504,
- "new_cases_per_million": 108.131,
- "new_cases_smoothed_per_million": 106.143,
- "total_deaths_per_million": 116.059,
- "new_deaths_per_million": 1.198,
- "new_deaths_smoothed_per_million": 1.304,
- "new_tests": 3772.0,
- "total_tests": 294039.0,
- "total_tests_per_thousand": 27.106,
- "new_tests_per_thousand": 0.348,
- "new_tests_smoothed": 3885.0,
- "new_tests_smoothed_per_thousand": 0.358,
- "tests_per_case": 3.3739999999999997,
- "positive_rate": 0.29600000000000004,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-08-09",
- "total_cases": 78778.0,
- "new_cases": 1069.0,
- "new_cases_smoothed": 1051.857,
- "total_deaths": 1289.0,
- "new_deaths": 30.0,
- "new_deaths_smoothed": 17.0,
- "total_cases_per_million": 7262.048,
- "new_cases_per_million": 98.544,
- "new_cases_smoothed_per_million": 96.964,
- "total_deaths_per_million": 118.825,
- "new_deaths_per_million": 2.766,
- "new_deaths_smoothed_per_million": 1.567,
- "new_tests": 3453.0,
- "total_tests": 297492.0,
- "total_tests_per_thousand": 27.424,
- "new_tests_per_thousand": 0.318,
- "new_tests_smoothed": 4138.0,
- "new_tests_smoothed_per_thousand": 0.381,
- "tests_per_case": 3.9339999999999997,
- "positive_rate": 0.254,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-08-10",
- "total_cases": 79732.0,
- "new_cases": 954.0,
- "new_cases_smoothed": 1069.857,
- "total_deaths": 1309.0,
- "new_deaths": 20.0,
- "new_deaths_smoothed": 18.714,
- "total_cases_per_million": 7349.991,
- "new_cases_per_million": 87.943,
- "new_cases_smoothed_per_million": 98.623,
- "total_deaths_per_million": 120.668,
- "new_deaths_per_million": 1.844,
- "new_deaths_smoothed_per_million": 1.725,
- "new_tests": 2642.0,
- "total_tests": 300134.0,
- "total_tests_per_thousand": 27.667,
- "new_tests_per_thousand": 0.244,
- "new_tests_smoothed": 3776.0,
- "new_tests_smoothed_per_thousand": 0.348,
- "tests_per_case": 3.529,
- "positive_rate": 0.28300000000000003,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-08-11",
- "total_cases": 80499.0,
- "new_cases": 767.0,
- "new_cases_smoothed": 1054.571,
- "total_deaths": 1328.0,
- "new_deaths": 19.0,
- "new_deaths_smoothed": 20.714,
- "total_cases_per_million": 7420.696,
- "new_cases_per_million": 70.705,
- "new_cases_smoothed_per_million": 97.214,
- "total_deaths_per_million": 122.42,
- "new_deaths_per_million": 1.751,
- "new_deaths_smoothed_per_million": 1.91,
- "new_tests": 4367.0,
- "total_tests": 304501.0,
- "total_tests_per_thousand": 28.07,
- "new_tests_per_thousand": 0.403,
- "new_tests_smoothed": 3724.0,
- "new_tests_smoothed_per_thousand": 0.343,
- "tests_per_case": 3.531,
- "positive_rate": 0.28300000000000003,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-08-12",
- "total_cases": 81094.0,
- "new_cases": 595.0,
- "new_cases_smoothed": 971.286,
- "total_deaths": 1346.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 19.0,
- "total_cases_per_million": 7475.546,
- "new_cases_per_million": 54.849,
- "new_cases_smoothed_per_million": 89.537,
- "total_deaths_per_million": 124.079,
- "new_deaths_per_million": 1.659,
- "new_deaths_smoothed_per_million": 1.751,
- "new_tests": 3686.0,
- "total_tests": 308187.0,
- "total_tests_per_thousand": 28.41,
- "new_tests_per_thousand": 0.34,
- "new_tests_smoothed": 3752.0,
- "new_tests_smoothed_per_thousand": 0.346,
- "tests_per_case": 3.863,
- "positive_rate": 0.259,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-08-13",
- "total_cases": 82224.0,
- "new_cases": 1130.0,
- "new_cases_smoothed": 937.714,
- "total_deaths": 1371.0,
- "new_deaths": 25.0,
- "new_deaths_smoothed": 21.286,
- "total_cases_per_million": 7579.713,
- "new_cases_per_million": 104.168,
- "new_cases_smoothed_per_million": 86.442,
- "total_deaths_per_million": 126.384,
- "new_deaths_per_million": 2.305,
- "new_deaths_smoothed_per_million": 1.962,
- "new_tests": 5104.0,
- "total_tests": 313291.0,
- "total_tests_per_thousand": 28.88,
- "new_tests_per_thousand": 0.471,
- "new_tests_smoothed": 3880.0,
- "new_tests_smoothed_per_thousand": 0.358,
- "tests_per_case": 4.138,
- "positive_rate": 0.242,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-08-14",
- "total_cases": 83134.0,
- "new_cases": 910.0,
- "new_cases_smoothed": 942.571,
- "total_deaths": 1393.0,
- "new_deaths": 22.0,
- "new_deaths_smoothed": 21.0,
- "total_cases_per_million": 7663.6,
- "new_cases_per_million": 83.887,
- "new_cases_smoothed_per_million": 86.89,
- "total_deaths_per_million": 128.412,
- "new_deaths_per_million": 2.028,
- "new_deaths_smoothed_per_million": 1.936,
- "new_tests": 4352.0,
- "total_tests": 317643.0,
- "total_tests_per_thousand": 29.282,
- "new_tests_per_thousand": 0.401,
- "new_tests_smoothed": 3911.0,
- "new_tests_smoothed_per_thousand": 0.361,
- "tests_per_case": 4.149,
- "positive_rate": 0.24100000000000002,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-08-15",
- "total_cases": 84488.0,
- "new_cases": 1354.0,
- "new_cases_smoothed": 968.429,
- "total_deaths": 1409.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 21.429,
- "total_cases_per_million": 7788.417,
- "new_cases_per_million": 124.817,
- "new_cases_smoothed_per_million": 89.273,
- "total_deaths_per_million": 129.887,
- "new_deaths_per_million": 1.475,
- "new_deaths_smoothed_per_million": 1.975,
- "new_tests": 4413.0,
- "total_tests": 322056.0,
- "total_tests_per_thousand": 29.688,
- "new_tests_per_thousand": 0.407,
- "new_tests_smoothed": 4002.0,
- "new_tests_smoothed_per_thousand": 0.369,
- "tests_per_case": 4.132,
- "positive_rate": 0.242,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-08-16",
- "total_cases": 85545.0,
- "new_cases": 1057.0,
- "new_cases_smoothed": 966.714,
- "total_deaths": 1438.0,
- "new_deaths": 29.0,
- "new_deaths_smoothed": 21.286,
- "total_cases_per_million": 7885.855,
- "new_cases_per_million": 97.438,
- "new_cases_smoothed_per_million": 89.115,
- "total_deaths_per_million": 132.56,
- "new_deaths_per_million": 2.673,
- "new_deaths_smoothed_per_million": 1.962,
- "new_tests": 2407.0,
- "total_tests": 324463.0,
- "total_tests_per_thousand": 29.91,
- "new_tests_per_thousand": 0.222,
- "new_tests_smoothed": 3853.0,
- "new_tests_smoothed_per_thousand": 0.355,
- "tests_per_case": 3.986,
- "positive_rate": 0.251,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-08-17",
- "total_cases": 86309.0,
- "new_cases": 764.0,
- "new_cases_smoothed": 939.571,
- "total_deaths": 1453.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 20.571,
- "total_cases_per_million": 7956.284,
- "new_cases_per_million": 70.428,
- "new_cases_smoothed_per_million": 86.613,
- "total_deaths_per_million": 133.943,
- "new_deaths_per_million": 1.383,
- "new_deaths_smoothed_per_million": 1.896,
- "new_tests": 2181.0,
- "total_tests": 326644.0,
- "total_tests_per_thousand": 30.111,
- "new_tests_per_thousand": 0.201,
- "new_tests_smoothed": 3787.0,
- "new_tests_smoothed_per_thousand": 0.349,
- "tests_per_case": 4.031000000000001,
- "positive_rate": 0.248,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-08-18",
- "total_cases": 86737.0,
- "new_cases": 428.0,
- "new_cases_smoothed": 891.143,
- "total_deaths": 1481.0,
- "new_deaths": 28.0,
- "new_deaths_smoothed": 21.857,
- "total_cases_per_million": 7995.738,
- "new_cases_per_million": 39.455,
- "new_cases_smoothed_per_million": 82.149,
- "total_deaths_per_million": 136.524,
- "new_deaths_per_million": 2.581,
- "new_deaths_smoothed_per_million": 2.015,
- "new_tests": 4516.0,
- "total_tests": 331160.0,
- "total_tests_per_thousand": 30.528,
- "new_tests_per_thousand": 0.416,
- "new_tests_smoothed": 3808.0,
- "new_tests_smoothed_per_thousand": 0.351,
- "tests_per_case": 4.273,
- "positive_rate": 0.23399999999999999,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-08-19",
- "total_cases": 87123.0,
- "new_cases": 386.0,
- "new_cases_smoothed": 861.286,
- "total_deaths": 1489.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 20.429,
- "total_cases_per_million": 8031.321,
- "new_cases_per_million": 35.583,
- "new_cases_smoothed_per_million": 79.397,
- "total_deaths_per_million": 137.262,
- "new_deaths_per_million": 0.737,
- "new_deaths_smoothed_per_million": 1.883,
- "new_tests": 4318.0,
- "total_tests": 335478.0,
- "total_tests_per_thousand": 30.926,
- "new_tests_per_thousand": 0.398,
- "new_tests_smoothed": 3899.0,
- "new_tests_smoothed_per_thousand": 0.359,
- "tests_per_case": 4.527,
- "positive_rate": 0.221,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-08-20",
- "total_cases": 88127.0,
- "new_cases": 1004.0,
- "new_cases_smoothed": 843.286,
- "total_deaths": 1501.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 18.571,
- "total_cases_per_million": 8123.874,
- "new_cases_per_million": 92.552,
- "new_cases_smoothed_per_million": 77.737,
- "total_deaths_per_million": 138.368,
- "new_deaths_per_million": 1.106,
- "new_deaths_smoothed_per_million": 1.712,
- "new_tests": 4382.0,
- "total_tests": 339860.0,
- "total_tests_per_thousand": 31.33,
- "new_tests_per_thousand": 0.404,
- "new_tests_smoothed": 3796.0,
- "new_tests_smoothed_per_thousand": 0.35,
- "tests_per_case": 4.501,
- "positive_rate": 0.222,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-08-21",
- "total_cases": 89010.0,
- "new_cases": 883.0,
- "new_cases_smoothed": 839.429,
- "total_deaths": 1505.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 16.0,
- "total_cases_per_million": 8205.272,
- "new_cases_per_million": 81.398,
- "new_cases_smoothed_per_million": 77.382,
- "total_deaths_per_million": 138.736,
- "new_deaths_per_million": 0.369,
- "new_deaths_smoothed_per_million": 1.475,
- "new_tests": 3936.0,
- "total_tests": 343796.0,
- "total_tests_per_thousand": 31.692,
- "new_tests_per_thousand": 0.363,
- "new_tests_smoothed": 3736.0,
- "new_tests_smoothed_per_thousand": 0.344,
- "tests_per_case": 4.4510000000000005,
- "positive_rate": 0.225,
- "tests_units": "samples tested",
- "stringency_index": 78.7
- },
- {
- "date": "2020-08-22",
- "total_cases": 89867.0,
- "new_cases": 857.0,
- "new_cases_smoothed": 768.429,
- "total_deaths": 1533.0,
- "new_deaths": 28.0,
- "new_deaths_smoothed": 17.714,
- "total_cases_per_million": 8284.273,
- "new_cases_per_million": 79.001,
- "new_cases_smoothed_per_million": 70.837,
- "total_deaths_per_million": 141.318,
- "new_deaths_per_million": 2.581,
- "new_deaths_smoothed_per_million": 1.633,
- "new_tests": 3467.0,
- "total_tests": 347263.0,
- "total_tests_per_thousand": 32.012,
- "new_tests_per_thousand": 0.32,
- "new_tests_smoothed": 3601.0,
- "new_tests_smoothed_per_thousand": 0.332,
- "tests_per_case": 4.686,
- "positive_rate": 0.213,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-08-23",
- "total_cases": 90561.0,
- "new_cases": 694.0,
- "new_cases_smoothed": 716.571,
- "total_deaths": 1554.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 16.571,
- "total_cases_per_million": 8348.249,
- "new_cases_per_million": 63.975,
- "new_cases_smoothed_per_million": 66.056,
- "total_deaths_per_million": 143.253,
- "new_deaths_per_million": 1.936,
- "new_deaths_smoothed_per_million": 1.528,
- "new_tests": 2770.0,
- "total_tests": 350033.0,
- "total_tests_per_thousand": 32.267,
- "new_tests_per_thousand": 0.255,
- "new_tests_smoothed": 3653.0,
- "new_tests_smoothed_per_thousand": 0.337,
- "tests_per_case": 5.098,
- "positive_rate": 0.196,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-08-24",
- "total_cases": 91161.0,
- "new_cases": 600.0,
- "new_cases_smoothed": 693.143,
- "total_deaths": 1567.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 16.286,
- "total_cases_per_million": 8403.559,
- "new_cases_per_million": 55.31,
- "new_cases_smoothed_per_million": 63.896,
- "total_deaths_per_million": 144.452,
- "new_deaths_per_million": 1.198,
- "new_deaths_smoothed_per_million": 1.501,
- "new_tests": 3221.0,
- "total_tests": 353254.0,
- "total_tests_per_thousand": 32.564,
- "new_tests_per_thousand": 0.297,
- "new_tests_smoothed": 3801.0,
- "new_tests_smoothed_per_thousand": 0.35,
- "tests_per_case": 5.484,
- "positive_rate": 0.182,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-08-25",
- "total_cases": 91608.0,
- "new_cases": 447.0,
- "new_cases_smoothed": 695.857,
- "total_deaths": 1573.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 13.143,
- "total_cases_per_million": 8444.765,
- "new_cases_per_million": 41.206,
- "new_cases_smoothed_per_million": 64.147,
- "total_deaths_per_million": 145.005,
- "new_deaths_per_million": 0.553,
- "new_deaths_smoothed_per_million": 1.212,
- "new_tests": 2585.0,
- "total_tests": 355839.0,
- "total_tests_per_thousand": 32.803,
- "new_tests_per_thousand": 0.238,
- "new_tests_smoothed": 3526.0,
- "new_tests_smoothed_per_thousand": 0.325,
- "tests_per_case": 5.067,
- "positive_rate": 0.19699999999999998,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-08-26",
- "total_cases": 92217.0,
- "new_cases": 609.0,
- "new_cases_smoothed": 727.714,
- "total_deaths": 1585.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 13.714,
- "total_cases_per_million": 8500.905,
- "new_cases_per_million": 56.14,
- "new_cases_smoothed_per_million": 67.083,
- "total_deaths_per_million": 146.111,
- "new_deaths_per_million": 1.106,
- "new_deaths_smoothed_per_million": 1.264,
- "new_tests": 2694.0,
- "total_tests": 358533.0,
- "total_tests_per_thousand": 33.051,
- "new_tests_per_thousand": 0.248,
- "new_tests_smoothed": 3294.0,
- "new_tests_smoothed_per_thousand": 0.304,
- "tests_per_case": 4.527,
- "positive_rate": 0.221,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-08-27",
- "total_cases": 92557.0,
- "new_cases": 340.0,
- "new_cases_smoothed": 632.857,
- "total_deaths": 1613.0,
- "new_deaths": 28.0,
- "new_deaths_smoothed": 16.0,
- "total_cases_per_million": 8532.247,
- "new_cases_per_million": 31.342,
- "new_cases_smoothed_per_million": 58.339,
- "total_deaths_per_million": 148.692,
- "new_deaths_per_million": 2.581,
- "new_deaths_smoothed_per_million": 1.475,
- "new_tests": 2466.0,
- "total_tests": 360999.0,
- "total_tests_per_thousand": 33.278,
- "new_tests_per_thousand": 0.227,
- "new_tests_smoothed": 3020.0,
- "new_tests_smoothed_per_thousand": 0.278,
- "tests_per_case": 4.772,
- "positive_rate": 0.21,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-08-28",
- "total_cases": 92964.0,
- "new_cases": 407.0,
- "new_cases_smoothed": 564.857,
- "total_deaths": 1630.0,
- "new_deaths": 17.0,
- "new_deaths_smoothed": 17.857,
- "total_cases_per_million": 8569.766,
- "new_cases_per_million": 37.519,
- "new_cases_smoothed_per_million": 52.071,
- "total_deaths_per_million": 150.259,
- "new_deaths_per_million": 1.567,
- "new_deaths_smoothed_per_million": 1.646,
- "new_tests": 2808.0,
- "total_tests": 363807.0,
- "total_tests_per_thousand": 33.537,
- "new_tests_per_thousand": 0.259,
- "new_tests_smoothed": 2859.0,
- "new_tests_smoothed_per_thousand": 0.264,
- "tests_per_case": 5.061,
- "positive_rate": 0.198,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-08-29",
- "total_cases": 93390.0,
- "new_cases": 426.0,
- "new_cases_smoothed": 503.286,
- "total_deaths": 1648.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 16.429,
- "total_cases_per_million": 8609.036,
- "new_cases_per_million": 39.27,
- "new_cases_smoothed_per_million": 46.395,
- "total_deaths_per_million": 151.919,
- "new_deaths_per_million": 1.659,
- "new_deaths_smoothed_per_million": 1.514,
- "new_tests": 3339.0,
- "total_tests": 367146.0,
- "total_tests_per_thousand": 33.845,
- "new_tests_per_thousand": 0.308,
- "new_tests_smoothed": 2840.0,
- "new_tests_smoothed_per_thousand": 0.262,
- "tests_per_case": 5.643,
- "positive_rate": 0.177,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-08-30",
- "total_cases": 93732.0,
- "new_cases": 342.0,
- "new_cases_smoothed": 453.0,
- "total_deaths": 1673.0,
- "new_deaths": 25.0,
- "new_deaths_smoothed": 17.0,
- "total_cases_per_million": 8640.563,
- "new_cases_per_million": 31.527,
- "new_cases_smoothed_per_million": 41.759,
- "total_deaths_per_million": 154.223,
- "new_deaths_per_million": 2.305,
- "new_deaths_smoothed_per_million": 1.567,
- "new_tests": 3729.0,
- "total_tests": 370875.0,
- "total_tests_per_thousand": 34.189,
- "new_tests_per_thousand": 0.344,
- "new_tests_smoothed": 2977.0,
- "new_tests_smoothed_per_thousand": 0.274,
- "tests_per_case": 6.572,
- "positive_rate": 0.152,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-08-31",
- "total_cases": 94241.0,
- "new_cases": 509.0,
- "new_cases_smoothed": 440.0,
- "total_deaths": 1681.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 16.286,
- "total_cases_per_million": 8687.485,
- "new_cases_per_million": 46.922,
- "new_cases_smoothed_per_million": 40.561,
- "total_deaths_per_million": 154.961,
- "new_deaths_per_million": 0.737,
- "new_deaths_smoothed_per_million": 1.501,
- "new_tests": 2126.0,
- "total_tests": 373001.0,
- "total_tests_per_thousand": 34.385,
- "new_tests_per_thousand": 0.196,
- "new_tests_smoothed": 2821.0,
- "new_tests_smoothed_per_thousand": 0.26,
- "tests_per_case": 6.4110000000000005,
- "positive_rate": 0.156,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-01",
- "total_cases": 94715.0,
- "new_cases": 474.0,
- "new_cases_smoothed": 443.857,
- "total_deaths": 1710.0,
- "new_deaths": 29.0,
- "new_deaths_smoothed": 19.571,
- "total_cases_per_million": 8731.18,
- "new_cases_per_million": 43.695,
- "new_cases_smoothed_per_million": 40.916,
- "total_deaths_per_million": 157.634,
- "new_deaths_per_million": 2.673,
- "new_deaths_smoothed_per_million": 1.804,
- "new_tests": 3120.0,
- "total_tests": 376121.0,
- "total_tests_per_thousand": 34.672,
- "new_tests_per_thousand": 0.288,
- "new_tests_smoothed": 2897.0,
- "new_tests_smoothed_per_thousand": 0.267,
- "tests_per_case": 6.527,
- "positive_rate": 0.153,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-02",
- "total_cases": 94979.0,
- "new_cases": 264.0,
- "new_cases_smoothed": 394.571,
- "total_deaths": 1738.0,
- "new_deaths": 28.0,
- "new_deaths_smoothed": 21.857,
- "total_cases_per_million": 8755.516,
- "new_cases_per_million": 24.336,
- "new_cases_smoothed_per_million": 36.373,
- "total_deaths_per_million": 160.215,
- "new_deaths_per_million": 2.581,
- "new_deaths_smoothed_per_million": 2.015,
- "new_tests": 3808.0,
- "total_tests": 379929.0,
- "total_tests_per_thousand": 35.023,
- "new_tests_per_thousand": 0.351,
- "new_tests_smoothed": 3057.0,
- "new_tests_smoothed_per_thousand": 0.282,
- "tests_per_case": 7.747999999999999,
- "positive_rate": 0.129,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-03",
- "total_cases": 95627.0,
- "new_cases": 648.0,
- "new_cases_smoothed": 438.571,
- "total_deaths": 1765.0,
- "new_deaths": 27.0,
- "new_deaths_smoothed": 21.714,
- "total_cases_per_million": 8815.251,
- "new_cases_per_million": 59.735,
- "new_cases_smoothed_per_million": 40.429,
- "total_deaths_per_million": 162.704,
- "new_deaths_per_million": 2.489,
- "new_deaths_smoothed_per_million": 2.002,
- "new_tests": 6192.0,
- "total_tests": 386121.0,
- "total_tests_per_thousand": 35.594,
- "new_tests_per_thousand": 0.571,
- "new_tests_smoothed": 3589.0,
- "new_tests_smoothed_per_thousand": 0.331,
- "tests_per_case": 8.183,
- "positive_rate": 0.122,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-04",
- "total_cases": 96629.0,
- "new_cases": 1002.0,
- "new_cases_smoothed": 523.571,
- "total_deaths": 1801.0,
- "new_deaths": 36.0,
- "new_deaths_smoothed": 24.429,
- "total_cases_per_million": 8907.619,
- "new_cases_per_million": 92.368,
- "new_cases_smoothed_per_million": 48.265,
- "total_deaths_per_million": 166.023,
- "new_deaths_per_million": 3.319,
- "new_deaths_smoothed_per_million": 2.252,
- "new_tests": 5069.0,
- "total_tests": 391190.0,
- "total_tests_per_thousand": 36.061,
- "new_tests_per_thousand": 0.467,
- "new_tests_smoothed": 3912.0,
- "new_tests_smoothed_per_thousand": 0.361,
- "tests_per_case": 7.472,
- "positive_rate": 0.134,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-05",
- "total_cases": 96629.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 462.714,
- "total_deaths": 1801.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 21.857,
- "total_cases_per_million": 8907.619,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 42.655,
- "total_deaths_per_million": 166.023,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.015,
- "new_tests": 3601.0,
- "total_tests": 394791.0,
- "total_tests_per_thousand": 36.393,
- "new_tests_per_thousand": 0.332,
- "new_tests_smoothed": 3949.0,
- "new_tests_smoothed_per_thousand": 0.364,
- "tests_per_case": 8.533999999999999,
- "positive_rate": 0.11699999999999999,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-06",
- "total_cases": 98776.0,
- "new_cases": 2147.0,
- "new_cases_smoothed": 720.571,
- "total_deaths": 1840.0,
- "new_deaths": 39.0,
- "new_deaths_smoothed": 23.857,
- "total_cases_per_million": 9105.538,
- "new_cases_per_million": 197.918,
- "new_cases_smoothed_per_million": 66.425,
- "total_deaths_per_million": 169.618,
- "new_deaths_per_million": 3.595,
- "new_deaths_smoothed_per_million": 2.199,
- "new_tests": 2854.0,
- "total_tests": 397645.0,
- "total_tests_per_thousand": 36.656,
- "new_tests_per_thousand": 0.263,
- "new_tests_smoothed": 3824.0,
- "new_tests_smoothed_per_thousand": 0.353,
- "tests_per_case": 5.307,
- "positive_rate": 0.188,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-07",
- "total_cases": 99333.0,
- "new_cases": 557.0,
- "new_cases_smoothed": 727.429,
- "total_deaths": 1845.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 23.429,
- "total_cases_per_million": 9156.884,
- "new_cases_per_million": 51.346,
- "new_cases_smoothed_per_million": 67.057,
- "total_deaths_per_million": 170.079,
- "new_deaths_per_million": 0.461,
- "new_deaths_smoothed_per_million": 2.16,
- "new_tests": 2493.0,
- "total_tests": 400138.0,
- "total_tests_per_thousand": 36.886,
- "new_tests_per_thousand": 0.23,
- "new_tests_smoothed": 3877.0,
- "new_tests_smoothed_per_thousand": 0.357,
- "tests_per_case": 5.33,
- "positive_rate": 0.188,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-08",
- "total_cases": 99898.0,
- "new_cases": 565.0,
- "new_cases_smoothed": 740.429,
- "total_deaths": 1864.0,
- "new_deaths": 19.0,
- "new_deaths_smoothed": 22.0,
- "total_cases_per_million": 9208.968,
- "new_cases_per_million": 52.084,
- "new_cases_smoothed_per_million": 68.255,
- "total_deaths_per_million": 171.83,
- "new_deaths_per_million": 1.751,
- "new_deaths_smoothed_per_million": 2.028,
- "new_tests": 3617.0,
- "total_tests": 403755.0,
- "total_tests_per_thousand": 37.22,
- "new_tests_per_thousand": 0.333,
- "new_tests_smoothed": 3948.0,
- "new_tests_smoothed_per_thousand": 0.364,
- "tests_per_case": 5.332000000000001,
- "positive_rate": 0.188,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-09",
- "total_cases": 100131.0,
- "new_cases": 233.0,
- "new_cases_smoothed": 736.0,
- "total_deaths": 1889.0,
- "new_deaths": 25.0,
- "new_deaths_smoothed": 21.571,
- "total_cases_per_million": 9230.447,
- "new_cases_per_million": 21.479,
- "new_cases_smoothed_per_million": 67.847,
- "total_deaths_per_million": 174.135,
- "new_deaths_per_million": 2.305,
- "new_deaths_smoothed_per_million": 1.989,
- "new_tests": 4259.0,
- "total_tests": 408014.0,
- "total_tests_per_thousand": 37.612,
- "new_tests_per_thousand": 0.393,
- "new_tests_smoothed": 4012.0,
- "new_tests_smoothed_per_thousand": 0.37,
- "tests_per_case": 5.4510000000000005,
- "positive_rate": 0.183,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-10",
- "total_cases": 100937.0,
- "new_cases": 806.0,
- "new_cases_smoothed": 758.571,
- "total_deaths": 1914.0,
- "new_deaths": 25.0,
- "new_deaths_smoothed": 21.286,
- "total_cases_per_million": 9304.747,
- "new_cases_per_million": 74.3,
- "new_cases_smoothed_per_million": 69.928,
- "total_deaths_per_million": 176.44,
- "new_deaths_per_million": 2.305,
- "new_deaths_smoothed_per_million": 1.962,
- "new_tests": 3650.0,
- "total_tests": 411664.0,
- "total_tests_per_thousand": 37.949,
- "new_tests_per_thousand": 0.336,
- "new_tests_smoothed": 3649.0,
- "new_tests_smoothed_per_thousand": 0.336,
- "tests_per_case": 4.81,
- "positive_rate": 0.20800000000000002,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-11",
- "total_cases": 101716.0,
- "new_cases": 779.0,
- "new_cases_smoothed": 726.714,
- "total_deaths": 1926.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 17.857,
- "total_cases_per_million": 9376.558,
- "new_cases_per_million": 71.811,
- "new_cases_smoothed_per_million": 66.991,
- "total_deaths_per_million": 177.546,
- "new_deaths_per_million": 1.106,
- "new_deaths_smoothed_per_million": 1.646,
- "new_tests_smoothed": 3472.0,
- "new_tests_smoothed_per_thousand": 0.32,
- "tests_per_case": 4.7780000000000005,
- "positive_rate": 0.209,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-12",
- "total_cases": 102232.0,
- "new_cases": 516.0,
- "new_cases_smoothed": 800.429,
- "total_deaths": 1941.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 20.0,
- "total_cases_per_million": 9424.125,
- "new_cases_per_million": 47.567,
- "new_cases_smoothed_per_million": 73.786,
- "total_deaths_per_million": 178.929,
- "new_deaths_per_million": 1.383,
- "new_deaths_smoothed_per_million": 1.844,
- "total_tests": 419327.0,
- "total_tests_per_thousand": 38.655,
- "new_tests_smoothed": 3505.0,
- "new_tests_smoothed_per_thousand": 0.323,
- "tests_per_case": 4.379,
- "positive_rate": 0.228,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-13",
- "total_cases": 103092.0,
- "new_cases": 860.0,
- "new_cases_smoothed": 616.571,
- "total_deaths": 1953.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 16.143,
- "total_cases_per_million": 9503.403,
- "new_cases_per_million": 79.278,
- "new_cases_smoothed_per_million": 56.838,
- "total_deaths_per_million": 180.035,
- "new_deaths_per_million": 1.106,
- "new_deaths_smoothed_per_million": 1.488,
- "new_tests": 2743.0,
- "total_tests": 422070.0,
- "total_tests_per_thousand": 38.908,
- "new_tests_per_thousand": 0.253,
- "new_tests_smoothed": 3489.0,
- "new_tests_smoothed_per_thousand": 0.322,
- "tests_per_case": 5.659,
- "positive_rate": 0.177,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-14",
- "total_cases": 103660.0,
- "new_cases": 568.0,
- "new_cases_smoothed": 618.143,
- "total_deaths": 1968.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 17.571,
- "total_cases_per_million": 9555.763,
- "new_cases_per_million": 52.36,
- "new_cases_smoothed_per_million": 56.983,
- "total_deaths_per_million": 181.418,
- "new_deaths_per_million": 1.383,
- "new_deaths_smoothed_per_million": 1.62,
- "new_tests": 3432.0,
- "total_tests": 425502.0,
- "total_tests_per_thousand": 39.224,
- "new_tests_per_thousand": 0.316,
- "new_tests_smoothed": 3623.0,
- "new_tests_smoothed_per_thousand": 0.334,
- "tests_per_case": 5.861000000000001,
- "positive_rate": 0.171,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-15",
- "total_cases": 104110.0,
- "new_cases": 450.0,
- "new_cases_smoothed": 601.714,
- "total_deaths": 1984.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 17.143,
- "total_cases_per_million": 9597.246,
- "new_cases_per_million": 41.483,
- "new_cases_smoothed_per_million": 55.468,
- "total_deaths_per_million": 182.892,
- "new_deaths_per_million": 1.475,
- "new_deaths_smoothed_per_million": 1.58,
- "new_tests": 3921.0,
- "total_tests": 429423.0,
- "total_tests_per_thousand": 39.586,
- "new_tests_per_thousand": 0.361,
- "new_tests_smoothed": 3667.0,
- "new_tests_smoothed_per_thousand": 0.338,
- "tests_per_case": 6.093999999999999,
- "positive_rate": 0.16399999999999998,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-16",
- "total_cases": 104803.0,
- "new_cases": 693.0,
- "new_cases_smoothed": 667.429,
- "total_deaths": 1998.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 15.571,
- "total_cases_per_million": 9661.129,
- "new_cases_per_million": 63.883,
- "new_cases_smoothed_per_million": 61.526,
- "total_deaths_per_million": 184.183,
- "new_deaths_per_million": 1.291,
- "new_deaths_smoothed_per_million": 1.435,
- "new_tests": 4425.0,
- "total_tests": 433848.0,
- "total_tests_per_thousand": 39.994,
- "new_tests_per_thousand": 0.408,
- "new_tests_smoothed": 3691.0,
- "new_tests_smoothed_per_thousand": 0.34,
- "tests_per_case": 5.53,
- "positive_rate": 0.18100000000000002,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-17",
- "total_cases": 105521.0,
- "new_cases": 718.0,
- "new_cases_smoothed": 654.857,
- "total_deaths": 2009.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 13.571,
- "total_cases_per_million": 9727.317,
- "new_cases_per_million": 66.188,
- "new_cases_smoothed_per_million": 60.367,
- "total_deaths_per_million": 185.197,
- "new_deaths_per_million": 1.014,
- "new_deaths_smoothed_per_million": 1.251,
- "new_tests": 3469.0,
- "total_tests": 437317.0,
- "total_tests_per_thousand": 40.314,
- "new_tests_per_thousand": 0.32,
- "new_tests_smoothed": 3665.0,
- "new_tests_smoothed_per_thousand": 0.338,
- "tests_per_case": 5.597,
- "positive_rate": 0.179,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-18",
- "total_cases": 106136.0,
- "new_cases": 615.0,
- "new_cases_smoothed": 631.429,
- "total_deaths": 2022.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 13.714,
- "total_cases_per_million": 9784.01,
- "new_cases_per_million": 56.693,
- "new_cases_smoothed_per_million": 58.207,
- "total_deaths_per_million": 186.395,
- "new_deaths_per_million": 1.198,
- "new_deaths_smoothed_per_million": 1.264,
- "new_tests": 5037.0,
- "total_tests": 442354.0,
- "total_tests_per_thousand": 40.778,
- "new_tests_per_thousand": 0.464,
- "new_tests_smoothed": 3837.0,
- "new_tests_smoothed_per_thousand": 0.354,
- "tests_per_case": 6.077000000000001,
- "positive_rate": 0.165,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-19",
- "total_cases": 106732.0,
- "new_cases": 596.0,
- "new_cases_smoothed": 642.857,
- "total_deaths": 2034.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 13.286,
- "total_cases_per_million": 9838.951,
- "new_cases_per_million": 54.941,
- "new_cases_smoothed_per_million": 59.261,
- "total_deaths_per_million": 187.502,
- "new_deaths_per_million": 1.106,
- "new_deaths_smoothed_per_million": 1.225,
- "new_tests": 3885.0,
- "total_tests": 446239.0,
- "total_tests_per_thousand": 41.136,
- "new_tests_per_thousand": 0.358,
- "new_tests_smoothed": 3845.0,
- "new_tests_smoothed_per_thousand": 0.354,
- "tests_per_case": 5.981,
- "positive_rate": 0.16699999999999998,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-20",
- "total_cases": 107700.0,
- "new_cases": 968.0,
- "new_cases_smoothed": 658.286,
- "total_deaths": 2044.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 13.0,
- "total_cases_per_million": 9928.185,
- "new_cases_per_million": 89.234,
- "new_cases_smoothed_per_million": 60.683,
- "total_deaths_per_million": 188.423,
- "new_deaths_per_million": 0.922,
- "new_deaths_smoothed_per_million": 1.198,
- "new_tests": 3350.0,
- "total_tests": 449589.0,
- "total_tests_per_thousand": 41.445,
- "new_tests_per_thousand": 0.309,
- "new_tests_smoothed": 3931.0,
- "new_tests_smoothed_per_thousand": 0.362,
- "tests_per_case": 5.972,
- "positive_rate": 0.16699999999999998,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-21",
- "total_cases": 108289.0,
- "new_cases": 589.0,
- "new_cases_smoothed": 661.286,
- "total_deaths": 2047.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 11.286,
- "total_cases_per_million": 9982.481,
- "new_cases_per_million": 54.296,
- "new_cases_smoothed_per_million": 60.96,
- "total_deaths_per_million": 188.7,
- "new_deaths_per_million": 0.277,
- "new_deaths_smoothed_per_million": 1.04,
- "new_tests": 2599.0,
- "total_tests": 452188.0,
- "total_tests_per_thousand": 41.684,
- "new_tests_per_thousand": 0.24,
- "new_tests_smoothed": 3812.0,
- "new_tests_smoothed_per_thousand": 0.351,
- "tests_per_case": 5.765,
- "positive_rate": 0.17300000000000001,
- "tests_units": "samples tested",
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-22",
- "total_cases": 108783.0,
- "new_cases": 494.0,
- "new_cases_smoothed": 667.571,
- "total_deaths": 2054.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 10.0,
- "total_cases_per_million": 10028.02,
- "new_cases_per_million": 45.539,
- "new_cases_smoothed_per_million": 61.539,
- "total_deaths_per_million": 189.345,
- "new_deaths_per_million": 0.645,
- "new_deaths_smoothed_per_million": 0.922,
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-23",
- "total_cases": 109269.0,
- "new_cases": 486.0,
- "new_cases_smoothed": 638.0,
- "total_deaths": 2064.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 9.429,
- "total_cases_per_million": 10072.821,
- "new_cases_per_million": 44.801,
- "new_cases_smoothed_per_million": 58.813,
- "total_deaths_per_million": 190.267,
- "new_deaths_per_million": 0.922,
- "new_deaths_smoothed_per_million": 0.869,
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-24",
- "total_cases": 109737.0,
- "new_cases": 468.0,
- "new_cases_smoothed": 602.286,
- "total_deaths": 2074.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 9.286,
- "total_cases_per_million": 10115.963,
- "new_cases_per_million": 43.142,
- "new_cases_smoothed_per_million": 55.521,
- "total_deaths_per_million": 191.189,
- "new_deaths_per_million": 0.922,
- "new_deaths_smoothed_per_million": 0.856,
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-25",
- "total_cases": 110122.0,
- "new_cases": 385.0,
- "new_cases_smoothed": 569.429,
- "total_deaths": 2076.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 7.714,
- "total_cases_per_million": 10151.454,
- "new_cases_per_million": 35.491,
- "new_cases_smoothed_per_million": 52.492,
- "total_deaths_per_million": 191.373,
- "new_deaths_per_million": 0.184,
- "new_deaths_smoothed_per_million": 0.711
- }
- ]
- },
- "DZA": {
- "continent": "Africa",
- "location": "Algeria",
- "population": 43851043.0,
- "population_density": 17.348,
- "median_age": 29.1,
- "aged_65_older": 6.211,
- "aged_70_older": 3.857,
- "gdp_per_capita": 13913.839,
- "extreme_poverty": 0.5,
- "cardiovasc_death_rate": 278.364,
- "diabetes_prevalence": 6.73,
- "female_smokers": 0.7,
- "male_smokers": 30.4,
- "handwashing_facilities": 83.741,
- "hospital_beds_per_thousand": 1.9,
- "life_expectancy": 76.88,
- "human_development_index": 0.754,
- "data": [
- {
- "date": "2019-12-31",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-01-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-02",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-03",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-04",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-05",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-06",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-07",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-08",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-09",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-10",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-11",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-12",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-13",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-14",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-15",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-16",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-17",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-18",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-19",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-20",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-21",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-22",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-23",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-24",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-25",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-26",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-27",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-28",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-29",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-30",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-31",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-02",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-03",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-04",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-05",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-06",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-07",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-08",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-09",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-10",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-11",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-12",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-13",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-14",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-15",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-16",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-17",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-18",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-19",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-20",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-21",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-22",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-23",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-24",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-25",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-26",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.023,
- "new_cases_per_million": 0.023,
- "new_cases_smoothed_per_million": 0.003,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-27",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.023,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.003,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-28",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.023,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.003,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-02-29",
- "total_cases": 1.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.023,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.003,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-01",
- "total_cases": 3.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.068,
- "new_cases_per_million": 0.046,
- "new_cases_smoothed_per_million": 0.01,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-02",
- "total_cases": 3.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.068,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.01,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-03",
- "new_cases_smoothed": 0.429,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.01,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-04",
- "total_cases": 5.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 0.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.114,
- "new_cases_per_million": 0.046,
- "new_cases_smoothed_per_million": 0.013,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-03-05",
- "total_cases": 12.0,
- "new_cases": 7.0,
- "new_cases_smoothed": 1.571,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.274,
- "new_cases_per_million": 0.16,
- "new_cases_smoothed_per_million": 0.036,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-03-06",
- "total_cases": 17.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 2.286,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.388,
- "new_cases_per_million": 0.114,
- "new_cases_smoothed_per_million": 0.052,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-03-07",
- "new_cases_smoothed": 2.286,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.052,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-03-08",
- "new_cases_smoothed": 2.0,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.046,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-03-09",
- "total_cases": 20.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 2.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.456,
- "new_cases_per_million": 0.068,
- "new_cases_smoothed_per_million": 0.055,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-03-10",
- "new_cases_smoothed": 2.429,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.055,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 16.67
- },
- {
- "date": "2020-03-11",
- "new_cases_smoothed": 2.143,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.049,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 16.67
- },
- {
- "date": "2020-03-12",
- "total_cases": 20.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.456,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.026,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-13",
- "total_cases": 25.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 0.57,
- "new_cases_per_million": 0.114,
- "new_cases_smoothed_per_million": 0.026,
- "total_deaths_per_million": 0.023,
- "new_deaths_per_million": 0.023,
- "new_deaths_smoothed_per_million": 0.003,
- "stringency_index": 30.56
- },
- {
- "date": "2020-03-14",
- "total_cases": 26.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.286,
- "total_deaths": 2.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 0.593,
- "new_cases_per_million": 0.023,
- "new_cases_smoothed_per_million": 0.029,
- "total_deaths_per_million": 0.046,
- "new_deaths_per_million": 0.023,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 36.11
- },
- {
- "date": "2020-03-15",
- "total_cases": 37.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 2.857,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 0.844,
- "new_cases_per_million": 0.251,
- "new_cases_smoothed_per_million": 0.065,
- "total_deaths_per_million": 0.046,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.007,
- "stringency_index": 36.11
- },
- {
- "date": "2020-03-16",
- "total_cases": 48.0,
- "new_cases": 11.0,
- "new_cases_smoothed": 4.0,
- "total_deaths": 4.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 1.095,
- "new_cases_per_million": 0.251,
- "new_cases_smoothed_per_million": 0.091,
- "total_deaths_per_million": 0.091,
- "new_deaths_per_million": 0.046,
- "new_deaths_smoothed_per_million": 0.013,
- "stringency_index": 36.11
- },
- {
- "date": "2020-03-17",
- "total_cases": 58.0,
- "new_cases": 10.0,
- "new_cases_smoothed": 5.429,
- "total_deaths": 4.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.571,
- "total_cases_per_million": 1.323,
- "new_cases_per_million": 0.228,
- "new_cases_smoothed_per_million": 0.124,
- "total_deaths_per_million": 0.091,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.013,
- "stringency_index": 38.89
- },
- {
- "date": "2020-03-18",
- "total_cases": 60.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 5.714,
- "total_deaths": 5.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 1.368,
- "new_cases_per_million": 0.046,
- "new_cases_smoothed_per_million": 0.13,
- "total_deaths_per_million": 0.114,
- "new_deaths_per_million": 0.023,
- "new_deaths_smoothed_per_million": 0.016,
- "stringency_index": 38.89
- },
- {
- "date": "2020-03-19",
- "total_cases": 72.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 7.429,
- "total_deaths": 6.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 1.642,
- "new_cases_per_million": 0.274,
- "new_cases_smoothed_per_million": 0.169,
- "total_deaths_per_million": 0.137,
- "new_deaths_per_million": 0.023,
- "new_deaths_smoothed_per_million": 0.02,
- "stringency_index": 38.89
- },
- {
- "date": "2020-03-20",
- "total_cases": 90.0,
- "new_cases": 18.0,
- "new_cases_smoothed": 9.286,
- "total_deaths": 7.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 2.052,
- "new_cases_per_million": 0.41,
- "new_cases_smoothed_per_million": 0.212,
- "total_deaths_per_million": 0.16,
- "new_deaths_per_million": 0.023,
- "new_deaths_smoothed_per_million": 0.02,
- "stringency_index": 38.89
- },
- {
- "date": "2020-03-21",
- "total_cases": 102.0,
- "new_cases": 12.0,
- "new_cases_smoothed": 10.857,
- "total_deaths": 10.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 1.143,
- "total_cases_per_million": 2.326,
- "new_cases_per_million": 0.274,
- "new_cases_smoothed_per_million": 0.248,
- "total_deaths_per_million": 0.228,
- "new_deaths_per_million": 0.068,
- "new_deaths_smoothed_per_million": 0.026,
- "stringency_index": 38.89
- },
- {
- "date": "2020-03-22",
- "total_cases": 139.0,
- "new_cases": 37.0,
- "new_cases_smoothed": 14.571,
- "total_deaths": 15.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 3.17,
- "new_cases_per_million": 0.844,
- "new_cases_smoothed_per_million": 0.332,
- "total_deaths_per_million": 0.342,
- "new_deaths_per_million": 0.114,
- "new_deaths_smoothed_per_million": 0.042,
- "stringency_index": 38.89
- },
- {
- "date": "2020-03-23",
- "total_cases": 201.0,
- "new_cases": 62.0,
- "new_cases_smoothed": 21.857,
- "total_deaths": 17.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 4.584,
- "new_cases_per_million": 1.414,
- "new_cases_smoothed_per_million": 0.498,
- "total_deaths_per_million": 0.388,
- "new_deaths_per_million": 0.046,
- "new_deaths_smoothed_per_million": 0.042,
- "stringency_index": 75.0
- },
- {
- "date": "2020-03-24",
- "total_cases": 230.0,
- "new_cases": 29.0,
- "new_cases_smoothed": 24.571,
- "total_deaths": 17.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 1.857,
- "total_cases_per_million": 5.245,
- "new_cases_per_million": 0.661,
- "new_cases_smoothed_per_million": 0.56,
- "total_deaths_per_million": 0.388,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.042,
- "stringency_index": 75.0
- },
- {
- "date": "2020-03-25",
- "total_cases": 264.0,
- "new_cases": 34.0,
- "new_cases_smoothed": 29.143,
- "total_deaths": 19.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 6.02,
- "new_cases_per_million": 0.775,
- "new_cases_smoothed_per_million": 0.665,
- "total_deaths_per_million": 0.433,
- "new_deaths_per_million": 0.046,
- "new_deaths_smoothed_per_million": 0.046,
- "stringency_index": 75.0
- },
- {
- "date": "2020-03-26",
- "total_cases": 302.0,
- "new_cases": 38.0,
- "new_cases_smoothed": 32.857,
- "total_deaths": 21.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.143,
- "total_cases_per_million": 6.887,
- "new_cases_per_million": 0.867,
- "new_cases_smoothed_per_million": 0.749,
- "total_deaths_per_million": 0.479,
- "new_deaths_per_million": 0.046,
- "new_deaths_smoothed_per_million": 0.049,
- "stringency_index": 75.0
- },
- {
- "date": "2020-03-27",
- "total_cases": 367.0,
- "new_cases": 65.0,
- "new_cases_smoothed": 39.571,
- "total_deaths": 25.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 8.369,
- "new_cases_per_million": 1.482,
- "new_cases_smoothed_per_million": 0.902,
- "total_deaths_per_million": 0.57,
- "new_deaths_per_million": 0.091,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 75.0
- },
- {
- "date": "2020-03-28",
- "total_cases": 409.0,
- "new_cases": 42.0,
- "new_cases_smoothed": 43.857,
- "total_deaths": 26.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 9.327,
- "new_cases_per_million": 0.958,
- "new_cases_smoothed_per_million": 1.0,
- "total_deaths_per_million": 0.593,
- "new_deaths_per_million": 0.023,
- "new_deaths_smoothed_per_million": 0.052,
- "stringency_index": 75.0
- },
- {
- "date": "2020-03-29",
- "total_cases": 454.0,
- "new_cases": 45.0,
- "new_cases_smoothed": 45.0,
- "total_deaths": 29.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 10.353,
- "new_cases_per_million": 1.026,
- "new_cases_smoothed_per_million": 1.026,
- "total_deaths_per_million": 0.661,
- "new_deaths_per_million": 0.068,
- "new_deaths_smoothed_per_million": 0.046,
- "stringency_index": 75.0
- },
- {
- "date": "2020-03-30",
- "total_cases": 511.0,
- "new_cases": 57.0,
- "new_cases_smoothed": 44.286,
- "total_deaths": 31.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 2.0,
- "total_cases_per_million": 11.653,
- "new_cases_per_million": 1.3,
- "new_cases_smoothed_per_million": 1.01,
- "total_deaths_per_million": 0.707,
- "new_deaths_per_million": 0.046,
- "new_deaths_smoothed_per_million": 0.046,
- "stringency_index": 86.57
- },
- {
- "date": "2020-03-31",
- "total_cases": 584.0,
- "new_cases": 73.0,
- "new_cases_smoothed": 50.571,
- "total_deaths": 35.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.571,
- "total_cases_per_million": 13.318,
- "new_cases_per_million": 1.665,
- "new_cases_smoothed_per_million": 1.153,
- "total_deaths_per_million": 0.798,
- "new_deaths_per_million": 0.091,
- "new_deaths_smoothed_per_million": 0.059,
- "stringency_index": 86.57
- },
- {
- "date": "2020-04-01",
- "total_cases": 716.0,
- "new_cases": 132.0,
- "new_cases_smoothed": 64.571,
- "total_deaths": 44.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 16.328,
- "new_cases_per_million": 3.01,
- "new_cases_smoothed_per_million": 1.473,
- "total_deaths_per_million": 1.003,
- "new_deaths_per_million": 0.205,
- "new_deaths_smoothed_per_million": 0.081,
- "stringency_index": 86.57
- },
- {
- "date": "2020-04-02",
- "total_cases": 847.0,
- "new_cases": 131.0,
- "new_cases_smoothed": 77.857,
- "total_deaths": 58.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 5.286,
- "total_cases_per_million": 19.315,
- "new_cases_per_million": 2.987,
- "new_cases_smoothed_per_million": 1.775,
- "total_deaths_per_million": 1.323,
- "new_deaths_per_million": 0.319,
- "new_deaths_smoothed_per_million": 0.121,
- "stringency_index": 86.57
- },
- {
- "date": "2020-04-03",
- "total_cases": 986.0,
- "new_cases": 139.0,
- "new_cases_smoothed": 88.429,
- "total_deaths": 63.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.429,
- "total_cases_per_million": 22.485,
- "new_cases_per_million": 3.17,
- "new_cases_smoothed_per_million": 2.017,
- "total_deaths_per_million": 1.437,
- "new_deaths_per_million": 0.114,
- "new_deaths_smoothed_per_million": 0.124,
- "stringency_index": 86.57
- },
- {
- "date": "2020-04-04",
- "total_cases": 1171.0,
- "new_cases": 185.0,
- "new_cases_smoothed": 108.857,
- "total_deaths": 105.0,
- "new_deaths": 42.0,
- "new_deaths_smoothed": 11.286,
- "total_cases_per_million": 26.704,
- "new_cases_per_million": 4.219,
- "new_cases_smoothed_per_million": 2.482,
- "total_deaths_per_million": 2.394,
- "new_deaths_per_million": 0.958,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 86.57
- },
- {
- "date": "2020-04-05",
- "total_cases": 1251.0,
- "new_cases": 80.0,
- "new_cases_smoothed": 113.857,
- "total_deaths": 130.0,
- "new_deaths": 25.0,
- "new_deaths_smoothed": 14.429,
- "total_cases_per_million": 28.528,
- "new_cases_per_million": 1.824,
- "new_cases_smoothed_per_million": 2.596,
- "total_deaths_per_million": 2.965,
- "new_deaths_per_million": 0.57,
- "new_deaths_smoothed_per_million": 0.329,
- "stringency_index": 86.57
- },
- {
- "date": "2020-04-06",
- "total_cases": 1320.0,
- "new_cases": 69.0,
- "new_cases_smoothed": 115.571,
- "total_deaths": 152.0,
- "new_deaths": 22.0,
- "new_deaths_smoothed": 17.286,
- "total_cases_per_million": 30.102,
- "new_cases_per_million": 1.574,
- "new_cases_smoothed_per_million": 2.636,
- "total_deaths_per_million": 3.466,
- "new_deaths_per_million": 0.502,
- "new_deaths_smoothed_per_million": 0.394,
- "stringency_index": 86.57
- },
- {
- "date": "2020-04-07",
- "total_cases": 1423.0,
- "new_cases": 103.0,
- "new_cases_smoothed": 119.857,
- "total_deaths": 173.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 19.714,
- "total_cases_per_million": 32.451,
- "new_cases_per_million": 2.349,
- "new_cases_smoothed_per_million": 2.733,
- "total_deaths_per_million": 3.945,
- "new_deaths_per_million": 0.479,
- "new_deaths_smoothed_per_million": 0.45,
- "stringency_index": 86.57
- },
- {
- "date": "2020-04-08",
- "total_cases": 1468.0,
- "new_cases": 45.0,
- "new_cases_smoothed": 107.429,
- "total_deaths": 193.0,
- "new_deaths": 20.0,
- "new_deaths_smoothed": 21.286,
- "total_cases_per_million": 33.477,
- "new_cases_per_million": 1.026,
- "new_cases_smoothed_per_million": 2.45,
- "total_deaths_per_million": 4.401,
- "new_deaths_per_million": 0.456,
- "new_deaths_smoothed_per_million": 0.485,
- "stringency_index": 86.57
- },
- {
- "date": "2020-04-09",
- "total_cases": 1572.0,
- "new_cases": 104.0,
- "new_cases_smoothed": 103.571,
- "total_deaths": 205.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 21.0,
- "total_cases_per_million": 35.849,
- "new_cases_per_million": 2.372,
- "new_cases_smoothed_per_million": 2.362,
- "total_deaths_per_million": 4.675,
- "new_deaths_per_million": 0.274,
- "new_deaths_smoothed_per_million": 0.479,
- "stringency_index": 86.57
- },
- {
- "date": "2020-04-10",
- "total_cases": 1666.0,
- "new_cases": 94.0,
- "new_cases_smoothed": 97.143,
- "total_deaths": 235.0,
- "new_deaths": 30.0,
- "new_deaths_smoothed": 24.571,
- "total_cases_per_million": 37.992,
- "new_cases_per_million": 2.144,
- "new_cases_smoothed_per_million": 2.215,
- "total_deaths_per_million": 5.359,
- "new_deaths_per_million": 0.684,
- "new_deaths_smoothed_per_million": 0.56,
- "stringency_index": 86.57
- },
- {
- "date": "2020-04-11",
- "total_cases": 1761.0,
- "new_cases": 95.0,
- "new_cases_smoothed": 84.286,
- "total_deaths": 256.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 21.571,
- "total_cases_per_million": 40.159,
- "new_cases_per_million": 2.166,
- "new_cases_smoothed_per_million": 1.922,
- "total_deaths_per_million": 5.838,
- "new_deaths_per_million": 0.479,
- "new_deaths_smoothed_per_million": 0.492,
- "stringency_index": 86.57
- },
- {
- "date": "2020-04-12",
- "total_cases": 1825.0,
- "new_cases": 64.0,
- "new_cases_smoothed": 82.0,
- "total_deaths": 275.0,
- "new_deaths": 19.0,
- "new_deaths_smoothed": 20.714,
- "total_cases_per_million": 41.618,
- "new_cases_per_million": 1.459,
- "new_cases_smoothed_per_million": 1.87,
- "total_deaths_per_million": 6.271,
- "new_deaths_per_million": 0.433,
- "new_deaths_smoothed_per_million": 0.472,
- "stringency_index": 86.57
- },
- {
- "date": "2020-04-13",
- "total_cases": 1914.0,
- "new_cases": 89.0,
- "new_cases_smoothed": 84.857,
- "total_deaths": 293.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 20.143,
- "total_cases_per_million": 43.648,
- "new_cases_per_million": 2.03,
- "new_cases_smoothed_per_million": 1.935,
- "total_deaths_per_million": 6.682,
- "new_deaths_per_million": 0.41,
- "new_deaths_smoothed_per_million": 0.459,
- "stringency_index": 86.57
- },
- {
- "date": "2020-04-14",
- "total_cases": 1983.0,
- "new_cases": 69.0,
- "new_cases_smoothed": 80.0,
- "total_deaths": 313.0,
- "new_deaths": 20.0,
- "new_deaths_smoothed": 20.0,
- "total_cases_per_million": 45.221,
- "new_cases_per_million": 1.574,
- "new_cases_smoothed_per_million": 1.824,
- "total_deaths_per_million": 7.138,
- "new_deaths_per_million": 0.456,
- "new_deaths_smoothed_per_million": 0.456,
- "stringency_index": 92.13
- },
- {
- "date": "2020-04-15",
- "total_cases": 2070.0,
- "new_cases": 87.0,
- "new_cases_smoothed": 86.0,
- "total_deaths": 325.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 18.857,
- "total_cases_per_million": 47.205,
- "new_cases_per_million": 1.984,
- "new_cases_smoothed_per_million": 1.961,
- "total_deaths_per_million": 7.411,
- "new_deaths_per_million": 0.274,
- "new_deaths_smoothed_per_million": 0.43,
- "stringency_index": 92.13
- },
- {
- "date": "2020-04-16",
- "total_cases": 2160.0,
- "new_cases": 90.0,
- "new_cases_smoothed": 84.0,
- "total_deaths": 336.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 18.714,
- "total_cases_per_million": 49.258,
- "new_cases_per_million": 2.052,
- "new_cases_smoothed_per_million": 1.916,
- "total_deaths_per_million": 7.662,
- "new_deaths_per_million": 0.251,
- "new_deaths_smoothed_per_million": 0.427,
- "stringency_index": 92.13
- },
- {
- "date": "2020-04-17",
- "total_cases": 2268.0,
- "new_cases": 108.0,
- "new_cases_smoothed": 86.0,
- "total_deaths": 348.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 16.143,
- "total_cases_per_million": 51.721,
- "new_cases_per_million": 2.463,
- "new_cases_smoothed_per_million": 1.961,
- "total_deaths_per_million": 7.936,
- "new_deaths_per_million": 0.274,
- "new_deaths_smoothed_per_million": 0.368,
- "stringency_index": 92.13
- },
- {
- "date": "2020-04-18",
- "total_cases": 2418.0,
- "new_cases": 150.0,
- "new_cases_smoothed": 93.857,
- "total_deaths": 364.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 15.429,
- "total_cases_per_million": 55.141,
- "new_cases_per_million": 3.421,
- "new_cases_smoothed_per_million": 2.14,
- "total_deaths_per_million": 8.301,
- "new_deaths_per_million": 0.365,
- "new_deaths_smoothed_per_million": 0.352,
- "stringency_index": 92.13
- },
- {
- "date": "2020-04-19",
- "total_cases": 2535.0,
- "new_cases": 117.0,
- "new_cases_smoothed": 101.429,
- "total_deaths": 367.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 13.143,
- "total_cases_per_million": 57.809,
- "new_cases_per_million": 2.668,
- "new_cases_smoothed_per_million": 2.313,
- "total_deaths_per_million": 8.369,
- "new_deaths_per_million": 0.068,
- "new_deaths_smoothed_per_million": 0.3,
- "stringency_index": 92.13
- },
- {
- "date": "2020-04-20",
- "total_cases": 2629.0,
- "new_cases": 94.0,
- "new_cases_smoothed": 102.143,
- "total_deaths": 375.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 11.714,
- "total_cases_per_million": 59.953,
- "new_cases_per_million": 2.144,
- "new_cases_smoothed_per_million": 2.329,
- "total_deaths_per_million": 8.552,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.267,
- "stringency_index": 92.13
- },
- {
- "date": "2020-04-21",
- "total_cases": 2718.0,
- "new_cases": 89.0,
- "new_cases_smoothed": 105.0,
- "total_deaths": 384.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 10.143,
- "total_cases_per_million": 61.983,
- "new_cases_per_million": 2.03,
- "new_cases_smoothed_per_million": 2.394,
- "total_deaths_per_million": 8.757,
- "new_deaths_per_million": 0.205,
- "new_deaths_smoothed_per_million": 0.231,
- "stringency_index": 92.13
- },
- {
- "date": "2020-04-22",
- "total_cases": 2811.0,
- "new_cases": 93.0,
- "new_cases_smoothed": 105.857,
- "total_deaths": 392.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 9.571,
- "total_cases_per_million": 64.103,
- "new_cases_per_million": 2.121,
- "new_cases_smoothed_per_million": 2.414,
- "total_deaths_per_million": 8.939,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.218,
- "stringency_index": 92.13
- },
- {
- "date": "2020-04-23",
- "total_cases": 2910.0,
- "new_cases": 99.0,
- "new_cases_smoothed": 107.143,
- "total_deaths": 402.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 9.429,
- "total_cases_per_million": 66.361,
- "new_cases_per_million": 2.258,
- "new_cases_smoothed_per_million": 2.443,
- "total_deaths_per_million": 9.167,
- "new_deaths_per_million": 0.228,
- "new_deaths_smoothed_per_million": 0.215,
- "stringency_index": 92.13
- },
- {
- "date": "2020-04-24",
- "total_cases": 3007.0,
- "new_cases": 97.0,
- "new_cases_smoothed": 105.571,
- "total_deaths": 407.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 8.429,
- "total_cases_per_million": 68.573,
- "new_cases_per_million": 2.212,
- "new_cases_smoothed_per_million": 2.408,
- "total_deaths_per_million": 9.281,
- "new_deaths_per_million": 0.114,
- "new_deaths_smoothed_per_million": 0.192,
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-25",
- "total_cases": 3127.0,
- "new_cases": 120.0,
- "new_cases_smoothed": 101.286,
- "total_deaths": 415.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 7.286,
- "total_cases_per_million": 71.31,
- "new_cases_per_million": 2.737,
- "new_cases_smoothed_per_million": 2.31,
- "total_deaths_per_million": 9.464,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.166,
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-26",
- "total_cases": 3256.0,
- "new_cases": 129.0,
- "new_cases_smoothed": 103.0,
- "total_deaths": 419.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 7.429,
- "total_cases_per_million": 74.251,
- "new_cases_per_million": 2.942,
- "new_cases_smoothed_per_million": 2.349,
- "total_deaths_per_million": 9.555,
- "new_deaths_per_million": 0.091,
- "new_deaths_smoothed_per_million": 0.169,
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-27",
- "total_cases": 3382.0,
- "new_cases": 126.0,
- "new_cases_smoothed": 107.571,
- "total_deaths": 425.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 7.143,
- "total_cases_per_million": 77.125,
- "new_cases_per_million": 2.873,
- "new_cases_smoothed_per_million": 2.453,
- "total_deaths_per_million": 9.692,
- "new_deaths_per_million": 0.137,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-28",
- "total_cases": 3517.0,
- "new_cases": 135.0,
- "new_cases_smoothed": 114.143,
- "total_deaths": 432.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 6.857,
- "total_cases_per_million": 80.203,
- "new_cases_per_million": 3.079,
- "new_cases_smoothed_per_million": 2.603,
- "total_deaths_per_million": 9.852,
- "new_deaths_per_million": 0.16,
- "new_deaths_smoothed_per_million": 0.156,
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-29",
- "total_cases": 3649.0,
- "new_cases": 132.0,
- "new_cases_smoothed": 119.714,
- "total_deaths": 437.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 6.429,
- "total_cases_per_million": 83.214,
- "new_cases_per_million": 3.01,
- "new_cases_smoothed_per_million": 2.73,
- "total_deaths_per_million": 9.966,
- "new_deaths_per_million": 0.114,
- "new_deaths_smoothed_per_million": 0.147,
- "stringency_index": 76.85
- },
- {
- "date": "2020-04-30",
- "total_cases": 3848.0,
- "new_cases": 199.0,
- "new_cases_smoothed": 134.0,
- "total_deaths": 444.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 6.0,
- "total_cases_per_million": 87.752,
- "new_cases_per_million": 4.538,
- "new_cases_smoothed_per_million": 3.056,
- "total_deaths_per_million": 10.125,
- "new_deaths_per_million": 0.16,
- "new_deaths_smoothed_per_million": 0.137,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-01",
- "total_cases": 4006.0,
- "new_cases": 158.0,
- "new_cases_smoothed": 142.714,
- "total_deaths": 450.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 6.143,
- "total_cases_per_million": 91.355,
- "new_cases_per_million": 3.603,
- "new_cases_smoothed_per_million": 3.255,
- "total_deaths_per_million": 10.262,
- "new_deaths_per_million": 0.137,
- "new_deaths_smoothed_per_million": 0.14,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-02",
- "total_cases": 4154.0,
- "new_cases": 148.0,
- "new_cases_smoothed": 146.714,
- "total_deaths": 453.0,
- "new_deaths": 3.0,
- "new_deaths_smoothed": 5.429,
- "total_cases_per_million": 94.73,
- "new_cases_per_million": 3.375,
- "new_cases_smoothed_per_million": 3.346,
- "total_deaths_per_million": 10.33,
- "new_deaths_per_million": 0.068,
- "new_deaths_smoothed_per_million": 0.124,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-03",
- "total_cases": 4295.0,
- "new_cases": 141.0,
- "new_cases_smoothed": 148.429,
- "total_deaths": 459.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.714,
- "total_cases_per_million": 97.945,
- "new_cases_per_million": 3.215,
- "new_cases_smoothed_per_million": 3.385,
- "total_deaths_per_million": 10.467,
- "new_deaths_per_million": 0.137,
- "new_deaths_smoothed_per_million": 0.13,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-04",
- "total_cases": 4474.0,
- "new_cases": 179.0,
- "new_cases_smoothed": 156.0,
- "total_deaths": 463.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 5.429,
- "total_cases_per_million": 102.027,
- "new_cases_per_million": 4.082,
- "new_cases_smoothed_per_million": 3.557,
- "total_deaths_per_million": 10.558,
- "new_deaths_per_million": 0.091,
- "new_deaths_smoothed_per_million": 0.124,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-05",
- "total_cases": 4648.0,
- "new_cases": 174.0,
- "new_cases_smoothed": 161.571,
- "total_deaths": 465.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 105.995,
- "new_cases_per_million": 3.968,
- "new_cases_smoothed_per_million": 3.685,
- "total_deaths_per_million": 10.604,
- "new_deaths_per_million": 0.046,
- "new_deaths_smoothed_per_million": 0.108,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-06",
- "total_cases": 4838.0,
- "new_cases": 190.0,
- "new_cases_smoothed": 169.857,
- "total_deaths": 470.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 110.328,
- "new_cases_per_million": 4.333,
- "new_cases_smoothed_per_million": 3.874,
- "total_deaths_per_million": 10.718,
- "new_deaths_per_million": 0.114,
- "new_deaths_smoothed_per_million": 0.108,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-07",
- "total_cases": 4997.0,
- "new_cases": 159.0,
- "new_cases_smoothed": 164.143,
- "total_deaths": 476.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 4.571,
- "total_cases_per_million": 113.954,
- "new_cases_per_million": 3.626,
- "new_cases_smoothed_per_million": 3.743,
- "total_deaths_per_million": 10.855,
- "new_deaths_per_million": 0.137,
- "new_deaths_smoothed_per_million": 0.104,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-08",
- "total_cases": 5182.0,
- "new_cases": 185.0,
- "new_cases_smoothed": 168.0,
- "total_deaths": 483.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 4.714,
- "total_cases_per_million": 118.173,
- "new_cases_per_million": 4.219,
- "new_cases_smoothed_per_million": 3.831,
- "total_deaths_per_million": 11.015,
- "new_deaths_per_million": 0.16,
- "new_deaths_smoothed_per_million": 0.108,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-09",
- "total_cases": 5369.0,
- "new_cases": 187.0,
- "new_cases_smoothed": 173.571,
- "total_deaths": 488.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 122.437,
- "new_cases_per_million": 4.264,
- "new_cases_smoothed_per_million": 3.958,
- "total_deaths_per_million": 11.129,
- "new_deaths_per_million": 0.114,
- "new_deaths_smoothed_per_million": 0.114,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-10",
- "total_cases": 5558.0,
- "new_cases": 189.0,
- "new_cases_smoothed": 180.429,
- "total_deaths": 494.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 5.0,
- "total_cases_per_million": 126.747,
- "new_cases_per_million": 4.31,
- "new_cases_smoothed_per_million": 4.115,
- "total_deaths_per_million": 11.265,
- "new_deaths_per_million": 0.137,
- "new_deaths_smoothed_per_million": 0.114,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-11",
- "total_cases": 5723.0,
- "new_cases": 165.0,
- "new_cases_smoothed": 178.429,
- "total_deaths": 502.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 5.571,
- "total_cases_per_million": 130.51,
- "new_cases_per_million": 3.763,
- "new_cases_smoothed_per_million": 4.069,
- "total_deaths_per_million": 11.448,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.127,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-12",
- "total_cases": 5891.0,
- "new_cases": 168.0,
- "new_cases_smoothed": 177.571,
- "total_deaths": 507.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 6.0,
- "total_cases_per_million": 134.341,
- "new_cases_per_million": 3.831,
- "new_cases_smoothed_per_million": 4.049,
- "total_deaths_per_million": 11.562,
- "new_deaths_per_million": 0.114,
- "new_deaths_smoothed_per_million": 0.137,
- "stringency_index": 87.96
- },
- {
- "date": "2020-05-13",
- "total_cases": 6067.0,
- "new_cases": 176.0,
- "new_cases_smoothed": 175.571,
- "total_deaths": 515.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 6.429,
- "total_cases_per_million": 138.355,
- "new_cases_per_million": 4.014,
- "new_cases_smoothed_per_million": 4.004,
- "total_deaths_per_million": 11.744,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.147,
- "stringency_index": 87.96
- },
- {
- "date": "2020-05-14",
- "total_cases": 6253.0,
- "new_cases": 186.0,
- "new_cases_smoothed": 179.429,
- "total_deaths": 522.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 142.596,
- "new_cases_per_million": 4.242,
- "new_cases_smoothed_per_million": 4.092,
- "total_deaths_per_million": 11.904,
- "new_deaths_per_million": 0.16,
- "new_deaths_smoothed_per_million": 0.15,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-15",
- "total_cases": 6442.0,
- "new_cases": 189.0,
- "new_cases_smoothed": 180.0,
- "total_deaths": 529.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 146.906,
- "new_cases_per_million": 4.31,
- "new_cases_smoothed_per_million": 4.105,
- "total_deaths_per_million": 12.064,
- "new_deaths_per_million": 0.16,
- "new_deaths_smoothed_per_million": 0.15,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-16",
- "total_cases": 6629.0,
- "new_cases": 187.0,
- "new_cases_smoothed": 180.0,
- "total_deaths": 536.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 6.857,
- "total_cases_per_million": 151.171,
- "new_cases_per_million": 4.264,
- "new_cases_smoothed_per_million": 4.105,
- "total_deaths_per_million": 12.223,
- "new_deaths_per_million": 0.16,
- "new_deaths_smoothed_per_million": 0.156,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-17",
- "total_cases": 6821.0,
- "new_cases": 192.0,
- "new_cases_smoothed": 180.429,
- "total_deaths": 542.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 6.857,
- "total_cases_per_million": 155.549,
- "new_cases_per_million": 4.378,
- "new_cases_smoothed_per_million": 4.115,
- "total_deaths_per_million": 12.36,
- "new_deaths_per_million": 0.137,
- "new_deaths_smoothed_per_million": 0.156,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-18",
- "total_cases": 7019.0,
- "new_cases": 198.0,
- "new_cases_smoothed": 185.143,
- "total_deaths": 548.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 160.065,
- "new_cases_per_million": 4.515,
- "new_cases_smoothed_per_million": 4.222,
- "total_deaths_per_million": 12.497,
- "new_deaths_per_million": 0.137,
- "new_deaths_smoothed_per_million": 0.15,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-19",
- "total_cases": 7201.0,
- "new_cases": 182.0,
- "new_cases_smoothed": 187.143,
- "total_deaths": 555.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 6.857,
- "total_cases_per_million": 164.215,
- "new_cases_per_million": 4.15,
- "new_cases_smoothed_per_million": 4.268,
- "total_deaths_per_million": 12.656,
- "new_deaths_per_million": 0.16,
- "new_deaths_smoothed_per_million": 0.156,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-20",
- "total_cases": 7377.0,
- "new_cases": 176.0,
- "new_cases_smoothed": 187.143,
- "total_deaths": 561.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 168.229,
- "new_cases_per_million": 4.014,
- "new_cases_smoothed_per_million": 4.268,
- "total_deaths_per_million": 12.793,
- "new_deaths_per_million": 0.137,
- "new_deaths_smoothed_per_million": 0.15,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-21",
- "total_cases": 7542.0,
- "new_cases": 165.0,
- "new_cases_smoothed": 184.143,
- "total_deaths": 568.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 171.991,
- "new_cases_per_million": 3.763,
- "new_cases_smoothed_per_million": 4.199,
- "total_deaths_per_million": 12.953,
- "new_deaths_per_million": 0.16,
- "new_deaths_smoothed_per_million": 0.15,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-22",
- "total_cases": 7728.0,
- "new_cases": 186.0,
- "new_cases_smoothed": 183.714,
- "total_deaths": 575.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 176.233,
- "new_cases_per_million": 4.242,
- "new_cases_smoothed_per_million": 4.19,
- "total_deaths_per_million": 13.113,
- "new_deaths_per_million": 0.16,
- "new_deaths_smoothed_per_million": 0.15,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-23",
- "total_cases": 7918.0,
- "new_cases": 190.0,
- "new_cases_smoothed": 184.143,
- "total_deaths": 582.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 6.571,
- "total_cases_per_million": 180.566,
- "new_cases_per_million": 4.333,
- "new_cases_smoothed_per_million": 4.199,
- "total_deaths_per_million": 13.272,
- "new_deaths_per_million": 0.16,
- "new_deaths_smoothed_per_million": 0.15,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-24",
- "total_cases": 8113.0,
- "new_cases": 195.0,
- "new_cases_smoothed": 184.571,
- "total_deaths": 592.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 7.143,
- "total_cases_per_million": 185.013,
- "new_cases_per_million": 4.447,
- "new_cases_smoothed_per_million": 4.209,
- "total_deaths_per_million": 13.5,
- "new_deaths_per_million": 0.228,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-25",
- "total_cases": 8306.0,
- "new_cases": 193.0,
- "new_cases_smoothed": 183.857,
- "total_deaths": 600.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 7.429,
- "total_cases_per_million": 189.414,
- "new_cases_per_million": 4.401,
- "new_cases_smoothed_per_million": 4.193,
- "total_deaths_per_million": 13.683,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.169,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-26",
- "total_cases": 8503.0,
- "new_cases": 197.0,
- "new_cases_smoothed": 186.0,
- "total_deaths": 609.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 7.714,
- "total_cases_per_million": 193.906,
- "new_cases_per_million": 4.492,
- "new_cases_smoothed_per_million": 4.242,
- "total_deaths_per_million": 13.888,
- "new_deaths_per_million": 0.205,
- "new_deaths_smoothed_per_million": 0.176,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-27",
- "total_cases": 8697.0,
- "new_cases": 194.0,
- "new_cases_smoothed": 188.571,
- "total_deaths": 617.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 8.0,
- "total_cases_per_million": 198.331,
- "new_cases_per_million": 4.424,
- "new_cases_smoothed_per_million": 4.3,
- "total_deaths_per_million": 14.07,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.182,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-28",
- "total_cases": 8857.0,
- "new_cases": 160.0,
- "new_cases_smoothed": 187.857,
- "total_deaths": 623.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 7.857,
- "total_cases_per_million": 201.979,
- "new_cases_per_million": 3.649,
- "new_cases_smoothed_per_million": 4.284,
- "total_deaths_per_million": 14.207,
- "new_deaths_per_million": 0.137,
- "new_deaths_smoothed_per_million": 0.179,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-29",
- "total_cases": 8997.0,
- "new_cases": 140.0,
- "new_cases_smoothed": 181.286,
- "total_deaths": 630.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 7.857,
- "total_cases_per_million": 205.172,
- "new_cases_per_million": 3.193,
- "new_cases_smoothed_per_million": 4.134,
- "total_deaths_per_million": 14.367,
- "new_deaths_per_million": 0.16,
- "new_deaths_smoothed_per_million": 0.179,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-30",
- "total_cases": 9134.0,
- "new_cases": 137.0,
- "new_cases_smoothed": 173.714,
- "total_deaths": 638.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 8.0,
- "total_cases_per_million": 208.296,
- "new_cases_per_million": 3.124,
- "new_cases_smoothed_per_million": 3.961,
- "total_deaths_per_million": 14.549,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.182,
- "stringency_index": 76.85
- },
- {
- "date": "2020-05-31",
- "total_cases": 9267.0,
- "new_cases": 133.0,
- "new_cases_smoothed": 164.857,
- "total_deaths": 646.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 7.714,
- "total_cases_per_million": 211.329,
- "new_cases_per_million": 3.033,
- "new_cases_smoothed_per_million": 3.759,
- "total_deaths_per_million": 14.732,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.176,
- "stringency_index": 76.85
- },
- {
- "date": "2020-06-01",
- "total_cases": 9394.0,
- "new_cases": 127.0,
- "new_cases_smoothed": 155.429,
- "total_deaths": 653.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 7.571,
- "total_cases_per_million": 214.225,
- "new_cases_per_million": 2.896,
- "new_cases_smoothed_per_million": 3.544,
- "total_deaths_per_million": 14.891,
- "new_deaths_per_million": 0.16,
- "new_deaths_smoothed_per_million": 0.173,
- "stringency_index": 76.85
- },
- {
- "date": "2020-06-02",
- "total_cases": 9513.0,
- "new_cases": 119.0,
- "new_cases_smoothed": 144.286,
- "total_deaths": 661.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 7.429,
- "total_cases_per_million": 216.939,
- "new_cases_per_million": 2.714,
- "new_cases_smoothed_per_million": 3.29,
- "total_deaths_per_million": 15.074,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.169,
- "stringency_index": 76.85
- },
- {
- "date": "2020-06-03",
- "total_cases": 9626.0,
- "new_cases": 113.0,
- "new_cases_smoothed": 132.714,
- "total_deaths": 667.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 7.143,
- "total_cases_per_million": 219.516,
- "new_cases_per_million": 2.577,
- "new_cases_smoothed_per_million": 3.026,
- "total_deaths_per_million": 15.211,
- "new_deaths_per_million": 0.137,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 76.85
- },
- {
- "date": "2020-06-04",
- "total_cases": 9626.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 109.857,
- "total_deaths": 667.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 6.286,
- "total_cases_per_million": 219.516,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 2.505,
- "total_deaths_per_million": 15.211,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.143,
- "stringency_index": 76.85
- },
- {
- "date": "2020-06-05",
- "total_cases": 9831.0,
- "new_cases": 205.0,
- "new_cases_smoothed": 119.143,
- "total_deaths": 681.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 7.286,
- "total_cases_per_million": 224.191,
- "new_cases_per_million": 4.675,
- "new_cases_smoothed_per_million": 2.717,
- "total_deaths_per_million": 15.53,
- "new_deaths_per_million": 0.319,
- "new_deaths_smoothed_per_million": 0.166,
- "stringency_index": 76.85
- },
- {
- "date": "2020-06-06",
- "total_cases": 9935.0,
- "new_cases": 104.0,
- "new_cases_smoothed": 114.429,
- "total_deaths": 690.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 7.429,
- "total_cases_per_million": 226.562,
- "new_cases_per_million": 2.372,
- "new_cases_smoothed_per_million": 2.609,
- "total_deaths_per_million": 15.735,
- "new_deaths_per_million": 0.205,
- "new_deaths_smoothed_per_million": 0.169,
- "stringency_index": 76.85
- },
- {
- "date": "2020-06-07",
- "total_cases": 10050.0,
- "new_cases": 115.0,
- "new_cases_smoothed": 111.857,
- "total_deaths": 698.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 7.429,
- "total_cases_per_million": 229.185,
- "new_cases_per_million": 2.623,
- "new_cases_smoothed_per_million": 2.551,
- "total_deaths_per_million": 15.918,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.169,
- "stringency_index": 76.85
- },
- {
- "date": "2020-06-08",
- "total_cases": 10154.0,
- "new_cases": 104.0,
- "new_cases_smoothed": 108.571,
- "total_deaths": 707.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 7.714,
- "total_cases_per_million": 231.557,
- "new_cases_per_million": 2.372,
- "new_cases_smoothed_per_million": 2.476,
- "total_deaths_per_million": 16.123,
- "new_deaths_per_million": 0.205,
- "new_deaths_smoothed_per_million": 0.176,
- "stringency_index": 76.85
- },
- {
- "date": "2020-06-09",
- "total_cases": 10265.0,
- "new_cases": 111.0,
- "new_cases_smoothed": 107.429,
- "total_deaths": 715.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 7.714,
- "total_cases_per_million": 234.088,
- "new_cases_per_million": 2.531,
- "new_cases_smoothed_per_million": 2.45,
- "total_deaths_per_million": 16.305,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.176,
- "stringency_index": 76.85
- },
- {
- "date": "2020-06-10",
- "total_cases": 10382.0,
- "new_cases": 117.0,
- "new_cases_smoothed": 108.0,
- "total_deaths": 724.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 236.756,
- "new_cases_per_million": 2.668,
- "new_cases_smoothed_per_million": 2.463,
- "total_deaths_per_million": 16.51,
- "new_deaths_per_million": 0.205,
- "new_deaths_smoothed_per_million": 0.186,
- "stringency_index": 76.85
- },
- {
- "date": "2020-06-11",
- "total_cases": 10484.0,
- "new_cases": 102.0,
- "new_cases_smoothed": 122.571,
- "total_deaths": 732.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 9.286,
- "total_cases_per_million": 239.082,
- "new_cases_per_million": 2.326,
- "new_cases_smoothed_per_million": 2.795,
- "total_deaths_per_million": 16.693,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.212,
- "stringency_index": 76.85
- },
- {
- "date": "2020-06-12",
- "total_cases": 10589.0,
- "new_cases": 105.0,
- "new_cases_smoothed": 108.286,
- "total_deaths": 741.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 241.477,
- "new_cases_per_million": 2.394,
- "new_cases_smoothed_per_million": 2.469,
- "total_deaths_per_million": 16.898,
- "new_deaths_per_million": 0.205,
- "new_deaths_smoothed_per_million": 0.195,
- "stringency_index": 76.85
- },
- {
- "date": "2020-06-13",
- "total_cases": 10698.0,
- "new_cases": 109.0,
- "new_cases_smoothed": 109.0,
- "total_deaths": 751.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 8.714,
- "total_cases_per_million": 243.962,
- "new_cases_per_million": 2.486,
- "new_cases_smoothed_per_million": 2.486,
- "total_deaths_per_million": 17.126,
- "new_deaths_per_million": 0.228,
- "new_deaths_smoothed_per_million": 0.199,
- "stringency_index": 76.85
- },
- {
- "date": "2020-06-14",
- "total_cases": 10810.0,
- "new_cases": 112.0,
- "new_cases_smoothed": 108.571,
- "total_deaths": 760.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 8.857,
- "total_cases_per_million": 246.516,
- "new_cases_per_million": 2.554,
- "new_cases_smoothed_per_million": 2.476,
- "total_deaths_per_million": 17.331,
- "new_deaths_per_million": 0.205,
- "new_deaths_smoothed_per_million": 0.202,
- "stringency_index": 65.74
- },
- {
- "date": "2020-06-15",
- "total_cases": 10919.0,
- "new_cases": 109.0,
- "new_cases_smoothed": 109.286,
- "total_deaths": 767.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 249.002,
- "new_cases_per_million": 2.486,
- "new_cases_smoothed_per_million": 2.492,
- "total_deaths_per_million": 17.491,
- "new_deaths_per_million": 0.16,
- "new_deaths_smoothed_per_million": 0.195,
- "stringency_index": 65.74
- },
- {
- "date": "2020-06-16",
- "total_cases": 11031.0,
- "new_cases": 112.0,
- "new_cases_smoothed": 109.429,
- "total_deaths": 777.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 8.857,
- "total_cases_per_million": 251.556,
- "new_cases_per_million": 2.554,
- "new_cases_smoothed_per_million": 2.495,
- "total_deaths_per_million": 17.719,
- "new_deaths_per_million": 0.228,
- "new_deaths_smoothed_per_million": 0.202,
- "stringency_index": 65.74
- },
- {
- "date": "2020-06-17",
- "total_cases": 11147.0,
- "new_cases": 116.0,
- "new_cases_smoothed": 109.286,
- "total_deaths": 788.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 9.143,
- "total_cases_per_million": 254.201,
- "new_cases_per_million": 2.645,
- "new_cases_smoothed_per_million": 2.492,
- "total_deaths_per_million": 17.97,
- "new_deaths_per_million": 0.251,
- "new_deaths_smoothed_per_million": 0.208,
- "stringency_index": 65.74
- },
- {
- "date": "2020-06-18",
- "total_cases": 11268.0,
- "new_cases": 121.0,
- "new_cases_smoothed": 112.0,
- "total_deaths": 799.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 9.571,
- "total_cases_per_million": 256.961,
- "new_cases_per_million": 2.759,
- "new_cases_smoothed_per_million": 2.554,
- "total_deaths_per_million": 18.221,
- "new_deaths_per_million": 0.251,
- "new_deaths_smoothed_per_million": 0.218,
- "stringency_index": 65.74
- },
- {
- "date": "2020-06-19",
- "total_cases": 11385.0,
- "new_cases": 117.0,
- "new_cases_smoothed": 113.714,
- "total_deaths": 811.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 10.0,
- "total_cases_per_million": 259.629,
- "new_cases_per_million": 2.668,
- "new_cases_smoothed_per_million": 2.593,
- "total_deaths_per_million": 18.494,
- "new_deaths_per_million": 0.274,
- "new_deaths_smoothed_per_million": 0.228,
- "stringency_index": 65.74
- },
- {
- "date": "2020-06-20",
- "total_cases": 11504.0,
- "new_cases": 119.0,
- "new_cases_smoothed": 115.143,
- "total_deaths": 825.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 10.571,
- "total_cases_per_million": 262.343,
- "new_cases_per_million": 2.714,
- "new_cases_smoothed_per_million": 2.626,
- "total_deaths_per_million": 18.814,
- "new_deaths_per_million": 0.319,
- "new_deaths_smoothed_per_million": 0.241,
- "stringency_index": 65.74
- },
- {
- "date": "2020-06-21",
- "total_cases": 11631.0,
- "new_cases": 127.0,
- "new_cases_smoothed": 117.286,
- "total_deaths": 837.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 11.0,
- "total_cases_per_million": 265.239,
- "new_cases_per_million": 2.896,
- "new_cases_smoothed_per_million": 2.675,
- "total_deaths_per_million": 19.087,
- "new_deaths_per_million": 0.274,
- "new_deaths_smoothed_per_million": 0.251,
- "stringency_index": 65.74
- },
- {
- "date": "2020-06-22",
- "total_cases": 11771.0,
- "new_cases": 140.0,
- "new_cases_smoothed": 121.714,
- "total_deaths": 845.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 11.143,
- "total_cases_per_million": 268.431,
- "new_cases_per_million": 3.193,
- "new_cases_smoothed_per_million": 2.776,
- "total_deaths_per_million": 19.27,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.254,
- "stringency_index": 65.74
- },
- {
- "date": "2020-06-23",
- "total_cases": 11920.0,
- "new_cases": 149.0,
- "new_cases_smoothed": 127.0,
- "total_deaths": 852.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 10.714,
- "total_cases_per_million": 271.829,
- "new_cases_per_million": 3.398,
- "new_cases_smoothed_per_million": 2.896,
- "total_deaths_per_million": 19.429,
- "new_deaths_per_million": 0.16,
- "new_deaths_smoothed_per_million": 0.244,
- "stringency_index": 65.74
- },
- {
- "date": "2020-06-24",
- "total_cases": 12076.0,
- "new_cases": 156.0,
- "new_cases_smoothed": 132.714,
- "total_deaths": 861.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 10.429,
- "total_cases_per_million": 275.387,
- "new_cases_per_million": 3.557,
- "new_cases_smoothed_per_million": 3.026,
- "total_deaths_per_million": 19.635,
- "new_deaths_per_million": 0.205,
- "new_deaths_smoothed_per_million": 0.238,
- "stringency_index": 65.74
- },
- {
- "date": "2020-06-25",
- "total_cases": 12248.0,
- "new_cases": 172.0,
- "new_cases_smoothed": 140.0,
- "total_deaths": 869.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 10.0,
- "total_cases_per_million": 279.309,
- "new_cases_per_million": 3.922,
- "new_cases_smoothed_per_million": 3.193,
- "total_deaths_per_million": 19.817,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.228,
- "stringency_index": 65.74
- },
- {
- "date": "2020-06-26",
- "total_cases": 12445.0,
- "new_cases": 197.0,
- "new_cases_smoothed": 151.429,
- "total_deaths": 878.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 9.571,
- "total_cases_per_million": 283.802,
- "new_cases_per_million": 4.492,
- "new_cases_smoothed_per_million": 3.453,
- "total_deaths_per_million": 20.022,
- "new_deaths_per_million": 0.205,
- "new_deaths_smoothed_per_million": 0.218,
- "stringency_index": 65.74
- },
- {
- "date": "2020-06-27",
- "total_cases": 12685.0,
- "new_cases": 240.0,
- "new_cases_smoothed": 168.714,
- "total_deaths": 885.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 289.275,
- "new_cases_per_million": 5.473,
- "new_cases_smoothed_per_million": 3.847,
- "total_deaths_per_million": 20.182,
- "new_deaths_per_million": 0.16,
- "new_deaths_smoothed_per_million": 0.195,
- "stringency_index": 65.74
- },
- {
- "date": "2020-06-28",
- "total_cases": 12968.0,
- "new_cases": 283.0,
- "new_cases_smoothed": 191.0,
- "total_deaths": 892.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 7.857,
- "total_cases_per_million": 295.728,
- "new_cases_per_million": 6.454,
- "new_cases_smoothed_per_million": 4.356,
- "total_deaths_per_million": 20.342,
- "new_deaths_per_million": 0.16,
- "new_deaths_smoothed_per_million": 0.179,
- "stringency_index": 65.74
- },
- {
- "date": "2020-06-29",
- "total_cases": 13273.0,
- "new_cases": 305.0,
- "new_cases_smoothed": 214.571,
- "total_deaths": 897.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 7.429,
- "total_cases_per_million": 302.684,
- "new_cases_per_million": 6.955,
- "new_cases_smoothed_per_million": 4.893,
- "total_deaths_per_million": 20.456,
- "new_deaths_per_million": 0.114,
- "new_deaths_smoothed_per_million": 0.169,
- "stringency_index": 65.74
- },
- {
- "date": "2020-06-30",
- "total_cases": 13571.0,
- "new_cases": 298.0,
- "new_cases_smoothed": 235.857,
- "total_deaths": 905.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 7.571,
- "total_cases_per_million": 309.48,
- "new_cases_per_million": 6.796,
- "new_cases_smoothed_per_million": 5.379,
- "total_deaths_per_million": 20.638,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.173,
- "stringency_index": 65.74
- },
- {
- "date": "2020-07-01",
- "total_cases": 13907.0,
- "new_cases": 336.0,
- "new_cases_smoothed": 261.571,
- "total_deaths": 912.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 7.286,
- "total_cases_per_million": 317.142,
- "new_cases_per_million": 7.662,
- "new_cases_smoothed_per_million": 5.965,
- "total_deaths_per_million": 20.798,
- "new_deaths_per_million": 0.16,
- "new_deaths_smoothed_per_million": 0.166,
- "stringency_index": 65.74
- },
- {
- "date": "2020-07-02",
- "total_cases": 14272.0,
- "new_cases": 365.0,
- "new_cases_smoothed": 289.143,
- "total_deaths": 920.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 7.286,
- "total_cases_per_million": 325.465,
- "new_cases_per_million": 8.324,
- "new_cases_smoothed_per_million": 6.594,
- "total_deaths_per_million": 20.98,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.166,
- "stringency_index": 65.74
- },
- {
- "date": "2020-07-03",
- "total_cases": 14657.0,
- "new_cases": 385.0,
- "new_cases_smoothed": 316.0,
- "total_deaths": 928.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 7.143,
- "total_cases_per_million": 334.245,
- "new_cases_per_million": 8.78,
- "new_cases_smoothed_per_million": 7.206,
- "total_deaths_per_million": 21.163,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.163,
- "stringency_index": 65.74
- },
- {
- "date": "2020-07-04",
- "total_cases": 15070.0,
- "new_cases": 413.0,
- "new_cases_smoothed": 340.714,
- "total_deaths": 937.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 7.429,
- "total_cases_per_million": 343.663,
- "new_cases_per_million": 9.418,
- "new_cases_smoothed_per_million": 7.77,
- "total_deaths_per_million": 21.368,
- "new_deaths_per_million": 0.205,
- "new_deaths_smoothed_per_million": 0.169,
- "stringency_index": 65.74
- },
- {
- "date": "2020-07-05",
- "total_cases": 15500.0,
- "new_cases": 430.0,
- "new_cases_smoothed": 361.714,
- "total_deaths": 946.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 7.714,
- "total_cases_per_million": 353.469,
- "new_cases_per_million": 9.806,
- "new_cases_smoothed_per_million": 8.249,
- "total_deaths_per_million": 21.573,
- "new_deaths_per_million": 0.205,
- "new_deaths_smoothed_per_million": 0.176,
- "stringency_index": 65.74
- },
- {
- "date": "2020-07-06",
- "total_cases": 15941.0,
- "new_cases": 441.0,
- "new_cases_smoothed": 381.143,
- "total_deaths": 952.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 7.857,
- "total_cases_per_million": 363.526,
- "new_cases_per_million": 10.057,
- "new_cases_smoothed_per_million": 8.692,
- "total_deaths_per_million": 21.71,
- "new_deaths_per_million": 0.137,
- "new_deaths_smoothed_per_million": 0.179,
- "stringency_index": 65.74
- },
- {
- "date": "2020-07-07",
- "total_cases": 16404.0,
- "new_cases": 463.0,
- "new_cases_smoothed": 404.714,
- "total_deaths": 959.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 7.714,
- "total_cases_per_million": 374.085,
- "new_cases_per_million": 10.558,
- "new_cases_smoothed_per_million": 9.229,
- "total_deaths_per_million": 21.869,
- "new_deaths_per_million": 0.16,
- "new_deaths_smoothed_per_million": 0.176,
- "stringency_index": 65.74
- },
- {
- "date": "2020-07-08",
- "total_cases": 16879.0,
- "new_cases": 475.0,
- "new_cases_smoothed": 424.571,
- "total_deaths": 968.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 8.0,
- "total_cases_per_million": 384.917,
- "new_cases_per_million": 10.832,
- "new_cases_smoothed_per_million": 9.682,
- "total_deaths_per_million": 22.075,
- "new_deaths_per_million": 0.205,
- "new_deaths_smoothed_per_million": 0.182,
- "stringency_index": 65.74
- },
- {
- "date": "2020-07-09",
- "total_cases": 17348.0,
- "new_cases": 469.0,
- "new_cases_smoothed": 439.429,
- "total_deaths": 978.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 8.286,
- "total_cases_per_million": 395.612,
- "new_cases_per_million": 10.695,
- "new_cases_smoothed_per_million": 10.021,
- "total_deaths_per_million": 22.303,
- "new_deaths_per_million": 0.228,
- "new_deaths_smoothed_per_million": 0.189,
- "stringency_index": 65.74
- },
- {
- "date": "2020-07-10",
- "total_cases": 17808.0,
- "new_cases": 460.0,
- "new_cases_smoothed": 450.143,
- "total_deaths": 988.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 406.102,
- "new_cases_per_million": 10.49,
- "new_cases_smoothed_per_million": 10.265,
- "total_deaths_per_million": 22.531,
- "new_deaths_per_million": 0.228,
- "new_deaths_smoothed_per_million": 0.195,
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-11",
- "total_cases": 18242.0,
- "new_cases": 434.0,
- "new_cases_smoothed": 453.143,
- "total_deaths": 996.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 8.429,
- "total_cases_per_million": 415.999,
- "new_cases_per_million": 9.897,
- "new_cases_smoothed_per_million": 10.334,
- "total_deaths_per_million": 22.713,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.192,
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-12",
- "total_cases": 18712.0,
- "new_cases": 470.0,
- "new_cases_smoothed": 458.857,
- "total_deaths": 1004.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 8.286,
- "total_cases_per_million": 426.717,
- "new_cases_per_million": 10.718,
- "new_cases_smoothed_per_million": 10.464,
- "total_deaths_per_million": 22.896,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.189,
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-13",
- "total_cases": 19195.0,
- "new_cases": 483.0,
- "new_cases_smoothed": 464.857,
- "total_deaths": 1011.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 8.429,
- "total_cases_per_million": 437.732,
- "new_cases_per_million": 11.015,
- "new_cases_smoothed_per_million": 10.601,
- "total_deaths_per_million": 23.055,
- "new_deaths_per_million": 0.16,
- "new_deaths_smoothed_per_million": 0.192,
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-14",
- "total_cases": 19689.0,
- "new_cases": 494.0,
- "new_cases_smoothed": 469.286,
- "total_deaths": 1018.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 8.429,
- "total_cases_per_million": 448.997,
- "new_cases_per_million": 11.265,
- "new_cases_smoothed_per_million": 10.702,
- "total_deaths_per_million": 23.215,
- "new_deaths_per_million": 0.16,
- "new_deaths_smoothed_per_million": 0.192,
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-15",
- "total_cases": 20216.0,
- "new_cases": 527.0,
- "new_cases_smoothed": 476.714,
- "total_deaths": 1028.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 461.015,
- "new_cases_per_million": 12.018,
- "new_cases_smoothed_per_million": 10.871,
- "total_deaths_per_million": 23.443,
- "new_deaths_per_million": 0.228,
- "new_deaths_smoothed_per_million": 0.195,
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-16",
- "total_cases": 20770.0,
- "new_cases": 554.0,
- "new_cases_smoothed": 488.857,
- "total_deaths": 1040.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 8.857,
- "total_cases_per_million": 473.649,
- "new_cases_per_million": 12.634,
- "new_cases_smoothed_per_million": 11.148,
- "total_deaths_per_million": 23.717,
- "new_deaths_per_million": 0.274,
- "new_deaths_smoothed_per_million": 0.202,
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-17",
- "total_cases": 21355.0,
- "new_cases": 585.0,
- "new_cases_smoothed": 506.714,
- "total_deaths": 1052.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 9.143,
- "total_cases_per_million": 486.99,
- "new_cases_per_million": 13.341,
- "new_cases_smoothed_per_million": 11.555,
- "total_deaths_per_million": 23.99,
- "new_deaths_per_million": 0.274,
- "new_deaths_smoothed_per_million": 0.208,
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-18",
- "total_cases": 21948.0,
- "new_cases": 593.0,
- "new_cases_smoothed": 529.429,
- "total_deaths": 1057.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 8.714,
- "total_cases_per_million": 500.513,
- "new_cases_per_million": 13.523,
- "new_cases_smoothed_per_million": 12.073,
- "total_deaths_per_million": 24.104,
- "new_deaths_per_million": 0.114,
- "new_deaths_smoothed_per_million": 0.199,
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-19",
- "total_cases": 22549.0,
- "new_cases": 601.0,
- "new_cases_smoothed": 548.143,
- "total_deaths": 1068.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 9.143,
- "total_cases_per_million": 514.218,
- "new_cases_per_million": 13.705,
- "new_cases_smoothed_per_million": 12.5,
- "total_deaths_per_million": 24.355,
- "new_deaths_per_million": 0.251,
- "new_deaths_smoothed_per_million": 0.208,
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-20",
- "total_cases": 23084.0,
- "new_cases": 535.0,
- "new_cases_smoothed": 555.571,
- "total_deaths": 1078.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 9.571,
- "total_cases_per_million": 526.418,
- "new_cases_per_million": 12.2,
- "new_cases_smoothed_per_million": 12.67,
- "total_deaths_per_million": 24.583,
- "new_deaths_per_million": 0.228,
- "new_deaths_smoothed_per_million": 0.218,
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-21",
- "total_cases": 23691.0,
- "new_cases": 607.0,
- "new_cases_smoothed": 571.714,
- "total_deaths": 1087.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 9.857,
- "total_cases_per_million": 540.261,
- "new_cases_per_million": 13.842,
- "new_cases_smoothed_per_million": 13.038,
- "total_deaths_per_million": 24.788,
- "new_deaths_per_million": 0.205,
- "new_deaths_smoothed_per_million": 0.225,
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-22",
- "total_cases": 24278.0,
- "new_cases": 587.0,
- "new_cases_smoothed": 580.286,
- "total_deaths": 1100.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 10.286,
- "total_cases_per_million": 553.647,
- "new_cases_per_million": 13.386,
- "new_cases_smoothed_per_million": 13.233,
- "total_deaths_per_million": 25.085,
- "new_deaths_per_million": 0.296,
- "new_deaths_smoothed_per_million": 0.235,
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-23",
- "total_cases": 24872.0,
- "new_cases": 594.0,
- "new_cases_smoothed": 586.0,
- "total_deaths": 1111.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 10.143,
- "total_cases_per_million": 567.193,
- "new_cases_per_million": 13.546,
- "new_cases_smoothed_per_million": 13.363,
- "total_deaths_per_million": 25.336,
- "new_deaths_per_million": 0.251,
- "new_deaths_smoothed_per_million": 0.231,
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-24",
- "total_cases": 25484.0,
- "new_cases": 612.0,
- "new_cases_smoothed": 589.857,
- "total_deaths": 1124.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 10.286,
- "total_cases_per_million": 581.149,
- "new_cases_per_million": 13.956,
- "new_cases_smoothed_per_million": 13.451,
- "total_deaths_per_million": 25.632,
- "new_deaths_per_million": 0.296,
- "new_deaths_smoothed_per_million": 0.235,
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-25",
- "total_cases": 26159.0,
- "new_cases": 675.0,
- "new_cases_smoothed": 601.571,
- "total_deaths": 1136.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 11.286,
- "total_cases_per_million": 596.542,
- "new_cases_per_million": 15.393,
- "new_cases_smoothed_per_million": 13.719,
- "total_deaths_per_million": 25.906,
- "new_deaths_per_million": 0.274,
- "new_deaths_smoothed_per_million": 0.257,
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-26",
- "total_cases": 26764.0,
- "new_cases": 605.0,
- "new_cases_smoothed": 602.143,
- "total_deaths": 1146.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 11.143,
- "total_cases_per_million": 610.339,
- "new_cases_per_million": 13.797,
- "new_cases_smoothed_per_million": 13.732,
- "total_deaths_per_million": 26.134,
- "new_deaths_per_million": 0.228,
- "new_deaths_smoothed_per_million": 0.254,
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-27",
- "total_cases": 27357.0,
- "new_cases": 593.0,
- "new_cases_smoothed": 610.429,
- "total_deaths": 1155.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 11.0,
- "total_cases_per_million": 623.862,
- "new_cases_per_million": 13.523,
- "new_cases_smoothed_per_million": 13.921,
- "total_deaths_per_million": 26.339,
- "new_deaths_per_million": 0.205,
- "new_deaths_smoothed_per_million": 0.251,
- "stringency_index": 79.63
- },
- {
- "date": "2020-07-28",
- "total_cases": 27973.0,
- "new_cases": 616.0,
- "new_cases_smoothed": 611.714,
- "total_deaths": 1163.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 10.857,
- "total_cases_per_million": 637.91,
- "new_cases_per_million": 14.048,
- "new_cases_smoothed_per_million": 13.95,
- "total_deaths_per_million": 26.522,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.248,
- "stringency_index": 79.63
- },
- {
- "date": "2020-07-29",
- "total_cases": 28615.0,
- "new_cases": 642.0,
- "new_cases_smoothed": 619.571,
- "total_deaths": 1174.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 10.571,
- "total_cases_per_million": 652.55,
- "new_cases_per_million": 14.64,
- "new_cases_smoothed_per_million": 14.129,
- "total_deaths_per_million": 26.772,
- "new_deaths_per_million": 0.251,
- "new_deaths_smoothed_per_million": 0.241,
- "stringency_index": 79.63
- },
- {
- "date": "2020-07-30",
- "total_cases": 29229.0,
- "new_cases": 614.0,
- "new_cases_smoothed": 622.429,
- "total_deaths": 1186.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 10.714,
- "total_cases_per_million": 666.552,
- "new_cases_per_million": 14.002,
- "new_cases_smoothed_per_million": 14.194,
- "total_deaths_per_million": 27.046,
- "new_deaths_per_million": 0.274,
- "new_deaths_smoothed_per_million": 0.244,
- "stringency_index": 79.63
- },
- {
- "date": "2020-07-31",
- "total_cases": 29831.0,
- "new_cases": 602.0,
- "new_cases_smoothed": 621.0,
- "total_deaths": 1200.0,
- "new_deaths": 14.0,
- "new_deaths_smoothed": 10.857,
- "total_cases_per_million": 680.28,
- "new_cases_per_million": 13.728,
- "new_cases_smoothed_per_million": 14.162,
- "total_deaths_per_million": 27.365,
- "new_deaths_per_million": 0.319,
- "new_deaths_smoothed_per_million": 0.248,
- "stringency_index": 79.63
- },
- {
- "date": "2020-08-01",
- "total_cases": 30394.0,
- "new_cases": 563.0,
- "new_cases_smoothed": 605.0,
- "total_deaths": 1210.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 10.571,
- "total_cases_per_million": 693.119,
- "new_cases_per_million": 12.839,
- "new_cases_smoothed_per_million": 13.797,
- "total_deaths_per_million": 27.593,
- "new_deaths_per_million": 0.228,
- "new_deaths_smoothed_per_million": 0.241,
- "stringency_index": 79.63
- },
- {
- "date": "2020-08-02",
- "total_cases": 30950.0,
- "new_cases": 556.0,
- "new_cases_smoothed": 598.0,
- "total_deaths": 1223.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 11.0,
- "total_cases_per_million": 705.798,
- "new_cases_per_million": 12.679,
- "new_cases_smoothed_per_million": 13.637,
- "total_deaths_per_million": 27.89,
- "new_deaths_per_million": 0.296,
- "new_deaths_smoothed_per_million": 0.251,
- "stringency_index": 79.63
- },
- {
- "date": "2020-08-03",
- "total_cases": 31465.0,
- "new_cases": 515.0,
- "new_cases_smoothed": 586.857,
- "total_deaths": 1231.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 10.857,
- "total_cases_per_million": 717.543,
- "new_cases_per_million": 11.744,
- "new_cases_smoothed_per_million": 13.383,
- "total_deaths_per_million": 28.072,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.248,
- "stringency_index": 79.63
- },
- {
- "date": "2020-08-04",
- "total_cases": 31972.0,
- "new_cases": 507.0,
- "new_cases_smoothed": 571.286,
- "total_deaths": 1239.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 10.857,
- "total_cases_per_million": 729.105,
- "new_cases_per_million": 11.562,
- "new_cases_smoothed_per_million": 13.028,
- "total_deaths_per_million": 28.255,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.248,
- "stringency_index": 79.63
- },
- {
- "date": "2020-08-05",
- "total_cases": 32504.0,
- "new_cases": 532.0,
- "new_cases_smoothed": 555.571,
- "total_deaths": 1248.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 10.571,
- "total_cases_per_million": 741.237,
- "new_cases_per_million": 12.132,
- "new_cases_smoothed_per_million": 12.67,
- "total_deaths_per_million": 28.46,
- "new_deaths_per_million": 0.205,
- "new_deaths_smoothed_per_million": 0.241,
- "stringency_index": 79.63
- },
- {
- "date": "2020-08-06",
- "total_cases": 33055.0,
- "new_cases": 551.0,
- "new_cases_smoothed": 546.571,
- "total_deaths": 1261.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 10.714,
- "total_cases_per_million": 753.802,
- "new_cases_per_million": 12.565,
- "new_cases_smoothed_per_million": 12.464,
- "total_deaths_per_million": 28.756,
- "new_deaths_per_million": 0.296,
- "new_deaths_smoothed_per_million": 0.244,
- "stringency_index": 79.63
- },
- {
- "date": "2020-08-07",
- "total_cases": 33626.0,
- "new_cases": 571.0,
- "new_cases_smoothed": 542.143,
- "total_deaths": 1273.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 10.429,
- "total_cases_per_million": 766.823,
- "new_cases_per_million": 13.021,
- "new_cases_smoothed_per_million": 12.363,
- "total_deaths_per_million": 29.03,
- "new_deaths_per_million": 0.274,
- "new_deaths_smoothed_per_million": 0.238,
- "stringency_index": 79.63
- },
- {
- "date": "2020-08-08",
- "total_cases": 34155.0,
- "new_cases": 529.0,
- "new_cases_smoothed": 537.286,
- "total_deaths": 1282.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 10.286,
- "total_cases_per_million": 778.887,
- "new_cases_per_million": 12.064,
- "new_cases_smoothed_per_million": 12.253,
- "total_deaths_per_million": 29.235,
- "new_deaths_per_million": 0.205,
- "new_deaths_smoothed_per_million": 0.235,
- "stringency_index": 87.96
- },
- {
- "date": "2020-08-09",
- "total_cases": 34693.0,
- "new_cases": 538.0,
- "new_cases_smoothed": 534.714,
- "total_deaths": 1293.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 10.0,
- "total_cases_per_million": 791.156,
- "new_cases_per_million": 12.269,
- "new_cases_smoothed_per_million": 12.194,
- "total_deaths_per_million": 29.486,
- "new_deaths_per_million": 0.251,
- "new_deaths_smoothed_per_million": 0.228,
- "stringency_index": 87.96
- },
- {
- "date": "2020-08-10",
- "total_cases": 35214.0,
- "new_cases": 521.0,
- "new_cases_smoothed": 535.571,
- "total_deaths": 1302.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 10.143,
- "total_cases_per_million": 803.037,
- "new_cases_per_million": 11.881,
- "new_cases_smoothed_per_million": 12.213,
- "total_deaths_per_million": 29.691,
- "new_deaths_per_million": 0.205,
- "new_deaths_smoothed_per_million": 0.231,
- "stringency_index": 85.19
- },
- {
- "date": "2020-08-11",
- "total_cases": 35712.0,
- "new_cases": 498.0,
- "new_cases_smoothed": 534.286,
- "total_deaths": 1312.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 10.429,
- "total_cases_per_million": 814.393,
- "new_cases_per_million": 11.357,
- "new_cases_smoothed_per_million": 12.184,
- "total_deaths_per_million": 29.919,
- "new_deaths_per_million": 0.228,
- "new_deaths_smoothed_per_million": 0.238,
- "stringency_index": 85.19
- },
- {
- "date": "2020-08-12",
- "total_cases": 36204.0,
- "new_cases": 492.0,
- "new_cases_smoothed": 528.571,
- "total_deaths": 1322.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 10.571,
- "total_cases_per_million": 825.613,
- "new_cases_per_million": 11.22,
- "new_cases_smoothed_per_million": 12.054,
- "total_deaths_per_million": 30.148,
- "new_deaths_per_million": 0.228,
- "new_deaths_smoothed_per_million": 0.241,
- "stringency_index": 85.19
- },
- {
- "date": "2020-08-13",
- "total_cases": 36699.0,
- "new_cases": 495.0,
- "new_cases_smoothed": 520.571,
- "total_deaths": 1333.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 10.286,
- "total_cases_per_million": 836.901,
- "new_cases_per_million": 11.288,
- "new_cases_smoothed_per_million": 11.871,
- "total_deaths_per_million": 30.398,
- "new_deaths_per_million": 0.251,
- "new_deaths_smoothed_per_million": 0.235,
- "stringency_index": 85.19
- },
- {
- "date": "2020-08-14",
- "total_cases": 37187.0,
- "new_cases": 488.0,
- "new_cases_smoothed": 508.714,
- "total_deaths": 1341.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 9.714,
- "total_cases_per_million": 848.03,
- "new_cases_per_million": 11.129,
- "new_cases_smoothed_per_million": 11.601,
- "total_deaths_per_million": 30.581,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.222,
- "stringency_index": 85.19
- },
- {
- "date": "2020-08-15",
- "total_cases": 37664.0,
- "new_cases": 477.0,
- "new_cases_smoothed": 501.286,
- "total_deaths": 1351.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 9.857,
- "total_cases_per_million": 858.908,
- "new_cases_per_million": 10.878,
- "new_cases_smoothed_per_million": 11.432,
- "total_deaths_per_million": 30.809,
- "new_deaths_per_million": 0.228,
- "new_deaths_smoothed_per_million": 0.225,
- "stringency_index": 68.52
- },
- {
- "date": "2020-08-16",
- "total_cases": 38133.0,
- "new_cases": 469.0,
- "new_cases_smoothed": 491.429,
- "total_deaths": 1360.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 9.571,
- "total_cases_per_million": 869.603,
- "new_cases_per_million": 10.695,
- "new_cases_smoothed_per_million": 11.207,
- "total_deaths_per_million": 31.014,
- "new_deaths_per_million": 0.205,
- "new_deaths_smoothed_per_million": 0.218,
- "stringency_index": 68.52
- },
- {
- "date": "2020-08-17",
- "total_cases": 38583.0,
- "new_cases": 450.0,
- "new_cases_smoothed": 481.286,
- "total_deaths": 1370.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 9.714,
- "total_cases_per_million": 879.865,
- "new_cases_per_million": 10.262,
- "new_cases_smoothed_per_million": 10.975,
- "total_deaths_per_million": 31.242,
- "new_deaths_per_million": 0.228,
- "new_deaths_smoothed_per_million": 0.222,
- "stringency_index": 68.52
- },
- {
- "date": "2020-08-18",
- "total_cases": 39025.0,
- "new_cases": 442.0,
- "new_cases_smoothed": 473.286,
- "total_deaths": 1379.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 9.571,
- "total_cases_per_million": 889.945,
- "new_cases_per_million": 10.08,
- "new_cases_smoothed_per_million": 10.793,
- "total_deaths_per_million": 31.447,
- "new_deaths_per_million": 0.205,
- "new_deaths_smoothed_per_million": 0.218,
- "stringency_index": 79.63
- },
- {
- "date": "2020-08-19",
- "total_cases": 39444.0,
- "new_cases": 419.0,
- "new_cases_smoothed": 462.857,
- "total_deaths": 1391.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 9.857,
- "total_cases_per_million": 899.5,
- "new_cases_per_million": 9.555,
- "new_cases_smoothed_per_million": 10.555,
- "total_deaths_per_million": 31.721,
- "new_deaths_per_million": 0.274,
- "new_deaths_smoothed_per_million": 0.225,
- "stringency_index": 79.63
- },
- {
- "date": "2020-08-20",
- "total_cases": 39847.0,
- "new_cases": 403.0,
- "new_cases_smoothed": 449.714,
- "total_deaths": 1402.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 9.857,
- "total_cases_per_million": 908.69,
- "new_cases_per_million": 9.19,
- "new_cases_smoothed_per_million": 10.255,
- "total_deaths_per_million": 31.972,
- "new_deaths_per_million": 0.251,
- "new_deaths_smoothed_per_million": 0.225,
- "stringency_index": 79.63
- },
- {
- "date": "2020-08-21",
- "total_cases": 40258.0,
- "new_cases": 411.0,
- "new_cases_smoothed": 438.714,
- "total_deaths": 1411.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 10.0,
- "total_cases_per_million": 918.063,
- "new_cases_per_million": 9.373,
- "new_cases_smoothed_per_million": 10.005,
- "total_deaths_per_million": 32.177,
- "new_deaths_per_million": 0.205,
- "new_deaths_smoothed_per_million": 0.228,
- "stringency_index": 79.63
- },
- {
- "date": "2020-08-22",
- "total_cases": 40667.0,
- "new_cases": 409.0,
- "new_cases_smoothed": 429.0,
- "total_deaths": 1418.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 9.571,
- "total_cases_per_million": 927.39,
- "new_cases_per_million": 9.327,
- "new_cases_smoothed_per_million": 9.783,
- "total_deaths_per_million": 32.337,
- "new_deaths_per_million": 0.16,
- "new_deaths_smoothed_per_million": 0.218,
- "stringency_index": 79.63
- },
- {
- "date": "2020-08-23",
- "total_cases": 41068.0,
- "new_cases": 401.0,
- "new_cases_smoothed": 419.286,
- "total_deaths": 1424.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 9.143,
- "total_cases_per_million": 936.534,
- "new_cases_per_million": 9.145,
- "new_cases_smoothed_per_million": 9.562,
- "total_deaths_per_million": 32.474,
- "new_deaths_per_million": 0.137,
- "new_deaths_smoothed_per_million": 0.208,
- "stringency_index": 79.63
- },
- {
- "date": "2020-08-24",
- "total_cases": 41460.0,
- "new_cases": 392.0,
- "new_cases_smoothed": 411.0,
- "total_deaths": 1435.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 9.286,
- "total_cases_per_million": 945.474,
- "new_cases_per_million": 8.939,
- "new_cases_smoothed_per_million": 9.373,
- "total_deaths_per_million": 32.724,
- "new_deaths_per_million": 0.251,
- "new_deaths_smoothed_per_million": 0.212,
- "stringency_index": 79.63
- },
- {
- "date": "2020-08-25",
- "total_cases": 41858.0,
- "new_cases": 398.0,
- "new_cases_smoothed": 404.714,
- "total_deaths": 1446.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 9.571,
- "total_cases_per_million": 954.55,
- "new_cases_per_million": 9.076,
- "new_cases_smoothed_per_million": 9.229,
- "total_deaths_per_million": 32.975,
- "new_deaths_per_million": 0.251,
- "new_deaths_smoothed_per_million": 0.218,
- "stringency_index": 79.63
- },
- {
- "date": "2020-08-26",
- "total_cases": 42228.0,
- "new_cases": 370.0,
- "new_cases_smoothed": 397.714,
- "total_deaths": 1456.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 9.286,
- "total_cases_per_million": 962.987,
- "new_cases_per_million": 8.438,
- "new_cases_smoothed_per_million": 9.07,
- "total_deaths_per_million": 33.203,
- "new_deaths_per_million": 0.228,
- "new_deaths_smoothed_per_million": 0.212,
- "stringency_index": 79.63
- },
- {
- "date": "2020-08-27",
- "total_cases": 42619.0,
- "new_cases": 391.0,
- "new_cases_smoothed": 396.0,
- "total_deaths": 1465.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 9.0,
- "total_cases_per_million": 971.904,
- "new_cases_per_million": 8.917,
- "new_cases_smoothed_per_million": 9.031,
- "total_deaths_per_million": 33.409,
- "new_deaths_per_million": 0.205,
- "new_deaths_smoothed_per_million": 0.205,
- "stringency_index": 79.63
- },
- {
- "date": "2020-08-28",
- "total_cases": 43016.0,
- "new_cases": 397.0,
- "new_cases_smoothed": 394.0,
- "total_deaths": 1475.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 9.143,
- "total_cases_per_million": 980.957,
- "new_cases_per_million": 9.053,
- "new_cases_smoothed_per_million": 8.985,
- "total_deaths_per_million": 33.637,
- "new_deaths_per_million": 0.228,
- "new_deaths_smoothed_per_million": 0.208,
- "stringency_index": 79.63
- },
- {
- "date": "2020-08-29",
- "total_cases": 43403.0,
- "new_cases": 387.0,
- "new_cases_smoothed": 390.857,
- "total_deaths": 1483.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 9.286,
- "total_cases_per_million": 989.783,
- "new_cases_per_million": 8.825,
- "new_cases_smoothed_per_million": 8.913,
- "total_deaths_per_million": 33.819,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.212,
- "stringency_index": 79.63
- },
- {
- "date": "2020-08-30",
- "total_cases": 43782.0,
- "new_cases": 379.0,
- "new_cases_smoothed": 387.714,
- "total_deaths": 1491.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 9.571,
- "total_cases_per_million": 998.426,
- "new_cases_per_million": 8.643,
- "new_cases_smoothed_per_million": 8.842,
- "total_deaths_per_million": 34.001,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.218,
- "stringency_index": 79.63
- },
- {
- "date": "2020-08-31",
- "total_cases": 44146.0,
- "new_cases": 364.0,
- "new_cases_smoothed": 383.714,
- "total_deaths": 1501.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 9.429,
- "total_cases_per_million": 1006.726,
- "new_cases_per_million": 8.301,
- "new_cases_smoothed_per_million": 8.75,
- "total_deaths_per_million": 34.23,
- "new_deaths_per_million": 0.228,
- "new_deaths_smoothed_per_million": 0.215,
- "stringency_index": 79.63
- },
- {
- "date": "2020-09-01",
- "total_cases": 44494.0,
- "new_cases": 348.0,
- "new_cases_smoothed": 376.571,
- "total_deaths": 1510.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 9.143,
- "total_cases_per_million": 1014.662,
- "new_cases_per_million": 7.936,
- "new_cases_smoothed_per_million": 8.588,
- "total_deaths_per_million": 34.435,
- "new_deaths_per_million": 0.205,
- "new_deaths_smoothed_per_million": 0.208,
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-02",
- "total_cases": 44833.0,
- "new_cases": 339.0,
- "new_cases_smoothed": 372.143,
- "total_deaths": 1518.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 8.857,
- "total_cases_per_million": 1022.393,
- "new_cases_per_million": 7.731,
- "new_cases_smoothed_per_million": 8.487,
- "total_deaths_per_million": 34.617,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.202,
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-03",
- "total_cases": 45158.0,
- "new_cases": 325.0,
- "new_cases_smoothed": 362.714,
- "total_deaths": 1525.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 1029.804,
- "new_cases_per_million": 7.411,
- "new_cases_smoothed_per_million": 8.272,
- "total_deaths_per_million": 34.777,
- "new_deaths_per_million": 0.16,
- "new_deaths_smoothed_per_million": 0.195,
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-04",
- "total_cases": 45469.0,
- "new_cases": 311.0,
- "new_cases_smoothed": 350.429,
- "total_deaths": 1531.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 8.0,
- "total_cases_per_million": 1036.897,
- "new_cases_per_million": 7.092,
- "new_cases_smoothed_per_million": 7.991,
- "total_deaths_per_million": 34.914,
- "new_deaths_per_million": 0.137,
- "new_deaths_smoothed_per_million": 0.182,
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-05",
- "total_cases": 45773.0,
- "new_cases": 304.0,
- "new_cases_smoothed": 338.571,
- "total_deaths": 1539.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 8.0,
- "total_cases_per_million": 1043.829,
- "new_cases_per_million": 6.933,
- "new_cases_smoothed_per_million": 7.721,
- "total_deaths_per_million": 35.096,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.182,
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-06",
- "total_cases": 46071.0,
- "new_cases": 298.0,
- "new_cases_smoothed": 327.0,
- "total_deaths": 1549.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 8.286,
- "total_cases_per_million": 1050.625,
- "new_cases_per_million": 6.796,
- "new_cases_smoothed_per_million": 7.457,
- "total_deaths_per_million": 35.324,
- "new_deaths_per_million": 0.228,
- "new_deaths_smoothed_per_million": 0.189,
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-07",
- "total_cases": 46364.0,
- "new_cases": 293.0,
- "new_cases_smoothed": 316.857,
- "total_deaths": 1556.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 7.857,
- "total_cases_per_million": 1057.307,
- "new_cases_per_million": 6.682,
- "new_cases_smoothed_per_million": 7.226,
- "total_deaths_per_million": 35.484,
- "new_deaths_per_million": 0.16,
- "new_deaths_smoothed_per_million": 0.179,
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-08",
- "total_cases": 46653.0,
- "new_cases": 289.0,
- "new_cases_smoothed": 308.429,
- "total_deaths": 1562.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 7.429,
- "total_cases_per_million": 1063.897,
- "new_cases_per_million": 6.59,
- "new_cases_smoothed_per_million": 7.034,
- "total_deaths_per_million": 35.621,
- "new_deaths_per_million": 0.137,
- "new_deaths_smoothed_per_million": 0.169,
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-09",
- "total_cases": 46938.0,
- "new_cases": 285.0,
- "new_cases_smoothed": 300.714,
- "total_deaths": 1571.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 7.571,
- "total_cases_per_million": 1070.396,
- "new_cases_per_million": 6.499,
- "new_cases_smoothed_per_million": 6.858,
- "total_deaths_per_million": 35.826,
- "new_deaths_per_million": 0.205,
- "new_deaths_smoothed_per_million": 0.173,
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-10",
- "total_cases": 47216.0,
- "new_cases": 278.0,
- "new_cases_smoothed": 294.0,
- "total_deaths": 1581.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 8.0,
- "total_cases_per_million": 1076.736,
- "new_cases_per_million": 6.34,
- "new_cases_smoothed_per_million": 6.705,
- "total_deaths_per_million": 36.054,
- "new_deaths_per_million": 0.228,
- "new_deaths_smoothed_per_million": 0.182,
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-11",
- "total_cases": 47488.0,
- "new_cases": 272.0,
- "new_cases_smoothed": 288.429,
- "total_deaths": 1591.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 1082.939,
- "new_cases_per_million": 6.203,
- "new_cases_smoothed_per_million": 6.577,
- "total_deaths_per_million": 36.282,
- "new_deaths_per_million": 0.228,
- "new_deaths_smoothed_per_million": 0.195,
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-12",
- "total_cases": 47752.0,
- "new_cases": 264.0,
- "new_cases_smoothed": 282.714,
- "total_deaths": 1599.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 1088.959,
- "new_cases_per_million": 6.02,
- "new_cases_smoothed_per_million": 6.447,
- "total_deaths_per_million": 36.464,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.195,
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-13",
- "total_cases": 48007.0,
- "new_cases": 255.0,
- "new_cases_smoothed": 276.571,
- "total_deaths": 1605.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 8.0,
- "total_cases_per_million": 1094.774,
- "new_cases_per_million": 5.815,
- "new_cases_smoothed_per_million": 6.307,
- "total_deaths_per_million": 36.601,
- "new_deaths_per_million": 0.137,
- "new_deaths_smoothed_per_million": 0.182,
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-14",
- "total_cases": 48254.0,
- "new_cases": 247.0,
- "new_cases_smoothed": 270.0,
- "total_deaths": 1612.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 8.0,
- "total_cases_per_million": 1100.407,
- "new_cases_per_million": 5.633,
- "new_cases_smoothed_per_million": 6.157,
- "total_deaths_per_million": 36.761,
- "new_deaths_per_million": 0.16,
- "new_deaths_smoothed_per_million": 0.182,
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-15",
- "total_cases": 48496.0,
- "new_cases": 242.0,
- "new_cases_smoothed": 263.286,
- "total_deaths": 1620.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 8.286,
- "total_cases_per_million": 1105.926,
- "new_cases_per_million": 5.519,
- "new_cases_smoothed_per_million": 6.004,
- "total_deaths_per_million": 36.943,
- "new_deaths_per_million": 0.182,
- "new_deaths_smoothed_per_million": 0.189,
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-16",
- "total_cases": 48734.0,
- "new_cases": 238.0,
- "new_cases_smoothed": 256.571,
- "total_deaths": 1632.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 8.714,
- "total_cases_per_million": 1111.353,
- "new_cases_per_million": 5.427,
- "new_cases_smoothed_per_million": 5.851,
- "total_deaths_per_million": 37.217,
- "new_deaths_per_million": 0.274,
- "new_deaths_smoothed_per_million": 0.199,
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-17",
- "total_cases": 48966.0,
- "new_cases": 232.0,
- "new_cases_smoothed": 250.0,
- "total_deaths": 1645.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 9.143,
- "total_cases_per_million": 1116.644,
- "new_cases_per_million": 5.291,
- "new_cases_smoothed_per_million": 5.701,
- "total_deaths_per_million": 37.513,
- "new_deaths_per_million": 0.296,
- "new_deaths_smoothed_per_million": 0.208,
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-18",
- "total_cases": 49194.0,
- "new_cases": 228.0,
- "new_cases_smoothed": 243.714,
- "total_deaths": 1654.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 9.0,
- "total_cases_per_million": 1121.843,
- "new_cases_per_million": 5.199,
- "new_cases_smoothed_per_million": 5.558,
- "total_deaths_per_million": 37.719,
- "new_deaths_per_million": 0.205,
- "new_deaths_smoothed_per_million": 0.205,
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-19",
- "total_cases": 49413.0,
- "new_cases": 219.0,
- "new_cases_smoothed": 237.286,
- "total_deaths": 1659.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 1126.838,
- "new_cases_per_million": 4.994,
- "new_cases_smoothed_per_million": 5.411,
- "total_deaths_per_million": 37.833,
- "new_deaths_per_million": 0.114,
- "new_deaths_smoothed_per_million": 0.195,
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-20",
- "total_cases": 49623.0,
- "new_cases": 210.0,
- "new_cases_smoothed": 230.857,
- "total_deaths": 1665.0,
- "new_deaths": 6.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 1131.626,
- "new_cases_per_million": 4.789,
- "new_cases_smoothed_per_million": 5.265,
- "total_deaths_per_million": 37.969,
- "new_deaths_per_million": 0.137,
- "new_deaths_smoothed_per_million": 0.195,
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-21",
- "total_cases": 49826.0,
- "new_cases": 203.0,
- "new_cases_smoothed": 224.571,
- "total_deaths": 1672.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 8.571,
- "total_cases_per_million": 1136.256,
- "new_cases_per_million": 4.629,
- "new_cases_smoothed_per_million": 5.121,
- "total_deaths_per_million": 38.129,
- "new_deaths_per_million": 0.16,
- "new_deaths_smoothed_per_million": 0.195,
- "stringency_index": 75.93
- },
- {
- "date": "2020-09-22",
- "total_cases": 50023.0,
- "new_cases": 197.0,
- "new_cases_smoothed": 218.143,
- "total_deaths": 1679.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 8.429,
- "total_cases_per_million": 1140.748,
- "new_cases_per_million": 4.492,
- "new_cases_smoothed_per_million": 4.975,
- "total_deaths_per_million": 38.289,
- "new_deaths_per_million": 0.16,
- "new_deaths_smoothed_per_million": 0.192
- },
- {
- "date": "2020-09-23",
- "total_cases": 50214.0,
- "new_cases": 191.0,
- "new_cases_smoothed": 211.429,
- "total_deaths": 1689.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 8.143,
- "total_cases_per_million": 1145.104,
- "new_cases_per_million": 4.356,
- "new_cases_smoothed_per_million": 4.822,
- "total_deaths_per_million": 38.517,
- "new_deaths_per_million": 0.228,
- "new_deaths_smoothed_per_million": 0.186
- },
- {
- "date": "2020-09-24",
- "total_cases": 50400.0,
- "new_cases": 186.0,
- "new_cases_smoothed": 204.857,
- "total_deaths": 1698.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 7.571,
- "total_cases_per_million": 1149.346,
- "new_cases_per_million": 4.242,
- "new_cases_smoothed_per_million": 4.672,
- "total_deaths_per_million": 38.722,
- "new_deaths_per_million": 0.205,
- "new_deaths_smoothed_per_million": 0.173
- },
- {
- "date": "2020-09-25",
- "total_cases": 50579.0,
- "new_cases": 179.0,
- "new_cases_smoothed": 197.857,
- "total_deaths": 1703.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 7.0,
- "total_cases_per_million": 1153.428,
- "new_cases_per_million": 4.082,
- "new_cases_smoothed_per_million": 4.512,
- "total_deaths_per_million": 38.836,
- "new_deaths_per_million": 0.114,
- "new_deaths_smoothed_per_million": 0.16
- }
- ]
- },
- "ECU": {
- "continent": "South America",
- "location": "Ecuador",
- "population": 17643060.0,
- "population_density": 66.939,
- "median_age": 28.1,
- "aged_65_older": 7.104,
- "aged_70_older": 4.458,
- "gdp_per_capita": 10581.936,
- "extreme_poverty": 3.6,
- "cardiovasc_death_rate": 140.448,
- "diabetes_prevalence": 5.55,
- "female_smokers": 2.0,
- "male_smokers": 12.3,
- "handwashing_facilities": 80.635,
- "hospital_beds_per_thousand": 1.5,
- "life_expectancy": 77.01,
- "human_development_index": 0.752,
- "data": [
- {
- "date": "2019-12-31",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0
- },
- {
- "date": "2020-01-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-02",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-03",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-04",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-05",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-06",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-07",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-08",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-09",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-10",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-11",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-12",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-13",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-14",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-15",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-16",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-17",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-18",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-19",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-20",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-21",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-22",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-23",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-24",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-25",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 0.0
- },
- {
- "date": "2020-01-26",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-01-27",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-01-28",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-01-29",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-01-30",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-01-31",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-01",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-02",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-03",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-04",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-05",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-06",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-07",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-08",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-09",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-10",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-11",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-12",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-13",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-14",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-15",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-16",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-17",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-18",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-19",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-20",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-21",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-22",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-23",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-24",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-25",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-26",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-27",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-28",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-02-29",
- "total_cases": 0.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 0.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.0,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 0.0,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-03-01",
- "total_cases": 1.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 0.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.057,
- "new_cases_per_million": 0.057,
- "new_cases_smoothed_per_million": 0.008,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 5.56
- },
- {
- "date": "2020-03-02",
- "total_cases": 6.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 0.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.34,
- "new_cases_per_million": 0.283,
- "new_cases_smoothed_per_million": 0.049,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 8.33
- },
- {
- "date": "2020-03-03",
- "total_cases": 7.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.0,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.397,
- "new_cases_per_million": 0.057,
- "new_cases_smoothed_per_million": 0.057,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 8.33
- },
- {
- "date": "2020-03-04",
- "new_cases_smoothed": 1.0,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.057,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 8.33
- },
- {
- "date": "2020-03-05",
- "total_cases": 10.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.567,
- "new_cases_per_million": 0.17,
- "new_cases_smoothed_per_million": 0.081,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 8.33
- },
- {
- "date": "2020-03-06",
- "total_cases": 13.0,
- "new_cases": 3.0,
- "new_cases_smoothed": 1.857,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.737,
- "new_cases_per_million": 0.17,
- "new_cases_smoothed_per_million": 0.105,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 8.33
- },
- {
- "date": "2020-03-07",
- "new_cases_smoothed": 1.857,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.105,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 8.33
- },
- {
- "date": "2020-03-08",
- "new_cases_smoothed": 1.714,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.097,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 8.33
- },
- {
- "date": "2020-03-09",
- "total_cases": 14.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.794,
- "new_cases_per_million": 0.057,
- "new_cases_smoothed_per_million": 0.065,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 8.33
- },
- {
- "date": "2020-03-10",
- "total_cases": 15.0,
- "new_cases": 1.0,
- "new_cases_smoothed": 1.143,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.85,
- "new_cases_per_million": 0.057,
- "new_cases_smoothed_per_million": 0.065,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 8.33
- },
- {
- "date": "2020-03-11",
- "total_cases": 17.0,
- "new_cases": 2.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 0.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.0,
- "total_cases_per_million": 0.964,
- "new_cases_per_million": 0.113,
- "new_cases_smoothed_per_million": 0.081,
- "total_deaths_per_million": 0.0,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 8.33
- },
- {
- "date": "2020-03-12",
- "new_cases_smoothed": 1.0,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.057,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 8.33
- },
- {
- "date": "2020-03-13",
- "new_cases_smoothed": 0.571,
- "new_deaths_smoothed": 0.0,
- "new_cases_smoothed_per_million": 0.032,
- "new_deaths_smoothed_per_million": 0.0,
- "stringency_index": 36.11
- },
- {
- "date": "2020-03-14",
- "total_cases": 23.0,
- "new_cases": 6.0,
- "new_cases_smoothed": 1.429,
- "total_deaths": 1.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.143,
- "total_cases_per_million": 1.304,
- "new_cases_per_million": 0.34,
- "new_cases_smoothed_per_million": 0.081,
- "total_deaths_per_million": 0.057,
- "new_deaths_per_million": 0.057,
- "new_deaths_smoothed_per_million": 0.008,
- "stringency_index": 36.11
- },
- {
- "date": "2020-03-15",
- "total_cases": 28.0,
- "new_cases": 5.0,
- "new_cases_smoothed": 2.143,
- "total_deaths": 2.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 1.587,
- "new_cases_per_million": 0.283,
- "new_cases_smoothed_per_million": 0.121,
- "total_deaths_per_million": 0.113,
- "new_deaths_per_million": 0.057,
- "new_deaths_smoothed_per_million": 0.016,
- "stringency_index": 55.56
- },
- {
- "date": "2020-03-16",
- "total_cases": 37.0,
- "new_cases": 9.0,
- "new_cases_smoothed": 3.286,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 2.097,
- "new_cases_per_million": 0.51,
- "new_cases_smoothed_per_million": 0.186,
- "total_deaths_per_million": 0.113,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "stringency_index": 55.56
- },
- {
- "date": "2020-03-17",
- "total_cases": 58.0,
- "new_cases": 21.0,
- "new_cases_smoothed": 6.143,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 3.287,
- "new_cases_per_million": 1.19,
- "new_cases_smoothed_per_million": 0.348,
- "total_deaths_per_million": 0.113,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "stringency_index": 93.52
- },
- {
- "date": "2020-03-18",
- "total_cases": 111.0,
- "new_cases": 53.0,
- "new_cases_smoothed": 13.429,
- "total_deaths": 2.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.286,
- "total_cases_per_million": 6.291,
- "new_cases_per_million": 3.004,
- "new_cases_smoothed_per_million": 0.761,
- "total_deaths_per_million": 0.113,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.016,
- "total_tests": 480.0,
- "total_tests_per_thousand": 0.027,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-03-19",
- "total_cases": 168.0,
- "new_cases": 57.0,
- "new_cases_smoothed": 21.571,
- "total_deaths": 3.0,
- "new_deaths": 1.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 9.522,
- "new_cases_per_million": 3.231,
- "new_cases_smoothed_per_million": 1.223,
- "total_deaths_per_million": 0.17,
- "new_deaths_per_million": 0.057,
- "new_deaths_smoothed_per_million": 0.024,
- "new_tests": 192.0,
- "total_tests": 672.0,
- "total_tests_per_thousand": 0.038,
- "new_tests_per_thousand": 0.011,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-03-20",
- "total_cases": 199.0,
- "new_cases": 31.0,
- "new_cases_smoothed": 26.0,
- "total_deaths": 3.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.429,
- "total_cases_per_million": 11.279,
- "new_cases_per_million": 1.757,
- "new_cases_smoothed_per_million": 1.474,
- "total_deaths_per_million": 0.17,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.024,
- "new_tests": 287.0,
- "total_tests": 959.0,
- "total_tests_per_thousand": 0.054,
- "new_tests_per_thousand": 0.016,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-03-21",
- "total_cases": 426.0,
- "new_cases": 227.0,
- "new_cases_smoothed": 57.571,
- "total_deaths": 7.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 0.857,
- "total_cases_per_million": 24.145,
- "new_cases_per_million": 12.866,
- "new_cases_smoothed_per_million": 3.263,
- "total_deaths_per_million": 0.397,
- "new_deaths_per_million": 0.227,
- "new_deaths_smoothed_per_million": 0.049,
- "new_tests": 222.0,
- "total_tests": 1181.0,
- "total_tests_per_thousand": 0.067,
- "new_tests_per_thousand": 0.013,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-03-22",
- "total_cases": 532.0,
- "new_cases": 106.0,
- "new_cases_smoothed": 72.0,
- "total_deaths": 7.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 0.714,
- "total_cases_per_million": 30.153,
- "new_cases_per_million": 6.008,
- "new_cases_smoothed_per_million": 4.081,
- "total_deaths_per_million": 0.397,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.04,
- "new_tests": 480.0,
- "total_tests": 1661.0,
- "total_tests_per_thousand": 0.094,
- "new_tests_per_thousand": 0.027,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-03-23",
- "total_cases": 789.0,
- "new_cases": 257.0,
- "new_cases_smoothed": 107.429,
- "total_deaths": 14.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 1.714,
- "total_cases_per_million": 44.72,
- "new_cases_per_million": 14.567,
- "new_cases_smoothed_per_million": 6.089,
- "total_deaths_per_million": 0.794,
- "new_deaths_per_million": 0.397,
- "new_deaths_smoothed_per_million": 0.097,
- "new_tests": 411.0,
- "total_tests": 2072.0,
- "total_tests_per_thousand": 0.117,
- "new_tests_per_thousand": 0.023,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-03-24",
- "total_cases": 981.0,
- "new_cases": 192.0,
- "new_cases_smoothed": 131.857,
- "total_deaths": 18.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 2.286,
- "total_cases_per_million": 55.603,
- "new_cases_per_million": 10.882,
- "new_cases_smoothed_per_million": 7.474,
- "total_deaths_per_million": 1.02,
- "new_deaths_per_million": 0.227,
- "new_deaths_smoothed_per_million": 0.13,
- "new_tests": 235.0,
- "total_tests": 2307.0,
- "total_tests_per_thousand": 0.131,
- "new_tests_per_thousand": 0.013,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-03-25",
- "total_cases": 1082.0,
- "new_cases": 101.0,
- "new_cases_smoothed": 138.714,
- "total_deaths": 27.0,
- "new_deaths": 9.0,
- "new_deaths_smoothed": 3.571,
- "total_cases_per_million": 61.327,
- "new_cases_per_million": 5.725,
- "new_cases_smoothed_per_million": 7.862,
- "total_deaths_per_million": 1.53,
- "new_deaths_per_million": 0.51,
- "new_deaths_smoothed_per_million": 0.202,
- "new_tests": 291.0,
- "total_tests": 2598.0,
- "total_tests_per_thousand": 0.147,
- "new_tests_per_thousand": 0.016,
- "new_tests_smoothed": 303.0,
- "new_tests_smoothed_per_thousand": 0.017,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-03-26",
- "total_cases": 1211.0,
- "new_cases": 129.0,
- "new_cases_smoothed": 149.0,
- "total_deaths": 29.0,
- "new_deaths": 2.0,
- "new_deaths_smoothed": 3.714,
- "total_cases_per_million": 68.639,
- "new_cases_per_million": 7.312,
- "new_cases_smoothed_per_million": 8.445,
- "total_deaths_per_million": 1.644,
- "new_deaths_per_million": 0.113,
- "new_deaths_smoothed_per_million": 0.211,
- "new_tests": 527.0,
- "total_tests": 3125.0,
- "total_tests_per_thousand": 0.177,
- "new_tests_per_thousand": 0.03,
- "new_tests_smoothed": 350.0,
- "new_tests_smoothed_per_thousand": 0.02,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-03-27",
- "total_cases": 1403.0,
- "new_cases": 192.0,
- "new_cases_smoothed": 172.0,
- "total_deaths": 34.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 4.429,
- "total_cases_per_million": 79.521,
- "new_cases_per_million": 10.882,
- "new_cases_smoothed_per_million": 9.749,
- "total_deaths_per_million": 1.927,
- "new_deaths_per_million": 0.283,
- "new_deaths_smoothed_per_million": 0.251,
- "new_tests": 443.0,
- "total_tests": 3568.0,
- "total_tests_per_thousand": 0.202,
- "new_tests_per_thousand": 0.025,
- "new_tests_smoothed": 373.0,
- "new_tests_smoothed_per_thousand": 0.021,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-03-28",
- "total_cases": 1627.0,
- "new_cases": 224.0,
- "new_cases_smoothed": 171.571,
- "total_deaths": 41.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 4.857,
- "total_cases_per_million": 92.218,
- "new_cases_per_million": 12.696,
- "new_cases_smoothed_per_million": 9.725,
- "total_deaths_per_million": 2.324,
- "new_deaths_per_million": 0.397,
- "new_deaths_smoothed_per_million": 0.275,
- "new_tests": 367.0,
- "total_tests": 3935.0,
- "total_tests_per_thousand": 0.223,
- "new_tests_per_thousand": 0.021,
- "new_tests_smoothed": 393.0,
- "new_tests_smoothed_per_thousand": 0.022,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-03-29",
- "total_cases": 1835.0,
- "new_cases": 208.0,
- "new_cases_smoothed": 186.143,
- "total_deaths": 48.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 5.857,
- "total_cases_per_million": 104.007,
- "new_cases_per_million": 11.789,
- "new_cases_smoothed_per_million": 10.55,
- "total_deaths_per_million": 2.721,
- "new_deaths_per_million": 0.397,
- "new_deaths_smoothed_per_million": 0.332,
- "new_tests": 188.0,
- "total_tests": 4123.0,
- "total_tests_per_thousand": 0.234,
- "new_tests_per_thousand": 0.011,
- "new_tests_smoothed": 352.0,
- "new_tests_smoothed_per_thousand": 0.02,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-03-30",
- "total_cases": 1890.0,
- "new_cases": 55.0,
- "new_cases_smoothed": 157.286,
- "total_deaths": 58.0,
- "new_deaths": 10.0,
- "new_deaths_smoothed": 6.286,
- "total_cases_per_million": 107.124,
- "new_cases_per_million": 3.117,
- "new_cases_smoothed_per_million": 8.915,
- "total_deaths_per_million": 3.287,
- "new_deaths_per_million": 0.567,
- "new_deaths_smoothed_per_million": 0.356,
- "new_tests": 96.0,
- "total_tests": 4219.0,
- "total_tests_per_thousand": 0.239,
- "new_tests_per_thousand": 0.005,
- "new_tests_smoothed": 307.0,
- "new_tests_smoothed_per_thousand": 0.017,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-03-31",
- "total_cases": 1966.0,
- "new_cases": 76.0,
- "new_cases_smoothed": 140.714,
- "total_deaths": 62.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 6.286,
- "total_cases_per_million": 111.432,
- "new_cases_per_million": 4.308,
- "new_cases_smoothed_per_million": 7.976,
- "total_deaths_per_million": 3.514,
- "new_deaths_per_million": 0.227,
- "new_deaths_smoothed_per_million": 0.356,
- "new_tests": 609.0,
- "total_tests": 4828.0,
- "total_tests_per_thousand": 0.274,
- "new_tests_per_thousand": 0.035,
- "new_tests_smoothed": 360.0,
- "new_tests_smoothed_per_thousand": 0.02,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-01",
- "total_cases": 2302.0,
- "new_cases": 336.0,
- "new_cases_smoothed": 174.286,
- "total_deaths": 79.0,
- "new_deaths": 17.0,
- "new_deaths_smoothed": 7.429,
- "total_cases_per_million": 130.476,
- "new_cases_per_million": 19.044,
- "new_cases_smoothed_per_million": 9.878,
- "total_deaths_per_million": 4.478,
- "new_deaths_per_million": 0.964,
- "new_deaths_smoothed_per_million": 0.421,
- "new_tests": 763.0,
- "total_tests": 5591.0,
- "total_tests_per_thousand": 0.317,
- "new_tests_per_thousand": 0.043,
- "new_tests_smoothed": 428.0,
- "new_tests_smoothed_per_thousand": 0.024,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-02",
- "total_cases": 2758.0,
- "new_cases": 456.0,
- "new_cases_smoothed": 221.0,
- "total_deaths": 120.0,
- "new_deaths": 41.0,
- "new_deaths_smoothed": 13.0,
- "total_cases_per_million": 156.322,
- "new_cases_per_million": 25.846,
- "new_cases_smoothed_per_million": 12.526,
- "total_deaths_per_million": 6.802,
- "new_deaths_per_million": 2.324,
- "new_deaths_smoothed_per_million": 0.737,
- "new_tests": 711.0,
- "total_tests": 6302.0,
- "total_tests_per_thousand": 0.357,
- "new_tests_per_thousand": 0.04,
- "new_tests_smoothed": 454.0,
- "new_tests_smoothed_per_thousand": 0.026,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-03",
- "total_cases": 3163.0,
- "new_cases": 405.0,
- "new_cases_smoothed": 251.429,
- "total_deaths": 120.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 12.286,
- "total_cases_per_million": 179.277,
- "new_cases_per_million": 22.955,
- "new_cases_smoothed_per_million": 14.251,
- "total_deaths_per_million": 6.802,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.696,
- "new_tests": 354.0,
- "total_tests": 6656.0,
- "total_tests_per_thousand": 0.377,
- "new_tests_per_thousand": 0.02,
- "new_tests_smoothed": 441.0,
- "new_tests_smoothed_per_thousand": 0.025,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-04",
- "total_cases": 3368.0,
- "new_cases": 205.0,
- "new_cases_smoothed": 248.714,
- "total_deaths": 145.0,
- "new_deaths": 25.0,
- "new_deaths_smoothed": 14.857,
- "total_cases_per_million": 190.897,
- "new_cases_per_million": 11.619,
- "new_cases_smoothed_per_million": 14.097,
- "total_deaths_per_million": 8.219,
- "new_deaths_per_million": 1.417,
- "new_deaths_smoothed_per_million": 0.842,
- "new_tests": 178.0,
- "total_tests": 6834.0,
- "total_tests_per_thousand": 0.387,
- "new_tests_per_thousand": 0.01,
- "new_tests_smoothed": 414.0,
- "new_tests_smoothed_per_thousand": 0.023,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-05",
- "total_cases": 3465.0,
- "new_cases": 97.0,
- "new_cases_smoothed": 232.857,
- "total_deaths": 172.0,
- "new_deaths": 27.0,
- "new_deaths_smoothed": 17.714,
- "total_cases_per_million": 196.395,
- "new_cases_per_million": 5.498,
- "new_cases_smoothed_per_million": 13.198,
- "total_deaths_per_million": 9.749,
- "new_deaths_per_million": 1.53,
- "new_deaths_smoothed_per_million": 1.004,
- "new_tests": 415.0,
- "total_tests": 7249.0,
- "total_tests_per_thousand": 0.411,
- "new_tests_per_thousand": 0.024,
- "new_tests_smoothed": 447.0,
- "new_tests_smoothed_per_thousand": 0.025,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-06",
- "total_cases": 3646.0,
- "new_cases": 181.0,
- "new_cases_smoothed": 250.857,
- "total_deaths": 180.0,
- "new_deaths": 8.0,
- "new_deaths_smoothed": 17.429,
- "total_cases_per_million": 206.653,
- "new_cases_per_million": 10.259,
- "new_cases_smoothed_per_million": 14.218,
- "total_deaths_per_million": 10.202,
- "new_deaths_per_million": 0.453,
- "new_deaths_smoothed_per_million": 0.988,
- "new_tests": 341.0,
- "total_tests": 7590.0,
- "total_tests_per_thousand": 0.43,
- "new_tests_per_thousand": 0.019,
- "new_tests_smoothed": 482.0,
- "new_tests_smoothed_per_thousand": 0.027,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-07",
- "total_cases": 3747.0,
- "new_cases": 101.0,
- "new_cases_smoothed": 254.429,
- "total_deaths": 191.0,
- "new_deaths": 11.0,
- "new_deaths_smoothed": 18.429,
- "total_cases_per_million": 212.378,
- "new_cases_per_million": 5.725,
- "new_cases_smoothed_per_million": 14.421,
- "total_deaths_per_million": 10.826,
- "new_deaths_per_million": 0.623,
- "new_deaths_smoothed_per_million": 1.045,
- "new_tests": 361.0,
- "total_tests": 7951.0,
- "total_tests_per_thousand": 0.451,
- "new_tests_per_thousand": 0.02,
- "new_tests_smoothed": 446.0,
- "new_tests_smoothed_per_thousand": 0.025,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-08",
- "total_cases": 3995.0,
- "new_cases": 248.0,
- "new_cases_smoothed": 241.857,
- "total_deaths": 220.0,
- "new_deaths": 29.0,
- "new_deaths_smoothed": 20.143,
- "total_cases_per_million": 226.435,
- "new_cases_per_million": 14.057,
- "new_cases_smoothed_per_million": 13.708,
- "total_deaths_per_million": 12.469,
- "new_deaths_per_million": 1.644,
- "new_deaths_smoothed_per_million": 1.142,
- "new_tests": 707.0,
- "total_tests": 8658.0,
- "total_tests_per_thousand": 0.491,
- "new_tests_per_thousand": 0.04,
- "new_tests_smoothed": 438.0,
- "new_tests_smoothed_per_thousand": 0.025,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-09",
- "total_cases": 4450.0,
- "new_cases": 455.0,
- "new_cases_smoothed": 241.714,
- "total_deaths": 242.0,
- "new_deaths": 22.0,
- "new_deaths_smoothed": 17.429,
- "total_cases_per_million": 252.224,
- "new_cases_per_million": 25.789,
- "new_cases_smoothed_per_million": 13.7,
- "total_deaths_per_million": 13.716,
- "new_deaths_per_million": 1.247,
- "new_deaths_smoothed_per_million": 0.988,
- "new_tests": 981.0,
- "total_tests": 9639.0,
- "total_tests_per_thousand": 0.546,
- "new_tests_per_thousand": 0.056,
- "new_tests_smoothed": 477.0,
- "new_tests_smoothed_per_thousand": 0.027,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-10",
- "total_cases": 4965.0,
- "new_cases": 515.0,
- "new_cases_smoothed": 257.429,
- "total_deaths": 272.0,
- "new_deaths": 30.0,
- "new_deaths_smoothed": 21.714,
- "total_cases_per_million": 281.414,
- "new_cases_per_million": 29.19,
- "new_cases_smoothed_per_million": 14.591,
- "total_deaths_per_million": 15.417,
- "new_deaths_per_million": 1.7,
- "new_deaths_smoothed_per_million": 1.231,
- "new_tests": 4018.0,
- "total_tests": 13657.0,
- "total_tests_per_thousand": 0.774,
- "new_tests_per_thousand": 0.228,
- "new_tests_smoothed": 1000.0,
- "new_tests_smoothed_per_thousand": 0.057,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-11",
- "total_cases": 7161.0,
- "new_cases": 2196.0,
- "new_cases_smoothed": 541.857,
- "total_deaths": 297.0,
- "new_deaths": 25.0,
- "new_deaths_smoothed": 21.714,
- "total_cases_per_million": 405.882,
- "new_cases_per_million": 124.468,
- "new_cases_smoothed_per_million": 30.712,
- "total_deaths_per_million": 16.834,
- "new_deaths_per_million": 1.417,
- "new_deaths_smoothed_per_million": 1.231,
- "new_tests": 544.0,
- "total_tests": 14201.0,
- "total_tests_per_thousand": 0.805,
- "new_tests_per_thousand": 0.031,
- "new_tests_smoothed": 1052.0,
- "new_tests_smoothed_per_thousand": 0.06,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-12",
- "total_cases": 7257.0,
- "new_cases": 96.0,
- "new_cases_smoothed": 541.714,
- "total_deaths": 315.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 20.429,
- "total_cases_per_million": 411.323,
- "new_cases_per_million": 5.441,
- "new_cases_smoothed_per_million": 30.704,
- "total_deaths_per_million": 17.854,
- "new_deaths_per_million": 1.02,
- "new_deaths_smoothed_per_million": 1.158,
- "new_tests": 383.0,
- "total_tests": 14584.0,
- "total_tests_per_thousand": 0.827,
- "new_tests_per_thousand": 0.022,
- "new_tests_smoothed": 1048.0,
- "new_tests_smoothed_per_thousand": 0.059,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-13",
- "total_cases": 7466.0,
- "new_cases": 209.0,
- "new_cases_smoothed": 545.714,
- "total_deaths": 333.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 21.857,
- "total_cases_per_million": 423.169,
- "new_cases_per_million": 11.846,
- "new_cases_smoothed_per_million": 30.931,
- "total_deaths_per_million": 18.874,
- "new_deaths_per_million": 1.02,
- "new_deaths_smoothed_per_million": 1.239,
- "new_tests": 242.0,
- "total_tests": 14826.0,
- "total_tests_per_thousand": 0.84,
- "new_tests_per_thousand": 0.014,
- "new_tests_smoothed": 1034.0,
- "new_tests_smoothed_per_thousand": 0.059,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-14",
- "total_cases": 7529.0,
- "new_cases": 63.0,
- "new_cases_smoothed": 540.286,
- "total_deaths": 355.0,
- "new_deaths": 22.0,
- "new_deaths_smoothed": 23.429,
- "total_cases_per_million": 426.74,
- "new_cases_per_million": 3.571,
- "new_cases_smoothed_per_million": 30.623,
- "total_deaths_per_million": 20.121,
- "new_deaths_per_million": 1.247,
- "new_deaths_smoothed_per_million": 1.328,
- "new_tests": 272.0,
- "total_tests": 15098.0,
- "total_tests_per_thousand": 0.856,
- "new_tests_per_thousand": 0.015,
- "new_tests_smoothed": 1021.0,
- "new_tests_smoothed_per_thousand": 0.058,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-15",
- "total_cases": 7603.0,
- "new_cases": 74.0,
- "new_cases_smoothed": 515.429,
- "total_deaths": 355.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 19.286,
- "total_cases_per_million": 430.934,
- "new_cases_per_million": 4.194,
- "new_cases_smoothed_per_million": 29.214,
- "total_deaths_per_million": 20.121,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.093,
- "new_tests": 516.0,
- "total_tests": 15614.0,
- "total_tests_per_thousand": 0.885,
- "new_tests_per_thousand": 0.029,
- "new_tests_smoothed": 994.0,
- "new_tests_smoothed_per_thousand": 0.056,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-16",
- "total_cases": 7858.0,
- "new_cases": 255.0,
- "new_cases_smoothed": 486.857,
- "total_deaths": 388.0,
- "new_deaths": 33.0,
- "new_deaths_smoothed": 20.857,
- "total_cases_per_million": 445.388,
- "new_cases_per_million": 14.453,
- "new_cases_smoothed_per_million": 27.595,
- "total_deaths_per_million": 21.992,
- "new_deaths_per_million": 1.87,
- "new_deaths_smoothed_per_million": 1.182,
- "new_tests": 523.0,
- "total_tests": 16137.0,
- "total_tests_per_thousand": 0.915,
- "new_tests_per_thousand": 0.03,
- "new_tests_smoothed": 928.0,
- "new_tests_smoothed_per_thousand": 0.053,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-17",
- "total_cases": 8225.0,
- "new_cases": 367.0,
- "new_cases_smoothed": 465.714,
- "total_deaths": 403.0,
- "new_deaths": 15.0,
- "new_deaths_smoothed": 18.714,
- "total_cases_per_million": 466.189,
- "new_cases_per_million": 20.801,
- "new_cases_smoothed_per_million": 26.396,
- "total_deaths_per_million": 22.842,
- "new_deaths_per_million": 0.85,
- "new_deaths_smoothed_per_million": 1.061,
- "new_tests": 388.0,
- "total_tests": 16525.0,
- "total_tests_per_thousand": 0.937,
- "new_tests_per_thousand": 0.022,
- "new_tests_smoothed": 410.0,
- "new_tests_smoothed_per_thousand": 0.023,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-18",
- "total_cases": 8450.0,
- "new_cases": 225.0,
- "new_cases_smoothed": 184.143,
- "total_deaths": 421.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 17.714,
- "total_cases_per_million": 478.942,
- "new_cases_per_million": 12.753,
- "new_cases_smoothed_per_million": 10.437,
- "total_deaths_per_million": 23.862,
- "new_deaths_per_million": 1.02,
- "new_deaths_smoothed_per_million": 1.004,
- "new_tests": 988.0,
- "total_tests": 17513.0,
- "total_tests_per_thousand": 0.993,
- "new_tests_per_thousand": 0.056,
- "new_tests_smoothed": 473.0,
- "new_tests_smoothed_per_thousand": 0.027,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-19",
- "total_cases": 9022.0,
- "new_cases": 572.0,
- "new_cases_smoothed": 252.143,
- "total_deaths": 456.0,
- "new_deaths": 35.0,
- "new_deaths_smoothed": 20.143,
- "total_cases_per_million": 511.363,
- "new_cases_per_million": 32.421,
- "new_cases_smoothed_per_million": 14.291,
- "total_deaths_per_million": 25.846,
- "new_deaths_per_million": 1.984,
- "new_deaths_smoothed_per_million": 1.142,
- "new_tests": 920.0,
- "total_tests": 18433.0,
- "total_tests_per_thousand": 1.045,
- "new_tests_per_thousand": 0.052,
- "new_tests_smoothed": 550.0,
- "new_tests_smoothed_per_thousand": 0.031,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-20",
- "total_cases": 9468.0,
- "new_cases": 446.0,
- "new_cases_smoothed": 286.0,
- "total_deaths": 474.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 20.143,
- "total_cases_per_million": 536.642,
- "new_cases_per_million": 25.279,
- "new_cases_smoothed_per_million": 16.21,
- "total_deaths_per_million": 26.866,
- "new_deaths_per_million": 1.02,
- "new_deaths_smoothed_per_million": 1.142,
- "new_tests": 1427.0,
- "total_tests": 19860.0,
- "total_tests_per_thousand": 1.126,
- "new_tests_per_thousand": 0.081,
- "new_tests_smoothed": 719.0,
- "new_tests_smoothed_per_thousand": 0.041,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-21",
- "total_cases": 10128.0,
- "new_cases": 660.0,
- "new_cases_smoothed": 371.286,
- "total_deaths": 507.0,
- "new_deaths": 33.0,
- "new_deaths_smoothed": 21.714,
- "total_cases_per_million": 574.05,
- "new_cases_per_million": 37.408,
- "new_cases_smoothed_per_million": 21.044,
- "total_deaths_per_million": 28.737,
- "new_deaths_per_million": 1.87,
- "new_deaths_smoothed_per_million": 1.231,
- "new_tests": 620.0,
- "total_tests": 20480.0,
- "total_tests_per_thousand": 1.161,
- "new_tests_per_thousand": 0.035,
- "new_tests_smoothed": 769.0,
- "new_tests_smoothed_per_thousand": 0.044,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-22",
- "total_cases": 10398.0,
- "new_cases": 270.0,
- "new_cases_smoothed": 399.286,
- "total_deaths": 520.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 23.571,
- "total_cases_per_million": 589.354,
- "new_cases_per_million": 15.303,
- "new_cases_smoothed_per_million": 22.631,
- "total_deaths_per_million": 29.473,
- "new_deaths_per_million": 0.737,
- "new_deaths_smoothed_per_million": 1.336,
- "new_tests": 1127.0,
- "total_tests": 21607.0,
- "total_tests_per_thousand": 1.225,
- "new_tests_per_thousand": 0.064,
- "new_tests_smoothed": 856.0,
- "new_tests_smoothed_per_thousand": 0.049,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-23",
- "total_cases": 10850.0,
- "new_cases": 452.0,
- "new_cases_smoothed": 427.429,
- "total_deaths": 537.0,
- "new_deaths": 17.0,
- "new_deaths_smoothed": 21.286,
- "total_cases_per_million": 614.973,
- "new_cases_per_million": 25.619,
- "new_cases_smoothed_per_million": 24.226,
- "total_deaths_per_million": 30.437,
- "new_deaths_per_million": 0.964,
- "new_deaths_smoothed_per_million": 1.206,
- "new_tests": 1776.0,
- "total_tests": 23383.0,
- "total_tests_per_thousand": 1.325,
- "new_tests_per_thousand": 0.101,
- "new_tests_smoothed": 1035.0,
- "new_tests_smoothed_per_thousand": 0.059,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-24",
- "total_cases": 11183.0,
- "new_cases": 333.0,
- "new_cases_smoothed": 422.571,
- "total_deaths": 560.0,
- "new_deaths": 23.0,
- "new_deaths_smoothed": 22.429,
- "total_cases_per_million": 633.847,
- "new_cases_per_million": 18.874,
- "new_cases_smoothed_per_million": 23.951,
- "total_deaths_per_million": 31.741,
- "new_deaths_per_million": 1.304,
- "new_deaths_smoothed_per_million": 1.271,
- "new_tests_smoothed": 1257.0,
- "new_tests_smoothed_per_thousand": 0.071,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-25",
- "total_cases": 11183.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 390.429,
- "total_deaths": 576.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 22.143,
- "total_cases_per_million": 633.847,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 22.129,
- "total_deaths_per_million": 32.647,
- "new_deaths_per_million": 0.907,
- "new_deaths_smoothed_per_million": 1.255,
- "new_tests_smoothed": 1392.0,
- "new_tests_smoothed_per_thousand": 0.079,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-26",
- "total_cases": 11183.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 308.714,
- "total_deaths": 576.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 17.143,
- "total_cases_per_million": 633.847,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 17.498,
- "total_deaths_per_million": 32.647,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.972,
- "new_tests_smoothed": 1538.0,
- "new_tests_smoothed_per_thousand": 0.087,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-27",
- "total_cases": 22719.0,
- "new_cases": 11536.0,
- "new_cases_smoothed": 1893.0,
- "total_deaths": 576.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 14.571,
- "total_cases_per_million": 1287.702,
- "new_cases_per_million": 653.855,
- "new_cases_smoothed_per_million": 107.294,
- "total_deaths_per_million": 32.647,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 0.826,
- "total_tests": 31134.0,
- "total_tests_per_thousand": 1.765,
- "new_tests_smoothed": 1611.0,
- "new_tests_smoothed_per_thousand": 0.091,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-28",
- "total_cases": 23240.0,
- "new_cases": 521.0,
- "new_cases_smoothed": 1873.143,
- "total_deaths": 663.0,
- "new_deaths": 87.0,
- "new_deaths_smoothed": 22.286,
- "total_cases_per_million": 1317.232,
- "new_cases_per_million": 29.53,
- "new_cases_smoothed_per_million": 106.169,
- "total_deaths_per_million": 37.579,
- "new_deaths_per_million": 4.931,
- "new_deaths_smoothed_per_million": 1.263,
- "new_tests": 1326.0,
- "total_tests": 32460.0,
- "total_tests_per_thousand": 1.84,
- "new_tests_per_thousand": 0.075,
- "new_tests_smoothed": 1711.0,
- "new_tests_smoothed_per_thousand": 0.097,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-29",
- "total_cases": 24258.0,
- "new_cases": 1018.0,
- "new_cases_smoothed": 1980.0,
- "total_deaths": 871.0,
- "new_deaths": 208.0,
- "new_deaths_smoothed": 50.143,
- "total_cases_per_million": 1374.932,
- "new_cases_per_million": 57.7,
- "new_cases_smoothed_per_million": 112.225,
- "total_deaths_per_million": 49.368,
- "new_deaths_per_million": 11.789,
- "new_deaths_smoothed_per_million": 2.842,
- "new_tests": 1224.0,
- "total_tests": 33684.0,
- "total_tests_per_thousand": 1.909,
- "new_tests_per_thousand": 0.069,
- "new_tests_smoothed": 1725.0,
- "new_tests_smoothed_per_thousand": 0.098,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-04-30",
- "total_cases": 24675.0,
- "new_cases": 417.0,
- "new_cases_smoothed": 1975.0,
- "total_deaths": 883.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 49.429,
- "total_cases_per_million": 1398.567,
- "new_cases_per_million": 23.635,
- "new_cases_smoothed_per_million": 111.942,
- "total_deaths_per_million": 50.048,
- "new_deaths_per_million": 0.68,
- "new_deaths_smoothed_per_million": 2.802,
- "new_tests": 663.0,
- "total_tests": 34347.0,
- "total_tests_per_thousand": 1.947,
- "new_tests_per_thousand": 0.038,
- "new_tests_smoothed": 1566.0,
- "new_tests_smoothed_per_thousand": 0.089,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-05-01",
- "total_cases": 24934.0,
- "new_cases": 259.0,
- "new_cases_smoothed": 1964.429,
- "total_deaths": 900.0,
- "new_deaths": 17.0,
- "new_deaths_smoothed": 48.571,
- "total_cases_per_million": 1413.247,
- "new_cases_per_million": 14.68,
- "new_cases_smoothed_per_million": 111.343,
- "total_deaths_per_million": 51.012,
- "new_deaths_per_million": 0.964,
- "new_deaths_smoothed_per_million": 2.753,
- "new_tests": 2714.0,
- "total_tests": 37061.0,
- "total_tests_per_thousand": 2.101,
- "new_tests_per_thousand": 0.154,
- "new_tests_smoothed": 1677.0,
- "new_tests_smoothed_per_thousand": 0.095,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-05-02",
- "total_cases": 26336.0,
- "new_cases": 1402.0,
- "new_cases_smoothed": 2164.714,
- "total_deaths": 1063.0,
- "new_deaths": 163.0,
- "new_deaths_smoothed": 69.571,
- "total_cases_per_million": 1492.712,
- "new_cases_per_million": 79.465,
- "new_cases_smoothed_per_million": 122.695,
- "total_deaths_per_million": 60.25,
- "new_deaths_per_million": 9.239,
- "new_deaths_smoothed_per_million": 3.943,
- "new_tests": 1863.0,
- "total_tests": 38924.0,
- "total_tests_per_thousand": 2.206,
- "new_tests_per_thousand": 0.106,
- "new_tests_smoothed": 1666.0,
- "new_tests_smoothed_per_thousand": 0.094,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-05-03",
- "total_cases": 27464.0,
- "new_cases": 1128.0,
- "new_cases_smoothed": 2325.857,
- "total_deaths": 1371.0,
- "new_deaths": 308.0,
- "new_deaths_smoothed": 113.571,
- "total_cases_per_million": 1556.646,
- "new_cases_per_million": 63.934,
- "new_cases_smoothed_per_million": 131.828,
- "total_deaths_per_million": 77.708,
- "new_deaths_per_million": 17.457,
- "new_deaths_smoothed_per_million": 6.437,
- "new_tests": 4803.0,
- "total_tests": 43727.0,
- "total_tests_per_thousand": 2.478,
- "new_tests_per_thousand": 0.272,
- "new_tests_smoothed": 2076.0,
- "new_tests_smoothed_per_thousand": 0.118,
- "tests_units": "people tested",
- "stringency_index": 93.52
- },
- {
- "date": "2020-05-04",
- "total_cases": 29538.0,
- "new_cases": 2074.0,
- "new_cases_smoothed": 974.143,
- "total_deaths": 1564.0,
- "new_deaths": 193.0,
- "new_deaths_smoothed": 141.143,
- "total_cases_per_million": 1674.199,
- "new_cases_per_million": 117.553,
- "new_cases_smoothed_per_million": 55.214,
- "total_deaths_per_million": 88.647,
- "new_deaths_per_million": 10.939,
- "new_deaths_smoothed_per_million": 8.0,
- "new_tests": 2533.0,
- "total_tests": 46260.0,
- "total_tests_per_thousand": 2.622,
- "new_tests_per_thousand": 0.144,
- "new_tests_smoothed": 2161.0,
- "new_tests_smoothed_per_thousand": 0.122,
- "tests_units": "people tested",
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-05",
- "total_cases": 31881.0,
- "new_cases": 2343.0,
- "new_cases_smoothed": 1234.429,
- "total_deaths": 1569.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 129.429,
- "total_cases_per_million": 1806.999,
- "new_cases_per_million": 132.8,
- "new_cases_smoothed_per_million": 69.967,
- "total_deaths_per_million": 88.93,
- "new_deaths_per_million": 0.283,
- "new_deaths_smoothed_per_million": 7.336,
- "new_tests_smoothed": 1729.0,
- "new_tests_smoothed_per_thousand": 0.098,
- "tests_units": "people tested",
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-06",
- "total_cases": 31881.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 1089.0,
- "total_deaths": 1569.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 99.714,
- "total_cases_per_million": 1806.999,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 61.724,
- "total_deaths_per_million": 88.93,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 5.652,
- "total_tests": 42870.0,
- "total_tests_per_thousand": 2.43,
- "new_tests_smoothed": 1312.0,
- "new_tests_smoothed_per_thousand": 0.074,
- "tests_units": "people tested",
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-07",
- "total_cases": 29420.0,
- "new_cases": -2461.0,
- "new_cases_smoothed": 677.857,
- "total_deaths": 1618.0,
- "new_deaths": 49.0,
- "new_deaths_smoothed": 105.0,
- "total_cases_per_million": 1667.511,
- "new_cases_per_million": -139.488,
- "new_cases_smoothed_per_million": 38.421,
- "total_deaths_per_million": 91.707,
- "new_deaths_per_million": 2.777,
- "new_deaths_smoothed_per_million": 5.951,
- "new_tests": 1503.0,
- "total_tests": 44373.0,
- "total_tests_per_thousand": 2.515,
- "new_tests_per_thousand": 0.085,
- "new_tests_smoothed": 1432.0,
- "new_tests_smoothed_per_thousand": 0.081,
- "tests_units": "people tested",
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-08",
- "total_cases": 30298.0,
- "new_cases": 878.0,
- "new_cases_smoothed": 766.286,
- "total_deaths": 1654.0,
- "new_deaths": 36.0,
- "new_deaths_smoothed": 107.714,
- "total_cases_per_million": 1717.276,
- "new_cases_per_million": 49.765,
- "new_cases_smoothed_per_million": 43.433,
- "total_deaths_per_million": 93.748,
- "new_deaths_per_million": 2.04,
- "new_deaths_smoothed_per_million": 6.105,
- "new_tests": -3743.0,
- "total_tests": 40630.0,
- "total_tests_per_thousand": 2.303,
- "new_tests_per_thousand": -0.212,
- "new_tests_smoothed": 510.0,
- "new_tests_smoothed_per_thousand": 0.029,
- "tests_units": "people tested",
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-09",
- "total_cases": 28818.0,
- "new_cases": -1480.0,
- "new_cases_smoothed": 354.571,
- "total_deaths": 1704.0,
- "new_deaths": 50.0,
- "new_deaths_smoothed": 91.571,
- "total_cases_per_million": 1633.39,
- "new_cases_per_million": -83.886,
- "new_cases_smoothed_per_million": 20.097,
- "total_deaths_per_million": 96.582,
- "new_deaths_per_million": 2.834,
- "new_deaths_smoothed_per_million": 5.19,
- "new_tests": 871.0,
- "total_tests": 41501.0,
- "total_tests_per_thousand": 2.352,
- "new_tests_per_thousand": 0.049,
- "new_tests_smoothed": 368.0,
- "new_tests_smoothed_per_thousand": 0.021,
- "tests_units": "people tested",
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-10",
- "total_cases": 29071.0,
- "new_cases": 253.0,
- "new_cases_smoothed": 229.571,
- "total_deaths": 1717.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 49.429,
- "total_cases_per_million": 1647.73,
- "new_cases_per_million": 14.34,
- "new_cases_smoothed_per_million": 13.012,
- "total_deaths_per_million": 97.319,
- "new_deaths_per_million": 0.737,
- "new_deaths_smoothed_per_million": 2.802,
- "new_tests": 1814.0,
- "total_tests": 43315.0,
- "total_tests_per_thousand": 2.455,
- "new_tests_per_thousand": 0.103,
- "tests_units": "people tested",
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-11",
- "total_cases": 29559.0,
- "new_cases": 488.0,
- "new_cases_smoothed": 3.0,
- "total_deaths": 2127.0,
- "new_deaths": 410.0,
- "new_deaths_smoothed": 80.429,
- "total_cases_per_million": 1675.39,
- "new_cases_per_million": 27.66,
- "new_cases_smoothed_per_million": 0.17,
- "total_deaths_per_million": 120.557,
- "new_deaths_per_million": 23.239,
- "new_deaths_smoothed_per_million": 4.559,
- "new_tests": -1377.0,
- "total_tests": 41938.0,
- "total_tests_per_thousand": 2.377,
- "new_tests_per_thousand": -0.078,
- "tests_units": "people tested",
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-12",
- "total_cases": 29509.0,
- "new_cases": -50.0,
- "new_cases_smoothed": -338.857,
- "total_deaths": 2145.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 82.286,
- "total_cases_per_million": 1672.556,
- "new_cases_per_million": -2.834,
- "new_cases_smoothed_per_million": -19.206,
- "total_deaths_per_million": 121.578,
- "new_deaths_per_million": 1.02,
- "new_deaths_smoothed_per_million": 4.664,
- "new_tests": 2250.0,
- "total_tests": 44188.0,
- "total_tests_per_thousand": 2.505,
- "new_tests_per_thousand": 0.128,
- "tests_units": "people tested",
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-13",
- "total_cases": 30419.0,
- "new_cases": 910.0,
- "new_cases_smoothed": -208.857,
- "total_deaths": 2327.0,
- "new_deaths": 182.0,
- "new_deaths_smoothed": 108.286,
- "total_cases_per_million": 1724.134,
- "new_cases_per_million": 51.578,
- "new_cases_smoothed_per_million": -11.838,
- "total_deaths_per_million": 131.893,
- "new_deaths_per_million": 10.316,
- "new_deaths_smoothed_per_million": 6.138,
- "new_tests": 97.0,
- "total_tests": 44285.0,
- "total_tests_per_thousand": 2.51,
- "new_tests_per_thousand": 0.005,
- "new_tests_smoothed": 202.0,
- "new_tests_smoothed_per_thousand": 0.011,
- "tests_units": "people tested",
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-14",
- "total_cases": 30486.0,
- "new_cases": 67.0,
- "new_cases_smoothed": 152.286,
- "total_deaths": 2334.0,
- "new_deaths": 7.0,
- "new_deaths_smoothed": 102.286,
- "total_cases_per_million": 1727.932,
- "new_cases_per_million": 3.798,
- "new_cases_smoothed_per_million": 8.631,
- "total_deaths_per_million": 132.29,
- "new_deaths_per_million": 0.397,
- "new_deaths_smoothed_per_million": 5.798,
- "new_tests": 64.0,
- "total_tests": 44349.0,
- "total_tests_per_thousand": 2.514,
- "new_tests_per_thousand": 0.004,
- "tests_units": "people tested",
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-15",
- "total_cases": 30502.0,
- "new_cases": 16.0,
- "new_cases_smoothed": 29.143,
- "total_deaths": 2338.0,
- "new_deaths": 4.0,
- "new_deaths_smoothed": 97.714,
- "total_cases_per_million": 1728.838,
- "new_cases_per_million": 0.907,
- "new_cases_smoothed_per_million": 1.652,
- "total_deaths_per_million": 132.517,
- "new_deaths_per_million": 0.227,
- "new_deaths_smoothed_per_million": 5.538,
- "new_tests": 3532.0,
- "total_tests": 47881.0,
- "total_tests_per_thousand": 2.714,
- "new_tests_per_thousand": 0.2,
- "new_tests_smoothed": 1036.0,
- "new_tests_smoothed_per_thousand": 0.059,
- "tests_units": "people tested",
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-16",
- "total_cases": 31467.0,
- "new_cases": 965.0,
- "new_cases_smoothed": 378.429,
- "total_deaths": 2594.0,
- "new_deaths": 256.0,
- "new_deaths_smoothed": 127.143,
- "total_cases_per_million": 1783.534,
- "new_cases_per_million": 54.696,
- "new_cases_smoothed_per_million": 21.449,
- "total_deaths_per_million": 147.027,
- "new_deaths_per_million": 14.51,
- "new_deaths_smoothed_per_million": 7.206,
- "new_tests": 2139.0,
- "total_tests": 50020.0,
- "total_tests_per_thousand": 2.835,
- "new_tests_per_thousand": 0.121,
- "new_tests_smoothed": 1217.0,
- "new_tests_smoothed_per_thousand": 0.069,
- "tests_units": "people tested",
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-17",
- "total_cases": 32763.0,
- "new_cases": 1296.0,
- "new_cases_smoothed": 527.429,
- "total_deaths": 2688.0,
- "new_deaths": 94.0,
- "new_deaths_smoothed": 138.714,
- "total_cases_per_million": 1856.991,
- "new_cases_per_million": 73.457,
- "new_cases_smoothed_per_million": 29.894,
- "total_deaths_per_million": 152.355,
- "new_deaths_per_million": 5.328,
- "new_deaths_smoothed_per_million": 7.862,
- "new_tests": 1375.0,
- "total_tests": 51395.0,
- "total_tests_per_thousand": 2.913,
- "new_tests_per_thousand": 0.078,
- "new_tests_smoothed": 1154.0,
- "new_tests_smoothed_per_thousand": 0.065,
- "tests_units": "people tested",
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-18",
- "total_cases": 33182.0,
- "new_cases": 419.0,
- "new_cases_smoothed": 517.571,
- "total_deaths": 2736.0,
- "new_deaths": 48.0,
- "new_deaths_smoothed": 87.0,
- "total_cases_per_million": 1880.74,
- "new_cases_per_million": 23.749,
- "new_cases_smoothed_per_million": 29.336,
- "total_deaths_per_million": 155.075,
- "new_deaths_per_million": 2.721,
- "new_deaths_smoothed_per_million": 4.931,
- "new_tests": 1317.0,
- "total_tests": 52712.0,
- "total_tests_per_thousand": 2.988,
- "new_tests_per_thousand": 0.075,
- "new_tests_smoothed": 1539.0,
- "new_tests_smoothed_per_thousand": 0.087,
- "tests_units": "people tested",
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-19",
- "total_cases": 33582.0,
- "new_cases": 400.0,
- "new_cases_smoothed": 581.857,
- "total_deaths": 2799.0,
- "new_deaths": 63.0,
- "new_deaths_smoothed": 93.429,
- "total_cases_per_million": 1903.411,
- "new_cases_per_million": 22.672,
- "new_cases_smoothed_per_million": 32.979,
- "total_deaths_per_million": 158.646,
- "new_deaths_per_million": 3.571,
- "new_deaths_smoothed_per_million": 5.295,
- "new_tests": 1101.0,
- "total_tests": 53813.0,
- "total_tests_per_thousand": 3.05,
- "new_tests_per_thousand": 0.062,
- "new_tests_smoothed": 1375.0,
- "new_tests_smoothed_per_thousand": 0.078,
- "tests_units": "people tested",
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-20",
- "total_cases": 34151.0,
- "new_cases": 569.0,
- "new_cases_smoothed": 533.143,
- "total_deaths": 2839.0,
- "new_deaths": 40.0,
- "new_deaths_smoothed": 73.143,
- "total_cases_per_million": 1935.662,
- "new_cases_per_million": 32.251,
- "new_cases_smoothed_per_million": 30.218,
- "total_deaths_per_million": 160.913,
- "new_deaths_per_million": 2.267,
- "new_deaths_smoothed_per_million": 4.146,
- "new_tests": 1571.0,
- "total_tests": 55384.0,
- "total_tests_per_thousand": 3.139,
- "new_tests_per_thousand": 0.089,
- "new_tests_smoothed": 1586.0,
- "new_tests_smoothed_per_thousand": 0.09,
- "tests_units": "people tested",
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-21",
- "total_cases": 34854.0,
- "new_cases": 703.0,
- "new_cases_smoothed": 624.0,
- "total_deaths": 2888.0,
- "new_deaths": 49.0,
- "new_deaths_smoothed": 79.143,
- "total_cases_per_million": 1975.508,
- "new_cases_per_million": 39.846,
- "new_cases_smoothed_per_million": 35.368,
- "total_deaths_per_million": 163.69,
- "new_deaths_per_million": 2.777,
- "new_deaths_smoothed_per_million": 4.486,
- "new_tests": 1742.0,
- "total_tests": 57126.0,
- "total_tests_per_thousand": 3.238,
- "new_tests_per_thousand": 0.099,
- "new_tests_smoothed": 1825.0,
- "new_tests_smoothed_per_thousand": 0.103,
- "tests_units": "people tested",
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-22",
- "total_cases": 35306.0,
- "new_cases": 452.0,
- "new_cases_smoothed": 686.286,
- "total_deaths": 2939.0,
- "new_deaths": 51.0,
- "new_deaths_smoothed": 85.857,
- "total_cases_per_million": 2001.127,
- "new_cases_per_million": 25.619,
- "new_cases_smoothed_per_million": 38.898,
- "total_deaths_per_million": 166.581,
- "new_deaths_per_million": 2.891,
- "new_deaths_smoothed_per_million": 4.866,
- "new_tests": 2409.0,
- "total_tests": 59535.0,
- "total_tests_per_thousand": 3.374,
- "new_tests_per_thousand": 0.137,
- "new_tests_smoothed": 1665.0,
- "new_tests_smoothed_per_thousand": 0.094,
- "tests_units": "people tested",
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-23",
- "total_cases": 35828.0,
- "new_cases": 522.0,
- "new_cases_smoothed": 623.0,
- "total_deaths": 3056.0,
- "new_deaths": 117.0,
- "new_deaths_smoothed": 66.0,
- "total_cases_per_million": 2030.713,
- "new_cases_per_million": 29.587,
- "new_cases_smoothed_per_million": 35.311,
- "total_deaths_per_million": 173.213,
- "new_deaths_per_million": 6.632,
- "new_deaths_smoothed_per_million": 3.741,
- "new_tests": 1161.0,
- "total_tests": 60696.0,
- "total_tests_per_thousand": 3.44,
- "new_tests_per_thousand": 0.066,
- "new_tests_smoothed": 1525.0,
- "new_tests_smoothed_per_thousand": 0.086,
- "tests_units": "people tested",
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-24",
- "total_cases": 36258.0,
- "new_cases": 430.0,
- "new_cases_smoothed": 499.286,
- "total_deaths": 3096.0,
- "new_deaths": 40.0,
- "new_deaths_smoothed": 58.286,
- "total_cases_per_million": 2055.086,
- "new_cases_per_million": 24.372,
- "new_cases_smoothed_per_million": 28.299,
- "total_deaths_per_million": 175.48,
- "new_deaths_per_million": 2.267,
- "new_deaths_smoothed_per_million": 3.304,
- "new_tests": 1231.0,
- "total_tests": 61927.0,
- "total_tests_per_thousand": 3.51,
- "new_tests_per_thousand": 0.07,
- "new_tests_smoothed": 1505.0,
- "new_tests_smoothed_per_thousand": 0.085,
- "tests_units": "people tested",
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-25",
- "total_cases": 36756.0,
- "new_cases": 498.0,
- "new_cases_smoothed": 510.571,
- "total_deaths": 3108.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 53.143,
- "total_cases_per_million": 2083.312,
- "new_cases_per_million": 28.226,
- "new_cases_smoothed_per_million": 28.939,
- "total_deaths_per_million": 176.16,
- "new_deaths_per_million": 0.68,
- "new_deaths_smoothed_per_million": 3.012,
- "new_tests": 2268.0,
- "total_tests": 64195.0,
- "total_tests_per_thousand": 3.639,
- "new_tests_per_thousand": 0.129,
- "new_tests_smoothed": 1640.0,
- "new_tests_smoothed_per_thousand": 0.093,
- "tests_units": "people tested",
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-26",
- "total_cases": 37355.0,
- "new_cases": 599.0,
- "new_cases_smoothed": 539.0,
- "total_deaths": 3203.0,
- "new_deaths": 95.0,
- "new_deaths_smoothed": 57.714,
- "total_cases_per_million": 2117.263,
- "new_cases_per_million": 33.951,
- "new_cases_smoothed_per_million": 30.55,
- "total_deaths_per_million": 181.544,
- "new_deaths_per_million": 5.385,
- "new_deaths_smoothed_per_million": 3.271,
- "new_tests": 582.0,
- "total_tests": 64777.0,
- "total_tests_per_thousand": 3.672,
- "new_tests_per_thousand": 0.033,
- "new_tests_smoothed": 1566.0,
- "new_tests_smoothed_per_thousand": 0.089,
- "tests_units": "people tested",
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-27",
- "total_cases": 37355.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 457.714,
- "total_deaths": 3203.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 52.0,
- "total_cases_per_million": 2117.263,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 25.943,
- "total_deaths_per_million": 181.544,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.947,
- "new_tests": 1583.0,
- "total_tests": 66360.0,
- "total_tests_per_thousand": 3.761,
- "new_tests_per_thousand": 0.09,
- "new_tests_smoothed": 1568.0,
- "new_tests_smoothed_per_thousand": 0.089,
- "tests_units": "people tested",
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-28",
- "total_cases": 38103.0,
- "new_cases": 748.0,
- "new_cases_smoothed": 464.143,
- "total_deaths": 3275.0,
- "new_deaths": 72.0,
- "new_deaths_smoothed": 55.286,
- "total_cases_per_million": 2159.659,
- "new_cases_per_million": 42.396,
- "new_cases_smoothed_per_million": 26.307,
- "total_deaths_per_million": 185.625,
- "new_deaths_per_million": 4.081,
- "new_deaths_smoothed_per_million": 3.134,
- "new_tests": 779.0,
- "total_tests": 67139.0,
- "total_tests_per_thousand": 3.805,
- "new_tests_per_thousand": 0.044,
- "new_tests_smoothed": 1430.0,
- "new_tests_smoothed_per_thousand": 0.081,
- "tests_units": "people tested",
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-29",
- "total_cases": 38471.0,
- "new_cases": 368.0,
- "new_cases_smoothed": 452.143,
- "total_deaths": 3313.0,
- "new_deaths": 38.0,
- "new_deaths_smoothed": 53.429,
- "total_cases_per_million": 2180.517,
- "new_cases_per_million": 20.858,
- "new_cases_smoothed_per_million": 25.627,
- "total_deaths_per_million": 187.779,
- "new_deaths_per_million": 2.154,
- "new_deaths_smoothed_per_million": 3.028,
- "new_tests": 579.0,
- "total_tests": 67718.0,
- "total_tests_per_thousand": 3.838,
- "new_tests_per_thousand": 0.033,
- "new_tests_smoothed": 1169.0,
- "new_tests_smoothed_per_thousand": 0.066,
- "tests_units": "people tested",
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-30",
- "total_cases": 38571.0,
- "new_cases": 100.0,
- "new_cases_smoothed": 391.857,
- "total_deaths": 3334.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 39.714,
- "total_cases_per_million": 2186.185,
- "new_cases_per_million": 5.668,
- "new_cases_smoothed_per_million": 22.21,
- "total_deaths_per_million": 188.969,
- "new_deaths_per_million": 1.19,
- "new_deaths_smoothed_per_million": 2.251,
- "new_tests": 513.0,
- "total_tests": 68231.0,
- "total_tests_per_thousand": 3.867,
- "new_tests_per_thousand": 0.029,
- "new_tests_smoothed": 1076.0,
- "new_tests_smoothed_per_thousand": 0.061,
- "tests_units": "people tested",
- "stringency_index": 86.11
- },
- {
- "date": "2020-05-31",
- "total_cases": 38571.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 330.429,
- "total_deaths": 3334.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 34.0,
- "total_cases_per_million": 2186.185,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 18.729,
- "total_deaths_per_million": 188.969,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.927,
- "new_tests": 757.0,
- "total_tests": 68988.0,
- "total_tests_per_thousand": 3.91,
- "new_tests_per_thousand": 0.043,
- "new_tests_smoothed": 1009.0,
- "new_tests_smoothed_per_thousand": 0.057,
- "tests_units": "people tested",
- "stringency_index": 86.11
- },
- {
- "date": "2020-06-01",
- "total_cases": 39098.0,
- "new_cases": 527.0,
- "new_cases_smoothed": 334.571,
- "total_deaths": 3358.0,
- "new_deaths": 24.0,
- "new_deaths_smoothed": 35.714,
- "total_cases_per_million": 2216.055,
- "new_cases_per_million": 29.87,
- "new_cases_smoothed_per_million": 18.963,
- "total_deaths_per_million": 190.33,
- "new_deaths_per_million": 1.36,
- "new_deaths_smoothed_per_million": 2.024,
- "new_tests": 2434.0,
- "total_tests": 71422.0,
- "total_tests_per_thousand": 4.048,
- "new_tests_per_thousand": 0.138,
- "new_tests_smoothed": 1032.0,
- "new_tests_smoothed_per_thousand": 0.058,
- "tests_units": "people tested",
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-02",
- "total_cases": 39994.0,
- "new_cases": 896.0,
- "new_cases_smoothed": 377.0,
- "total_deaths": 3394.0,
- "new_deaths": 36.0,
- "new_deaths_smoothed": 27.286,
- "total_cases_per_million": 2266.84,
- "new_cases_per_million": 50.785,
- "new_cases_smoothed_per_million": 21.368,
- "total_deaths_per_million": 192.37,
- "new_deaths_per_million": 2.04,
- "new_deaths_smoothed_per_million": 1.547,
- "new_tests": 1347.0,
- "total_tests": 72769.0,
- "total_tests_per_thousand": 4.125,
- "new_tests_per_thousand": 0.076,
- "new_tests_smoothed": 1142.0,
- "new_tests_smoothed_per_thousand": 0.065,
- "tests_units": "people tested",
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-03",
- "total_cases": 40414.0,
- "new_cases": 420.0,
- "new_cases_smoothed": 437.0,
- "total_deaths": 3438.0,
- "new_deaths": 44.0,
- "new_deaths_smoothed": 33.571,
- "total_cases_per_million": 2290.646,
- "new_cases_per_million": 23.805,
- "new_cases_smoothed_per_million": 24.769,
- "total_deaths_per_million": 194.864,
- "new_deaths_per_million": 2.494,
- "new_deaths_smoothed_per_million": 1.903,
- "new_tests": 1959.0,
- "total_tests": 74728.0,
- "total_tests_per_thousand": 4.236,
- "new_tests_per_thousand": 0.111,
- "new_tests_smoothed": 1195.0,
- "new_tests_smoothed_per_thousand": 0.068,
- "tests_units": "people tested",
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-04",
- "total_cases": 40966.0,
- "new_cases": 552.0,
- "new_cases_smoothed": 409.0,
- "total_deaths": 3486.0,
- "new_deaths": 48.0,
- "new_deaths_smoothed": 30.143,
- "total_cases_per_million": 2321.933,
- "new_cases_per_million": 31.287,
- "new_cases_smoothed_per_million": 23.182,
- "total_deaths_per_million": 197.585,
- "new_deaths_per_million": 2.721,
- "new_deaths_smoothed_per_million": 1.708,
- "new_tests": 1415.0,
- "total_tests": 76143.0,
- "total_tests_per_thousand": 4.316,
- "new_tests_per_thousand": 0.08,
- "new_tests_smoothed": 1286.0,
- "new_tests_smoothed_per_thousand": 0.073,
- "tests_units": "people tested",
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-05",
- "total_cases": 40966.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 356.429,
- "total_deaths": 3486.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 24.714,
- "total_cases_per_million": 2321.933,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 20.202,
- "total_deaths_per_million": 197.585,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.401,
- "new_tests": 2136.0,
- "total_tests": 78279.0,
- "total_tests_per_thousand": 4.437,
- "new_tests_per_thousand": 0.121,
- "new_tests_smoothed": 1509.0,
- "new_tests_smoothed_per_thousand": 0.086,
- "tests_units": "people tested",
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-06",
- "total_cases": 41575.0,
- "new_cases": 609.0,
- "new_cases_smoothed": 429.143,
- "total_deaths": 3534.0,
- "new_deaths": 48.0,
- "new_deaths_smoothed": 28.571,
- "total_cases_per_million": 2356.451,
- "new_cases_per_million": 34.518,
- "new_cases_smoothed_per_million": 24.324,
- "total_deaths_per_million": 200.305,
- "new_deaths_per_million": 2.721,
- "new_deaths_smoothed_per_million": 1.619,
- "new_tests": 844.0,
- "total_tests": 79123.0,
- "total_tests_per_thousand": 4.485,
- "new_tests_per_thousand": 0.048,
- "new_tests_smoothed": 1556.0,
- "new_tests_smoothed_per_thousand": 0.088,
- "tests_units": "people tested",
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-07",
- "total_cases": 42728.0,
- "new_cases": 1153.0,
- "new_cases_smoothed": 593.857,
- "total_deaths": 3608.0,
- "new_deaths": 74.0,
- "new_deaths_smoothed": 39.143,
- "total_cases_per_million": 2421.802,
- "new_cases_per_million": 65.351,
- "new_cases_smoothed_per_million": 33.66,
- "total_deaths_per_million": 204.5,
- "new_deaths_per_million": 4.194,
- "new_deaths_smoothed_per_million": 2.219,
- "new_tests": 1253.0,
- "total_tests": 80376.0,
- "total_tests_per_thousand": 4.556,
- "new_tests_per_thousand": 0.071,
- "new_tests_smoothed": 1627.0,
- "new_tests_smoothed_per_thousand": 0.092,
- "tests_units": "people tested",
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-08",
- "total_cases": 43120.0,
- "new_cases": 392.0,
- "new_cases_smoothed": 574.571,
- "total_deaths": 3621.0,
- "new_deaths": 13.0,
- "new_deaths_smoothed": 37.571,
- "total_cases_per_million": 2444.02,
- "new_cases_per_million": 22.218,
- "new_cases_smoothed_per_million": 32.566,
- "total_deaths_per_million": 205.237,
- "new_deaths_per_million": 0.737,
- "new_deaths_smoothed_per_million": 2.13,
- "new_tests": 420.0,
- "total_tests": 80796.0,
- "total_tests_per_thousand": 4.579,
- "new_tests_per_thousand": 0.024,
- "new_tests_smoothed": 1339.0,
- "new_tests_smoothed_per_thousand": 0.076,
- "tests_units": "people tested",
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-09",
- "total_cases": 43378.0,
- "new_cases": 258.0,
- "new_cases_smoothed": 483.429,
- "total_deaths": 3642.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 35.429,
- "total_cases_per_million": 2458.644,
- "new_cases_per_million": 14.623,
- "new_cases_smoothed_per_million": 27.4,
- "total_deaths_per_million": 206.427,
- "new_deaths_per_million": 1.19,
- "new_deaths_smoothed_per_million": 2.008,
- "new_tests": 1483.0,
- "total_tests": 82279.0,
- "total_tests_per_thousand": 4.664,
- "new_tests_per_thousand": 0.084,
- "new_tests_smoothed": 1359.0,
- "new_tests_smoothed_per_thousand": 0.077,
- "tests_units": "people tested",
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-10",
- "total_cases": 43917.0,
- "new_cases": 539.0,
- "new_cases_smoothed": 500.429,
- "total_deaths": 3690.0,
- "new_deaths": 48.0,
- "new_deaths_smoothed": 36.0,
- "total_cases_per_million": 2489.194,
- "new_cases_per_million": 30.55,
- "new_cases_smoothed_per_million": 28.364,
- "total_deaths_per_million": 209.147,
- "new_deaths_per_million": 2.721,
- "new_deaths_smoothed_per_million": 2.04,
- "new_tests": 1121.0,
- "total_tests": 83400.0,
- "total_tests_per_thousand": 4.727,
- "new_tests_per_thousand": 0.064,
- "new_tests_smoothed": 1239.0,
- "new_tests_smoothed_per_thousand": 0.07,
- "tests_units": "people tested",
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-11",
- "total_cases": 44440.0,
- "new_cases": 523.0,
- "new_cases_smoothed": 496.286,
- "total_deaths": 3720.0,
- "new_deaths": 30.0,
- "new_deaths_smoothed": 33.429,
- "total_cases_per_million": 2518.837,
- "new_cases_per_million": 29.643,
- "new_cases_smoothed_per_million": 28.129,
- "total_deaths_per_million": 210.848,
- "new_deaths_per_million": 1.7,
- "new_deaths_smoothed_per_million": 1.895,
- "new_tests": 2192.0,
- "total_tests": 85592.0,
- "total_tests_per_thousand": 4.851,
- "new_tests_per_thousand": 0.124,
- "new_tests_smoothed": 1350.0,
- "new_tests_smoothed_per_thousand": 0.077,
- "tests_units": "people tested",
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-12",
- "total_cases": 44440.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 496.286,
- "total_deaths": 3720.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 33.429,
- "total_cases_per_million": 2518.837,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 28.129,
- "total_deaths_per_million": 210.848,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 1.895,
- "new_tests": 1969.0,
- "total_tests": 87561.0,
- "total_tests_per_thousand": 4.963,
- "new_tests_per_thousand": 0.112,
- "new_tests_smoothed": 1326.0,
- "new_tests_smoothed_per_thousand": 0.075,
- "tests_units": "people tested",
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-13",
- "total_cases": 45778.0,
- "new_cases": 1338.0,
- "new_cases_smoothed": 600.429,
- "total_deaths": 3828.0,
- "new_deaths": 108.0,
- "new_deaths_smoothed": 42.0,
- "total_cases_per_million": 2594.675,
- "new_cases_per_million": 75.837,
- "new_cases_smoothed_per_million": 34.032,
- "total_deaths_per_million": 216.969,
- "new_deaths_per_million": 6.121,
- "new_deaths_smoothed_per_million": 2.381,
- "new_tests": 1385.0,
- "total_tests": 88946.0,
- "total_tests_per_thousand": 5.041,
- "new_tests_per_thousand": 0.079,
- "new_tests_smoothed": 1403.0,
- "new_tests_smoothed_per_thousand": 0.08,
- "tests_units": "people tested",
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-14",
- "total_cases": 46356.0,
- "new_cases": 578.0,
- "new_cases_smoothed": 518.286,
- "total_deaths": 3874.0,
- "new_deaths": 46.0,
- "new_deaths_smoothed": 38.0,
- "total_cases_per_million": 2627.435,
- "new_cases_per_million": 32.761,
- "new_cases_smoothed_per_million": 29.376,
- "total_deaths_per_million": 219.576,
- "new_deaths_per_million": 2.607,
- "new_deaths_smoothed_per_million": 2.154,
- "new_tests": 896.0,
- "total_tests": 89842.0,
- "total_tests_per_thousand": 5.092,
- "new_tests_per_thousand": 0.051,
- "new_tests_smoothed": 1352.0,
- "new_tests_smoothed_per_thousand": 0.077,
- "tests_units": "people tested",
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-15",
- "total_cases": 46751.0,
- "new_cases": 395.0,
- "new_cases_smoothed": 518.714,
- "total_deaths": 3896.0,
- "new_deaths": 22.0,
- "new_deaths_smoothed": 39.286,
- "total_cases_per_million": 2649.824,
- "new_cases_per_million": 22.388,
- "new_cases_smoothed_per_million": 29.4,
- "total_deaths_per_million": 220.823,
- "new_deaths_per_million": 1.247,
- "new_deaths_smoothed_per_million": 2.227,
- "new_tests": 1259.0,
- "total_tests": 91101.0,
- "total_tests_per_thousand": 5.164,
- "new_tests_per_thousand": 0.071,
- "new_tests_smoothed": 1472.0,
- "new_tests_smoothed_per_thousand": 0.083,
- "tests_units": "people tested",
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-16",
- "total_cases": 47322.0,
- "new_cases": 571.0,
- "new_cases_smoothed": 563.429,
- "total_deaths": 3929.0,
- "new_deaths": 33.0,
- "new_deaths_smoothed": 41.0,
- "total_cases_per_million": 2682.188,
- "new_cases_per_million": 32.364,
- "new_cases_smoothed_per_million": 31.935,
- "total_deaths_per_million": 222.694,
- "new_deaths_per_million": 1.87,
- "new_deaths_smoothed_per_million": 2.324,
- "new_tests": 1863.0,
- "total_tests": 92964.0,
- "total_tests_per_thousand": 5.269,
- "new_tests_per_thousand": 0.106,
- "new_tests_smoothed": 1526.0,
- "new_tests_smoothed_per_thousand": 0.086,
- "tests_units": "people tested",
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-17",
- "total_cases": 47943.0,
- "new_cases": 621.0,
- "new_cases_smoothed": 575.143,
- "total_deaths": 3970.0,
- "new_deaths": 41.0,
- "new_deaths_smoothed": 40.0,
- "total_cases_per_million": 2717.386,
- "new_cases_per_million": 35.198,
- "new_cases_smoothed_per_million": 32.599,
- "total_deaths_per_million": 225.018,
- "new_deaths_per_million": 2.324,
- "new_deaths_smoothed_per_million": 2.267,
- "new_tests": 1262.0,
- "total_tests": 94226.0,
- "total_tests_per_thousand": 5.341,
- "new_tests_per_thousand": 0.072,
- "new_tests_smoothed": 1547.0,
- "new_tests_smoothed_per_thousand": 0.088,
- "tests_units": "people tested",
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-18",
- "total_cases": 48490.0,
- "new_cases": 547.0,
- "new_cases_smoothed": 578.571,
- "total_deaths": 4007.0,
- "new_deaths": 37.0,
- "new_deaths_smoothed": 41.0,
- "total_cases_per_million": 2748.389,
- "new_cases_per_million": 31.004,
- "new_cases_smoothed_per_million": 32.793,
- "total_deaths_per_million": 227.115,
- "new_deaths_per_million": 2.097,
- "new_deaths_smoothed_per_million": 2.324,
- "new_tests": 1470.0,
- "total_tests": 95696.0,
- "total_tests_per_thousand": 5.424,
- "new_tests_per_thousand": 0.083,
- "new_tests_smoothed": 1443.0,
- "new_tests_smoothed_per_thousand": 0.082,
- "tests_units": "people tested",
- "stringency_index": 77.78
- },
- {
- "date": "2020-06-19",
- "total_cases": 49097.0,
- "new_cases": 607.0,
- "new_cases_smoothed": 665.286,
- "total_deaths": 4087.0,
- "new_deaths": 80.0,
- "new_deaths_smoothed": 52.429,
- "total_cases_per_million": 2782.794,
- "new_cases_per_million": 34.404,
- "new_cases_smoothed_per_million": 37.708,
- "total_deaths_per_million": 231.649,
- "new_deaths_per_million": 4.534,
- "new_deaths_smoothed_per_million": 2.972,
- "new_tests": 1879.0,
- "total_tests": 97575.0,
- "total_tests_per_thousand": 5.531,
- "new_tests_per_thousand": 0.107,
- "new_tests_smoothed": 1431.0,
- "new_tests_smoothed_per_thousand": 0.081,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-06-20",
- "total_cases": 49731.0,
- "new_cases": 634.0,
- "new_cases_smoothed": 564.714,
- "total_deaths": 4156.0,
- "new_deaths": 69.0,
- "new_deaths_smoothed": 46.857,
- "total_cases_per_million": 2818.729,
- "new_cases_per_million": 35.935,
- "new_cases_smoothed_per_million": 32.008,
- "total_deaths_per_million": 235.56,
- "new_deaths_per_million": 3.911,
- "new_deaths_smoothed_per_million": 2.656,
- "new_tests": 1466.0,
- "total_tests": 99041.0,
- "total_tests_per_thousand": 5.614,
- "new_tests_per_thousand": 0.083,
- "new_tests_smoothed": 1442.0,
- "new_tests_smoothed_per_thousand": 0.082,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-06-21",
- "total_cases": 50183.0,
- "new_cases": 452.0,
- "new_cases_smoothed": 546.714,
- "total_deaths": 4199.0,
- "new_deaths": 43.0,
- "new_deaths_smoothed": 46.429,
- "total_cases_per_million": 2844.348,
- "new_cases_per_million": 25.619,
- "new_cases_smoothed_per_million": 30.987,
- "total_deaths_per_million": 237.997,
- "new_deaths_per_million": 2.437,
- "new_deaths_smoothed_per_million": 2.632,
- "new_tests": 1227.0,
- "total_tests": 100268.0,
- "total_tests_per_thousand": 5.683,
- "new_tests_per_thousand": 0.07,
- "new_tests_smoothed": 1489.0,
- "new_tests_smoothed_per_thousand": 0.084,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-06-22",
- "total_cases": 50640.0,
- "new_cases": 457.0,
- "new_cases_smoothed": 555.571,
- "total_deaths": 4223.0,
- "new_deaths": 24.0,
- "new_deaths_smoothed": 46.714,
- "total_cases_per_million": 2870.25,
- "new_cases_per_million": 25.903,
- "new_cases_smoothed_per_million": 31.49,
- "total_deaths_per_million": 239.358,
- "new_deaths_per_million": 1.36,
- "new_deaths_smoothed_per_million": 2.648,
- "new_tests": 488.0,
- "total_tests": 100756.0,
- "total_tests_per_thousand": 5.711,
- "new_tests_per_thousand": 0.028,
- "new_tests_smoothed": 1379.0,
- "new_tests_smoothed_per_thousand": 0.078,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-06-23",
- "total_cases": 50640.0,
- "new_cases": 0.0,
- "new_cases_smoothed": 474.0,
- "total_deaths": 4223.0,
- "new_deaths": 0.0,
- "new_deaths_smoothed": 42.0,
- "total_cases_per_million": 2870.25,
- "new_cases_per_million": 0.0,
- "new_cases_smoothed_per_million": 26.866,
- "total_deaths_per_million": 239.358,
- "new_deaths_per_million": 0.0,
- "new_deaths_smoothed_per_million": 2.381,
- "new_tests": 2099.0,
- "total_tests": 102855.0,
- "total_tests_per_thousand": 5.83,
- "new_tests_per_thousand": 0.119,
- "new_tests_smoothed": 1413.0,
- "new_tests_smoothed_per_thousand": 0.08,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-06-24",
- "total_cases": 51643.0,
- "new_cases": 1003.0,
- "new_cases_smoothed": 528.571,
- "total_deaths": 4274.0,
- "new_deaths": 51.0,
- "new_deaths_smoothed": 43.429,
- "total_cases_per_million": 2927.1,
- "new_cases_per_million": 56.85,
- "new_cases_smoothed_per_million": 29.959,
- "total_deaths_per_million": 242.248,
- "new_deaths_per_million": 2.891,
- "new_deaths_smoothed_per_million": 2.462,
- "new_tests": 1717.0,
- "total_tests": 104572.0,
- "total_tests_per_thousand": 5.927,
- "new_tests_per_thousand": 0.097,
- "new_tests_smoothed": 1478.0,
- "new_tests_smoothed_per_thousand": 0.084,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-06-25",
- "total_cases": 52334.0,
- "new_cases": 691.0,
- "new_cases_smoothed": 549.143,
- "total_deaths": 4309.0,
- "new_deaths": 35.0,
- "new_deaths_smoothed": 43.143,
- "total_cases_per_million": 2966.265,
- "new_cases_per_million": 39.166,
- "new_cases_smoothed_per_million": 31.125,
- "total_deaths_per_million": 244.232,
- "new_deaths_per_million": 1.984,
- "new_deaths_smoothed_per_million": 2.445,
- "new_tests": 1904.0,
- "total_tests": 106476.0,
- "total_tests_per_thousand": 6.035,
- "new_tests_per_thousand": 0.108,
- "new_tests_smoothed": 1540.0,
- "new_tests_smoothed_per_thousand": 0.087,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-06-26",
- "total_cases": 53156.0,
- "new_cases": 822.0,
- "new_cases_smoothed": 579.857,
- "total_deaths": 4343.0,
- "new_deaths": 34.0,
- "new_deaths_smoothed": 36.571,
- "total_cases_per_million": 3012.856,
- "new_cases_per_million": 46.591,
- "new_cases_smoothed_per_million": 32.866,
- "total_deaths_per_million": 246.159,
- "new_deaths_per_million": 1.927,
- "new_deaths_smoothed_per_million": 2.073,
- "new_tests": 1995.0,
- "total_tests": 108471.0,
- "total_tests_per_thousand": 6.148,
- "new_tests_per_thousand": 0.113,
- "new_tests_smoothed": 1557.0,
- "new_tests_smoothed_per_thousand": 0.088,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-06-27",
- "total_cases": 53856.0,
- "new_cases": 700.0,
- "new_cases_smoothed": 589.286,
- "total_deaths": 4406.0,
- "new_deaths": 63.0,
- "new_deaths_smoothed": 35.714,
- "total_cases_per_million": 3052.532,
- "new_cases_per_million": 39.676,
- "new_cases_smoothed_per_million": 33.4,
- "total_deaths_per_million": 249.73,
- "new_deaths_per_million": 3.571,
- "new_deaths_smoothed_per_million": 2.024,
- "new_tests": 1468.0,
- "total_tests": 109939.0,
- "total_tests_per_thousand": 6.231,
- "new_tests_per_thousand": 0.083,
- "new_tests_smoothed": 1557.0,
- "new_tests_smoothed_per_thousand": 0.088,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-06-28",
- "total_cases": 54574.0,
- "new_cases": 718.0,
- "new_cases_smoothed": 627.286,
- "total_deaths": 4424.0,
- "new_deaths": 18.0,
- "new_deaths_smoothed": 32.143,
- "total_cases_per_million": 3093.228,
- "new_cases_per_million": 40.696,
- "new_cases_smoothed_per_million": 35.554,
- "total_deaths_per_million": 250.75,
- "new_deaths_per_million": 1.02,
- "new_deaths_smoothed_per_million": 1.822,
- "new_tests": 1584.0,
- "total_tests": 111523.0,
- "total_tests_per_thousand": 6.321,
- "new_tests_per_thousand": 0.09,
- "new_tests_smoothed": 1608.0,
- "new_tests_smoothed_per_thousand": 0.091,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-06-29",
- "total_cases": 55255.0,
- "new_cases": 681.0,
- "new_cases_smoothed": 659.286,
- "total_deaths": 4429.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 29.429,
- "total_cases_per_million": 3131.826,
- "new_cases_per_million": 38.599,
- "new_cases_smoothed_per_million": 37.368,
- "total_deaths_per_million": 251.034,
- "new_deaths_per_million": 0.283,
- "new_deaths_smoothed_per_million": 1.668,
- "new_tests": 1322.0,
- "total_tests": 112845.0,
- "total_tests_per_thousand": 6.396,
- "new_tests_per_thousand": 0.075,
- "new_tests_smoothed": 1727.0,
- "new_tests_smoothed_per_thousand": 0.098,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-06-30",
- "total_cases": 55665.0,
- "new_cases": 410.0,
- "new_cases_smoothed": 717.857,
- "total_deaths": 4502.0,
- "new_deaths": 73.0,
- "new_deaths_smoothed": 39.857,
- "total_cases_per_million": 3155.065,
- "new_cases_per_million": 23.239,
- "new_cases_smoothed_per_million": 40.688,
- "total_deaths_per_million": 255.171,
- "new_deaths_per_million": 4.138,
- "new_deaths_smoothed_per_million": 2.259,
- "new_tests": 2065.0,
- "total_tests": 114910.0,
- "total_tests_per_thousand": 6.513,
- "new_tests_per_thousand": 0.117,
- "new_tests_smoothed": 1722.0,
- "new_tests_smoothed_per_thousand": 0.098,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-01",
- "total_cases": 56432.0,
- "new_cases": 767.0,
- "new_cases_smoothed": 684.143,
- "total_deaths": 4527.0,
- "new_deaths": 25.0,
- "new_deaths_smoothed": 36.143,
- "total_cases_per_million": 3198.538,
- "new_cases_per_million": 43.473,
- "new_cases_smoothed_per_million": 38.777,
- "total_deaths_per_million": 256.588,
- "new_deaths_per_million": 1.417,
- "new_deaths_smoothed_per_million": 2.049,
- "new_tests": 2693.0,
- "total_tests": 117603.0,
- "total_tests_per_thousand": 6.666,
- "new_tests_per_thousand": 0.153,
- "new_tests_smoothed": 1862.0,
- "new_tests_smoothed_per_thousand": 0.106,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-02",
- "total_cases": 58257.0,
- "new_cases": 1825.0,
- "new_cases_smoothed": 846.143,
- "total_deaths": 4576.0,
- "new_deaths": 49.0,
- "new_deaths_smoothed": 38.143,
- "total_cases_per_million": 3301.978,
- "new_cases_per_million": 103.44,
- "new_cases_smoothed_per_million": 47.959,
- "total_deaths_per_million": 259.365,
- "new_deaths_per_million": 2.777,
- "new_deaths_smoothed_per_million": 2.162,
- "new_tests": 2743.0,
- "total_tests": 120346.0,
- "total_tests_per_thousand": 6.821,
- "new_tests_per_thousand": 0.155,
- "new_tests_smoothed": 1981.0,
- "new_tests_smoothed_per_thousand": 0.112,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-03",
- "total_cases": 59468.0,
- "new_cases": 1211.0,
- "new_cases_smoothed": 901.714,
- "total_deaths": 4639.0,
- "new_deaths": 63.0,
- "new_deaths_smoothed": 42.286,
- "total_cases_per_million": 3370.617,
- "new_cases_per_million": 68.639,
- "new_cases_smoothed_per_million": 51.109,
- "total_deaths_per_million": 262.936,
- "new_deaths_per_million": 3.571,
- "new_deaths_smoothed_per_million": 2.397,
- "new_tests": 2285.0,
- "total_tests": 122631.0,
- "total_tests_per_thousand": 6.951,
- "new_tests_per_thousand": 0.13,
- "new_tests_smoothed": 2023.0,
- "new_tests_smoothed_per_thousand": 0.115,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-04",
- "total_cases": 60657.0,
- "new_cases": 1189.0,
- "new_cases_smoothed": 971.571,
- "total_deaths": 4700.0,
- "new_deaths": 61.0,
- "new_deaths_smoothed": 42.0,
- "total_cases_per_million": 3438.009,
- "new_cases_per_million": 67.392,
- "new_cases_smoothed_per_million": 55.068,
- "total_deaths_per_million": 266.394,
- "new_deaths_per_million": 3.457,
- "new_deaths_smoothed_per_million": 2.381,
- "new_tests": 2104.0,
- "total_tests": 124735.0,
- "total_tests_per_thousand": 7.07,
- "new_tests_per_thousand": 0.119,
- "new_tests_smoothed": 2114.0,
- "new_tests_smoothed_per_thousand": 0.12,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-05",
- "total_cases": 61535.0,
- "new_cases": 878.0,
- "new_cases_smoothed": 994.429,
- "total_deaths": 4769.0,
- "new_deaths": 69.0,
- "new_deaths_smoothed": 49.286,
- "total_cases_per_million": 3487.774,
- "new_cases_per_million": 49.765,
- "new_cases_smoothed_per_million": 56.364,
- "total_deaths_per_million": 270.305,
- "new_deaths_per_million": 3.911,
- "new_deaths_smoothed_per_million": 2.793,
- "new_tests": 999.0,
- "total_tests": 125734.0,
- "total_tests_per_thousand": 7.127,
- "new_tests_per_thousand": 0.057,
- "new_tests_smoothed": 2030.0,
- "new_tests_smoothed_per_thousand": 0.115,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-06",
- "total_cases": 61958.0,
- "new_cases": 423.0,
- "new_cases_smoothed": 957.571,
- "total_deaths": 4781.0,
- "new_deaths": 12.0,
- "new_deaths_smoothed": 50.286,
- "total_cases_per_million": 3511.749,
- "new_cases_per_million": 23.975,
- "new_cases_smoothed_per_million": 54.275,
- "total_deaths_per_million": 270.985,
- "new_deaths_per_million": 0.68,
- "new_deaths_smoothed_per_million": 2.85,
- "new_tests": 965.0,
- "total_tests": 126699.0,
- "total_tests_per_thousand": 7.181,
- "new_tests_per_thousand": 0.055,
- "new_tests_smoothed": 1979.0,
- "new_tests_smoothed_per_thousand": 0.112,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-07",
- "total_cases": 62380.0,
- "new_cases": 422.0,
- "new_cases_smoothed": 959.286,
- "total_deaths": 4821.0,
- "new_deaths": 40.0,
- "new_deaths_smoothed": 45.571,
- "total_cases_per_million": 3535.668,
- "new_cases_per_million": 23.919,
- "new_cases_smoothed_per_million": 54.372,
- "total_deaths_per_million": 273.252,
- "new_deaths_per_million": 2.267,
- "new_deaths_smoothed_per_million": 2.583,
- "new_tests": 2126.0,
- "total_tests": 128825.0,
- "total_tests_per_thousand": 7.302,
- "new_tests_per_thousand": 0.121,
- "new_tests_smoothed": 1988.0,
- "new_tests_smoothed_per_thousand": 0.113,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-08",
- "total_cases": 63245.0,
- "new_cases": 865.0,
- "new_cases_smoothed": 973.286,
- "total_deaths": 4873.0,
- "new_deaths": 52.0,
- "new_deaths_smoothed": 49.429,
- "total_cases_per_million": 3584.696,
- "new_cases_per_million": 49.028,
- "new_cases_smoothed_per_million": 55.165,
- "total_deaths_per_million": 276.199,
- "new_deaths_per_million": 2.947,
- "new_deaths_smoothed_per_million": 2.802,
- "new_tests": 2397.0,
- "total_tests": 131222.0,
- "total_tests_per_thousand": 7.438,
- "new_tests_per_thousand": 0.136,
- "new_tests_smoothed": 1946.0,
- "new_tests_smoothed_per_thousand": 0.11,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-09",
- "total_cases": 64221.0,
- "new_cases": 976.0,
- "new_cases_smoothed": 852.0,
- "total_deaths": 4900.0,
- "new_deaths": 27.0,
- "new_deaths_smoothed": 46.286,
- "total_cases_per_million": 3640.015,
- "new_cases_per_million": 55.319,
- "new_cases_smoothed_per_million": 48.291,
- "total_deaths_per_million": 277.73,
- "new_deaths_per_million": 1.53,
- "new_deaths_smoothed_per_million": 2.623,
- "new_tests": 1985.0,
- "total_tests": 133207.0,
- "total_tests_per_thousand": 7.55,
- "new_tests_per_thousand": 0.113,
- "new_tests_smoothed": 1837.0,
- "new_tests_smoothed_per_thousand": 0.104,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-10",
- "total_cases": 65018.0,
- "new_cases": 797.0,
- "new_cases_smoothed": 792.857,
- "total_deaths": 4939.0,
- "new_deaths": 39.0,
- "new_deaths_smoothed": 42.857,
- "total_cases_per_million": 3685.188,
- "new_cases_per_million": 45.174,
- "new_cases_smoothed_per_million": 44.939,
- "total_deaths_per_million": 279.94,
- "new_deaths_per_million": 2.211,
- "new_deaths_smoothed_per_million": 2.429,
- "new_tests": 1604.0,
- "total_tests": 134811.0,
- "total_tests_per_thousand": 7.641,
- "new_tests_per_thousand": 0.091,
- "new_tests_smoothed": 1740.0,
- "new_tests_smoothed_per_thousand": 0.099,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-11",
- "total_cases": 65801.0,
- "new_cases": 783.0,
- "new_cases_smoothed": 734.857,
- "total_deaths": 4983.0,
- "new_deaths": 44.0,
- "new_deaths_smoothed": 40.429,
- "total_cases_per_million": 3729.568,
- "new_cases_per_million": 44.38,
- "new_cases_smoothed_per_million": 41.651,
- "total_deaths_per_million": 282.434,
- "new_deaths_per_million": 2.494,
- "new_deaths_smoothed_per_million": 2.291,
- "new_tests": 2608.0,
- "total_tests": 137419.0,
- "total_tests_per_thousand": 7.789,
- "new_tests_per_thousand": 0.148,
- "new_tests_smoothed": 1812.0,
- "new_tests_smoothed_per_thousand": 0.103,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-12",
- "total_cases": 67209.0,
- "new_cases": 1408.0,
- "new_cases_smoothed": 810.571,
- "total_deaths": 5031.0,
- "new_deaths": 48.0,
- "new_deaths_smoothed": 37.429,
- "total_cases_per_million": 3809.373,
- "new_cases_per_million": 79.805,
- "new_cases_smoothed_per_million": 45.943,
- "total_deaths_per_million": 285.155,
- "new_deaths_per_million": 2.721,
- "new_deaths_smoothed_per_million": 2.121,
- "new_tests": 1852.0,
- "total_tests": 139271.0,
- "total_tests_per_thousand": 7.894,
- "new_tests_per_thousand": 0.105,
- "new_tests_smoothed": 1934.0,
- "new_tests_smoothed_per_thousand": 0.11,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-13",
- "total_cases": 67870.0,
- "new_cases": 661.0,
- "new_cases_smoothed": 844.571,
- "total_deaths": 5047.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 38.0,
- "total_cases_per_million": 3846.838,
- "new_cases_per_million": 37.465,
- "new_cases_smoothed_per_million": 47.87,
- "total_deaths_per_million": 286.061,
- "new_deaths_per_million": 0.907,
- "new_deaths_smoothed_per_million": 2.154,
- "new_tests": 1331.0,
- "total_tests": 140602.0,
- "total_tests_per_thousand": 7.969,
- "new_tests_per_thousand": 0.075,
- "new_tests_smoothed": 1986.0,
- "new_tests_smoothed_per_thousand": 0.113,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-14",
- "total_cases": 68459.0,
- "new_cases": 589.0,
- "new_cases_smoothed": 868.429,
- "total_deaths": 5063.0,
- "new_deaths": 16.0,
- "new_deaths_smoothed": 34.571,
- "total_cases_per_million": 3880.223,
- "new_cases_per_million": 33.384,
- "new_cases_smoothed_per_million": 49.222,
- "total_deaths_per_million": 286.968,
- "new_deaths_per_million": 0.907,
- "new_deaths_smoothed_per_million": 1.959,
- "new_tests": 2388.0,
- "total_tests": 142990.0,
- "total_tests_per_thousand": 8.105,
- "new_tests_per_thousand": 0.135,
- "new_tests_smoothed": 2024.0,
- "new_tests_smoothed_per_thousand": 0.115,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-15",
- "total_cases": 69570.0,
- "new_cases": 1111.0,
- "new_cases_smoothed": 903.571,
- "total_deaths": 5130.0,
- "new_deaths": 67.0,
- "new_deaths_smoothed": 36.714,
- "total_cases_per_million": 3943.194,
- "new_cases_per_million": 62.971,
- "new_cases_smoothed_per_million": 51.214,
- "total_deaths_per_million": 290.766,
- "new_deaths_per_million": 3.798,
- "new_deaths_smoothed_per_million": 2.081,
- "new_tests": 2217.0,
- "total_tests": 145207.0,
- "total_tests_per_thousand": 8.23,
- "new_tests_per_thousand": 0.126,
- "new_tests_smoothed": 1998.0,
- "new_tests_smoothed_per_thousand": 0.113,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-16",
- "total_cases": 70329.0,
- "new_cases": 759.0,
- "new_cases_smoothed": 872.571,
- "total_deaths": 5158.0,
- "new_deaths": 28.0,
- "new_deaths_smoothed": 36.857,
- "total_cases_per_million": 3986.213,
- "new_cases_per_million": 43.02,
- "new_cases_smoothed_per_million": 49.457,
- "total_deaths_per_million": 292.353,
- "new_deaths_per_million": 1.587,
- "new_deaths_smoothed_per_million": 2.089,
- "new_tests": 2786.0,
- "total_tests": 147993.0,
- "total_tests_per_thousand": 8.388,
- "new_tests_per_thousand": 0.158,
- "new_tests_smoothed": 2112.0,
- "new_tests_smoothed_per_thousand": 0.12,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-17",
- "total_cases": 71365.0,
- "new_cases": 1036.0,
- "new_cases_smoothed": 906.714,
- "total_deaths": 5207.0,
- "new_deaths": 49.0,
- "new_deaths_smoothed": 38.286,
- "total_cases_per_million": 4044.933,
- "new_cases_per_million": 58.72,
- "new_cases_smoothed_per_million": 51.392,
- "total_deaths_per_million": 295.13,
- "new_deaths_per_million": 2.777,
- "new_deaths_smoothed_per_million": 2.17,
- "new_tests": 2368.0,
- "total_tests": 150361.0,
- "total_tests_per_thousand": 8.522,
- "new_tests_per_thousand": 0.134,
- "new_tests_smoothed": 2221.0,
- "new_tests_smoothed_per_thousand": 0.126,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-18",
- "total_cases": 72444.0,
- "new_cases": 1079.0,
- "new_cases_smoothed": 949.0,
- "total_deaths": 5250.0,
- "new_deaths": 43.0,
- "new_deaths_smoothed": 38.143,
- "total_cases_per_million": 4106.09,
- "new_cases_per_million": 61.157,
- "new_cases_smoothed_per_million": 53.789,
- "total_deaths_per_million": 297.567,
- "new_deaths_per_million": 2.437,
- "new_deaths_smoothed_per_million": 2.162,
- "new_tests": 2087.0,
- "total_tests": 152448.0,
- "total_tests_per_thousand": 8.641,
- "new_tests_per_thousand": 0.118,
- "new_tests_smoothed": 2147.0,
- "new_tests_smoothed_per_thousand": 0.122,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-19",
- "total_cases": 73382.0,
- "new_cases": 938.0,
- "new_cases_smoothed": 881.857,
- "total_deaths": 5282.0,
- "new_deaths": 32.0,
- "new_deaths_smoothed": 35.857,
- "total_cases_per_million": 4159.256,
- "new_cases_per_million": 53.165,
- "new_cases_smoothed_per_million": 49.983,
- "total_deaths_per_million": 299.381,
- "new_deaths_per_million": 1.814,
- "new_deaths_smoothed_per_million": 2.032,
- "new_tests": 1702.0,
- "total_tests": 154150.0,
- "total_tests_per_thousand": 8.737,
- "new_tests_per_thousand": 0.096,
- "new_tests_smoothed": 2126.0,
- "new_tests_smoothed_per_thousand": 0.121,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-20",
- "total_cases": 74013.0,
- "new_cases": 631.0,
- "new_cases_smoothed": 877.571,
- "total_deaths": 5313.0,
- "new_deaths": 31.0,
- "new_deaths_smoothed": 38.0,
- "total_cases_per_million": 4195.021,
- "new_cases_per_million": 35.765,
- "new_cases_smoothed_per_million": 49.74,
- "total_deaths_per_million": 301.138,
- "new_deaths_per_million": 1.757,
- "new_deaths_smoothed_per_million": 2.154,
- "new_tests": 1618.0,
- "total_tests": 155768.0,
- "total_tests_per_thousand": 8.829,
- "new_tests_per_thousand": 0.092,
- "new_tests_smoothed": 2167.0,
- "new_tests_smoothed_per_thousand": 0.123,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-21",
- "total_cases": 74620.0,
- "new_cases": 607.0,
- "new_cases_smoothed": 880.143,
- "total_deaths": 5318.0,
- "new_deaths": 5.0,
- "new_deaths_smoothed": 36.429,
- "total_cases_per_million": 4229.425,
- "new_cases_per_million": 34.404,
- "new_cases_smoothed_per_million": 49.886,
- "total_deaths_per_million": 301.422,
- "new_deaths_per_million": 0.283,
- "new_deaths_smoothed_per_million": 2.065,
- "new_tests": 3384.0,
- "total_tests": 159152.0,
- "total_tests_per_thousand": 9.021,
- "new_tests_per_thousand": 0.192,
- "new_tests_smoothed": 2309.0,
- "new_tests_smoothed_per_thousand": 0.131,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-22",
- "total_cases": 76217.0,
- "new_cases": 1597.0,
- "new_cases_smoothed": 949.571,
- "total_deaths": 5366.0,
- "new_deaths": 48.0,
- "new_deaths_smoothed": 33.714,
- "total_cases_per_million": 4319.942,
- "new_cases_per_million": 90.517,
- "new_cases_smoothed_per_million": 53.821,
- "total_deaths_per_million": 304.142,
- "new_deaths_per_million": 2.721,
- "new_deaths_smoothed_per_million": 1.911,
- "new_tests": 2291.0,
- "total_tests": 161443.0,
- "total_tests_per_thousand": 9.151,
- "new_tests_per_thousand": 0.13,
- "new_tests_smoothed": 2319.0,
- "new_tests_smoothed_per_thousand": 0.131,
- "tests_units": "people tested",
- "stringency_index": 74.07
- },
- {
- "date": "2020-07-23",
- "total_cases": 77257.0,
- "new_cases": 1040.0,
- "new_cases_smoothed": 989.714,
- "total_deaths": 5418.0,
- "new_deaths": 52.0,
- "new_deaths_smoothed": 37.143,
- "total_cases_per_million": 4378.889,
- "new_cases_per_million": 58.947,
- "new_cases_smoothed_per_million": 56.097,
- "total_deaths_per_million": 307.09,
- "new_deaths_per_million": 2.947,
- "new_deaths_smoothed_per_million": 2.105,
- "new_tests": 2155.0,
- "total_tests": 163598.0,
- "total_tests_per_thousand": 9.273,
- "new_tests_per_thousand": 0.122,
- "new_tests_smoothed": 2229.0,
- "new_tests_smoothed_per_thousand": 0.126,
- "tests_units": "people tested",
- "stringency_index": 75.46
- },
- {
- "date": "2020-07-24",
- "total_cases": 78148.0,
- "new_cases": 891.0,
- "new_cases_smoothed": 969.0,
- "total_deaths": 5439.0,
- "new_deaths": 21.0,
- "new_deaths_smoothed": 33.143,
- "total_cases_per_million": 4429.39,
- "new_cases_per_million": 50.501,
- "new_cases_smoothed_per_million": 54.922,
- "total_deaths_per_million": 308.28,
- "new_deaths_per_million": 1.19,
- "new_deaths_smoothed_per_million": 1.879,
- "new_tests": 2114.0,
- "total_tests": 165712.0,
- "total_tests_per_thousand": 9.392,
- "new_tests_per_thousand": 0.12,
- "new_tests_smoothed": 2193.0,
- "new_tests_smoothed_per_thousand": 0.124,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-07-25",
- "total_cases": 79049.0,
- "new_cases": 901.0,
- "new_cases_smoothed": 943.571,
- "total_deaths": 5468.0,
- "new_deaths": 29.0,
- "new_deaths_smoothed": 31.143,
- "total_cases_per_million": 4480.459,
- "new_cases_per_million": 51.068,
- "new_cases_smoothed_per_million": 53.481,
- "total_deaths_per_million": 309.924,
- "new_deaths_per_million": 1.644,
- "new_deaths_smoothed_per_million": 1.765,
- "new_tests": 2070.0,
- "total_tests": 167782.0,
- "total_tests_per_thousand": 9.51,
- "new_tests_per_thousand": 0.117,
- "new_tests_smoothed": 2191.0,
- "new_tests_smoothed_per_thousand": 0.124,
- "tests_units": "people tested",
- "stringency_index": 72.69
- },
- {
- "date": "2020-07-26",
- "total_cases": 80036.0,
- "new_cases": 987.0,
- "new_cases_smoothed": 950.571,
- "total_deaths": 5507.0,
- "new_deaths": 39.0,
- "new_deaths_smoothed": 32.143,
- "total_cases_per_million": 4536.401,
- "new_cases_per_million": 55.943,
- "new_cases_smoothed_per_million": 53.878,
- "total_deaths_per_million": 312.134,
- "new_deaths_per_million": 2.211,
- "new_deaths_smoothed_per_million": 1.822,
- "new_tests": 1823.0,
- "total_tes