大家好,作为一名互联网行业的小白,写博客只是为了巩固自己学习的知识,但由于水平有限,博客中难免会有一些错误出现,有不妥之处恳请各位大佬指点一二!
博客主页:链接: https://blog.csdn.net/weixin_52720197?spm=1018.2118.3001.5343

博文声明:该项目参考B站视频:https://www.bilibili.com/video/BV177411j7qJ
本人基于原项目做了补充和完善

1.项目准备

1.1.简介

基于Python+Flask+Echarts打造一个疫情监控系统,涉及技术有:

Python爬虫
使用Python与Mysql数据库交互
使用Flask构建Web项目
基于Echarts数据可视化展示
在linux上部署Web项目及爬虫
项目架构

数据获取(爬虫)>>数据持久化(MySQL)>>flask搭建Web后台>>数据可视化(h5+echarts)

1.2.项目环境

Python 3.+

MySQL

PyCharm(Python IDE)

Jupyter notebook(Python IDE)

Hbuilder(前端IDE,https://www.dcloud.io/hbuilderx.html)

Linux主机(后期项目部署)

1.2.1.Jupyter Notebook

Jupyter Notebook(此前被称为IPython notebook)是一个基于网页的用于交互计算的应用程序,在数据可续额领域很受欢迎。

简言之,notebook是以网页的形式打开,可以在code类型单元格中直接编写代码和运行代码,代码的运行结果也会直接在代码块下显示。如在编程过程中需要编写说明文档,可在md类型的单元格中直接编写,便于及时的说明和解释。

安装

pip install notebook

启动

jupyter notebook

2.数据获取

2.1.爬虫概述

爬虫,就是给网站发起请求,并从响应中提取需要的数据自动化程序

  1. 发起请求,获取响应

    通过http库,对目标站点进行请求。等同于自己打开浏览器,输入网址

    常用库:urllib、urllib3、requests

    服务器会返回请求的内容,一般为:HTML、二进制文件(视频、音频)、文档、JSON字符串等

  2. 解析内容

    寻找自己需要的信息,就是利用正则表达式或者其他库提取目标信息

常用库:re、beautifulsoup4
3. 保存数据
将解析得到的数据持久化到文件或者数据库中

2.2.request发送请求

2.2.1.demo

  1. 先安装:pip install requests

  2. requests.get()

import requestsurl="http://www.baidu.com"
# 发起请求
res=requests.get(url)# 查看编码
print(res.encoding)
# 查看请求头
print(res.headers)
# 查看访问的地址
print(res.url)

res.headers返回结果里面 如果没有Content-Type ,那么encoding就是utf-8 ,否则 如果设置了charset,就以设置的为准,否则就是ISO-8859-1

查看网页html源码

print(res.text)

发现出现了乱码,用res.encoding="utf-8"来解决

res.encoding="utf-8"
print(res.text)


解决反爬

同样,这里也把url改成点评

import requestsurl="http://www.dianping.com"
header={"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36"
}
res=requests.get(url,headers=header)print(res.encoding)
print(res.headers)
print(res.url)
print(res.status_code)  #此时的状态码是200说明可以正常访问了

2.3.爬取腾讯疫情数据

  1. 有了爬虫基础后,我们可以自行去全国各地的卫健委网站上爬取数据,不过部分网站反爬虫手段很高明,需要更专业的反爬手段

  2. 我们也可以去各大平台直接爬取最终数据,比如:
    https://voice.baidu.com/act/newpneumonia/newpneumonia/?from=osari_pc_1

    https://news.qq.com//zt2020/page/feiyan.htm

    浏览腾讯的发现有意外收获

    有全国的数据,我们可以直接拿来使用

这里有个问题:如果腾讯的大兄弟偷懒的话怎么办?

解:打开google Browser开发者工具,network>>js(一般js、json格式的都在这里面)>>找get开头的(一般这种请求的数据都是以get命名开头);

一个一个筛选,找到是这个:

import requests
url="https://view.inews.qq.com/g2/getOnsInfo?name=disease_h5"
#使用requests请求
res=requests.get(url)
print(res.text)


执行返回json格式的数据

拿到json格式的数据后我们把它转换为字典

import json
d=json.loads(res.text)
print(d)


里面主要两个:ret、data

打印一下data

看看data的数据类型是什么

print(type(d["data"]))


再用json模块加载data里的数据到新的变量data_all(即str加载成字典格式)

data_all=json.loads(d["data"])
print(type(data_all))


看一下这个字典格式的data里面有什么

data_all.keys()


打印一下前几个看看怎么样

print(data_all["lastUpdateTime"])  # 上次数据更新时间
print(data_all["chinaTotal"])  # 当前我国汇总数据
print(data_all["chinaAdd"])  # 新增数据


看一下areaTree

print(data_all["areaTree"])

print(len(data_all["areaTree"]))


可以看到,长度是一,只有中国(之前有其他国家的,腾讯后台删除了)

看一下有几个key

# [0]代表查看第一个数据
print(data_all["areaTree"][0].keys())


分别查看

print(data_all["areaTree"][0]["name"])
print(data_all["areaTree"][0]["today"])
print(data_all["areaTree"][0]["total"])


children比较长,另起一个单元格

print(data_all["areaTree"][0]["children"])


#写个循环遍历到省级
for i in data_all["areaTree"][0]["children"]:print(i["name"]) #拿到各省名字


依次类推可以遍历找出各市级县级。。

下面附上主要字段的数据结构

下面贴上完整的分析代码

在这里插入代码片

2.3.1.数据存储

创建数据库cov,然后建两张表

history 表存储每日总数据

CREATE TABLE `history` (
`ds` datetime NOT NULL COMMENT '日期',
`confirm` int(11) DEFAULT NULL COMMENT '累计确诊',
`confirm_add` int(11) DEFAULT NULL COMMENT '当日新增确诊',
`suspect` int(11) DEFAULT NULL COMMENT '剩余疑似',
`suspect_add` int(11) DEFAULT NULL COMMENT '当日新增疑似',
`heal` int(11) DEFAULT NULL COMMENT '累计治愈',
`heal_add` int(11) DEFAULT NULL COMMENT '当日新增治愈',
`dead` int(11) DEFAULT NULL COMMENT '累计死亡',
`dead_add` int(11) DEFAULT NULL COMMENT '当日新增死亡',
PRIMARY KEY (`ds`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

details 表存储每日详细数据

CREATE TABLE `details` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`update_time` datetime DEFAULT NULL COMMENT '数据最后更新时间',
`province` varchar(50) DEFAULT NULL COMMENT '省',
`city` varchar(50) DEFAULT NULL COMMENT '市',
`confirm` int(11) DEFAULT NULL COMMENT '累计确诊',
`confirm_add` int(11) DEFAULT NULL COMMENT '新增确诊',
`heal` int(11) DEFAULT NULL COMMENT '累计治愈',
`dead` int(11) DEFAULT NULL COMMENT '累计死亡',
PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

使用 pymysql 模块与数据库交互

安装: pip install pymysql

① 建立连接 ② 创建游标 ③ 执行操作 ④ 关闭连接

2.3.1.1.pymysql基础&测试

随便插入一条数据测试一下

插入没报错的话,下面进行查询测试

存储&操作

def get_conn():""":return: 连接,游标"""# 创建连接conn = pymysql.connect(host="127.0.0.1",user="root",password="123456",db="cov",charset="utf8")# 创建游标cursor = conn.cursor()  # 执行完毕返回的结果集默认以元组显示return conn, cursordef close_conn(conn, cursor):if cursor:cursor.close()if conn:conn.close()
def update_details():"""更新 details 表:return:"""cursor = Noneconn = Nonetry:li = get_tencent_data()[1]  #  0 是历史数据字典,1 最新详细数据列表conn, cursor = get_conn()sql = "insert into details(update_time,province,city,confirm,confirm_add,heal,dead) values(%s,%s,%s,%s,%s,%s,%s)"sql_query = 'select %s=(select update_time from details order by id desc limit 1)' #对比当前最大时间戳cursor.execute(sql_query,li[0][0])if not cursor.fetchone()[0]:print(f"{time.asctime()}开始更新最新数据")for item in li:cursor.execute(sql, item)conn.commit()  # 提交事务 update delete insert操作print(f"{time.asctime()}更新最新数据完毕")else:print(f"{time.asctime()}已是最新数据!")except:traceback.print_exc()finally:close_conn(conn, cursor)
def insert_history():"""插入历史数据:return:"""cursor = Noneconn = Nonetry:dic = get_tencent_data()[0]  # 0 是历史数据字典,1 最新详细数据列表print(f"{time.asctime()}开始插入历史数据")conn, cursor = get_conn()sql = "insert into history values(%s,%s,%s,%s,%s,%s,%s,%s,%s)"for k, v in dic.items():# item 格式 {'2020-01-13': {'confirm': 41, 'suspect': 0, 'heal': 0, 'dead': 1}cursor.execute(sql, [k, v.get("confirm"), v.get("confirm_add"), v.get("suspect"),v.get("suspect_add"), v.get("heal"), v.get("heal_add"),v.get("dead"), v.get("dead_add")])conn.commit()  # 提交事务 update delete insert操作print(f"{time.asctime()}插入历史数据完毕")except:traceback.print_exc()finally:close_conn(conn, cursor)
def update_history():"""更新历史数据:return:"""cursor = Noneconn = Nonetry:dic = get_tencent_data()[0]  #  0 是历史数据字典,1 最新详细数据列表print(f"{time.asctime()}开始更新历史数据")conn, cursor = get_conn()sql = "insert into history values(%s,%s,%s,%s,%s,%s,%s,%s,%s)"sql_query = "select confirm from history where ds=%s"for k, v in dic.items():# item 格式 {'2020-01-13': {'confirm': 41, 'suspect': 0, 'heal': 0, 'dead': 1}if not cursor.execute(sql_query, k):cursor.execute(sql, [k, v.get("confirm"), v.get("confirm_add"), v.get("suspect"),v.get("suspect_add"), v.get("heal"), v.get("heal_add"),v.get("dead"), v.get("dead_add")])conn.commit()  # 提交事务 update delete insert操作print(f"{time.asctime()}历史数据更新完毕")except:traceback.print_exc()finally:close_conn(conn, cursor)
#插入历史数据
insert_history()>>>
Mon Feb 17 01:43:37 2020开始插入历史数据
Mon Feb 17 01:43:40 2020插入历史数据完毕

这里在2020三月份后会发现你的history表为空,只有当日的数据(details表中)可以获取,是因为腾讯把东西挪地方了,我下面又重新爬了一遍,

还是按照上次教的步骤来,先分析一遍然后上完整源码

这次把1月13-3月24的历史数据搞了过来,日后有小伙伴使用时如果爬不到的话可以将下面这个历史数据和上面爬取那个结合起来赋给一个变量直接拿去做可视化

{"ret":0,"data":"{\"chinaDayList\":[{\"confirm\":41,\"suspect\":0,\"dead\":1,\"heal\":0,\"nowConfirm\":0,\"nowSevere\":0,\"importedCase\":0,\"deadRate\":\"2.4\",\"healRate\":\"0.0\",\"date\":\"01.13\"},{\"confirm\":41,\"suspect\":0,\"dead\":1,\"heal\":0,\"nowConfirm\":0,\"nowSevere\":0,\"importedCase\":0,\"deadRate\":\"2.4\",\"healRate\":\"0.0\",\"date\":\"01.14\"},{\"confirm\":41,\"suspect\":0,\"dead\":2,\"heal\":5,\"nowConfirm\":0,\"nowSevere\":0,\"importedCase\":0,\"deadRate\":\"4.9\",\"healRate\":\"12.2\",\"date\":\"01.15\"},{\"confirm\":45,\"suspect\":0,\"dead\":2,\"heal\":8,\"nowConfirm\":0,\"nowSevere\":0,\"importedCase\":0,\"deadRate\":\"4.4\",\"healRate\":\"17.8\",\"date\":\"01.16\"},{\"confirm\":62,\"suspect\":0,\"dead\":2,\"heal\":12,\"nowConfirm\":0,\"nowSevere\":0,\"importedCase\":0,\"deadRate\":\"3.2\",\"healRate\":\"19.4\",\"date\":\"01.17\"},{\"confirm\":198,\"suspect\":0,\"dead\":3,\"heal\":17,\"nowConfirm\":0,\"nowSevere\":0,\"importedCase\":0,\"deadRate\":\"1.5\",\"healRate\":\"8.6\",\"date\":\"01.18\"},{\"confirm\":275,\"suspect\":0,\"dead\":4,\"heal\":18,\"nowConfirm\":0,\"nowSevere\":0,\"importedCase\":0,\"deadRate\":\"1.5\",\"healRate\":\"6.5\",\"date\":\"01.19\"},{\"confirm\":291,\"suspect\":54,\"dead\":6,\"heal\":25,\"nowConfirm\":291,\"nowSevere\":0,\"importedCase\":0,\"deadRate\":\"2.1\",\"healRate\":\"8.6\",\"date\":\"01.20\"},{\"confirm\":440,\"suspect\":37,\"dead\":9,\"heal\":25,\"nowConfirm\":431,\"nowSevere\":0,\"importedCase\":0,\"deadRate\":\"2.0\",\"healRate\":\"5.7\",\"date\":\"01.21\"},{\"confirm\":574,\"suspect\":393,\"dead\":17,\"heal\":25,\"nowConfirm\":557,\"nowSevere\":0,\"importedCase\":0,\"deadRate\":\"3.0\",\"healRate\":\"4.4\",\"date\":\"01.22\"},{\"confirm\":835,\"suspect\":1072,\"dead\":25,\"heal\":34,\"nowConfirm\":776,\"nowSevere\":0,\"importedCase\":0,\"deadRate\":\"3.0\",\"healRate\":\"4.1\",\"date\":\"01.23\"},{\"confirm\":1297,\"suspect\":1965,\"dead\":41,\"heal\":38,\"nowConfirm\":1218,\"nowSevere\":0,\"importedCase\":0,\"deadRate\":\"3.2\",\"healRate\":\"2.9\",\"date\":\"01.24\"},{\"confirm\":1985,\"suspect\":2684,\"dead\":56,\"heal\":49,\"nowConfirm\":1880,\"nowSevere\":324,\"importedCase\":0,\"deadRate\":\"2.8\",\"healRate\":\"2.5\",\"date\":\"01.25\"},{\"confirm\":2761,\"suspect\":5794,\"dead\":80,\"heal\":51,\"nowConfirm\":2630,\"nowSevere\":461,\"importedCase\":0,\"deadRate\":\"2.9\",\"healRate\":\"1.8\",\"date\":\"01.26\"},{\"confirm\":4535,\"suspect\":6973,\"dead\":106,\"heal\":60,\"nowConfirm\":4369,\"nowSevere\":976,\"importedCase\":0,\"deadRate\":\"2.3\",\"healRate\":\"1.3\",\"date\":\"01.27\"},{\"confirm\":5997,\"suspect\":9239,\"dead\":132,\"heal\":103,\"nowConfirm\":5762,\"nowSevere\":1239,\"importedCase\":0,\"deadRate\":\"2.2\",\"healRate\":\"1.7\",\"date\":\"01.28\"},{\"confirm\":7736,\"suspect\":12167,\"dead\":170,\"heal\":124,\"nowConfirm\":7442,\"nowSevere\":1370,\"importedCase\":0,\"deadRate\":\"2.2\",\"healRate\":\"1.6\",\"date\":\"01.29\"},{\"confirm\":9720,\"suspect\":15238,\"dead\":213,\"heal\":171,\"nowConfirm\":9336,\"nowSevere\":1527,\"importedCase\":0,\"deadRate\":\"2.2\",\"healRate\":\"1.8\",\"date\":\"01.30\"},{\"confirm\":11821,\"suspect\":17988,\"dead\":259,\"heal\":243,\"nowConfirm\":11319,\"nowSevere\":1795,\"importedCase\":0,\"deadRate\":\"2.2\",\"healRate\":\"2.1\",\"date\":\"01.31\"},{\"confirm\":14411,\"suspect\":19544,\"dead\":304,\"heal\":328,\"nowConfirm\":13779,\"nowSevere\":2110,\"importedCase\":0,\"deadRate\":\"2.1\",\"healRate\":\"2.3\",\"date\":\"02.01\"},{\"confirm\":17238,\"suspect\":21558,\"dead\":361,\"heal\":475,\"nowConfirm\":16402,\"nowSevere\":2296,\"importedCase\":0,\"deadRate\":\"2.1\",\"healRate\":\"2.8\",\"date\":\"02.02\"},{\"confirm\":20471,\"suspect\":23214,\"dead\":425,\"heal\":632,\"nowConfirm\":19414,\"nowSevere\":2788,\"importedCase\":0,\"deadRate\":\"2.1\",\"healRate\":\"3.1\",\"date\":\"02.03\"},{\"confirm\":24363,\"suspect\":23260,\"dead\":491,\"heal\":892,\"nowConfirm\":22980,\"nowSevere\":3219,\"importedCase\":0,\"deadRate\":\"2.0\",\"healRate\":\"3.7\",\"date\":\"02.04\"},{\"confirm\":28060,\"suspect\":24702,\"dead\":564,\"heal\":1153,\"nowConfirm\":26343,\"nowSevere\":3859,\"importedCase\":0,\"deadRate\":\"2.0\",\"healRate\":\"4.1\",\"date\":\"02.05\"},{\"confirm\":31211,\"suspect\":26359,\"dead\":637,\"heal\":1542,\"nowConfirm\":29032,\"nowSevere\":4821,\"importedCase\":0,\"deadRate\":\"2.0\",\"healRate\":\"4.9\",\"date\":\"02.06\"},{\"confirm\":34598,\"suspect\":27657,\"dead\":723,\"heal\":2052,\"nowConfirm\":31823,\"nowSevere\":6101,\"importedCase\":0,\"deadRate\":\"2.1\",\"healRate\":\"5.9\",\"date\":\"02.07\"},{\"confirm\":37251,\"suspect\":28942,\"dead\":812,\"heal\":2651,\"nowConfirm\":33788,\"nowSevere\":6188,\"importedCase\":0,\"deadRate\":\"2.2\",\"healRate\":\"7.1\",\"date\":\"02.08\"},{\"confirm\":40235,\"suspect\":23589,\"dead\":909,\"heal\":3283,\"nowConfirm\":36043,\"nowSevere\":6484,\"importedCase\":0,\"deadRate\":\"2.3\",\"healRate\":\"8.2\",\"date\":\"02.09\"},{\"confirm\":42708,\"suspect\":21675,\"dead\":1017,\"heal\":3998,\"nowConfirm\":37693,\"nowSevere\":7333,\"importedCase\":0,\"deadRate\":\"2.4\",\"healRate\":\"9.4\",\"date\":\"02.10\"},{\"confirm\":44730,\"suspect\":16067,\"dead\":1114,\"heal\":4742,\"nowConfirm\":38874,\"nowSevere\":8204,\"importedCase\":0,\"deadRate\":\"2.5\",\"healRate\":\"10.6\",\"date\":\"02.11\"},{\"confirm\":59882,\"suspect\":13435,\"dead\":1368,\"heal\":5915,\"nowConfirm\":52599,\"nowSevere\":8030,\"importedCase\":0,\"deadRate\":\"2.3\",\"healRate\":\"9.9\",\"date\":\"02.12\"},{\"confirm\":63932,\"suspect\":10109,\"dead\":1381,\"heal\":6728,\"nowConfirm\":55823,\"nowSevere\":10204,\"importedCase\":0,\"deadRate\":\"2.2\",\"healRate\":\"10.5\",\"date\":\"02.13\"},{\"confirm\":66576,\"suspect\":8969,\"dead\":1524,\"heal\":8101,\"nowConfirm\":56951,\"nowSevere\":11053,\"importedCase\":0,\"deadRate\":\"2.3\",\"healRate\":\"12.2\",\"date\":\"02.14\"},{\"confirm\":68584,\"suspect\":8228,\"dead\":1666,\"heal\":9425,\"nowConfirm\":57493,\"nowSevere\":11272,\"importedCase\":0,\"deadRate\":\"2.4\",\"healRate\":\"13.7\",\"date\":\"02.15\"},{\"confirm\":70635,\"suspect\":7264,\"dead\":1772,\"heal\":10853,\"nowConfirm\":58010,\"nowSevere\":10644,\"importedCase\":0,\"deadRate\":\"2.5\",\"healRate\":\"15.4\",\"date\":\"02.16\"},{\"confirm\":72528,\"suspect\":6242,\"dead\":1870,\"heal\":12561,\"nowConfirm\":58097,\"nowSevere\":11741,\"importedCase\":0,\"deadRate\":\"2.6\",\"healRate\":\"17.3\",\"date\":\"02.17\"},{\"confirm\":74279,\"suspect\":5248,\"dead\":2006,\"heal\":14387,\"nowConfirm\":57886,\"nowSevere\":11977,\"importedCase\":0,\"deadRate\":\"2.7\",\"healRate\":\"19.4\",\"date\":\"02.18\"},{\"confirm\":75002,\"suspect\":4922,\"dead\":2121,\"heal\":16157,\"nowConfirm\":56386,\"nowSevere\":11864,\"importedCase\":0,\"deadRate\":\"2.8\",\"healRate\":\"21.5\",\"date\":\"02.19\"},{\"confirm\":75993,\"suspect\":5206,\"dead\":2239,\"heal\":18266,\"nowConfirm\":55051,\"nowSevere\":11633,\"importedCase\":0,\"deadRate\":\"2.9\",\"healRate\":\"24.0\",\"date\":\"02.20\"},{\"confirm\":76392,\"suspect\":5365,\"dead\":2348,\"heal\":20673,\"nowConfirm\":53371,\"nowSevere\":11477,\"importedCase\":0,\"deadRate\":\"3.1\",\"healRate\":\"27.1\",\"date\":\"02.21\"},{\"confirm\":77041,\"suspect\":4148,\"dead\":2445,\"heal\":22907,\"nowConfirm\":51689,\"nowSevere\":10968,\"importedCase\":0,\"deadRate\":\"3.2\",\"healRate\":\"29.7\",\"date\":\"02.22\"},{\"confirm\":77262,\"suspect\":3434,\"dead\":2595,\"heal\":24757,\"nowConfirm\":49910,\"nowSevere\":9915,\"importedCase\":0,\"deadRate\":\"3.4\",\"healRate\":\"32.0\",\"date\":\"02.23\"},{\"confirm\":77779,\"suspect\":2824,\"dead\":2666,\"heal\":27353,\"nowConfirm\":47760,\"nowSevere\":9126,\"importedCase\":0,\"deadRate\":\"3.4\",\"healRate\":\"35.2\",\"date\":\"02.24\"},{\"confirm\":78190,\"suspect\":2491,\"dead\":2718,\"heal\":29775,\"nowConfirm\":45697,\"nowSevere\":8752,\"importedCase\":0,\"deadRate\":\"3.5\",\"healRate\":\"38.1\",\"date\":\"02.25\"},{\"confirm\":78630,\"suspect\":2358,\"dead\":2747,\"heal\":32531,\"nowConfirm\":43352,\"nowSevere\":8346,\"importedCase\":0,\"deadRate\":\"3.5\",\"healRate\":\"41.4\",\"date\":\"02.26\"},{\"confirm\":78959,\"suspect\":2308,\"dead\":2791,\"heal\":36157,\"nowConfirm\":40011,\"nowSevere\":7952,\"importedCase\":0,\"deadRate\":\"3.5\",\"healRate\":\"45.8\",\"date\":\"02.27\"},{\"confirm\":79389,\"suspect\":1418,\"dead\":2838,\"heal\":39049,\"nowConfirm\":37502,\"nowSevere\":7664,\"importedCase\":0,\"deadRate\":\"3.6\",\"healRate\":\"49.2\",\"date\":\"02.28\"},{\"confirm\":79968,\"suspect\":851,\"dead\":2873,\"heal\":41675,\"nowConfirm\":35420,\"nowSevere\":7365,\"importedCase\":0,\"deadRate\":\"3.6\",\"healRate\":\"52.1\",\"date\":\"02.29\"},{\"confirm\":80174,\"suspect\":715,\"dead\":2915,\"heal\":44518,\"nowConfirm\":32741,\"nowSevere\":7110,\"importedCase\":0,\"deadRate\":\"3.6\",\"healRate\":\"55.5\",\"date\":\"03.01\"},{\"confirm\":80302,\"suspect\":587,\"dead\":2946,\"heal\":47260,\"nowConfirm\":30096,\"nowSevere\":6806,\"importedCase\":0,\"deadRate\":\"3.7\",\"healRate\":\"58.9\",\"date\":\"03.02\"},{\"confirm\":80422,\"suspect\":520,\"dead\":2984,\"heal\":49914,\"nowConfirm\":27524,\"nowSevere\":6416,\"importedCase\":0,\"deadRate\":\"3.7\",\"healRate\":\"62.1\",\"date\":\"03.03\"},{\"confirm\":80565,\"suspect\":522,\"dead\":3015,\"heal\":52109,\"nowConfirm\":25441,\"nowSevere\":5952,\"importedCase\":20,\"deadRate\":\"3.7\",\"healRate\":\"64.7\",\"date\":\"03.04\"},{\"confirm\":80710,\"suspect\":482,\"dead\":3045,\"heal\":53793,\"nowConfirm\":23872,\"nowSevere\":5737,\"importedCase\":36,\"deadRate\":\"3.8\",\"healRate\":\"66.6\",\"date\":\"03.05\"},{\"confirm\":80813,\"suspect\":502,\"dead\":3073,\"heal\":55477,\"nowConfirm\":22263,\"nowSevere\":5489,\"importedCase\":60,\"deadRate\":\"3.8\",\"healRate\":\"68.6\",\"date\":\"03.06\"},{\"confirm\":80859,\"suspect\":458,\"dead\":3100,\"heal\":57143,\"nowConfirm\":20616,\"nowSevere\":5264,\"importedCase\":63,\"deadRate\":\"3.8\",\"healRate\":\"70.7\",\"date\":\"03.07\"},{\"confirm\":80904,\"suspect\":421,\"dead\":3123,\"heal\":58684,\"nowConfirm\":19097,\"nowSevere\":5111,\"importedCase\":67,\"deadRate\":\"3.9\",\"healRate\":\"72.5\",\"date\":\"03.08\"},{\"confirm\":80924,\"suspect\":349,\"dead\":3140,\"heal\":59982,\"nowConfirm\":17802,\"nowSevere\":4794,\"importedCase\":69,\"deadRate\":\"3.9\",\"healRate\":\"74.1\",\"date\":\"03.09\"},{\"confirm\":80955,\"suspect\":285,\"dead\":3162,\"heal\":61567,\"nowConfirm\":16226,\"nowSevere\":4492,\"importedCase\":79,\"deadRate\":\"3.9\",\"healRate\":\"76.1\",\"date\":\"03.10\"},{\"confirm\":80992,\"suspect\":253,\"dead\":3173,\"heal\":62887,\"nowConfirm\":14920,\"nowSevere\":4257,\"importedCase\":85,\"deadRate\":\"3.9\",\"healRate\":\"77.6\",\"date\":\"03.11\"},{\"confirm\":81003,\"suspect\":147,\"dead\":3180,\"heal\":64216,\"nowConfirm\":13607,\"nowSevere\":4020,\"importedCase\":88,\"deadRate\":\"3.9\",\"healRate\":\"79.3\",\"date\":\"03.12\"},{\"confirm\":81021,\"suspect\":115,\"dead\":3194,\"heal\":65649,\"nowConfirm\":12178,\"nowSevere\":3610,\"importedCase\":95,\"deadRate\":\"3.9\",\"healRate\":\"81.0\",\"date\":\"03.13\"},{\"confirm\":81048,\"suspect\":113,\"dead\":3204,\"heal\":67022,\"nowConfirm\":10822,\"nowSevere\":3226,\"importedCase\":111,\"deadRate\":\"4.0\",\"healRate\":\"82.7\",\"date\":\"03.14\"},{\"confirm\":81077,\"suspect\":134,\"dead\":3218,\"heal\":67863,\"nowConfirm\":9996,\"nowSevere\":3032,\"importedCase\":123,\"deadRate\":\"4.0\",\"healRate\":\"83.7\",\"date\":\"03.15\"},{\"confirm\":81116,\"suspect\":128,\"dead\":3231,\"heal\":68799,\"nowConfirm\":9086,\"nowSevere\":2830,\"importedCase\":143,\"deadRate\":\"4.0\",\"healRate\":\"84.8\",\"date\":\"03.16\"},{\"confirm\":81151,\"suspect\":119,\"dead\":3242,\"heal\":69725,\"nowConfirm\":8184,\"nowSevere\":2622,\"importedCase\":155,\"deadRate\":\"4.0\",\"healRate\":\"85.9\",\"date\":\"03.17\"},{\"confirm\":81235,\"suspect\":105,\"dead\":3250,\"heal\":70547,\"nowConfirm\":7438,\"nowSevere\":2314,\"importedCase\":189,\"deadRate\":\"4.0\",\"healRate\":\"86.8\",\"date\":\"03.18\"},{\"confirm\":81300,\"suspect\":104,\"dead\":3253,\"heal\":71284,\"nowConfirm\":6763,\"nowSevere\":2136,\"importedCase\":228,\"deadRate\":\"4.0\",\"healRate\":\"87.7\",\"date\":\"03.19\"},{\"confirm\":81416,\"suspect\":106,\"dead\":3261,\"heal\":71876,\"nowConfirm\":6013,\"nowSevere\":1963,\"importedCase\":269,\"deadRate\":\"4.0\",\"healRate\":\"88.3\",\"date\":\"03.20\"},{\"confirm\":81498,\"suspect\":118,\"dead\":3267,\"heal\":72382,\"nowConfirm\":5849,\"nowSevere\":1845,\"importedCase\":314,\"deadRate\":\"4.0\",\"healRate\":\"88.8\",\"date\":\"03.21\"},{\"confirm\":81600,\"suspect\":136,\"dead\":3276,\"heal\":72841,\"nowConfirm\":5483,\"nowSevere\":1749,\"importedCase\":353,\"deadRate\":\"4.0\",\"healRate\":\"89.3\",\"date\":\"03.22\"},{\"confirm\":81747,\"suspect\":132,\"dead\":3283,\"heal\":73299,\"nowConfirm\":5165,\"nowSevere\":1573,\"importedCase\":427,\"deadRate\":\"4.0\",\"healRate\":\"89.7\",\"date\":\"03.23\"}],\"chinaDayAddList\":[{\"confirm\":77,\"suspect\":27,\"dead\":0,\"heal\":0,\"importedCase\":0,\"deadRate\":\"0.0\",\"healRate\":\"0.0\",\"date\":\"01.20\"},{\"confirm\":149,\"suspect\":53,\"dead\":3,\"heal\":0,\"importedCase\":0,\"deadRate\":\"2.0\",\"healRate\":\"0.0\",\"date\":\"01.21\"},{\"confirm\":131,\"suspect\":257,\"dead\":8,\"heal\":0,\"importedCase\":0,\"deadRate\":\"6.1\",\"healRate\":\"0.0\",\"date\":\"01.22\"},{\"confirm\":259,\"suspect\":680,\"dead\":8,\"heal\":6,\"importedCase\":0,\"deadRate\":\"3.1\",\"healRate\":\"2.3\",\"date\":\"01.23\"},{\"confirm\":444,\"suspect\":1118,\"dead\":16,\"heal\":3,\"importedCase\":0,\"deadRate\":\"3.6\",\"healRate\":\"0.7\",\"date\":\"01.24\"},{\"confirm\":688,\"suspect\":1309,\"dead\":15,\"heal\":11,\"importedCase\":0,\"deadRate\":\"2.2\",\"healRate\":\"1.6\",\"date\":\"01.25\"},{\"confirm\":769,\"suspect\":3806,\"dead\":24,\"heal\":2,\"importedCase\":0,\"deadRate\":\"3.1\",\"healRate\":\"0.3\",\"date\":\"01.26\"},{\"confirm\":1771,\"suspect\":2077,\"dead\":26,\"heal\":9,\"importedCase\":0,\"deadRate\":\"1.5\",\"healRate\":\"0.5\",\"date\":\"01.27\"},{\"confirm\":1459,\"suspect\":3248,\"dead\":26,\"heal\":43,\"importedCase\":0,\"deadRate\":\"1.8\",\"healRate\":\"2.9\",\"date\":\"01.28\"},{\"confirm\":1737,\"suspect\":4148,\"dead\":38,\"heal\":21,\"importedCase\":0,\"deadRate\":\"2.2\",\"healRate\":\"1.2\",\"date\":\"01.29\"},{\"confirm\":1982,\"suspect\":4812,\"dead\":43,\"heal\":47,\"importedCase\":0,\"deadRate\":\"2.2\",\"healRate\":\"2.4\",\"date\":\"01.30\"},{\"confirm\":2102,\"suspect\":5019,\"dead\":46,\"heal\":72,\"importedCase\":0,\"deadRate\":\"2.2\",\"healRate\":\"3.4\",\"date\":\"01.31\"},{\"confirm\":2590,\"suspect\":4562,\"dead\":45,\"heal\":85,\"importedCase\":0,\"deadRate\":\"1.7\",\"healRate\":\"3.3\",\"date\":\"02.01\"},{\"confirm\":2829,\"suspect\":5173,\"dead\":57,\"heal\":147,\"importedCase\":0,\"deadRate\":\"2.0\",\"healRate\":\"5.2\",\"date\":\"02.02\"},{\"confirm\":3235,\"suspect\":5072,\"dead\":64,\"heal\":157,\"importedCase\":0,\"deadRate\":\"2.0\",\"healRate\":\"4.9\",\"date\":\"02.03\"},{\"confirm\":3893,\"suspect\":3971,\"dead\":65,\"heal\":262,\"importedCase\":0,\"deadRate\":\"1.7\",\"healRate\":\"6.7\",\"date\":\"02.04\"},{\"confirm\":3697,\"suspect\":5328,\"dead\":73,\"heal\":261,\"importedCase\":0,\"deadRate\":\"2.0\",\"healRate\":\"7.1\",\"date\":\"02.05\"},{\"confirm\":3143,\"suspect\":4833,\"dead\":73,\"heal\":387,\"importedCase\":0,\"deadRate\":\"2.3\",\"healRate\":\"12.3\",\"date\":\"02.06\"},{\"confirm\":3401,\"suspect\":4214,\"dead\":86,\"heal\":510,\"importedCase\":0,\"deadRate\":\"2.5\",\"healRate\":\"15.0\",\"date\":\"02.07\"},{\"confirm\":2656,\"suspect\":3916,\"dead\":89,\"heal\":600,\"importedCase\":0,\"deadRate\":\"3.4\",\"healRate\":\"22.6\",\"date\":\"02.08\"},{\"confirm\":3062,\"suspect\":4008,\"dead\":97,\"heal\":632,\"importedCase\":0,\"deadRate\":\"3.2\",\"healRate\":\"20.6\",\"date\":\"02.09\"},{\"confirm\":2484,\"suspect\":3536,\"dead\":108,\"heal\":716,\"importedCase\":0,\"deadRate\":\"4.3\",\"healRate\":\"28.8\",\"date\":\"02.10\"},{\"confirm\":2022,\"suspect\":3342,\"dead\":97,\"heal\":744,\"importedCase\":0,\"deadRate\":\"4.8\",\"healRate\":\"36.8\",\"date\":\"02.11\"},{\"confirm\":15153,\"suspect\":2807,\"dead\":254,\"heal\":1173,\"importedCase\":0,\"deadRate\":\"1.7\",\"healRate\":\"7.7\",\"date\":\"02.12\"},{\"confirm\":5093,\"suspect\":2450,\"dead\":121,\"heal\":1083,\"importedCase\":0,\"deadRate\":\"2.4\",\"healRate\":\"21.3\",\"date\":\"02.13\"},{\"confirm\":2644,\"suspect\":2277,\"dead\":143,\"heal\":1373,\"importedCase\":0,\"deadRate\":\"5.4\",\"healRate\":\"51.9\",\"date\":\"02.14\"},{\"confirm\":2009,\"suspect\":1918,\"dead\":142,\"heal\":1324,\"importedCase\":0,\"deadRate\":\"7.1\",\"healRate\":\"65.9\",\"date\":\"02.15\"},{\"confirm\":2051,\"suspect\":1563,\"dead\":105,\"heal\":1425,\"importedCase\":0,\"deadRate\":\"5.1\",\"healRate\":\"69.5\",\"date\":\"02.16\"},{\"confirm\":1891,\"suspect\":1432,\"dead\":98,\"heal\":1701,\"importedCase\":0,\"deadRate\":\"5.2\",\"healRate\":\"90.0\",\"date\":\"02.17\"},{\"confirm\":1751,\"suspect\":1185,\"dead\":136,\"heal\":1826,\"importedCase\":0,\"deadRate\":\"7.8\",\"healRate\":\"104.3\",\"date\":\"02.18\"},{\"confirm\":820,\"suspect\":1277,\"dead\":115,\"heal\":1781,\"importedCase\":0,\"deadRate\":\"14.0\",\"healRate\":\"217.2\",\"date\":\"02.19\"},{\"confirm\":892,\"suspect\":1614,\"dead\":118,\"heal\":2109,\"importedCase\":0,\"deadRate\":\"13.2\",\"healRate\":\"236.4\",\"date\":\"02.20\"},{\"confirm\":399,\"suspect\":1361,\"dead\":109,\"heal\":2394,\"importedCase\":0,\"deadRate\":\"27.3\",\"healRate\":\"600.0\",\"date\":\"02.21\"},{\"confirm\":649,\"suspect\":882,\"dead\":97,\"heal\":2235,\"importedCase\":0,\"deadRate\":\"14.9\",\"healRate\":\"344.4\",\"date\":\"02.22\"},{\"confirm\":416,\"suspect\":620,\"dead\":150,\"heal\":1850,\"importedCase\":0,\"deadRate\":\"36.1\",\"healRate\":\"444.7\",\"date\":\"02.23\"},{\"confirm\":517,\"suspect\":530,\"dead\":71,\"heal\":2596,\"importedCase\":0,\"deadRate\":\"13.7\",\"healRate\":\"502.1\",\"date\":\"02.24\"},{\"confirm\":411,\"suspect\":439,\"dead\":52,\"heal\":2422,\"importedCase\":0,\"deadRate\":\"12.7\",\"healRate\":\"589.3\",\"date\":\"02.25\"},{\"confirm\":440,\"suspect\":508,\"dead\":29,\"heal\":2756,\"importedCase\":0,\"deadRate\":\"6.6\",\"healRate\":\"626.4\",\"date\":\"02.26\"},{\"confirm\":329,\"suspect\":452,\"dead\":44,\"heal\":3626,\"importedCase\":0,\"deadRate\":\"13.4\",\"healRate\":\"1102.1\",\"date\":\"02.27\"},{\"confirm\":430,\"suspect\":248,\"dead\":47,\"heal\":2892,\"importedCase\":0,\"deadRate\":\"10.9\",\"healRate\":\"672.6\",\"date\":\"02.28\"},{\"confirm\":579,\"suspect\":132,\"dead\":35,\"heal\":2626,\"importedCase\":0,\"deadRate\":\"6.0\",\"healRate\":\"453.5\",\"date\":\"02.29\"},{\"confirm\":206,\"suspect\":141,\"dead\":42,\"heal\":2843,\"importedCase\":0,\"deadRate\":\"20.4\",\"healRate\":\"1380.1\",\"date\":\"03.01\"},{\"confirm\":128,\"suspect\":129,\"dead\":31,\"heal\":2742,\"importedCase\":0,\"deadRate\":\"24.2\",\"healRate\":\"2142.2\",\"date\":\"03.02\"},{\"confirm\":120,\"suspect\":143,\"dead\":38,\"heal\":2654,\"importedCase\":0,\"deadRate\":\"31.7\",\"healRate\":\"2211.7\",\"date\":\"03.03\"},{\"confirm\":143,\"suspect\":143,\"dead\":31,\"heal\":2195,\"importedCase\":2,\"deadRate\":\"21.7\",\"healRate\":\"1535.0\",\"date\":\"03.04\"},{\"confirm\":145,\"suspect\":102,\"dead\":30,\"heal\":1684,\"importedCase\":16,\"deadRate\":\"20.7\",\"healRate\":\"1161.4\",\"date\":\"03.05\"},{\"confirm\":103,\"suspect\":99,\"dead\":28,\"heal\":1684,\"importedCase\":24,\"deadRate\":\"27.2\",\"healRate\":\"1635.0\",\"date\":\"03.06\"},{\"confirm\":46,\"suspect\":84,\"dead\":27,\"heal\":1666,\"importedCase\":3,\"deadRate\":\"58.7\",\"healRate\":\"3621.7\",\"date\":\"03.07\"},{\"confirm\":45,\"suspect\":60,\"dead\":23,\"heal\":1541,\"importedCase\":4,\"deadRate\":\"51.1\",\"healRate\":\"3424.4\",\"date\":\"03.08\"},{\"confirm\":20,\"suspect\":36,\"dead\":17,\"heal\":1298,\"importedCase\":2,\"deadRate\":\"85.0\",\"healRate\":\"6490.0\",\"date\":\"03.09\"},{\"confirm\":31,\"suspect\":31,\"dead\":22,\"heal\":1585,\"importedCase\":10,\"deadRate\":\"71.0\",\"healRate\":\"5112.9\",\"date\":\"03.10\"},{\"confirm\":25,\"suspect\":33,\"dead\":11,\"heal\":1320,\"importedCase\":6,\"deadRate\":\"44.0\",\"healRate\":\"5280.0\",\"date\":\"03.11\"},{\"confirm\":11,\"suspect\":33,\"dead\":7,\"heal\":1329,\"importedCase\":3,\"deadRate\":\"63.6\",\"healRate\":\"12081.8\",\"date\":\"03.12\"},{\"confirm\":18,\"suspect\":17,\"dead\":14,\"heal\":1433,\"importedCase\":7,\"deadRate\":\"77.8\",\"healRate\":\"7961.1\",\"date\":\"03.13\"},{\"confirm\":27,\"suspect\":39,\"dead\":10,\"heal\":1373,\"importedCase\":16,\"deadRate\":\"37.0\",\"healRate\":\"5085.2\",\"date\":\"03.14\"},{\"confirm\":29,\"suspect\":41,\"dead\":14,\"heal\":841,\"importedCase\":12,\"deadRate\":\"48.3\",\"healRate\":\"2900.0\",\"date\":\"03.15\"},{\"confirm\":39,\"suspect\":45,\"dead\":13,\"heal\":936,\"importedCase\":20,\"deadRate\":\"33.3\",\"healRate\":\"2400.0\",\"date\":\"03.16\"},{\"confirm\":35,\"suspect\":21,\"dead\":11,\"heal\":926,\"importedCase\":12,\"deadRate\":\"31.4\",\"healRate\":\"2645.7\",\"date\":\"03.17\"},{\"confirm\":84,\"suspect\":23,\"dead\":8,\"heal\":822,\"importedCase\":34,\"deadRate\":\"9.5\",\"healRate\":\"978.6\",\"date\":\"03.18\"},{\"confirm\":65,\"suspect\":31,\"dead\":3,\"heal\":737,\"importedCase\":39,\"deadRate\":\"4.6\",\"healRate\":\"1133.8\",\"date\":\"03.19\"},{\"confirm\":116,\"suspect\":36,\"dead\":8,\"heal\":592,\"importedCase\":41,\"deadRate\":\"6.9\",\"healRate\":\"510.3\",\"date\":\"03.20\"},{\"confirm\":82,\"suspect\":45,\"dead\":6,\"heal\":506,\"importedCase\":45,\"deadRate\":\"7.3\",\"healRate\":\"617.1\",\"date\":\"03.21\"},{\"confirm\":102,\"suspect\":47,\"dead\":9,\"heal\":459,\"importedCase\":39,\"deadRate\":\"8.8\",\"healRate\":\"450.0\",\"date\":\"03.22\"},{\"confirm\":147,\"suspect\":35,\"dead\":7,\"heal\":458,\"importedCase\":74,\"deadRate\":\"4.8\",\"healRate\":\"311.6\",\"date\":\"03.23\"}],\"dailyNewAddHistory\":[{\"date\":\"01.20\",\"hubei\":72,\"country\":77,\"notHubei\":5},{\"date\":\"01.21\",\"hubei\":105,\"country\":149,\"notHubei\":44},{\"date\":\"01.22\",\"hubei\":69,\"country\":131,\"notHubei\":62},{\"date\":\"01.23\",\"hubei\":105,\"country\":259,\"notHubei\":154},{\"date\":\"01.24\",\"hubei\":180,\"country\":444,\"notHubei\":264},{\"date\":\"01.25\",\"hubei\":323,\"country\":688,\"notHubei\":365},{\"date\":\"01.26\",\"hubei\":371,\"country\":769,\"notHubei\":398},{\"date\":\"01.27\",\"hubei\":1291,\"country\":1771,\"notHubei\":480},{\"date\":\"01.28\",\"hubei\":840,\"country\":1459,\"notHubei\":619},{\"date\":\"01.29\",\"hubei\":1032,\"country\":1737,\"notHubei\":705},{\"date\":\"01.30\",\"hubei\":1220,\"country\":1982,\"notHubei\":762},{\"date\":\"01.31\",\"hubei\":1347,\"country\":2102,\"notHubei\":755},{\"date\":\"02.01\",\"hubei\":1921,\"country\":2590,\"notHubei\":669},{\"date\":\"02.02\",\"hubei\":2103,\"country\":2829,\"notHubei\":726},{\"date\":\"02.03\",\"hubei\":2345,\"country\":3235,\"notHubei\":890},{\"date\":\"02.04\",\"hubei\":3156,\"country\":3893,\"notHubei\":737},{\"date\":\"02.05\",\"hubei\":2987,\"country\":3697,\"notHubei\":710},{\"date\":\"02.06\",\"hubei\":2447,\"country\":3143,\"notHubei\":696},{\"date\":\"02.07\",\"hubei\":2841,\"country\":3401,\"notHubei\":560},{\"date\":\"02.08\",\"hubei\":2147,\"country\":2656,\"notHubei\":509},{\"date\":\"02.09\",\"hubei\":2618,\"country\":3062,\"notHubei\":444},{\"date\":\"02.10\",\"hubei\":2097,\"country\":2484,\"notHubei\":387},{\"date\":\"02.11\",\"hubei\":1638,\"country\":2022,\"notHubei\":384},{\"date\":\"02.12\",\"hubei\":14840,\"country\":15153,\"notHubei\":313},{\"date\":\"02.13\",\"hubei\":4823,\"country\":5093,\"notHubei\":270},{\"date\":\"02.14\",\"hubei\":2420,\"country\":2644,\"notHubei\":224},{\"date\":\"02.15\",\"hubei\":1843,\"country\":2009,\"notHubei\":166},{\"date\":\"02.16\",\"hubei\":1933,\"country\":2051,\"notHubei\":118},{\"date\":\"02.17\",\"hubei\":1807,\"country\":1891,\"notHubei\":84},{\"date\":\"02.18\",\"hubei\":1693,\"country\":1751,\"notHubei\":58},{\"date\":\"02.19\",\"hubei\":775,\"country\":820,\"notHubei\":45},{\"date\":\"02.20\",\"hubei\":631,\"country\":892,\"notHubei\":261},{\"date\":\"02.21\",\"hubei\":366,\"country\":399,\"notHubei\":33},{\"date\":\"02.22\",\"hubei\":630,\"country\":649,\"notHubei\":19},{\"date\":\"02.23\",\"hubei\":398,\"country\":416,\"notHubei\":18},{\"date\":\"02.24\",\"hubei\":499,\"country\":517,\"notHubei\":18},{\"date\":\"02.25\",\"hubei\":401,\"country\":411,\"notHubei\":10},{\"date\":\"02.26\",\"hubei\":409,\"country\":440,\"notHubei\":31},{\"date\":\"02.27\",\"hubei\":318,\"country\":329,\"notHubei\":11},{\"date\":\"02.28\",\"hubei\":423,\"country\":430,\"notHubei\":7},{\"date\":\"02.29\",\"hubei\":570,\"country\":579,\"notHubei\":9},{\"date\":\"03.01\",\"hubei\":196,\"country\":206,\"notHubei\":10},{\"date\":\"03.02\",\"hubei\":114,\"country\":128,\"notHubei\":14},{\"date\":\"03.03\",\"hubei\":115,\"country\":120,\"notHubei\":5},{\"date\":\"03.04\",\"hubei\":134,\"country\":143,\"notHubei\":9},{\"date\":\"03.05\",\"hubei\":126,\"country\":145,\"notHubei\":19},{\"date\":\"03.06\",\"hubei\":74,\"country\":103,\"notHubei\":29},{\"date\":\"03.07\",\"hubei\":41,\"country\":46,\"notHubei\":5},{\"date\":\"03.08\",\"hubei\":36,\"country\":45,\"notHubei\":9},{\"date\":\"03.09\",\"hubei\":17,\"country\":20,\"notHubei\":3},{\"date\":\"03.10\",\"hubei\":13,\"country\":31,\"notHubei\":18},{\"date\":\"03.11\",\"hubei\":8,\"country\":25,\"notHubei\":17},{\"date\":\"03.12\",\"hubei\":5,\"country\":11,\"notHubei\":6},{\"date\":\"03.13\",\"hubei\":4,\"country\":18,\"notHubei\":14},{\"date\":\"03.14\",\"hubei\":4,\"country\":27,\"notHubei\":23},{\"date\":\"03.15\",\"hubei\":4,\"country\":29,\"notHubei\":25},{\"date\":\"03.16\",\"hubei\":4,\"country\":39,\"notHubei\":35},{\"date\":\"03.17\",\"hubei\":1,\"country\":35,\"notHubei\":34},{\"date\":\"03.18\",\"hubei\":0,\"country\":84,\"notHubei\":84},{\"date\":\"03.19\",\"hubei\":0,\"country\":65,\"notHubei\":65},{\"date\":\"03.20\",\"hubei\":0,\"country\":116,\"notHubei\":116},{\"date\":\"03.21\",\"hubei\":0,\"country\":82,\"notHubei\":82},{\"date\":\"03.22\",\"hubei\":0,\"country\":102,\"notHubei\":102},{\"date\":\"03.23\",\"hubei\":1,\"country\":147,\"notHubei\":146}],\"dailyHistory\":[{\"date\":\"01.20\",\"hubei\":{\"dead\":6,\"heal\":25,\"nowConfirm\":239,\"deadRate\":\"2.22\",\"healRate\":\"9.26\"},\"notHubei\":{\"dead\":0,\"heal\":0,\"nowConfirm\":52,\"deadRate\":\"0.00\",\"healRate\":\"0.00\"},\"country\":{\"dead\":6,\"heal\":25,\"nowConfirm\":291,\"deadRate\":\"2.06\",\"healRate\":\"8.59\"}},{\"date\":\"01.23\",\"hubei\":{\"dead\":24,\"heal\":31,\"nowConfirm\":494,\"deadRate\":\"4.37\",\"healRate\":\"5.65\"},\"notHubei\":{\"dead\":1,\"heal\":3,\"nowConfirm\":282,\"deadRate\":\"0.35\",\"healRate\":\"1.05\"},\"country\":{\"dead\":25,\"heal\":34,\"nowConfirm\":776,\"deadRate\":\"2.99\",\"healRate\":\"4.07\"}},{\"date\":\"01.24\",\"hubei\":{\"dead\":39,\"heal\":32,\"nowConfirm\":658,\"deadRate\":\"5.35\",\"healRate\":\"4.39\"},\"notHubei\":{\"dead\":2,\"heal\":6,\"nowConfirm\":560,\"deadRate\":\"0.35\",\"healRate\":\"1.06\"},\"country\":{\"dead\":41,\"heal\":38,\"nowConfirm\":1218,\"deadRate\":\"3.16\",\"healRate\":\"2.93\"}},{\"date\":\"01.25\",\"hubei\":{\"dead\":52,\"heal\":42,\"nowConfirm\":958,\"deadRate\":\"4.94\",\"healRate\":\"3.99\"},\"notHubei\":{\"dead\":4,\"heal\":7,\"nowConfirm\":922,\"deadRate\":\"0.43\",\"healRate\":\"0.75\"},\"country\":{\"dead\":56,\"heal\":49,\"nowConfirm\":1880,\"deadRate\":\"2.82\",\"healRate\":\"2.47\"}},{\"date\":\"01.26\",\"hubei\":{\"dead\":76,\"heal\":44,\"nowConfirm\":1303,\"deadRate\":\"5.34\",\"healRate\":\"3.09\"},\"notHubei\":{\"dead\":4,\"heal\":7,\"nowConfirm\":1327,\"deadRate\":\"0.30\",\"healRate\":\"0.52\"},\"country\":{\"dead\":80,\"heal\":51,\"nowConfirm\":2630,\"deadRate\":\"2.90\",\"healRate\":\"1.85\"}},{\"date\":\"01.27\",\"hubei\":{\"dead\":100,\"heal\":47,\"nowConfirm\":2567,\"deadRate\":\"3.68\",\"healRate\":\"1.73\"},\"notHubei\":{\"dead\":6,\"heal\":13,\"nowConfirm\":1802,\"deadRate\":\"0.33\",\"healRate\":\"0.71\"},\"country\":{\"dead\":106,\"heal\":60,\"nowConfirm\":4369,\"deadRate\":\"2.34\",\"healRate\":\"1.32\"}},{\"date\":\"01.28\",\"hubei\":{\"dead\":125,\"heal\":80,\"nowConfirm\":3349,\"deadRate\":\"3.52\",\"healRate\":\"2.25\"},\"notHubei\":{\"dead\":7,\"heal\":23,\"nowConfirm\":2413,\"deadRate\":\"0.29\",\"healRate\":\"0.94\"},\"country\":{\"dead\":132,\"heal\":103,\"nowConfirm\":5762,\"deadRate\":\"2.20\",\"healRate\":\"1.72\"}},{\"date\":\"01.29\",\"hubei\":{\"dead\":162,\"heal\":90,\"nowConfirm\":4334,\"deadRate\":\"3.53\",\"healRate\":\"1.96\"},\"notHubei\":{\"dead\":8,\"heal\":34,\"nowConfirm\":3108,\"deadRate\":\"0.25\",\"healRate\":\"1.08\"},\"country\":{\"dead\":170,\"heal\":124,\"nowConfirm\":7442,\"deadRate\":\"2.20\",\"healRate\":\"1.60\"}},{\"date\":\"01.30\",\"hubei\":{\"dead\":204,\"heal\":116,\"nowConfirm\":5486,\"deadRate\":\"3.51\",\"healRate\":\"2.00\"},\"notHubei\":{\"dead\":9,\"heal\":55,\"nowConfirm\":3850,\"deadRate\":\"0.23\",\"healRate\":\"1.41\"},\"country\":{\"dead\":213,\"heal\":171,\"nowConfirm\":9336,\"deadRate\":\"2.19\",\"healRate\":\"1.76\"}},{\"date\":\"01.31\",\"hubei\":{\"dead\":249,\"heal\":166,\"nowConfirm\":6738,\"deadRate\":\"3.48\",\"healRate\":\"2.32\"},\"notHubei\":{\"dead\":10,\"heal\":77,\"nowConfirm\":4581,\"deadRate\":\"0.21\",\"healRate\":\"1.65\"},\"country\":{\"dead\":259,\"heal\":243,\"nowConfirm\":11319,\"deadRate\":\"2.19\",\"healRate\":\"2.06\"}},{\"date\":\"02.01\",\"hubei\":{\"dead\":294,\"heal\":215,\"nowConfirm\":8565,\"deadRate\":\"3.24\",\"healRate\":\"2.37\"},\"notHubei\":{\"dead\":10,\"heal\":113,\"nowConfirm\":5214,\"deadRate\":\"0.19\",\"healRate\":\"2.12\"},\"country\":{\"dead\":304,\"heal\":328,\"nowConfirm\":13779,\"deadRate\":\"2.11\",\"healRate\":\"2.28\"}},{\"date\":\"02.02\",\"hubei\":{\"dead\":350,\"heal\":295,\"nowConfirm\":10532,\"deadRate\":\"3.13\",\"healRate\":\"2.64\"},\"notHubei\":{\"dead\":11,\"heal\":180,\"nowConfirm\":5870,\"deadRate\":\"0.18\",\"healRate\":\"2.97\"},\"country\":{\"dead\":361,\"heal\":475,\"nowConfirm\":16402,\"deadRate\":\"2.09\",\"healRate\":\"2.76\"}},{\"date\":\"02.03\",\"hubei\":{\"dead\":414,\"heal\":396,\"nowConfirm\":12712,\"deadRate\":\"3.06\",\"healRate\":\"2.93\"},\"notHubei\":{\"dead\":11,\"heal\":236,\"nowConfirm\":6702,\"deadRate\":\"0.16\",\"healRate\":\"3.40\"},\"country\":{\"dead\":425,\"heal\":632,\"nowConfirm\":19414,\"deadRate\":\"2.08\",\"healRate\":\"3.09\"}},{\"date\":\"02.04\",\"hubei\":{\"dead\":479,\"heal\":520,\"nowConfirm\":15679,\"deadRate\":\"2.87\",\"healRate\":\"3.12\"},\"notHubei\":{\"dead\":12,\"heal\":372,\"nowConfirm\":7301,\"deadRate\":\"0.16\",\"healRate\":\"4.84\"},\"country\":{\"dead\":491,\"heal\":892,\"nowConfirm\":22980,\"deadRate\":\"2.02\",\"healRate\":\"3.66\"}},{\"date\":\"02.05\",\"hubei\":{\"dead\":549,\"heal\":633,\"nowConfirm\":18473,\"deadRate\":\"2.79\",\"healRate\":\"3.22\"},\"notHubei\":{\"dead\":15,\"heal\":520,\"nowConfirm\":7870,\"deadRate\":\"0.18\",\"healRate\":\"6.19\"},\"country\":{\"dead\":564,\"heal\":1153,\"nowConfirm\":26343,\"deadRate\":\"2.01\",\"healRate\":\"4.11\"}},{\"date\":\"02.06\",\"hubei\":{\"dead\":618,\"heal\":817,\"nowConfirm\":20677,\"deadRate\":\"2.79\",\"healRate\":\"3.69\"},\"notHubei\":{\"dead\":19,\"heal\":725,\"nowConfirm\":8355,\"deadRate\":\"0.21\",\"healRate\":\"7.97\"},\"country\":{\"dead\":637,\"heal\":1542,\"nowConfirm\":29032,\"deadRate\":\"2.04\",\"healRate\":\"4.94\"}},{\"date\":\"02.07\",\"hubei\":{\"dead\":699,\"heal\":1115,\"nowConfirm\":23139,\"deadRate\":\"2.80\",\"healRate\":\"4.47\"},\"notHubei\":{\"dead\":24,\"heal\":937,\"nowConfirm\":8684,\"deadRate\":\"0.25\",\"healRate\":\"9.71\"},\"country\":{\"dead\":723,\"heal\":2052,\"nowConfirm\":31823,\"deadRate\":\"2.09\",\"healRate\":\"5.93\"}},{\"date\":\"02.08\",\"hubei\":{\"dead\":780,\"heal\":1439,\"nowConfirm\":24881,\"deadRate\":\"2.88\",\"healRate\":\"5.31\"},\"notHubei\":{\"dead\":32,\"heal\":1212,\"nowConfirm\":8907,\"deadRate\":\"0.32\",\"healRate\":\"11.94\"},\"country\":{\"dead\":812,\"heal\":2651,\"nowConfirm\":33788,\"deadRate\":\"2.18\",\"healRate\":\"7.12\"}},{\"date\":\"02.09\",\"hubei\":{\"dead\":871,\"heal\":1795,\"nowConfirm\":26965,\"deadRate\":\"2.94\",\"healRate\":\"6.06\"},\"notHubei\":{\"dead\":38,\"heal\":1488,\"nowConfirm\":9078,\"deadRate\":\"0.36\",\"healRate\":\"14.03\"},\"country\":{\"dead\":909,\"heal\":3283,\"nowConfirm\":36043,\"deadRate\":\"2.26\",\"healRate\":\"8.16\"}},{\"date\":\"02.10\",\"hubei\":{\"dead\":974,\"heal\":2222,\"nowConfirm\":28532,\"deadRate\":\"3.07\",\"healRate\":\"7.00\"},\"notHubei\":{\"dead\":43,\"heal\":1776,\"nowConfirm\":9161,\"deadRate\":\"0.39\",\"healRate\":\"16.17\"},\"country\":{\"dead\":1017,\"heal\":3998,\"nowConfirm\":37693,\"deadRate\":\"2.38\",\"healRate\":\"9.36\"}},{\"date\":\"02.11\",\"hubei\":{\"dead\":1068,\"heal\":2639,\"nowConfirm\":29659,\"deadRate\":\"3.20\",\"healRate\":\"7.91\"},\"notHubei\":{\"dead\":46,\"heal\":2103,\"nowConfirm\":9215,\"deadRate\":\"0.40\",\"healRate\":\"18.51\"},\"country\":{\"dead\":1114,\"heal\":4742,\"nowConfirm\":38874,\"deadRate\":\"2.49\",\"healRate\":\"10.60\"}},{\"date\":\"02.12\",\"hubei\":{\"dead\":1310,\"heal\":3441,\"nowConfirm\":43455,\"deadRate\":\"2.72\",\"healRate\":\"7.14\"},\"notHubei\":{\"dead\":58,\"heal\":2474,\"nowConfirm\":9144,\"deadRate\":\"0.50\",\"healRate\":\"21.19\"},\"country\":{\"dead\":1368,\"heal\":5915,\"nowConfirm\":52599,\"deadRate\":\"2.28\",\"healRate\":\"9.88\"}},{\"date\":\"02.13\",\"hubei\":{\"dead\":1318,\"heal\":4131,\"nowConfirm\":46537,\"deadRate\":\"2.54\",\"healRate\":\"7.95\"},\"notHubei\":{\"dead\":63,\"heal\":2597,\"nowConfirm\":9286,\"deadRate\":\"0.53\",\"healRate\":\"21.74\"},\"country\":{\"dead\":1381,\"heal\":6728,\"nowConfirm\":55823,\"deadRate\":\"2.16\",\"healRate\":\"10.52\"}},{\"date\":\"02.14\",\"hubei\":{\"dead\":1457,\"heal\":4774,\"nowConfirm\":48175,\"deadRate\":\"2.68\",\"healRate\":\"8.77\"},\"notHubei\":{\"dead\":67,\"heal\":3327,\"nowConfirm\":8776,\"deadRate\":\"0.55\",\"healRate\":\"27.34\"},\"country\":{\"dead\":1524,\"heal\":8101,\"nowConfirm\":56951,\"deadRate\":\"2.29\",\"healRate\":\"12.17\"}},{\"date\":\"02.15\",\"hubei\":{\"dead\":1596,\"heal\":5623,\"nowConfirm\":49030,\"deadRate\":\"2.84\",\"healRate\":\"10.00\"},\"notHubei\":{\"dead\":70,\"heal\":3802,\"nowConfirm\":8463,\"deadRate\":\"0.57\",\"healRate\":\"30.82\"},\"country\":{\"dead\":1666,\"heal\":9425,\"nowConfirm\":57493,\"deadRate\":\"2.43\",\"healRate\":\"13.74\"}},{\"date\":\"02.16\",\"hubei\":{\"dead\":1696,\"heal\":6639,\"nowConfirm\":49847,\"deadRate\":\"2.91\",\"healRate\":\"11.41\"},\"notHubei\":{\"dead\":76,\"heal\":4214,\"nowConfirm\":8163,\"deadRate\":\"0.61\",\"healRate\":\"33.84\"},\"country\":{\"dead\":1772,\"heal\":10853,\"nowConfirm\":58010,\"deadRate\":\"2.51\",\"healRate\":\"15.36\"}},{\"date\":\"02.17\",\"hubei\":{\"dead\":1789,\"heal\":7862,\"nowConfirm\":50338,\"deadRate\":\"2.98\",\"healRate\":\"13.11\"},\"notHubei\":{\"dead\":81,\"heal\":4699,\"nowConfirm\":7759,\"deadRate\":\"0.65\",\"healRate\":\"37.48\"},\"country\":{\"dead\":1870,\"heal\":12561,\"nowConfirm\":58097,\"deadRate\":\"2.58\",\"healRate\":\"17.32\"}},{\"date\":\"02.18\",\"hubei\":{\"dead\":1921,\"heal\":9128,\"nowConfirm\":50633,\"deadRate\":\"3.11\",\"healRate\":\"14.80\"},\"notHubei\":{\"dead\":85,\"heal\":5259,\"nowConfirm\":7253,\"deadRate\":\"0.67\",\"healRate\":\"41.75\"},\"country\":{\"dead\":2006,\"heal\":14387,\"nowConfirm\":57886,\"deadRate\":\"2.70\",\"healRate\":\"19.37\"}},{\"date\":\"02.19\",\"hubei\":{\"dead\":2029,\"heal\":10337,\"nowConfirm\":50091,\"deadRate\":\"3.25\",\"healRate\":\"16.55\"},\"notHubei\":{\"dead\":92,\"heal\":5820,\"nowConfirm\":6295,\"deadRate\":\"0.73\",\"healRate\":\"46.39\"},\"country\":{\"dead\":2121,\"heal\":16157,\"nowConfirm\":56386,\"deadRate\":\"2.83\",\"healRate\":\"21.54\"}},{\"date\":\"02.20\",\"hubei\":{\"dead\":2144,\"heal\":11788,\"nowConfirm\":49156,\"deadRate\":\"3.40\",\"healRate\":\"18.69\"},\"notHubei\":{\"dead\":95,\"heal\":6478,\"nowConfirm\":5895,\"deadRate\":\"0.74\",\"healRate\":\"50.20\"},\"country\":{\"dead\":2239,\"heal\":18266,\"nowConfirm\":55051,\"deadRate\":\"2.95\",\"healRate\":\"24.04\"}},{\"date\":\"02.21\",\"hubei\":{\"dead\":2250,\"heal\":13557,\"nowConfirm\":47647,\"deadRate\":\"3.55\",\"healRate\":\"21.37\"},\"notHubei\":{\"dead\":98,\"heal\":7116,\"nowConfirm\":5724,\"deadRate\":\"0.76\",\"healRate\":\"55.00\"},\"country\":{\"dead\":2348,\"heal\":20673,\"nowConfirm\":53371,\"deadRate\":\"3.07\",\"healRate\":\"27.06\"}},{\"date\":\"02.22\",\"hubei\":{\"dead\":2346,\"heal\":15299,\"nowConfirm\":46439,\"deadRate\":\"3.66\",\"healRate\":\"23.87\"},\"notHubei\":{\"dead\":99,\"heal\":7608,\"nowConfirm\":5250,\"deadRate\":\"0.76\",\"healRate\":\"58.72\"},\"country\":{\"dead\":2445,\"heal\":22907,\"nowConfirm\":51689,\"deadRate\":\"3.17\",\"healRate\":\"29.73\"}},{\"date\":\"02.23\",\"hubei\":{\"dead\":2495,\"heal\":16738,\"nowConfirm\":45054,\"deadRate\":\"3.88\",\"healRate\":\"26.04\"},\"notHubei\":{\"dead\":100,\"heal\":8019,\"nowConfirm\":4856,\"deadRate\":\"0.77\",\"healRate\":\"61.80\"},\"country\":{\"dead\":2595,\"heal\":24757,\"nowConfirm\":49910,\"deadRate\":\"3.36\",\"healRate\":\"32.04\"}},{\"date\":\"02.24\",\"hubei\":{\"dead\":2563,\"heal\":18854,\"nowConfirm\":43369,\"deadRate\":\"3.96\",\"healRate\":\"29.10\"},\"notHubei\":{\"dead\":103,\"heal\":8499,\"nowConfirm\":4391,\"deadRate\":\"0.79\",\"healRate\":\"65.41\"},\"country\":{\"dead\":2666,\"heal\":27353,\"nowConfirm\":47760,\"deadRate\":\"3.43\",\"healRate\":\"35.17\"}},{\"date\":\"02.25\",\"hubei\":{\"dead\":2615,\"heal\":20912,\"nowConfirm\":41660,\"deadRate\":\"4.01\",\"healRate\":\"32.08\"},\"notHubei\":{\"dead\":103,\"heal\":8863,\"nowConfirm\":4037,\"deadRate\":\"0.79\",\"healRate\":\"68.16\"},\"country\":{\"dead\":2718,\"heal\":29775,\"nowConfirm\":45697,\"deadRate\":\"3.48\",\"healRate\":\"38.08\"}},{\"date\":\"02.26\",\"hubei\":{\"dead\":2641,\"heal\":23200,\"nowConfirm\":39755,\"deadRate\":\"4.03\",\"healRate\":\"35.37\"},\"notHubei\":{\"dead\":106,\"heal\":9331,\"nowConfirm\":3597,\"deadRate\":\"0.81\",\"healRate\":\"71.59\"},\"country\":{\"dead\":2747,\"heal\":32531,\"nowConfirm\":43352,\"deadRate\":\"3.49\",\"healRate\":\"41.37\"}},{\"date\":\"02.27\",\"hubei\":{\"dead\":2682,\"heal\":26403,\"nowConfirm\":36829,\"deadRate\":\"4.07\",\"healRate\":\"40.06\"},\"notHubei\":{\"dead\":109,\"heal\":9754,\"nowConfirm\":3182,\"deadRate\":\"0.84\",\"healRate\":\"74.77\"},\"country\":{\"dead\":2791,\"heal\":36157,\"nowConfirm\":40011,\"deadRate\":\"3.53\",\"healRate\":\"45.79\"}},{\"date\":\"02.28\",\"hubei\":{\"dead\":2727,\"heal\":28895,\"nowConfirm\":34715,\"deadRate\":\"4.11\",\"healRate\":\"43.56\"},\"notHubei\":{\"dead\":111,\"heal\":10154,\"nowConfirm\":2787,\"deadRate\":\"0.85\",\"healRate\":\"77.80\"},\"country\":{\"dead\":2838,\"heal\":39049,\"nowConfirm\":37502,\"deadRate\":\"3.57\",\"healRate\":\"49.19\"}},{\"date\":\"02.29\",\"hubei\":{\"dead\":2761,\"heal\":31187,\"nowConfirm\":32959,\"deadRate\":\"4.13\",\"healRate\":\"46.61\"},\"notHubei\":{\"dead\":112,\"heal\":10488,\"nowConfirm\":2461,\"deadRate\":\"0.86\",\"healRate\":\"80.30\"},\"country\":{\"dead\":2873,\"heal\":41675,\"nowConfirm\":35420,\"deadRate\":\"3.59\",\"healRate\":\"52.11\"}},{\"date\":\"03.01\",\"hubei\":{\"dead\":2803,\"heal\":33757,\"nowConfirm\":30543,\"deadRate\":\"4.18\",\"healRate\":\"50.31\"},\"notHubei\":{\"dead\":112,\"heal\":10761,\"nowConfirm\":2198,\"deadRate\":\"0.86\",\"healRate\":\"82.33\"},\"country\":{\"dead\":2915,\"heal\":44518,\"nowConfirm\":32741,\"deadRate\":\"3.64\",\"healRate\":\"55.53\"}},{\"date\":\"03.02\",\"hubei\":{\"dead\":2834,\"heal\":36167,\"nowConfirm\":28216,\"deadRate\":\"4.22\",\"healRate\":\"53.81\"},\"notHubei\":{\"dead\":112,\"heal\":11093,\"nowConfirm\":1880,\"deadRate\":\"0.86\",\"healRate\":\"84.78\"},\"country\":{\"dead\":2946,\"heal\":47260,\"nowConfirm\":30096,\"deadRate\":\"3.67\",\"healRate\":\"58.85\"}},{\"date\":\"03.03\",\"hubei\":{\"dead\":2871,\"heal\":38556,\"nowConfirm\":25905,\"deadRate\":\"4.26\",\"healRate\":\"57.26\"},\"notHubei\":{\"dead\":113,\"heal\":11358,\"nowConfirm\":1619,\"deadRate\":\"0.86\",\"healRate\":\"86.77\"},\"country\":{\"dead\":2984,\"heal\":49914,\"nowConfirm\":27524,\"deadRate\":\"3.71\",\"healRate\":\"62.07\"}},{\"date\":\"03.04\",\"hubei\":{\"dead\":2902,\"heal\":40479,\"nowConfirm\":24085,\"deadRate\":\"4.30\",\"healRate\":\"60.00\"},\"notHubei\":{\"dead\":113,\"heal\":11630,\"nowConfirm\":1356,\"deadRate\":\"0.86\",\"healRate\":\"88.79\"},\"country\":{\"dead\":3015,\"heal\":52109,\"nowConfirm\":25441,\"deadRate\":\"3.74\",\"healRate\":\"64.68\"}},{\"date\":\"03.05\",\"hubei\":{\"dead\":2931,\"heal\":41966,\"nowConfirm\":22695,\"deadRate\":\"4.34\",\"healRate\":\"62.09\"},\"notHubei\":{\"dead\":114,\"heal\":11827,\"nowConfirm\":1177,\"deadRate\":\"0.87\",\"healRate\":\"90.16\"},\"country\":{\"dead\":3045,\"heal\":53793,\"nowConfirm\":23872,\"deadRate\":\"3.77\",\"healRate\":\"66.65\"}},{\"date\":\"03.06\",\"hubei\":{\"dead\":2959,\"heal\":43468,\"nowConfirm\":21239,\"deadRate\":\"4.37\",\"healRate\":\"64.24\"},\"notHubei\":{\"dead\":114,\"heal\":12009,\"nowConfirm\":1024,\"deadRate\":\"0.87\",\"healRate\":\"91.34\"},\"country\":{\"dead\":3073,\"heal\":55477,\"nowConfirm\":22263,\"deadRate\":\"3.80\",\"healRate\":\"68.65\"}},{\"date\":\"03.07\",\"hubei\":{\"dead\":2986,\"heal\":45011,\"nowConfirm\":19710,\"deadRate\":\"4.41\",\"healRate\":\"66.48\"},\"notHubei\":{\"dead\":114,\"heal\":12132,\"nowConfirm\":906,\"deadRate\":\"0.87\",\"healRate\":\"92.24\"},\"country\":{\"dead\":3100,\"heal\":57143,\"nowConfirm\":20616,\"deadRate\":\"3.83\",\"healRate\":\"70.67\"}},{\"date\":\"03.08\",\"hubei\":{\"dead\":3007,\"heal\":46433,\"nowConfirm\":18303,\"deadRate\":\"4.44\",\"healRate\":\"68.54\"},\"notHubei\":{\"dead\":116,\"heal\":12251,\"nowConfirm\":794,\"deadRate\":\"0.88\",\"healRate\":\"93.09\"},\"country\":{\"dead\":3123,\"heal\":58684,\"nowConfirm\":19097,\"deadRate\":\"3.86\",\"healRate\":\"72.54\"}},{\"date\":\"03.09\",\"hubei\":{\"dead\":3024,\"heal\":47585,\"nowConfirm\":17151,\"deadRate\":\"4.46\",\"healRate\":\"70.23\"},\"notHubei\":{\"dead\":116,\"heal\":12397,\"nowConfirm\":651,\"deadRate\":\"0.88\",\"healRate\":\"94.17\"},\"country\":{\"dead\":3140,\"heal\":59982,\"nowConfirm\":17802,\"deadRate\":\"3.88\",\"healRate\":\"74.12\"}},{\"date\":\"03.10\",\"hubei\":{\"dead\":3046,\"heal\":49056,\"nowConfirm\":15671,\"deadRate\":\"4.49\",\"healRate\":\"72.38\"},\"notHubei\":{\"dead\":116,\"heal\":12511,\"nowConfirm\":555,\"deadRate\":\"0.88\",\"healRate\":\"94.91\"},\"country\":{\"dead\":3162,\"heal\":61567,\"nowConfirm\":16226,\"deadRate\":\"3.91\",\"healRate\":\"76.05\"}},{\"date\":\"03.11\",\"hubei\":{\"dead\":3056,\"heal\":50298,\"nowConfirm\":14427,\"deadRate\":\"4.51\",\"healRate\":\"74.21\"},\"notHubei\":{\"dead\":117,\"heal\":12589,\"nowConfirm\":493,\"deadRate\":\"0.89\",\"healRate\":\"95.29\"},\"country\":{\"dead\":3173,\"heal\":62887,\"nowConfirm\":14920,\"deadRate\":\"3.92\",\"healRate\":\"77.65\"}},{\"date\":\"03.12\",\"hubei\":{\"dead\":3062,\"heal\":51553,\"nowConfirm\":13171,\"deadRate\":\"4.52\",\"healRate\":\"76.05\"},\"notHubei\":{\"dead\":118,\"heal\":12663,\"nowConfirm\":436,\"deadRate\":\"0.89\",\"healRate\":\"95.81\"},\"country\":{\"dead\":3180,\"heal\":64216,\"nowConfirm\":13607,\"deadRate\":\"3.93\",\"healRate\":\"79.28\"}},{\"date\":\"03.13\",\"hubei\":{\"dead\":3075,\"heal\":52943,\"nowConfirm\":11772,\"deadRate\":\"4.54\",\"healRate\":\"78.10\"},\"notHubei\":{\"dead\":119,\"heal\":12706,\"nowConfirm\":406,\"deadRate\":\"0.90\",\"healRate\":\"96.03\"},\"country\":{\"dead\":3194,\"heal\":65649,\"nowConfirm\":12178,\"deadRate\":\"3.94\",\"healRate\":\"81.03\"}},{\"date\":\"03.14\",\"hubei\":{\"dead\":3085,\"heal\":54278,\"nowConfirm\":10431,\"deadRate\":\"4.55\",\"healRate\":\"80.06\"},\"notHubei\":{\"dead\":119,\"heal\":12744,\"nowConfirm\":391,\"deadRate\":\"0.90\",\"healRate\":\"96.15\"},\"country\":{\"dead\":3204,\"heal\":67022,\"nowConfirm\":10822,\"deadRate\":\"3.95\",\"healRate\":\"82.69\"}},{\"date\":\"03.15\",\"hubei\":{\"dead\":3099,\"heal\":55094,\"nowConfirm\":9605,\"deadRate\":\"4.57\",\"healRate\":\"81.26\"},\"notHubei\":{\"dead\":119,\"heal\":12769,\"nowConfirm\":391,\"deadRate\":\"0.90\",\"healRate\":\"96.16\"},\"country\":{\"dead\":3218,\"heal\":67863,\"nowConfirm\":9996,\"deadRate\":\"3.97\",\"healRate\":\"83.70\"}},{\"date\":\"03.16\",\"hubei\":{\"dead\":3111,\"heal\":55987,\"nowConfirm\":8700,\"deadRate\":\"4.59\",\"healRate\":\"82.58\"},\"notHubei\":{\"dead\":120,\"heal\":12812,\"nowConfirm\":386,\"deadRate\":\"0.90\",\"healRate\":\"96.20\"},\"country\":{\"dead\":3231,\"heal\":68799,\"nowConfirm\":9086,\"deadRate\":\"3.98\",\"healRate\":\"84.82\"}},{\"date\":\"03.17\",\"hubei\":{\"dead\":3122,\"heal\":56883,\"nowConfirm\":7795,\"deadRate\":\"4.60\",\"healRate\":\"83.90\"},\"notHubei\":{\"dead\":120,\"heal\":12842,\"nowConfirm\":389,\"deadRate\":\"0.90\",\"healRate\":\"96.19\"},\"country\":{\"dead\":3242,\"heal\":69725,\"nowConfirm\":8184,\"deadRate\":\"4.00\",\"healRate\":\"85.92\"}},{\"date\":\"03.18\",\"hubei\":{\"dead\":3130,\"heal\":57678,\"nowConfirm\":6992,\"deadRate\":\"4.62\",\"healRate\":\"85.07\"},\"notHubei\":{\"dead\":120,\"heal\":12869,\"nowConfirm\":446,\"deadRate\":\"0.89\",\"healRate\":\"95.79\"},\"country\":{\"dead\":3250,\"heal\":70547,\"nowConfirm\":7438,\"deadRate\":\"4.00\",\"healRate\":\"86.84\"}},{\"date\":\"03.19\",\"hubei\":{\"dead\":3132,\"heal\":58381,\"nowConfirm\":6287,\"deadRate\":\"4.62\",\"healRate\":\"86.11\"},\"notHubei\":{\"dead\":121,\"heal\":12903,\"nowConfirm\":476,\"deadRate\":\"0.90\",\"healRate\":\"95.58\"},\"country\":{\"dead\":3253,\"heal\":71284,\"nowConfirm\":6763,\"deadRate\":\"4.00\",\"healRate\":\"87.68\"}},{\"date\":\"03.20\",\"hubei\":{\"dead\":3139,\"heal\":58942,\"nowConfirm\":5719,\"deadRate\":\"4.63\",\"healRate\":\"86.94\"},\"notHubei\":{\"dead\":122,\"heal\":12934,\"nowConfirm\":294,\"deadRate\":\"0.90\",\"healRate\":\"94.99\"},\"country\":{\"dead\":3261,\"heal\":71876,\"nowConfirm\":6013,\"deadRate\":\"4.01\",\"healRate\":\"88.28\"}},{\"date\":\"03.21\",\"hubei\":{\"dead\":3144,\"heal\":59432,\"nowConfirm\":5224,\"deadRate\":\"4.64\",\"healRate\":\"87.66\"},\"notHubei\":{\"dead\":123,\"heal\":12950,\"nowConfirm\":625,\"deadRate\":\"0.90\",\"healRate\":\"94.54\"},\"country\":{\"dead\":3267,\"heal\":72382,\"nowConfirm\":5849,\"deadRate\":\"4.01\",\"healRate\":\"88.81\"}},{\"date\":\"03.22\",\"hubei\":{\"dead\":3153,\"heal\":59879,\"nowConfirm\":4768,\"deadRate\":\"4.65\",\"healRate\":\"88.32\"},\"notHubei\":{\"dead\":123,\"heal\":12962,\"nowConfirm\":715,\"deadRate\":\"0.89\",\"healRate\":\"93.93\"},\"country\":{\"dead\":3276,\"heal\":72841,\"nowConfirm\":5483,\"deadRate\":\"4.01\",\"healRate\":\"89.27\"}},{\"date\":\"03.23\",\"hubei\":{\"dead\":3160,\"heal\":60323,\"nowConfirm\":4318,\"deadRate\":\"4.66\",\"healRate\":\"88.97\"},\"notHubei\":{\"dead\":123,\"heal\":12976,\"nowConfirm\":847,\"deadRate\":\"0.88\",\"healRate\":\"93.04\"},\"country\":{\"dead\":3283,\"heal\":73299,\"nowConfirm\":5165,\"deadRate\":\"4.02\",\"healRate\":\"89.67\"}}],\"wuhanDayList\":[{\"date\":\"01.21\",\"wuhan\":{\"confirmAdd\":60},\"notWuhan\":{\"confirmAdd\":12},\"notHubei\":{\"confirmAdd\":44}},{\"date\":\"01.22\",\"wuhan\":{\"confirmAdd\":105},\"notWuhan\":{\"confirmAdd\":0},\"notHubei\":{\"confirmAdd\":62}},{\"date\":\"01.23\",\"wuhan\":{\"confirmAdd\":62},\"notWuhan\":{\"confirmAdd\":7},\"notHubei\":{\"confirmAdd\":154}},{\"date\":\"01.24\",\"wuhan\":{\"confirmAdd\":70},\"notWuhan\":{\"confirmAdd\":35},\"notHubei\":{\"confirmAdd\":264}},{\"date\":\"01.25\",\"wuhan\":{\"confirmAdd\":77},\"notWuhan\":{\"confirmAdd\":102},\"notHubei\":{\"confirmAdd\":365}},{\"date\":\"01.26\",\"wuhan\":{\"confirmAdd\":46},\"notWuhan\":{\"confirmAdd\":278},\"notHubei\":{\"confirmAdd\":398}},{\"date\":\"01.27\",\"wuhan\":{\"confirmAdd\":80},\"notWuhan\":{\"confirmAdd\":291},\"notHubei\":{\"confirmAdd\":480}},{\"date\":\"01.28\",\"wuhan\":{\"confirmAdd\":892},\"notWuhan\":{\"confirmAdd\":399},\"notHubei\":{\"confirmAdd\":619}},{\"date\":\"01.29\",\"wuhan\":{\"confirmAdd\":315},\"notWuhan\":{\"confirmAdd\":525},\"notHubei\":{\"confirmAdd\":705}},{\"date\":\"01.30\",\"wuhan\":{\"confirmAdd\":356},\"notWuhan\":{\"confirmAdd\":676},\"notHubei\":{\"confirmAdd\":762}},{\"date\":\"01.31\",\"wuhan\":{\"confirmAdd\":378},\"notWuhan\":{\"confirmAdd\":842},\"notHubei\":{\"confirmAdd\":755}},{\"date\":\"02.01\",\"wuhan\":{\"confirmAdd\":576},\"notWuhan\":{\"confirmAdd\":771},\"notHubei\":{\"confirmAdd\":669}},{\"date\":\"02.02\",\"wuhan\":{\"confirmAdd\":894},\"notWuhan\":{\"confirmAdd\":1027},\"notHubei\":{\"confirmAdd\":726}},{\"date\":\"02.03\",\"wuhan\":{\"confirmAdd\":1033},\"notWuhan\":{\"confirmAdd\":1070},\"notHubei\":{\"confirmAdd\":890}},{\"date\":\"02.04\",\"wuhan\":{\"confirmAdd\":1242},\"notWuhan\":{\"confirmAdd\":1103},\"notHubei\":{\"confirmAdd\":737}},{\"date\":\"02.05\",\"wuhan\":{\"confirmAdd\":1967},\"notWuhan\":{\"confirmAdd\":1189},\"notHubei\":{\"confirmAdd\":710}},{\"date\":\"02.06\",\"wuhan\":{\"confirmAdd\":1766},\"notWuhan\":{\"confirmAdd\":1221},\"notHubei\":{\"confirmAdd\":696}},{\"date\":\"02.07\",\"wuhan\":{\"confirmAdd\":1501},\"notWuhan\":{\"confirmAdd\":946},\"notHubei\":{\"confirmAdd\":560}},{\"date\":\"02.08\",\"wuhan\":{\"confirmAdd\":1985},\"notWuhan\":{\"confirmAdd\":856},\"notHubei\":{\"confirmAdd\":509}},{\"date\":\"02.09\",\"wuhan\":{\"confirmAdd\":1379},\"notWuhan\":{\"confirmAdd\":768},\"notHubei\":{\"confirmAdd\":444}},{\"date\":\"02.10\",\"wuhan\":{\"confirmAdd\":1921},\"notWuhan\":{\"confirmAdd\":697},\"notHubei\":{\"confirmAdd\":387}},{\"date\":\"02.11\",\"wuhan\":{\"confirmAdd\":1552},\"notWuhan\":{\"confirmAdd\":545},\"notHubei\":{\"confirmAdd\":384}},{\"date\":\"02.12\",\"wuhan\":{\"confirmAdd\":1104},\"notWuhan\":{\"confirmAdd\":534},\"notHubei\":{\"confirmAdd\":313}},{\"date\":\"02.13\",\"wuhan\":{\"confirmAdd\":13436},\"notWuhan\":{\"confirmAdd\":1404},\"notHubei\":{\"confirmAdd\":270}},{\"date\":\"02.14\",\"wuhan\":{\"confirmAdd\":3910},\"notWuhan\":{\"confirmAdd\":913},\"notHubei\":{\"confirmAdd\":224}},{\"date\":\"02.15\",\"wuhan\":{\"confirmAdd\":1923},\"notWuhan\":{\"confirmAdd\":519},\"notHubei\":{\"confirmAdd\":166}},{\"date\":\"02.16\",\"wuhan\":{\"confirmAdd\":1548},\"notWuhan\":{\"confirmAdd\":300},\"notHubei\":{\"confirmAdd\":118}},{\"date\":\"02.17\",\"wuhan\":{\"confirmAdd\":1690},\"notWuhan\":{\"confirmAdd\":254},\"notHubei\":{\"confirmAdd\":84}},{\"date\":\"02.18\",\"wuhan\":{\"confirmAdd\":1600},\"notWuhan\":{\"confirmAdd\":225},\"notHubei\":{\"confirmAdd\":58}},{\"date\":\"02.19\",\"wuhan\":{\"confirmAdd\":1660},\"notWuhan\":{\"confirmAdd\":86},\"notHubei\":{\"confirmAdd\":45}},{\"date\":\"02.20\",\"wuhan\":{\"confirmAdd\":615},\"notWuhan\":{\"confirmAdd\":152},\"notHubei\":{\"confirmAdd\":261}},{\"date\":\"02.21\",\"wuhan\":{\"confirmAdd\":319},\"notWuhan\":{\"confirmAdd\":92},\"notHubei\":{\"confirmAdd\":33}},{\"date\":\"02.22\",\"wuhan\":{\"confirmAdd\":314},\"notWuhan\":{\"confirmAdd\":51},\"notHubei\":{\"confirmAdd\":19}},{\"date\":\"02.23\",\"wuhan\":{\"confirmAdd\":541},\"notWuhan\":{\"confirmAdd\":57},\"notHubei\":{\"confirmAdd\":18}},{\"date\":\"02.24\",\"wuhan\":{\"confirmAdd\":348},\"notWuhan\":{\"confirmAdd\":53},\"notHubei\":{\"confirmAdd\":18}},{\"date\":\"02.25\",\"wuhan\":{\"confirmAdd\":464},\"notWuhan\":{\"confirmAdd\":35},\"notHubei\":{\"confirmAdd\":10}},{\"date\":\"02.26\",\"wuhan\":{\"confirmAdd\":370},\"notWuhan\":{\"confirmAdd\":31},\"notHubei\":{\"confirmAdd\":31}},{\"date\":\"02.27\",\"wuhan\":{\"confirmAdd\":383},\"notWuhan\":{\"confirmAdd\":26},\"notHubei\":{\"confirmAdd\":11}},{\"date\":\"02.28\",\"wuhan\":{\"confirmAdd\":313},\"notWuhan\":{\"confirmAdd\":5},\"notHubei\":{\"confirmAdd\":7}},{\"date\":\"02.29\",\"wuhan\":{\"confirmAdd\":420},\"notWuhan\":{\"confirmAdd\":3},\"notHubei\":{\"confirmAdd\":9}},{\"date\":\"03.01\",\"wuhan\":{\"confirmAdd\":565},\"notWuhan\":{\"confirmAdd\":5},\"notHubei\":{\"confirmAdd\":10}},{\"date\":\"03.02\",\"wuhan\":{\"confirmAdd\":111},\"notWuhan\":{\"confirmAdd\":3},\"notHubei\":{\"confirmAdd\":14}},{\"date\":\"03.03\",\"wuhan\":{\"confirmAdd\":114},\"notWuhan\":{\"confirmAdd\":3},\"notHubei\":{\"confirmAdd\":5}},{\"date\":\"03.04\",\"wuhan\":{\"confirmAdd\":131},\"notWuhan\":{\"confirmAdd\":1},\"notHubei\":{\"confirmAdd\":9}},{\"date\":\"03.05\",\"wuhan\":{\"confirmAdd\":126},\"notWuhan\":{\"confirmAdd\":3},\"notHubei\":{\"confirmAdd\":19}},{\"date\":\"03.06\",\"wuhan\":{\"confirmAdd\":74},\"notWuhan\":{\"confirmAdd\":0},\"notHubei\":{\"confirmAdd\":29}},{\"date\":\"03.07\",\"wuhan\":{\"confirmAdd\":74},\"notWuhan\":{\"confirmAdd\":0},\"notHubei\":{\"confirmAdd\":5}},{\"date\":\"03.08\",\"wuhan\":{\"confirmAdd\":41},\"notWuhan\":{\"confirmAdd\":0},\"notHubei\":{\"confirmAdd\":9}},{\"date\":\"03.09\",\"wuhan\":{\"confirmAdd\":36},\"notWuhan\":{\"confirmAdd\":0},\"notHubei\":{\"confirmAdd\":3}},{\"date\":\"03.10\",\"wuhan\":{\"confirmAdd\":17},\"notWuhan\":{\"confirmAdd\":0},\"notHubei\":{\"confirmAdd\":18}},{\"date\":\"03.11\",\"wuhan\":{\"confirmAdd\":13},\"notWuhan\":{\"confirmAdd\":0},\"notHubei\":{\"confirmAdd\":17}},{\"date\":\"03.12\",\"wuhan\":{\"confirmAdd\":8},\"notWuhan\":{\"confirmAdd\":0},\"notHubei\":{\"confirmAdd\":6}},{\"date\":\"03.13\",\"wuhan\":{\"confirmAdd\":5},\"notWuhan\":{\"confirmAdd\":0},\"notHubei\":{\"confirmAdd\":14}},{\"date\":\"03.14\",\"wuhan\":{\"confirmAdd\":4},\"notWuhan\":{\"confirmAdd\":0},\"notHubei\":{\"confirmAdd\":23}},{\"date\":\"03.15\",\"wuhan\":{\"confirmAdd\":4},\"notWuhan\":{\"confirmAdd\":0},\"notHubei\":{\"confirmAdd\":25}},{\"date\":\"03.16\",\"wuhan\":{\"confirmAdd\":4},\"notWuhan\":{\"confirmAdd\":0},\"notHubei\":{\"confirmAdd\":35}},{\"date\":\"03.17\",\"wuhan\":{\"confirmAdd\":1},\"notWuhan\":{\"confirmAdd\":0},\"notHubei\":{\"confirmAdd\":34}},{\"date\":\"03.18\",\"wuhan\":{\"confirmAdd\":1},\"notWuhan\":{\"confirmAdd\":0},\"notHubei\":{\"confirmAdd\":84}},{\"date\":\"03.19\",\"wuhan\":{\"confirmAdd\":0},\"notWuhan\":{\"confirmAdd\":0},\"notHubei\":{\"confirmAdd\":65}},{\"date\":\"03.20\",\"wuhan\":{\"confirmAdd\":0},\"notWuhan\":{\"confirmAdd\":0},\"notHubei\":{\"confirmAdd\":116}},{\"date\":\"03.21\",\"wuhan\":{\"confirmAdd\":0},\"notWuhan\":{\"confirmAdd\":0},\"notHubei\":{\"confirmAdd\":82}},{\"date\":\"03.22\",\"wuhan\":{\"confirmAdd\":0},\"notWuhan\":{\"confirmAdd\":0},\"notHubei\":{\"confirmAdd\":102}},{\"date\":\"03.23\",\"wuhan\":{\"confirmAdd\":0},\"notWuhan\":{\"confirmAdd\":0},\"notHubei\":{\"confirmAdd\":146}},{\"date\":\"03.24\",\"wuhan\":{\"confirmAdd\":1},\"notWuhan\":{\"confirmAdd\":0},\"notHubei\":{\"confirmAdd\":0}}],\"articleList\":[{\"cmsId\":\"BJC2020032402596600\",\"source\":\"push\",\"media\":\"北京市卫健委\",\"publish_time\":\"2020-03-24 13:12:17\",\"can_use\":1,\"desc\":\"今天0时至12时,北京新增4例境外输入确诊病例。\",\"url\":\"https://view.inews.qq.com/a/BJC2020032402596600\",\"title\":\"北京上午新增4例境外输入病例\"},{\"cmsId\":\"BJC2020032401549800\",\"source\":\"push\",\"media\":\"北京市卫健委\",\"publish_time\":\"2020-03-24 08:53:49\",\"can_use\":1,\"desc\":\"昨日0时至24时,北京新增31例境外输入新冠肺炎确诊病例,境外输入关联病例1例。\",\"url\":\"https://view.inews.qq.com/a/BJC2020032401549800\",\"title\":\"昨日北京新增31例境外输入病例\"},{\"cmsId\":\"CQC2020032401199000\",\"source\":\"push\",\"media\":\"重庆市卫健委\",\"publish_time\":\"2020-03-24 07:30:21\",\"can_use\":1,\"desc\":\"3月23日0-24时,重庆本地无新增确诊病例,境外输入确诊病例1例,为美国输入。\",\"url\":\"https://view.inews.qq.com/a/CQC2020032401199000\",\"title\":\"重庆昨日本地无新增 境外输入1例\"},{\"cmsId\":\"CAN2020032302890400\",\"source\":\"push\",\"media\":\"甘肃卫生健康委员会\",\"publish_time\":\"2020-03-23 22:11:07\",\"can_use\":1,\"desc\":\"3月22日20时至3月23日20时,甘肃无新增境外输入新冠肺炎确诊病例,累计境外输入新冠肺炎确诊病例45例。\",\"url\":\"https://view.inews.qq.com/a/CAN2020032302890400\",\"title\":\"甘肃无新增境外输入新冠肺炎确诊病例\"},{\"cmsId\":\"CSD2020032301496800\",\"source\":\"push\",\"media\":\"健康山东\",\"publish_time\":\"2020-03-23 15:24:52\",\"can_use\":1,\"desc\":\"23日0-12时,山东新增1例巴基斯坦输入确诊病例,累计报告境外输入确诊病例9例,1311人正在接受医学观察。\",\"url\":\"https://view.inews.qq.com/a/CSD2020032301496800\",\"title\":\"山东新增1例巴基斯坦输入确诊病例\"},{\"cmsId\":\"BJC2020032300951600\",\"source\":\"push\",\"media\":\"首都健康\",\"publish_time\":\"2020-03-23 13:04:17\",\"can_use\":1,\"desc\":\"今天0时至12时,北京新增15例境外输入确诊病例,其中西班牙12例、英国2例、挪威1例。\",\"url\":\"https://view.inews.qq.com/a/BJC2020032300951600\",\"title\":\"北京上午新增15例境外输入病例\"},{\"cmsId\":\"GDC2020032300281000\",\"source\":\"push\",\"media\":\"健康广东\",\"publish_time\":\"2020-03-23 09:19:12\",\"can_use\":1,\"desc\":\"3月22日0时-24时,广东新增6例境外输入病例,其中广州3例,佛山2例,潮州1例。\",\"url\":\"https://view.inews.qq.com/a/GDC2020032300281000\",\"title\":\"广东新增6例境外输入病例\"},{\"cmsId\":\"BJC2020032300206600\",\"source\":\"push\",\"media\":\"首都健康\",\"publish_time\":\"2020-03-23 08:30:00\",\"can_use\":1,\"desc\":\"昨日12时至24时,北京新增8例境外输入新冠肺炎确诊病例,其中西班牙2例、英国2例、法国2例、美国1例、巴基斯坦1例。\",\"url\":\"https://view.inews.qq.com/a/BJC2020032300206600\",\"title\":\"北京新增8例境外输入病例\"},{\"cmsId\":\"20200322A0KUBZ00\",\"source\":\"manual\",\"media\":\"环球网\",\"publish_time\":\"2020-03-22 21:31:52\",\"can_use\":1,\"desc\":\"美国约翰斯•霍普金斯大学发布的最新实时数据显示,截止北京时间3月22日20时20分,全球新冠肺炎确诊病例已超过31万例,达311988例。另据法新社消息,欧洲新冠肺炎累计确诊病例已超过15万例。\",\"url\":\"https://view.inews.qq.com/a/20200322A0KUBZ00\",\"title\":\"全球新冠肺炎确诊超31万,欧洲破15万\"},{\"cmsId\":\"BJC2020032200546200\",\"source\":\"push\",\"media\":\"\",\"publish_time\":\"2020-03-22 13:26:04\",\"can_use\":1,\"desc\":\"今天0时至12时,北京新增2例境外输入确诊病例,为英国输入病例。详情\u003e\u003e\",\"url\":\"https://view.inews.qq.com/a/BJC2020032200546200\",\"title\":\"北京上午新增2例境外输入病例\"},{\"cmsId\":\"20200322A0B1NQ00\",\"source\":\"manual\",\"media\":\"新京报\",\"publish_time\":\"2020-03-22 12:50:00\",\"can_use\":1,\"desc\":\"据湖北日报消息,湖北省所有新冠肺炎确诊贫困人口,按每人1万元帮扶资金的标准补贴,目前正与援助方中国扶贫基金会配合逐步发放到位。\",\"url\":\"https://view.inews.qq.com/a/20200322A0B1NQ00\",\"title\":\"湖北:新冠肺炎确诊贫困人口每人获补助1万元\"},{\"cmsId\":\"20200322A08A0V00\",\"source\":\"push\",\"media\":\"\",\"publish_time\":\"2020-03-22 11:12:48\",\"can_use\":1,\"desc\":\"警惕!广东出现首例境外输入关联本地病例,为54岁男性,曾与土耳其输入病例密切接触。活动轨迹公布\u003e\u003e\",\"url\":\"https://view.inews.qq.com/a/20200322A08A0V00\",\"title\":\"广东出现首例境外输入关联本地病例\"},{\"cmsId\":\"20200322A08HBW00\",\"source\":\"manual\",\"media\":\"中国青年网\",\"publish_time\":\"2020-03-22 11:04:00\",\"can_use\":1,\"desc\":\"首批国家援鄂抗疫中医医疗队接到国家药品监督管理局通知,由该团队研制的化湿败毒颗粒获得临床试验批件。这是国家药品监督管理局批复的首个治疗新冠肺炎的中药临床批件。\",\"url\":\"https://view.inews.qq.com/a/20200322A08HBW00\",\"title\":\"首个治疗新冠肺炎的中药获临床批件\"},{\"cmsId\":\"20200322A073I000\",\"source\":\"manual\",\"media\":\"国际在线\",\"publish_time\":\"2020-03-22 10:11:00\",\"can_use\":1,\"desc\":\"据美国有线电视新闻网(CNN)22日报道,美国副总统彭斯及妻子新冠肺炎检测呈阴性。\",\"url\":\"https://view.inews.qq.com/a/20200322A073I000\",\"title\":\"美国副总统彭斯及妻子新冠肺炎检测呈阴性\"},{\"cmsId\":\"20200322A06P8M00\",\"source\":\"manual\",\"media\":\"海外网\",\"publish_time\":\"2020-03-22 10:01:00\",\"can_use\":1,\"desc\":\"美联社当地时间21日报道,纽约市一监狱内一名犯人确诊新冠肺炎,这是美国联邦监狱首次出现犯人感染新冠肺炎。目前该犯人处于单独监禁,只有医护人员在对他进行例行检查。\",\"url\":\"https://view.inews.qq.com/a/20200322A06P8M00\",\"title\":\"美国联邦监狱发现首例新冠肺炎确诊病例\"},{\"cmsId\":\"JSC2020032200129000\",\"source\":\"push\",\"media\":\"\",\"publish_time\":\"2020-03-22 09:57:39\",\"can_use\":1,\"desc\":\"江苏3月21日新增2例境外输入新冠肺炎确诊病例,其中苏州报告1例(泰国输入),宿迁报告1例(英国输入)。\",\"url\":\"https://view.inews.qq.com/a/JSC2020032200129000\",\"title\":\"江苏新增2例境外输入病例 系首次报告\"},{\"cmsId\":\"20200322A05S4200\",\"source\":\"push\",\"media\":\"\",\"publish_time\":\"2020-03-22 09:35:14\",\"can_use\":1,\"desc\":\"深圳3月21日确诊3例境外输入新冠肺炎新病例,累计达22例,4名密切接触者已被隔离。\",\"url\":\"https://view.inews.qq.com/a/20200322A05S4200\",\"title\":\"深圳新增3例境外输入病例轨迹公布\"},{\"cmsId\":\"GDC2020032200244400\",\"source\":\"push\",\"media\":\"\",\"publish_time\":\"2020-03-22 09:17:09\",\"can_use\":1,\"desc\":\"3月21日0时-24时,广东新增8例确诊病例,其中境外输入7例,境外输入关联病例1例。\",\"url\":\"https://view.inews.qq.com/a/GDC2020032200244400\",\"title\":\"广东新增8例确诊病例\"},{\"cmsId\":\"PJX2020032200224500\",\"source\":\"push\",\"media\":\"\",\"publish_time\":\"2020-03-22 09:07:44\",\"can_use\":1,\"desc\":\"2020年3月21日,江西南昌市报告我省首例境外输入新型冠状病毒肺炎确诊病例,该患者为南昌籍在美国就读大学生。\",\"url\":\"https://view.inews.qq.com/a/PJX2020032200224500\",\"title\":\"江西新增1例境外输入确诊病例\"},{\"cmsId\":\"ZJC2020032200226500\",\"source\":\"push\",\"media\":\"\",\"publish_time\":\"2020-03-22 09:05:04\",\"can_use\":1,\"desc\":\"3月21日0-24时,浙江新增境外输入新冠肺炎确诊病例1例(西班牙输入)。\",\"url\":\"https://view.inews.qq.com/a/ZJC2020032200226500\",\"title\":\"浙江新增1例境外输入新冠肺炎病例\"}],\"provinceCompare\":{\"上海\":{\"nowConfirm\":8,\"confirmAdd\":10,\"dead\":0,\"heal\":2},\"云南\":{\"nowConfirm\":0,\"confirmAdd\":0,\"dead\":0,\"heal\":0},\"内蒙古\":{\"nowConfirm\":0,\"confirmAdd\":0,\"dead\":0,\"heal\":0},\"北京\":{\"nowConfirm\":21,\"confirmAdd\":36,\"dead\":0,\"heal\":0},\"台湾\":{\"nowConfirm\":19,\"confirmAdd\":46,\"dead\":0,\"heal\":1},\"吉林\":{\"nowConfirm\":0,\"confirmAdd\":0,\"dead\":0,\"heal\":0},\"四川\":{\"nowConfirm\":2,\"confirmAdd\":2,\"dead\":0,\"heal\":0},\"天津\":{\"nowConfirm\":1,\"confirmAdd\":1,\"dead\":0,\"heal\":0},\"宁夏\":{\"nowConfirm\":0,\"confirmAdd\":0,\"dead\":0,\"heal\":0},\"安徽\":{\"nowConfirm\":0,\"confirmAdd\":0,\"dead\":0,\"heal\":0},\"山东\":{\"nowConfirm\":0,\"confirmAdd\":0,\"dead\":0,\"heal\":0},\"山西\":{\"nowConfirm\":1,\"confirmAdd\":1,\"dead\":0,\"heal\":0},\"广东\":{\"nowConfirm\":14,\"confirmAdd\":15,\"dead\":0,\"heal\":1},\"广西\":{\"nowConfirm\":0,\"confirmAdd\":0,\"dead\":0,\"heal\":0},\"新疆\":{\"nowConfirm\":0,\"confirmAdd\":0,\"dead\":0,\"heal\":0},\"江苏\":{\"nowConfirm\":3,\"confirmAdd\":3,\"dead\":0,\"heal\":0},\"江西\":{\"nowConfirm\":0,\"confirmAdd\":0,\"dead\":0,\"heal\":0},\"河北\":{\"nowConfirm\":0,\"confirmAdd\":0,\"dead\":0,\"heal\":0},\"河南\":{\"nowConfirm\":0,\"confirmAdd\":0,\"dead\":0,\"heal\":0},\"浙江\":{\"nowConfirm\":2,\"confirmAdd\":2,\"dead\":0,\"heal\":0},\"海南\":{\"nowConfirm\":0,\"confirmAdd\":0,\"dead\":0,\"heal\":0},\"湖北\":{\"nowConfirm\":-450,\"confirmAdd\":1,\"dead\":7,\"heal\":444},\"湖南\":{\"nowConfirm\":0,\"confirmAdd\":0,\"dead\":0,\"heal\":0},\"澳门\":{\"nowConfirm\":4,\"confirmAdd\":4,\"dead\":0,\"heal\":0},\"甘肃\":{\"nowConfirm\":0,\"confirmAdd\":0,\"dead\":0,\"heal\":0},\"福建\":{\"nowConfirm\":5,\"confirmAdd\":5,\"dead\":0,\"heal\":0},\"西藏\":{\"nowConfirm\":0,\"confirmAdd\":0,\"dead\":0,\"heal\":0},\"贵州\":{\"nowConfirm\":0,\"confirmAdd\":0,\"dead\":0,\"heal\":0},\"辽宁\":{\"nowConfirm\":0,\"confirmAdd\":0,\"dead\":0,\"heal\":0},\"重庆\":{\"nowConfirm\":1,\"confirmAdd\":1,\"dead\":0,\"heal\":0},\"陕西\":{\"nowConfirm\":0,\"confirmAdd\":1,\"dead\":0,\"heal\":1},\"青海\":{\"nowConfirm\":0,\"confirmAdd\":0,\"dead\":0,\"heal\":0},\"香港\":{\"nowConfirm\":68,\"confirmAdd\":30,\"dead\":0,\"heal\":1},\"黑龙江\":{\"nowConfirm\":-3,\"confirmAdd\":0,\"dead\":0,\"heal\":3}},\"cityStatis\":{\"confirm\":337,\"zeroNowConfirm\":302,\"notZeroNowConfirm\":35},\"foreignList\":[{\"name\":\"意大利\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":4789,\"confirmAddCut\":0,\"confirm\":63927,\"suspect\":0,\"dead\":6077,\"heal\":7432,\"nowConfirm\":50418,\"confirmCompare\":4789,\"nowConfirmCompare\":3780,\"healCompare\":408,\"deadCompare\":601,\"children\":[{\"name\":\"伦巴第\",\"date\":\"03.24\",\"nameMap\":\"Lombardy\",\"isUpdated\":true,\"confirmAdd\":1555,\"confirmAddCut\":0,\"confirm\":28761,\"suspect\":0,\"dead\":3776,\"heal\":6075},{\"name\":\"艾米利亚-罗马涅\",\"date\":\"03.24\",\"nameMap\":\"Emilia-Romagna\",\"isUpdated\":true,\"confirmAdd\":980,\"confirmAddCut\":0,\"confirm\":8535,\"suspect\":0,\"dead\":892,\"heal\":423},{\"name\":\"威尼托\",\"date\":\"03.24\",\"nameMap\":\"Veneto\",\"isUpdated\":true,\"confirmAdd\":383,\"confirmAddCut\":0,\"confirm\":5505,\"suspect\":0,\"dead\":192,\"heal\":327},{\"name\":\"皮埃蒙特\",\"date\":\"03.24\",\"nameMap\":\"Piemont\",\"isUpdated\":true,\"confirmAdd\":441,\"confirmAddCut\":0,\"confirm\":4861,\"suspect\":0,\"dead\":315,\"heal\":17},{\"name\":\"马尔凯\",\"date\":\"03.24\",\"nameMap\":\"Marche\",\"isUpdated\":true,\"confirmAdd\":148,\"confirmAddCut\":0,\"confirm\":2569,\"suspect\":0,\"dead\":203,\"heal\":8},{\"name\":\"托斯卡纳\",\"date\":\"03.24\",\"nameMap\":\"Tuscany\",\"isUpdated\":true,\"confirmAdd\":184,\"confirmAddCut\":0,\"confirm\":2461,\"suspect\":0,\"dead\":109,\"heal\":51},{\"name\":\"利古里亚\",\"date\":\"03.24\",\"nameMap\":\"Liguria\",\"isUpdated\":true,\"confirmAdd\":259,\"confirmAddCut\":0,\"confirm\":1924,\"suspect\":0,\"dead\":212,\"heal\":159},{\"name\":\"拉齐奥\",\"date\":\"03.24\",\"nameMap\":\"Lazio\",\"isUpdated\":true,\"confirmAdd\":157,\"confirmAddCut\":0,\"confirm\":1540,\"suspect\":0,\"dead\":63,\"heal\":63},{\"name\":\"坎帕尼亚\",\"date\":\"03.24\",\"nameMap\":\"Campania\",\"isUpdated\":true,\"confirmAdd\":90,\"confirmAddCut\":0,\"confirm\":1026,\"suspect\":0,\"dead\":49,\"heal\":48},{\"name\":\"特伦蒂诺-上阿迪杰\",\"date\":\"03.24\",\"nameMap\":\"Trentino-Alto Adige - Südtirol\",\"isUpdated\":true,\"confirmAdd\":69,\"confirmAddCut\":0,\"confirm\":1023,\"suspect\":0,\"dead\":41,\"heal\":68},{\"name\":\"弗留利-威尼斯-朱利亚\",\"date\":\"03.24\",\"nameMap\":\"Friuli Venezia Giulia\",\"isUpdated\":true,\"confirmAdd\":56,\"confirmAddCut\":0,\"confirm\":930,\"suspect\":0,\"dead\":54,\"heal\":105},{\"name\":\"阿普利亚\",\"date\":\"03.24\",\"nameMap\":\"Apulia\",\"isUpdated\":true,\"confirmAdd\":120,\"confirmAddCut\":0,\"confirm\":906,\"suspect\":0,\"dead\":37,\"heal\":7},{\"name\":\"博尔扎诺\",\"date\":\"03.24\",\"nameMap\":\"Bolzano\",\"isUpdated\":true,\"confirmAdd\":46,\"confirmAddCut\":0,\"confirm\":724,\"suspect\":0,\"dead\":29,\"heal\":7},{\"name\":\"西西里\",\"date\":\"03.24\",\"nameMap\":\"Sicily\",\"isUpdated\":true,\"confirmAdd\":91,\"confirmAddCut\":0,\"confirm\":721,\"suspect\":0,\"dead\":13,\"heal\":27},{\"name\":\"阿布鲁佐\",\"date\":\"03.24\",\"nameMap\":\"Abruzzo\",\"isUpdated\":true,\"confirmAdd\":76,\"confirmAddCut\":0,\"confirm\":663,\"suspect\":0,\"dead\":38,\"heal\":20},{\"name\":\"翁布里亚\",\"date\":\"03.24\",\"nameMap\":\"Umbria\",\"isUpdated\":true,\"confirmAdd\":56,\"confirmAddCut\":0,\"confirm\":577,\"suspect\":0,\"dead\":16,\"heal\":5},{\"name\":\"瓦莱达奥斯塔\",\"date\":\"03.24\",\"nameMap\":\"Aosta Valley\",\"isUpdated\":true,\"confirmAdd\":29,\"confirmAddCut\":0,\"confirm\":393,\"suspect\":0,\"dead\":12,\"heal\":2},{\"name\":\"撒丁岛\",\"date\":\"03.24\",\"nameMap\":\"Sardinia\",\"isUpdated\":true,\"confirmAdd\":20,\"confirmAddCut\":0,\"confirm\":359,\"suspect\":0,\"dead\":11,\"heal\":5},{\"name\":\"卡拉布里亚\",\"date\":\"03.24\",\"nameMap\":\"Calabria\",\"isUpdated\":true,\"confirmAdd\":19,\"confirmAddCut\":0,\"confirm\":292,\"suspect\":0,\"dead\":7,\"heal\":5},{\"name\":\"巴西利卡塔\",\"date\":\"03.24\",\"nameMap\":\"Basilicata\",\"isUpdated\":true,\"confirmAdd\":9,\"confirmAddCut\":0,\"confirm\":90,\"suspect\":0,\"dead\":1,\"heal\":0},{\"name\":\"莫利塞\",\"date\":\"03.24\",\"nameMap\":\"Molise\",\"isUpdated\":true,\"confirmAdd\":1,\"confirmAddCut\":0,\"confirm\":67,\"suspect\":0,\"dead\":7,\"heal\":10},{\"name\":\"地区待确认\",\"date\":\"03.22\",\"nameMap\":\"\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":0,\"suspect\":0,\"dead\":0,\"heal\":0}]},{\"name\":\"美国\",\"continent\":\"北美洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":11219,\"confirmAddCut\":0,\"confirm\":46443,\"suspect\":0,\"dead\":586,\"heal\":314,\"nowConfirm\":45543,\"confirmCompare\":11219,\"nowConfirmCompare\":10968,\"healCompare\":136,\"deadCompare\":115,\"children\":[{\"name\":\"纽约\",\"date\":\"03.24\",\"nameMap\":\"New York\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":23230,\"suspect\":0,\"dead\":183,\"heal\":0},{\"name\":\"新泽西\",\"date\":\"03.24\",\"nameMap\":\"New Jersey\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":2844,\"suspect\":0,\"dead\":27,\"heal\":0},{\"name\":\"华盛顿州\",\"date\":\"03.24\",\"nameMap\":\"Washington\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":2221,\"suspect\":0,\"dead\":111,\"heal\":1},{\"name\":\"加利福尼亚\",\"date\":\"03.24\",\"nameMap\":\"California\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":2212,\"suspect\":0,\"dead\":43,\"heal\":2},{\"name\":\"密歇根州\",\"date\":\"03.24\",\"nameMap\":\"Michigan\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":1329,\"suspect\":0,\"dead\":15,\"heal\":0},{\"name\":\"伊利诺伊\",\"date\":\"03.24\",\"nameMap\":\"Illinois\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":1285,\"suspect\":0,\"dead\":12,\"heal\":2},{\"name\":\"佛罗里达\",\"date\":\"03.24\",\"nameMap\":\"Florida\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":1227,\"suspect\":0,\"dead\":18,\"heal\":0},{\"name\":\"路易斯安那州\",\"date\":\"03.24\",\"nameMap\":\"Louisiana\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":1172,\"suspect\":0,\"dead\":35,\"heal\":0},{\"name\":\"乔治亚\",\"date\":\"03.24\",\"nameMap\":\"Georgia\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":803,\"suspect\":0,\"dead\":26,\"heal\":0},{\"name\":\"德克萨斯\",\"date\":\"03.24\",\"nameMap\":\"Texas\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":799,\"suspect\":0,\"dead\":9,\"heal\":0},{\"name\":\"马萨诸塞\",\"date\":\"03.24\",\"nameMap\":\"Massachusetts\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":777,\"suspect\":0,\"dead\":9,\"heal\":1},{\"name\":\"科罗拉多\",\"date\":\"03.24\",\"nameMap\":\"Colorado\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":723,\"suspect\":0,\"dead\":7,\"heal\":0},{\"name\":\"宾夕法尼亚\",\"date\":\"03.24\",\"nameMap\":\"Pennsylvania\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":698,\"suspect\":0,\"dead\":6,\"heal\":0},{\"name\":\"田纳西\",\"date\":\"03.24\",\"nameMap\":\"Tennessee\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":615,\"suspect\":0,\"dead\":2,\"heal\":0},{\"name\":\"俄亥俄州\",\"date\":\"03.24\",\"nameMap\":\"Ohio\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":443,\"suspect\":0,\"dead\":6,\"heal\":0},{\"name\":\"威斯康星\",\"date\":\"03.24\",\"nameMap\":\"Wisconsin\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":425,\"suspect\":0,\"dead\":5,\"heal\":1},{\"name\":\"北卡罗来纳\",\"date\":\"03.24\",\"nameMap\":\"North Carolina\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":420,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"康涅狄格\",\"date\":\"03.24\",\"nameMap\":\"Connecticut\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":415,\"suspect\":0,\"dead\":10,\"heal\":0},{\"name\":\"南卡罗来纳州\",\"date\":\"03.24\",\"nameMap\":\"South Carolina\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":298,\"suspect\":0,\"dead\":5,\"heal\":0},{\"name\":\"马里兰\",\"date\":\"03.24\",\"nameMap\":\"Maryland\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":290,\"suspect\":0,\"dead\":3,\"heal\":0},{\"name\":\"印第安纳\",\"date\":\"03.24\",\"nameMap\":\"Indiana\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":271,\"suspect\":0,\"dead\":7,\"heal\":0},{\"name\":\"内华达\",\"date\":\"03.24\",\"nameMap\":\"Nevada\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":263,\"suspect\":0,\"dead\":4,\"heal\":0},{\"name\":\"犹他\",\"date\":\"03.24\",\"nameMap\":\"Utah\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":257,\"suspect\":0,\"dead\":1,\"heal\":0},{\"name\":\"弗吉尼亚\",\"date\":\"03.24\",\"nameMap\":\"Virginia\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":254,\"suspect\":0,\"dead\":7,\"heal\":0},{\"name\":\"密西西比州\",\"date\":\"03.24\",\"nameMap\":\"Mississippi\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":249,\"suspect\":0,\"dead\":1,\"heal\":0},{\"name\":\"明尼苏达\",\"date\":\"03.24\",\"nameMap\":\"Minnesota\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":235,\"suspect\":0,\"dead\":1,\"heal\":0},{\"name\":\"亚利桑那\",\"date\":\"03.24\",\"nameMap\":\"Arizona\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":235,\"suspect\":0,\"dead\":3,\"heal\":1},{\"name\":\"密苏里州\",\"date\":\"03.24\",\"nameMap\":\"Missouri\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":216,\"suspect\":0,\"dead\":4,\"heal\":0},{\"name\":\"阿肯色州\",\"date\":\"03.24\",\"nameMap\":\"Arkansas\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":197,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"阿拉巴马州\",\"date\":\"03.24\",\"nameMap\":\"Alabama\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":196,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"俄勒冈\",\"date\":\"03.24\",\"nameMap\":\"Oregon\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":191,\"suspect\":0,\"dead\":5,\"heal\":0},{\"name\":\"华盛顿特区\",\"date\":\"03.24\",\"nameMap\":\"District of Columbia\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":141,\"suspect\":0,\"dead\":2,\"heal\":0},{\"name\":\"肯塔基\",\"date\":\"03.24\",\"nameMap\":\"Kentucky\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":124,\"suspect\":0,\"dead\":4,\"heal\":0},{\"name\":\"缅因州\",\"date\":\"03.24\",\"nameMap\":\"Maine\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":107,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"罗德岛\",\"date\":\"03.24\",\"nameMap\":\"Rhode Island\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":106,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"爱荷华州\",\"date\":\"03.24\",\"nameMap\":\"Iowa\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":105,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"新罕布什尔\",\"date\":\"03.24\",\"nameMap\":\"New Hampshire\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":101,\"suspect\":0,\"dead\":1,\"heal\":0},{\"name\":\"特拉华州\",\"date\":\"03.24\",\"nameMap\":\"Delaware\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":87,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"堪萨斯州\",\"date\":\"03.24\",\"nameMap\":\"Kansas\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":85,\"suspect\":0,\"dead\":2,\"heal\":0},{\"name\":\"新墨西哥州\",\"date\":\"03.24\",\"nameMap\":\"New Mexico\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":83,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"俄克拉荷马\",\"date\":\"03.24\",\"nameMap\":\"Oklahoma\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":81,\"suspect\":0,\"dead\":2,\"heal\":0},{\"name\":\"夏威夷\",\"date\":\"03.24\",\"nameMap\":\"Hawaii\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":77,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"佛蒙特\",\"date\":\"03.24\",\"nameMap\":\"Vermont\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":75,\"suspect\":0,\"dead\":5,\"heal\":0},{\"name\":\"爱达荷州\",\"date\":\"03.24\",\"nameMap\":\"Idaho\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":68,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"内布拉斯加\",\"date\":\"03.24\",\"nameMap\":\"Nebraska\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":64,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"钻石公主号邮轮\",\"date\":\"03.24\",\"nameMap\":\"\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":49,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"蒙大拿\",\"date\":\"03.24\",\"nameMap\":\"Montana\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":46,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"阿拉斯加州\",\"date\":\"03.24\",\"nameMap\":\"Alaska\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":36,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"北达科他州\",\"date\":\"03.24\",\"nameMap\":\"North Dakota\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":33,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"波多黎各\",\"date\":\"03.24\",\"nameMap\":\"Puerto Rico\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":31,\"suspect\":0,\"dead\":2,\"heal\":0},{\"name\":\"关岛\",\"date\":\"03.24\",\"nameMap\":\"Guam\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":29,\"suspect\":0,\"dead\":1,\"heal\":0},{\"name\":\"至尊公主号邮轮\",\"date\":\"03.24\",\"nameMap\":\"\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":28,\"suspect\":0,\"dead\":1,\"heal\":0},{\"name\":\"怀俄明州\",\"date\":\"03.24\",\"nameMap\":\"Wyoming\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":28,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"南达科塔州\",\"date\":\"03.24\",\"nameMap\":\"South Dakota\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":28,\"suspect\":0,\"dead\":1,\"heal\":0},{\"name\":\"西弗吉尼亚\",\"date\":\"03.24\",\"nameMap\":\"West Virginia\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":20,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"美属维尔京群岛\",\"date\":\"03.24\",\"nameMap\":\"US Virgin Islands\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":17,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"撤回侨民\",\"date\":\"03.24\",\"nameMap\":\"\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":4,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"地区待确认\",\"date\":\"03.24\",\"nameMap\":\"\",\"isUpdated\":true,\"confirmAdd\":11219,\"confirmAddCut\":0,\"confirm\":0,\"suspect\":0,\"dead\":0,\"heal\":306}]},{\"name\":\"西班牙\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":6584,\"confirmAddCut\":0,\"confirm\":39673,\"suspect\":0,\"dead\":2696,\"heal\":3355,\"nowConfirm\":33622,\"confirmCompare\":6584,\"nowConfirmCompare\":5290,\"healCompare\":780,\"deadCompare\":514},{\"name\":\"德国\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":2957,\"confirmAddCut\":0,\"confirm\":30138,\"suspect\":0,\"dead\":123,\"heal\":453,\"nowConfirm\":29562,\"confirmCompare\":2957,\"nowConfirmCompare\":2916,\"healCompare\":31,\"deadCompare\":10},{\"name\":\"伊朗\",\"continent\":\"亚洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":1762,\"confirmAddCut\":0,\"confirm\":24811,\"suspect\":0,\"dead\":1934,\"heal\":8913,\"nowConfirm\":13964,\"confirmCompare\":1762,\"nowConfirmCompare\":1103,\"healCompare\":537,\"deadCompare\":122,\"children\":[{\"name\":\"德黑兰省\",\"date\":\"03.23\",\"nameMap\":\"Tehran\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":5098,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"伊斯法罕省\",\"date\":\"03.23\",\"nameMap\":\"Esfahan\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":1979,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"马赞德兰省\",\"date\":\"03.23\",\"nameMap\":\"Mazandaran\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":1700,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"地区待确认\",\"date\":\"03.24\",\"nameMap\":\"\",\"isUpdated\":true,\"confirmAdd\":1411,\"confirmAddCut\":0,\"confirm\":1411,\"suspect\":0,\"dead\":1812,\"heal\":8376},{\"name\":\"吉兰省\",\"date\":\"03.23\",\"nameMap\":\"Gilan\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":1191,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"库姆省\",\"date\":\"03.23\",\"nameMap\":\"Qom\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":1178,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"厄尔布尔士省\",\"date\":\"03.23\",\"nameMap\":\"Alborz\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":1177,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"中央省\",\"date\":\"03.23\",\"nameMap\":\"Markazi\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":882,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"拉扎维霍拉桑省\",\"date\":\"03.23\",\"nameMap\":\"Razavi Khorasan\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":858,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"东阿塞拜疆省\",\"date\":\"03.23\",\"nameMap\":\"East Azarbaijan\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":813,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"亚兹德省\",\"date\":\"03.23\",\"nameMap\":\"Yazd\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":725,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"加兹温省\",\"date\":\"03.23\",\"nameMap\":\"Qazvin\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":669,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"塞姆南省\",\"date\":\"03.23\",\"nameMap\":\"Semnan\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":645,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"法尔斯省\",\"date\":\"03.23\",\"nameMap\":\"Fars\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":505,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"洛雷斯坦省\",\"date\":\"03.23\",\"nameMap\":\"Lorestan\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":476,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"胡泽斯坦省\",\"date\":\"03.23\",\"nameMap\":\"Khuzestan\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":444,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"西阿塞拜疆省\",\"date\":\"03.23\",\"nameMap\":\"West Azarbaijan\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":395,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"赞詹省\",\"date\":\"03.23\",\"nameMap\":\"Zanjan\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":394,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"古列斯坦省\",\"date\":\"03.23\",\"nameMap\":\"Golestan\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":391,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"阿尔达比勒省\",\"date\":\"03.23\",\"nameMap\":\"Ardebil\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":289,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"哈马丹省\",\"date\":\"03.23\",\"nameMap\":\"Hamadan\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":243,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"库尔德斯坦省\",\"date\":\"03.23\",\"nameMap\":\"Kordestan\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":238,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"伊拉姆省\",\"date\":\"03.23\",\"nameMap\":\"Ilam\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":183,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"南霍拉桑省\",\"date\":\"03.23\",\"nameMap\":\"South Khorasan\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":178,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"克尔曼沙省\",\"date\":\"03.23\",\"nameMap\":\"Kermanshah\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":175,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"克尔曼省\",\"date\":\"03.23\",\"nameMap\":\"Kerman\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":169,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"北霍拉桑省\",\"date\":\"03.23\",\"nameMap\":\"North Khorasan\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":165,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"霍尔木兹甘省\",\"date\":\"03.23\",\"nameMap\":\"Hormozgan\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":148,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"锡斯坦俾路支斯坦省\",\"date\":\"03.23\",\"nameMap\":\"Sistan and Baluchestan\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":134,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"科吉卢耶博韦艾哈迈德省\",\"date\":\"03.23\",\"nameMap\":\"Kohgiluyeh and Buyer Ahmad\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":73,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"恰马哈勒巴赫蒂亚里省\",\"date\":\"03.23\",\"nameMap\":\"Chahar Mahall and Bakhtiari\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":68,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"布什尔省\",\"date\":\"03.23\",\"nameMap\":\"Bushehr\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":55,\"suspect\":0,\"dead\":0,\"heal\":0}]},{\"name\":\"法国\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":3176,\"confirmAddCut\":0,\"confirm\":19856,\"suspect\":0,\"dead\":860,\"heal\":2200,\"nowConfirm\":16796,\"confirmCompare\":3176,\"nowConfirmCompare\":2990,\"healCompare\":0,\"deadCompare\":186},{\"name\":\"瑞士\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":1057,\"confirmAddCut\":0,\"confirm\":9117,\"suspect\":0,\"dead\":122,\"heal\":131,\"nowConfirm\":8864,\"confirmCompare\":1057,\"nowConfirmCompare\":1035,\"healCompare\":0,\"deadCompare\":22},{\"name\":\"韩国\",\"continent\":\"亚洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":76,\"confirmAddCut\":0,\"confirm\":9037,\"suspect\":0,\"dead\":120,\"heal\":3507,\"nowConfirm\":5410,\"confirmCompare\":76,\"nowConfirmCompare\":-274,\"healCompare\":341,\"deadCompare\":9,\"children\":[{\"name\":\"大邱\",\"date\":\"03.24\",\"nameMap\":\"Daegu\",\"isUpdated\":true,\"confirmAdd\":31,\"confirmAddCut\":0,\"confirm\":6442,\"suspect\":0,\"dead\":88,\"heal\":2571},{\"name\":\"庆尚北道\",\"date\":\"03.24\",\"nameMap\":\"North Gyeongsang\",\"isUpdated\":true,\"confirmAdd\":1,\"confirmAddCut\":0,\"confirm\":1257,\"suspect\":0,\"dead\":26,\"heal\":507},{\"name\":\"京畿道\",\"date\":\"03.24\",\"nameMap\":\"Gyeonggi\",\"isUpdated\":true,\"confirmAdd\":15,\"confirmAddCut\":0,\"confirm\":366,\"suspect\":0,\"dead\":4,\"heal\":97},{\"name\":\"首尔\",\"date\":\"03.24\",\"nameMap\":\"Seoul\",\"isUpdated\":true,\"confirmAdd\":4,\"confirmAddCut\":0,\"confirm\":334,\"suspect\":0,\"dead\":0,\"heal\":72},{\"name\":\"忠清南道\",\"date\":\"03.24\",\"nameMap\":\"South Chungcheong\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":120,\"suspect\":0,\"dead\":0,\"heal\":56},{\"name\":\"釜山\",\"date\":\"03.24\",\"nameMap\":\"Busan\",\"isUpdated\":true,\"confirmAdd\":2,\"confirmAddCut\":0,\"confirm\":111,\"suspect\":0,\"dead\":1,\"heal\":71},{\"name\":\"庆尚南道\",\"date\":\"03.24\",\"nameMap\":\"South Gyeongsang\",\"isUpdated\":true,\"confirmAdd\":1,\"confirmAddCut\":0,\"confirm\":90,\"suspect\":0,\"dead\":0,\"heal\":48},{\"name\":\"地区待确认\",\"date\":\"03.24\",\"nameMap\":\"\",\"isUpdated\":true,\"confirmAdd\":20,\"confirmAddCut\":0,\"confirm\":67,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"世宗\",\"date\":\"03.24\",\"nameMap\":\"Sejong\",\"isUpdated\":true,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":42,\"suspect\":0,\"dead\":0,\"heal\":3},{\"name\":\"仁川\",\"date\":\"03.24\",\"nameMap\":\"Incheon\",\"isUpdated\":true,\"confirmAdd\":1,\"confirmAddCut\":0,\"confirm\":41,\"suspect\":0,\"dead\":0,\"heal\":8},{\"name\":\"忠清北道\",\"date\":\"03.24\",\"nameMap\":\"North Chungcheong\",\"isUpdated\":true,\"confirmAdd\":1,\"confirmAddCut\":0,\"confirm\":38,\"suspect\":0,\"dead\":0,\"heal\":11},{\"name\":\"蔚山\",\"date\":\"03.24\",\"nameMap\":\"Ulsan\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":36,\"suspect\":0,\"dead\":0,\"heal\":18},{\"name\":\"江原道\",\"date\":\"03.24\",\"nameMap\":\"Gangwon\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":30,\"suspect\":0,\"dead\":1,\"heal\":14},{\"name\":\"大田\",\"date\":\"03.24\",\"nameMap\":\"Daejeon\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":24,\"suspect\":0,\"dead\":0,\"heal\":6},{\"name\":\"光州\",\"date\":\"03.24\",\"nameMap\":\"Gwangju\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":19,\"suspect\":0,\"dead\":0,\"heal\":11},{\"name\":\"全罗北道\",\"date\":\"03.24\",\"nameMap\":\"North Jeolla\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":10,\"suspect\":0,\"dead\":0,\"heal\":7},{\"name\":\"全罗南道\",\"date\":\"03.24\",\"nameMap\":\"South Jeolla\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":6,\"suspect\":0,\"dead\":0,\"heal\":3},{\"name\":\"济州岛\",\"date\":\"03.24\",\"nameMap\":\"Jeju\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":4,\"suspect\":0,\"dead\":0,\"heal\":4}]},{\"name\":\"英国\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":967,\"confirmAddCut\":0,\"confirm\":6650,\"suspect\":0,\"dead\":335,\"heal\":98,\"nowConfirm\":6217,\"confirmCompare\":967,\"nowConfirmCompare\":913,\"healCompare\":0,\"deadCompare\":54},{\"name\":\"荷兰\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":545,\"confirmAddCut\":0,\"confirm\":4749,\"suspect\":0,\"dead\":213,\"heal\":0,\"nowConfirm\":4536,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"奥地利\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":859,\"confirmAddCut\":0,\"confirm\":4486,\"suspect\":0,\"dead\":25,\"heal\":9,\"nowConfirm\":4452,\"confirmCompare\":859,\"nowConfirmCompare\":850,\"healCompare\":0,\"deadCompare\":9},{\"name\":\"比利时\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":526,\"confirmAddCut\":0,\"confirm\":4269,\"suspect\":0,\"dead\":122,\"heal\":350,\"nowConfirm\":3797,\"confirmCompare\":526,\"nowConfirmCompare\":492,\"healCompare\":0,\"deadCompare\":34},{\"name\":\"挪威\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":311,\"confirmAddCut\":0,\"confirm\":2573,\"suspect\":0,\"dead\":10,\"heal\":1,\"nowConfirm\":2562,\"confirmCompare\":311,\"nowConfirmCompare\":308,\"healCompare\":0,\"deadCompare\":3},{\"name\":\"澳大利亚\",\"continent\":\"大洋洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":427,\"confirmAddCut\":0,\"confirm\":2136,\"suspect\":0,\"dead\":8,\"heal\":118,\"nowConfirm\":2010,\"confirmCompare\":427,\"nowConfirmCompare\":396,\"healCompare\":30,\"deadCompare\":1},{\"name\":\"加拿大\",\"continent\":\"北美洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":619,\"confirmAddCut\":0,\"confirm\":2091,\"suspect\":0,\"dead\":25,\"heal\":109,\"nowConfirm\":1957,\"confirmCompare\":619,\"nowConfirmCompare\":520,\"healCompare\":95,\"deadCompare\":4},{\"name\":\"葡萄牙\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":460,\"confirmAddCut\":0,\"confirm\":2060,\"suspect\":0,\"dead\":23,\"heal\":5,\"nowConfirm\":2032,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"瑞典\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":82,\"confirmAddCut\":0,\"confirm\":2016,\"suspect\":0,\"dead\":25,\"heal\":16,\"nowConfirm\":1975,\"confirmCompare\":82,\"nowConfirmCompare\":80,\"healCompare\":0,\"deadCompare\":2},{\"name\":\"巴西\",\"continent\":\"南美洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":345,\"confirmAddCut\":0,\"confirm\":1891,\"suspect\":0,\"dead\":34,\"heal\":2,\"nowConfirm\":1855,\"confirmCompare\":345,\"nowConfirmCompare\":336,\"healCompare\":0,\"deadCompare\":9},{\"name\":\"以色列\",\"continent\":\"亚洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":585,\"confirmAddCut\":0,\"confirm\":1656,\"suspect\":0,\"dead\":1,\"heal\":49,\"nowConfirm\":1606,\"confirmCompare\":418,\"nowConfirmCompare\":406,\"healCompare\":12,\"deadCompare\":0},{\"name\":\"马来西亚\",\"continent\":\"亚洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":318,\"confirmAddCut\":0,\"confirm\":1624,\"suspect\":0,\"dead\":15,\"heal\":183,\"nowConfirm\":1426,\"confirmCompare\":106,\"nowConfirmCompare\":36,\"healCompare\":69,\"deadCompare\":1},{\"name\":\"丹麦\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":127,\"confirmAddCut\":0,\"confirm\":1577,\"suspect\":0,\"dead\":24,\"heal\":1,\"nowConfirm\":1552,\"confirmCompare\":127,\"nowConfirmCompare\":127,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"土耳其\",\"continent\":\"亚洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":293,\"confirmAddCut\":0,\"confirm\":1529,\"suspect\":0,\"dead\":37,\"heal\":0,\"nowConfirm\":1492,\"confirmCompare\":293,\"nowConfirmCompare\":286,\"healCompare\":0,\"deadCompare\":7},{\"name\":\"捷克\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":116,\"confirmAddCut\":0,\"confirm\":1236,\"suspect\":0,\"dead\":1,\"heal\":7,\"nowConfirm\":1228,\"confirmCompare\":71,\"nowConfirmCompare\":71,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"日本本土\",\"continent\":\"亚洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":26,\"confirmAddCut\":0,\"confirm\":1166,\"suspect\":0,\"dead\":42,\"heal\":285,\"nowConfirm\":839,\"confirmCompare\":26,\"nowConfirmCompare\":26,\"healCompare\":0,\"deadCompare\":0,\"children\":[{\"name\":\"北海道\",\"date\":\"03.23\",\"nameMap\":\"Hokkaido\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":162,\"suspect\":0,\"dead\":4,\"heal\":0},{\"name\":\"东京\",\"date\":\"03.23\",\"nameMap\":\"Tokyo\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":154,\"suspect\":0,\"dead\":4,\"heal\":0},{\"name\":\"爱知县\",\"date\":\"03.23\",\"nameMap\":\"Aichi\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":145,\"suspect\":0,\"dead\":17,\"heal\":0},{\"name\":\"大阪府\",\"date\":\"03.23\",\"nameMap\":\"Osaka\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":134,\"suspect\":0,\"dead\":2,\"heal\":0},{\"name\":\"兵库县\",\"date\":\"03.23\",\"nameMap\":\"Hyogo\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":113,\"suspect\":0,\"dead\":6,\"heal\":0},{\"name\":\"神奈川县\",\"date\":\"03.23\",\"nameMap\":\"Kanagawa\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":77,\"suspect\":0,\"dead\":3,\"heal\":0},{\"name\":\"埼玉县\",\"date\":\"03.23\",\"nameMap\":\"Saitama\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":52,\"suspect\":0,\"dead\":1,\"heal\":0},{\"name\":\"千叶县\",\"date\":\"03.23\",\"nameMap\":\"Chiba\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":47,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"检疫等工作人员\",\"date\":\"03.23\",\"nameMap\":\"\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":28,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"新潟县\",\"date\":\"03.24\",\"nameMap\":\"Niigata\",\"isUpdated\":true,\"confirmAdd\":1,\"confirmAddCut\":0,\"confirm\":28,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"京都府\",\"date\":\"03.23\",\"nameMap\":\"Kyoto\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":25,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"大分县\",\"date\":\"03.23\",\"nameMap\":\"Oita\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":22,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"和歌山县\",\"date\":\"03.22\",\"nameMap\":\"Wakayama\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":17,\"suspect\":0,\"dead\":1,\"heal\":0},{\"name\":\"武汉包机回国者\",\"date\":\"03.11\",\"nameMap\":\"\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":14,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"高知县\",\"date\":\"03.22\",\"nameMap\":\"Kochi\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":12,\"suspect\":0,\"dead\":1,\"heal\":0},{\"name\":\"群马县\",\"date\":\"03.23\",\"nameMap\":\"Gunma\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":11,\"suspect\":0,\"dead\":1,\"heal\":0},{\"name\":\"三重县\",\"date\":\"03.22\",\"nameMap\":\"Mie\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":9,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"奈良县\",\"date\":\"03.22\",\"nameMap\":\"Nara\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":9,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"石川县\",\"date\":\"03.22\",\"nameMap\":\"Ishikawa\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":8,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"岐阜县\",\"date\":\"03.23\",\"nameMap\":\"Gifu\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":8,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"熊本县\",\"date\":\"03.22\",\"nameMap\":\"Kumamoto\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":7,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"福冈县\",\"date\":\"03.23\",\"nameMap\":\"Fukuoka\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":6,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"茨城县\",\"date\":\"03.23\",\"nameMap\":\"Ibaraki\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":5,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"滋贺县\",\"date\":\"03.23\",\"nameMap\":\"Shiga\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":5,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"冲绳县\",\"date\":\"03.24\",\"nameMap\":\"Okinawa\",\"isUpdated\":true,\"confirmAdd\":1,\"confirmAddCut\":0,\"confirm\":5,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"栃木县\",\"date\":\"03.23\",\"nameMap\":\"Tochigi\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":4,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"长野县\",\"date\":\"03.23\",\"nameMap\":\"Nagano\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":4,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"山口县\",\"date\":\"03.22\",\"nameMap\":\"Yamaguchi\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":4,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"静冈县\",\"date\":\"03.22\",\"nameMap\":\"Shizuoka\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":3,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"爱媛县\",\"date\":\"03.22\",\"nameMap\":\"Ehime\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":3,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"宫崎县\",\"date\":\"03.22\",\"nameMap\":\"Miyazaki\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":3,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"广岛县\",\"date\":\"03.22\",\"nameMap\":\"Hiroshima\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":3,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"山梨县\",\"date\":\"03.22\",\"nameMap\":\"Yamanashi\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":2,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"秋田县\",\"date\":\"03.23\",\"nameMap\":\"Akita\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":2,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"福岛县\",\"date\":\"03.22\",\"nameMap\":\"Fukushima\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":2,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"青森县\",\"date\":\"03.23\",\"nameMap\":\"Aomori\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":2,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"宫城县\",\"date\":\"03.22\",\"nameMap\":\"Miyagi\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":1,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"佐贺县\",\"date\":\"03.22\",\"nameMap\":\"\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":1,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"冈山县\",\"date\":\"03.23\",\"nameMap\":\"Okayama\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":1,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"福井县\",\"date\":\"03.23\",\"nameMap\":\"Fukui\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":1,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"香川县\",\"date\":\"03.23\",\"nameMap\":\"Kagawa\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":1,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"长崎县\",\"date\":\"03.20\",\"nameMap\":\"\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":1,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"德岛县\",\"date\":\"03.22\",\"nameMap\":\"Tokushima\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":1,\"suspect\":0,\"dead\":0,\"heal\":0},{\"name\":\"地区待确认\",\"date\":\"03.24\",\"nameMap\":\"\",\"isUpdated\":true,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":0,\"suspect\":0,\"dead\":2,\"heal\":285}]},{\"name\":\"爱尔兰\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":219,\"confirmAddCut\":0,\"confirm\":1125,\"suspect\":0,\"dead\":6,\"heal\":5,\"nowConfirm\":1114,\"confirmCompare\":219,\"nowConfirmCompare\":217,\"healCompare\":0,\"deadCompare\":2},{\"name\":\"厄瓜多尔\",\"continent\":\"南美洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":192,\"confirmAddCut\":0,\"confirm\":981,\"suspect\":0,\"dead\":18,\"heal\":3,\"nowConfirm\":960,\"confirmCompare\":192,\"nowConfirmCompare\":188,\"healCompare\":0,\"deadCompare\":4},{\"name\":\"巴基斯坦\",\"continent\":\"亚洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":93,\"confirmAddCut\":0,\"confirm\":892,\"suspect\":0,\"dead\":6,\"heal\":13,\"nowConfirm\":873,\"confirmCompare\":93,\"nowConfirmCompare\":92,\"healCompare\":0,\"deadCompare\":1},{\"name\":\"卢森堡\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":77,\"confirmAddCut\":0,\"confirm\":875,\"suspect\":0,\"dead\":8,\"heal\":0,\"nowConfirm\":867,\"confirmCompare\":77,\"nowConfirmCompare\":77,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"泰国\",\"continent\":\"亚洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":106,\"confirmAddCut\":0,\"confirm\":827,\"suspect\":0,\"dead\":4,\"heal\":57,\"nowConfirm\":766,\"confirmCompare\":106,\"nowConfirmCompare\":91,\"healCompare\":12,\"deadCompare\":3},{\"name\":\"波兰\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":115,\"confirmAddCut\":0,\"confirm\":749,\"suspect\":0,\"dead\":8,\"heal\":13,\"nowConfirm\":728,\"confirmCompare\":115,\"nowConfirmCompare\":114,\"healCompare\":0,\"deadCompare\":1},{\"name\":\"智利\",\"continent\":\"南美洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":114,\"confirmAddCut\":0,\"confirm\":746,\"suspect\":0,\"dead\":2,\"heal\":11,\"nowConfirm\":733,\"confirmCompare\":114,\"nowConfirmCompare\":110,\"healCompare\":3,\"deadCompare\":1},{\"name\":\"钻石号邮轮\",\"continent\":\"其他\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":712,\"suspect\":0,\"dead\":10,\"heal\":587,\"nowConfirm\":115,\"confirmCompare\":0,\"nowConfirmCompare\":-20,\"healCompare\":20,\"deadCompare\":0},{\"name\":\"芬兰\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":74,\"confirmAddCut\":0,\"confirm\":700,\"suspect\":0,\"dead\":1,\"heal\":10,\"nowConfirm\":689,\"confirmCompare\":74,\"nowConfirmCompare\":74,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"希腊\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":71,\"confirmAddCut\":0,\"confirm\":695,\"suspect\":0,\"dead\":17,\"heal\":19,\"nowConfirm\":659,\"confirmCompare\":71,\"nowConfirmCompare\":69,\"healCompare\":0,\"deadCompare\":2},{\"name\":\"印度尼西亚\",\"continent\":\"亚洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":107,\"confirmAddCut\":0,\"confirm\":686,\"suspect\":0,\"dead\":50,\"heal\":30,\"nowConfirm\":606,\"confirmCompare\":107,\"nowConfirmCompare\":106,\"healCompare\":0,\"deadCompare\":1},{\"name\":\"冰岛\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":20,\"confirmAddCut\":0,\"confirm\":588,\"suspect\":0,\"dead\":1,\"heal\":5,\"nowConfirm\":582,\"confirmCompare\":20,\"nowConfirmCompare\":20,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"罗马尼亚\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":143,\"confirmAddCut\":0,\"confirm\":576,\"suspect\":0,\"dead\":7,\"heal\":73,\"nowConfirm\":496,\"confirmCompare\":143,\"nowConfirmCompare\":128,\"healCompare\":9,\"deadCompare\":6},{\"name\":\"沙特阿拉伯\",\"continent\":\"亚洲\",\"date\":\"03.23\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":562,\"suspect\":0,\"dead\":0,\"heal\":19,\"nowConfirm\":543,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"菲律宾\",\"continent\":\"亚洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":90,\"confirmAddCut\":0,\"confirm\":552,\"suspect\":0,\"dead\":33,\"heal\":19,\"nowConfirm\":500,\"confirmCompare\":90,\"nowConfirmCompare\":89,\"healCompare\":1,\"deadCompare\":0},{\"name\":\"新加坡\",\"continent\":\"亚洲\",\"date\":\"03.23\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":509,\"suspect\":0,\"dead\":2,\"heal\":140,\"nowConfirm\":367,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"卡塔尔\",\"continent\":\"亚洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":7,\"confirmAddCut\":0,\"confirm\":501,\"suspect\":0,\"dead\":0,\"heal\":37,\"nowConfirm\":464,\"confirmCompare\":7,\"nowConfirmCompare\":3,\"healCompare\":4,\"deadCompare\":0},{\"name\":\"俄罗斯\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":60,\"confirmAddCut\":0,\"confirm\":498,\"suspect\":0,\"dead\":1,\"heal\":17,\"nowConfirm\":480,\"confirmCompare\":60,\"nowConfirmCompare\":60,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"印度\",\"continent\":\"亚洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":67,\"confirmAddCut\":0,\"confirm\":492,\"suspect\":0,\"dead\":9,\"heal\":36,\"nowConfirm\":447,\"confirmCompare\":67,\"nowConfirmCompare\":54,\"healCompare\":12,\"deadCompare\":1},{\"name\":\"斯洛文尼亚\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":28,\"confirmAddCut\":0,\"confirm\":442,\"suspect\":0,\"dead\":3,\"heal\":0,\"nowConfirm\":439,\"confirmCompare\":28,\"nowConfirmCompare\":27,\"healCompare\":0,\"deadCompare\":1},{\"name\":\"南非\",\"continent\":\"非洲\",\"date\":\"03.23\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":402,\"suspect\":0,\"dead\":0,\"heal\":1,\"nowConfirm\":401,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"秘鲁\",\"continent\":\"南美洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":32,\"confirmAddCut\":0,\"confirm\":395,\"suspect\":0,\"dead\":5,\"heal\":2,\"nowConfirm\":388,\"confirmCompare\":32,\"nowConfirmCompare\":32,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"巴林\",\"continent\":\"亚洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":52,\"confirmAddCut\":0,\"confirm\":391,\"suspect\":0,\"dead\":2,\"heal\":177,\"nowConfirm\":212,\"confirmCompare\":52,\"nowConfirmCompare\":35,\"healCompare\":17,\"deadCompare\":0},{\"name\":\"墨西哥\",\"continent\":\"北美洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":51,\"confirmAddCut\":0,\"confirm\":367,\"suspect\":0,\"dead\":4,\"heal\":4,\"nowConfirm\":359,\"confirmCompare\":51,\"nowConfirmCompare\":49,\"healCompare\":0,\"deadCompare\":2},{\"name\":\"埃及\",\"continent\":\"非洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":39,\"confirmAddCut\":0,\"confirm\":366,\"suspect\":0,\"dead\":19,\"heal\":68,\"nowConfirm\":279,\"confirmCompare\":39,\"nowConfirmCompare\":22,\"healCompare\":12,\"deadCompare\":5},{\"name\":\"爱沙尼亚\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":26,\"confirmAddCut\":0,\"confirm\":352,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":352,\"confirmCompare\":26,\"nowConfirmCompare\":26,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"巴拿马\",\"continent\":\"北美洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":32,\"confirmAddCut\":0,\"confirm\":345,\"suspect\":0,\"dead\":6,\"heal\":0,\"nowConfirm\":339,\"confirmCompare\":32,\"nowConfirmCompare\":29,\"healCompare\":0,\"deadCompare\":3},{\"name\":\"克罗地亚\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":315,\"confirmAddCut\":0,\"confirm\":315,\"suspect\":0,\"dead\":1,\"heal\":5,\"nowConfirm\":309,\"confirmCompare\":61,\"nowConfirmCompare\":61,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"黎巴嫩\",\"continent\":\"亚洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":37,\"confirmAddCut\":0,\"confirm\":304,\"suspect\":0,\"dead\":4,\"heal\":8,\"nowConfirm\":292,\"confirmCompare\":37,\"nowConfirmCompare\":37,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"阿根廷\",\"continent\":\"南美洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":36,\"confirmAddCut\":0,\"confirm\":301,\"suspect\":0,\"dead\":4,\"heal\":27,\"nowConfirm\":270,\"confirmCompare\":36,\"nowConfirmCompare\":36,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"哥伦比亚\",\"continent\":\"南美洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":42,\"confirmAddCut\":0,\"confirm\":277,\"suspect\":0,\"dead\":3,\"heal\":3,\"nowConfirm\":271,\"confirmCompare\":42,\"nowConfirmCompare\":41,\"healCompare\":0,\"deadCompare\":1},{\"name\":\"伊拉克\",\"continent\":\"亚洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":33,\"confirmAddCut\":0,\"confirm\":266,\"suspect\":0,\"dead\":23,\"heal\":62,\"nowConfirm\":181,\"confirmCompare\":33,\"nowConfirmCompare\":25,\"healCompare\":5,\"deadCompare\":3},{\"name\":\"塞尔维亚\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":27,\"confirmAddCut\":0,\"confirm\":249,\"suspect\":0,\"dead\":3,\"heal\":2,\"nowConfirm\":244,\"confirmCompare\":27,\"nowConfirmCompare\":23,\"healCompare\":2,\"deadCompare\":2},{\"name\":\"亚美尼亚\",\"continent\":\"亚洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":41,\"confirmAddCut\":0,\"confirm\":235,\"suspect\":0,\"dead\":0,\"heal\":2,\"nowConfirm\":233,\"confirmCompare\":41,\"nowConfirmCompare\":41,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"阿尔及利亚\",\"continent\":\"非洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":29,\"confirmAddCut\":0,\"confirm\":230,\"suspect\":0,\"dead\":17,\"heal\":32,\"nowConfirm\":181,\"confirmCompare\":29,\"nowConfirmCompare\":29,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"多米尼加\",\"continent\":\"北美洲\",\"date\":\"03.23\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":202,\"suspect\":0,\"dead\":3,\"heal\":0,\"nowConfirm\":199,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"保加利亚\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":14,\"confirmAddCut\":0,\"confirm\":201,\"suspect\":0,\"dead\":3,\"heal\":3,\"nowConfirm\":195,\"confirmCompare\":14,\"nowConfirmCompare\":14,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"阿联酋\",\"continent\":\"亚洲\",\"date\":\"03.23\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":198,\"suspect\":0,\"dead\":2,\"heal\":41,\"nowConfirm\":155,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"科威特\",\"continent\":\"亚洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":2,\"confirmAddCut\":0,\"confirm\":191,\"suspect\":0,\"dead\":0,\"heal\":39,\"nowConfirm\":152,\"confirmCompare\":2,\"nowConfirmCompare\":-7,\"healCompare\":9,\"deadCompare\":0},{\"name\":\"匈牙利\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":20,\"confirmAddCut\":0,\"confirm\":187,\"suspect\":0,\"dead\":7,\"heal\":12,\"nowConfirm\":168,\"confirmCompare\":20,\"nowConfirmCompare\":20,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"斯洛伐克\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":1,\"confirmAddCut\":0,\"confirm\":186,\"suspect\":0,\"dead\":1,\"heal\":0,\"nowConfirm\":185,\"confirmCompare\":1,\"nowConfirmCompare\":1,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"拉脱维亚\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":41,\"confirmAddCut\":0,\"confirm\":180,\"suspect\":0,\"dead\":0,\"heal\":1,\"nowConfirm\":179,\"confirmCompare\":41,\"nowConfirmCompare\":41,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"圣马力诺\",\"continent\":\"欧洲\",\"date\":\"03.23\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":175,\"suspect\":0,\"dead\":20,\"heal\":4,\"nowConfirm\":151,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"立陶宛\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":17,\"confirmAddCut\":0,\"confirm\":160,\"suspect\":0,\"dead\":1,\"heal\":1,\"nowConfirm\":158,\"confirmCompare\":17,\"nowConfirmCompare\":17,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"哥斯达黎加\",\"continent\":\"北美洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":24,\"confirmAddCut\":0,\"confirm\":158,\"suspect\":0,\"dead\":2,\"heal\":0,\"nowConfirm\":156,\"confirmCompare\":24,\"nowConfirmCompare\":24,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"乌拉圭\",\"continent\":\"南美洲\",\"date\":\"03.23\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":158,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":158,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"摩洛哥\",\"continent\":\"非洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":28,\"confirmAddCut\":0,\"confirm\":143,\"suspect\":0,\"dead\":4,\"heal\":5,\"nowConfirm\":134,\"confirmCompare\":21,\"nowConfirmCompare\":19,\"healCompare\":2,\"deadCompare\":0},{\"name\":\"新西兰\",\"continent\":\"大洋洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":40,\"confirmAddCut\":0,\"confirm\":142,\"suspect\":0,\"dead\":0,\"heal\":12,\"nowConfirm\":130,\"confirmCompare\":40,\"nowConfirmCompare\":28,\"healCompare\":12,\"deadCompare\":0},{\"name\":\"北马其顿\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":22,\"confirmAddCut\":0,\"confirm\":136,\"suspect\":0,\"dead\":2,\"heal\":1,\"nowConfirm\":133,\"confirmCompare\":22,\"nowConfirmCompare\":21,\"healCompare\":0,\"deadCompare\":1},{\"name\":\"安道尔\",\"continent\":\"欧洲\",\"date\":\"03.23\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":133,\"suspect\":0,\"dead\":1,\"heal\":1,\"nowConfirm\":131,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"波黑\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":5,\"confirmAddCut\":0,\"confirm\":131,\"suspect\":0,\"dead\":1,\"heal\":2,\"nowConfirm\":128,\"confirmCompare\":5,\"nowConfirmCompare\":3,\"healCompare\":2,\"deadCompare\":0},{\"name\":\"约旦\",\"continent\":\"亚洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":15,\"confirmAddCut\":0,\"confirm\":127,\"suspect\":0,\"dead\":0,\"heal\":1,\"nowConfirm\":126,\"confirmCompare\":15,\"nowConfirmCompare\":15,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"越南\",\"continent\":\"亚洲\",\"date\":\"03.23\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":123,\"suspect\":0,\"dead\":0,\"heal\":17,\"nowConfirm\":106,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"塞浦路斯\",\"continent\":\"亚洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":21,\"confirmAddCut\":0,\"confirm\":116,\"suspect\":0,\"dead\":1,\"heal\":3,\"nowConfirm\":112,\"confirmCompare\":21,\"nowConfirmCompare\":21,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"摩尔多瓦\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":14,\"confirmAddCut\":0,\"confirm\":109,\"suspect\":0,\"dead\":1,\"heal\":1,\"nowConfirm\":107,\"confirmCompare\":15,\"nowConfirmCompare\":15,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"阿尔巴尼亚\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":15,\"confirmAddCut\":0,\"confirm\":104,\"suspect\":0,\"dead\":4,\"heal\":5,\"nowConfirm\":95,\"confirmCompare\":15,\"nowConfirmCompare\":12,\"healCompare\":3,\"deadCompare\":0},{\"name\":\"文莱\",\"continent\":\"亚洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":13,\"confirmAddCut\":0,\"confirm\":104,\"suspect\":0,\"dead\":0,\"heal\":2,\"nowConfirm\":102,\"confirmCompare\":13,\"nowConfirmCompare\":13,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"布基纳法索\",\"continent\":\"非洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":35,\"confirmAddCut\":0,\"confirm\":99,\"suspect\":0,\"dead\":4,\"heal\":5,\"nowConfirm\":90,\"confirmCompare\":35,\"nowConfirmCompare\":34,\"healCompare\":0,\"deadCompare\":1},{\"name\":\"斯里兰卡\",\"continent\":\"亚洲\",\"date\":\"03.23\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":92,\"suspect\":0,\"dead\":0,\"heal\":1,\"nowConfirm\":91,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"突尼斯\",\"continent\":\"非洲\",\"date\":\"03.23\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":89,\"suspect\":0,\"dead\":3,\"heal\":1,\"nowConfirm\":85,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"委内瑞拉\",\"continent\":\"南美洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":7,\"confirmAddCut\":0,\"confirm\":84,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":84,\"confirmCompare\":7,\"nowConfirmCompare\":7,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"乌克兰\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":11,\"confirmAddCut\":0,\"confirm\":84,\"suspect\":0,\"dead\":3,\"heal\":1,\"nowConfirm\":80,\"confirmCompare\":11,\"nowConfirmCompare\":11,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"阿曼\",\"continent\":\"亚洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":18,\"confirmAddCut\":0,\"confirm\":84,\"suspect\":0,\"dead\":0,\"heal\":17,\"nowConfirm\":67,\"confirmCompare\":18,\"nowConfirmCompare\":18,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"柬埔寨\",\"continent\":\"亚洲\",\"date\":\"03.23\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":84,\"suspect\":0,\"dead\":0,\"heal\":2,\"nowConfirm\":82,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"白俄罗斯\",\"continent\":\"欧洲\",\"date\":\"03.23\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":81,\"suspect\":0,\"dead\":0,\"heal\":15,\"nowConfirm\":66,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"塞内加尔\",\"continent\":\"非洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":12,\"confirmAddCut\":0,\"confirm\":79,\"suspect\":0,\"dead\":0,\"heal\":8,\"nowConfirm\":71,\"confirmCompare\":12,\"nowConfirmCompare\":9,\"healCompare\":3,\"deadCompare\":0},{\"name\":\"阿塞拜疆\",\"continent\":\"亚洲\",\"date\":\"03.23\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":72,\"suspect\":0,\"dead\":1,\"heal\":11,\"nowConfirm\":60,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"格鲁吉亚\",\"continent\":\"亚洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":13,\"confirmAddCut\":0,\"confirm\":67,\"suspect\":0,\"dead\":0,\"heal\":9,\"nowConfirm\":58,\"confirmCompare\":13,\"nowConfirmCompare\":7,\"healCompare\":6,\"deadCompare\":0},{\"name\":\"哈萨克斯坦\",\"continent\":\"亚洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":6,\"confirmAddCut\":0,\"confirm\":66,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":66,\"confirmCompare\":6,\"nowConfirmCompare\":6,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"马耳他\",\"continent\":\"欧洲\",\"date\":\"03.21\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":64,\"suspect\":0,\"dead\":0,\"heal\":2,\"nowConfirm\":62,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"巴勒斯坦\",\"continent\":\"亚洲\",\"date\":\"03.22\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":59,\"suspect\":0,\"dead\":0,\"heal\":17,\"nowConfirm\":42,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"喀麦隆\",\"continent\":\"非洲\",\"date\":\"03.23\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":56,\"suspect\":0,\"dead\":0,\"heal\":2,\"nowConfirm\":54,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"列支敦士登公国\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":14,\"confirmAddCut\":0,\"confirm\":51,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":51,\"confirmCompare\":14,\"nowConfirmCompare\":14,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"乌兹别克斯坦\",\"continent\":\"亚洲\",\"date\":\"03.23\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":46,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":46,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"刚果(金)\",\"continent\":\"非洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":15,\"confirmAddCut\":0,\"confirm\":45,\"suspect\":0,\"dead\":2,\"heal\":0,\"nowConfirm\":43,\"confirmCompare\":15,\"nowConfirmCompare\":15,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"阿富汗\",\"continent\":\"亚洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":2,\"confirmAddCut\":0,\"confirm\":42,\"suspect\":0,\"dead\":1,\"heal\":0,\"nowConfirm\":41,\"confirmCompare\":2,\"nowConfirmCompare\":2,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"尼日利亚\",\"continent\":\"非洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":4,\"confirmAddCut\":0,\"confirm\":40,\"suspect\":0,\"dead\":1,\"heal\":2,\"nowConfirm\":37,\"confirmCompare\":4,\"nowConfirmCompare\":4,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"古巴\",\"continent\":\"北美洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":19,\"confirmAddCut\":0,\"confirm\":40,\"suspect\":0,\"dead\":1,\"heal\":0,\"nowConfirm\":39,\"confirmCompare\":19,\"nowConfirmCompare\":19,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"毛里求斯\",\"continent\":\"非洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":8,\"confirmAddCut\":0,\"confirm\":36,\"suspect\":0,\"dead\":2,\"heal\":0,\"nowConfirm\":34,\"confirmCompare\":8,\"nowConfirmCompare\":8,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"卢旺达\",\"continent\":\"非洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":19,\"confirmAddCut\":0,\"confirm\":36,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":36,\"confirmCompare\":19,\"nowConfirmCompare\":19,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"孟加拉\",\"continent\":\"亚洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":6,\"confirmAddCut\":0,\"confirm\":33,\"suspect\":0,\"dead\":3,\"heal\":5,\"nowConfirm\":25,\"confirmCompare\":6,\"nowConfirmCompare\":5,\"healCompare\":0,\"deadCompare\":1},{\"name\":\"洪都拉斯\",\"continent\":\"北美洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":6,\"confirmAddCut\":0,\"confirm\":30,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":30,\"confirmCompare\":6,\"nowConfirmCompare\":6,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"黑山\",\"continent\":\"欧洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":17,\"confirmAddCut\":0,\"confirm\":27,\"suspect\":0,\"dead\":1,\"heal\":0,\"nowConfirm\":26,\"confirmCompare\":17,\"nowConfirmCompare\":16,\"healCompare\":0,\"deadCompare\":1},{\"name\":\"加纳\",\"continent\":\"非洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":3,\"confirmAddCut\":0,\"confirm\":27,\"suspect\":0,\"dead\":2,\"heal\":0,\"nowConfirm\":25,\"confirmCompare\":3,\"nowConfirmCompare\":2,\"healCompare\":0,\"deadCompare\":1},{\"name\":\"摩纳哥\",\"continent\":\"欧洲\",\"date\":\"03.23\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":23,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":23,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"巴拉圭\",\"continent\":\"南美洲\",\"date\":\"03.22\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":22,\"suspect\":0,\"dead\":1,\"heal\":0,\"nowConfirm\":21,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"玻利维亚\",\"continent\":\"南美洲\",\"date\":\"03.21\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":19,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":19,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"危地马拉\",\"continent\":\"北美洲\",\"date\":\"03.22\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":17,\"suspect\":0,\"dead\":1,\"heal\":0,\"nowConfirm\":16,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"多哥\",\"continent\":\"非洲\",\"date\":\"03.21\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":16,\"suspect\":0,\"dead\":0,\"heal\":1,\"nowConfirm\":15,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"吉尔吉斯斯坦\",\"continent\":\"亚洲\",\"date\":\"03.23\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":16,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":16,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"肯尼亚\",\"continent\":\"非洲\",\"date\":\"03.23\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":16,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":16,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"科特迪瓦\",\"continent\":\"非洲\",\"date\":\"03.21\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":14,\"suspect\":0,\"dead\":0,\"heal\":1,\"nowConfirm\":13,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"波多黎各\",\"continent\":\"北美洲\",\"date\":\"03.21\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":14,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":14,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"马尔代夫\",\"continent\":\"亚洲\",\"date\":\"03.15\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":13,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":13,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"坦桑尼亚\",\"continent\":\"非洲\",\"date\":\"03.22\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":12,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":12,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"马达加斯加\",\"continent\":\"非洲\",\"date\":\"03.23\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":12,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":12,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"埃塞俄比亚\",\"continent\":\"非洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":1,\"confirmAddCut\":0,\"confirm\":12,\"suspect\":0,\"dead\":0,\"heal\":4,\"nowConfirm\":8,\"confirmCompare\":1,\"nowConfirmCompare\":1,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"蒙古\",\"continent\":\"亚洲\",\"date\":\"03.21\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":10,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":10,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"赤道几内亚\",\"continent\":\"非洲\",\"date\":\"03.23\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":9,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":9,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"乌干达\",\"continent\":\"非洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":8,\"confirmAddCut\":0,\"confirm\":9,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":9,\"confirmCompare\":8,\"nowConfirmCompare\":8,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"圭亚那\",\"continent\":\"南美洲\",\"date\":\"03.18\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":7,\"suspect\":0,\"dead\":1,\"heal\":0,\"nowConfirm\":6,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"苏里南\",\"continent\":\"南美洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":6,\"confirmAddCut\":0,\"confirm\":6,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":6,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"加蓬\",\"continent\":\"非洲\",\"date\":\"03.22\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":5,\"suspect\":0,\"dead\":1,\"heal\":0,\"nowConfirm\":4,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"贝宁\",\"continent\":\"非洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":4,\"confirmAddCut\":0,\"confirm\":5,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":5,\"confirmCompare\":4,\"nowConfirmCompare\":4,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"斯威士兰\",\"continent\":\"非洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":1,\"confirmAddCut\":0,\"confirm\":5,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":5,\"confirmCompare\":1,\"nowConfirmCompare\":1,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"塞舌尔\",\"continent\":\"非洲\",\"date\":\"03.17\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":4,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":4,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"刚果(布)\",\"continent\":\"非洲\",\"date\":\"03.22\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":4,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":4,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"几内亚\",\"continent\":\"非洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":2,\"confirmAddCut\":0,\"confirm\":4,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":4,\"confirmCompare\":2,\"nowConfirmCompare\":2,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"中非共和国\",\"continent\":\"非洲\",\"date\":\"03.20\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":3,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":3,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"利比里亚\",\"continent\":\"非洲\",\"date\":\"03.21\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":3,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":3,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"安哥拉\",\"continent\":\"非洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":1,\"confirmAddCut\":0,\"confirm\":3,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":3,\"confirmCompare\":1,\"nowConfirmCompare\":1,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"赞比亚\",\"continent\":\"非洲\",\"date\":\"03.22\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":3,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":3,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"尼泊尔\",\"continent\":\"亚洲\",\"date\":\"03.23\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":2,\"suspect\":0,\"dead\":0,\"heal\":1,\"nowConfirm\":1,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"缅甸\",\"continent\":\"亚洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":2,\"confirmAddCut\":0,\"confirm\":2,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":2,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"老挝\",\"continent\":\"亚洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":2,\"confirmAddCut\":0,\"confirm\":2,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":2,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"毛里塔尼亚\",\"continent\":\"非洲\",\"date\":\"03.19\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":2,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":2,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"不丹\",\"continent\":\"亚洲\",\"date\":\"03.21\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":2,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":2,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"海地\",\"continent\":\"北美洲\",\"date\":\"03.20\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":2,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":2,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"津巴布韦\",\"continent\":\"非洲\",\"date\":\"03.23\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":2,\"suspect\":0,\"dead\":1,\"heal\":0,\"nowConfirm\":1,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"苏丹\",\"continent\":\"非洲\",\"date\":\"03.19\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":2,\"suspect\":0,\"dead\":1,\"heal\":0,\"nowConfirm\":1,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"纳米比亚\",\"continent\":\"非洲\",\"date\":\"03.14\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":2,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":2,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"尼日尔\",\"continent\":\"非洲\",\"date\":\"03.22\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":2,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":2,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"梵蒂冈\",\"continent\":\"欧洲\",\"date\":\"03.06\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":1,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":1,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"安提瓜和巴布达\",\"continent\":\"北美洲\",\"date\":\"03.14\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":1,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":1,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"佛得角\",\"continent\":\"非洲\",\"date\":\"03.20\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":1,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":1,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"东帝汶\",\"continent\":\"亚洲\",\"date\":\"03.21\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":1,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":1,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"索马里\",\"continent\":\"非洲\",\"date\":\"03.16\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":1,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":1,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"莫桑比克\",\"continent\":\"非洲\",\"date\":\"03.23\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":1,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":1,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"尼加拉瓜\",\"continent\":\"北美洲\",\"date\":\"03.19\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":1,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":1,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"厄立特里亚\",\"continent\":\"非洲\",\"date\":\"03.22\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":1,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":1,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"吉布提\",\"continent\":\"非洲\",\"date\":\"03.18\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":1,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":1,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"巴布亚新几内亚\",\"continent\":\"大洋洲\",\"date\":\"03.21\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":1,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":1,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"乍得\",\"continent\":\"非洲\",\"date\":\"03.20\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":1,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":1,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"冈比亚\",\"continent\":\"非洲\",\"date\":\"03.18\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":1,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":1,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"伯利兹\",\"continent\":\"北美洲\",\"date\":\"03.24\",\"isUpdated\":true,\"confirmAdd\":1,\"confirmAddCut\":0,\"confirm\":1,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":1,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0},{\"name\":\"叙利亚\",\"continent\":\"亚洲\",\"date\":\"03.23\",\"isUpdated\":false,\"confirmAdd\":0,\"confirmAddCut\":0,\"confirm\":1,\"suspect\":0,\"dead\":0,\"heal\":0,\"nowConfirm\":1,\"confirmCompare\":0,\"nowConfirmCompare\":0,\"healCompare\":0,\"deadCompare\":0}],\"globalStatis\":{\"nowConfirm\":265412,\"confirm\":308511,\"heal\":29281,\"dead\":13818,\"nowConfirmAdd\":35127,\"confirmAdd\":39447,\"healAdd\":2573,\"deadAdd\":1747},\"globalDailyHistory\":[{\"date\":\"01.28\",\"all\":{\"confirm\":57,\"dead\":0,\"heal\":3,\"newAddConfirm\":19,\"deadRate\":\"0.00\",\"healRate\":\"5.26\"}},{\"date\":\"01.29\",\"all\":{\"confirm\":74,\"dead\":0,\"heal\":3,\"newAddConfirm\":12,\"deadRate\":\"0.00\",\"healRate\":\"4.05\"}},{\"date\":\"01.30\",\"all\":{\"confirm\":98,\"dead\":0,\"heal\":6,\"newAddConfirm\":14,\"deadRate\":\"0.00\",\"healRate\":\"6.12\"}},{\"date\":\"01.31\",\"all\":{\"confirm\":124,\"dead\":0,\"heal\":11,\"newAddConfirm\":24,\"deadRate\":\"0.00\",\"healRate\":\"8.87\"}},{\"date\":\"02.01\",\"all\":{\"confirm\":139,\"dead\":0,\"heal\":11,\"newAddConfirm\":26,\"deadRate\":\"0.00\",\"healRate\":\"7.91\"}},{\"date\":\"02.02\",\"all\":{\"confirm\":149,\"dead\":1,\"heal\":11,\"newAddConfirm\":14,\"deadRate\":\"0.67\",\"healRate\":\"7.38\"}},{\"date\":\"02.03\",\"all\":{\"confirm\":154,\"dead\":1,\"heal\":12,\"newAddConfirm\":7,\"deadRate\":\"0.65\",\"healRate\":\"7.79\"}},{\"date\":\"02.04\",\"all\":{\"confirm\":177,\"dead\":1,\"heal\":19,\"newAddConfirm\":6,\"deadRate\":\"0.56\",\"healRate\":\"10.73\"}},{\"date\":\"02.05\",\"all\":{\"confirm\":201,\"dead\":1,\"heal\":21,\"newAddConfirm\":32,\"deadRate\":\"0.50\",\"healRate\":\"10.45\"}},{\"date\":\"02.06\",\"all\":{\"confirm\":225,\"dead\":1,\"heal\":25,\"newAddConfirm\":25,\"deadRate\":\"0.44\",\"healRate\":\"11.11\"}},{\"date\":\"02.07\",\"all\":{\"confirm\":273,\"dead\":1,\"heal\":27,\"newAddConfirm\":54,\"deadRate\":\"0.37\",\"healRate\":\"9.89\"}},{\"date\":\"02.08\",\"all\":{\"confirm\":299,\"dead\":1,\"heal\":29,\"newAddConfirm\":18,\"deadRate\":\"0.33\",\"healRate\":\"9.70\"}},{\"date\":\"02.09\",\"all\":{\"confirm\":313,\"dead\":1,\"heal\":30,\"newAddConfirm\":19,\"deadRate\":\"0.32\",\"healRate\":\"9.58\"}},{\"date\":\"02.10\",\"all\":{\"confirm\":385,\"dead\":1,\"heal\":36,\"newAddConfirm\":12,\"deadRate\":\"0.26\",\"healRate\":\"9.35\"}},{\"date\":\"02.11\",\"all\":{\"confirm\":397,\"dead\":1,\"heal\":44,\"newAddConfirm\":76,\"deadRate\":\"0.25\",\"healRate\":\"11.08\"}},{\"date\":\"02.12\",\"all\":{\"confirm\":444,\"dead\":1,\"heal\":50,\"newAddConfirm\":46,\"deadRate\":\"0.23\",\"healRate\":\"11.26\"}},{\"date\":\"02.13\",\"all\":{\"confirm\":505,\"dead\":2,\"heal\":56,\"newAddConfirm\":6,\"deadRate\":\"0.40\",\"healRate\":\"11.09\"}},{\"date\":\"02.14\",\"all\":{\"confirm\":516,\"dead\":2,\"heal\":59,\"newAddConfirm\":58,\"deadRate\":\"0.39\",\"healRate\":\"11.43\"}},{\"date\":\"02.15\",\"all\":{\"confirm\":601,\"dead\":3,\"heal\":61,\"newAddConfirm\":21,\"deadRate\":\"0.50\",\"healRate\":\"10.15\"}},{\"date\":\"02.16\",\"all\":{\"confirm\":687,\"dead\":3,\"heal\":84,\"newAddConfirm\":157,\"deadRate\":\"0.44\",\"healRate\":\"12.23\"}},{\"date\":\"02.17\",\"all\":{\"confirm\":800,\"dead\":3,\"heal\":88,\"newAddConfirm\":111,\"deadRate\":\"0.38\",\"healRate\":\"11.00\"}},{\"date\":\"02.18\",\"all\":{\"confirm\":904,\"dead\":3,\"heal\":114,\"newAddConfirm\":10,\"deadRate\":\"0.33\",\"healRate\":\"12.61\"}},{\"date\":\"02.19\",\"all\":{\"confirm\":1018,\"dead\":3,\"heal\":127,\"newAddConfirm\":120,\"deadRate\":\"0.29\",\"healRate\":\"12.48\"}},{\"date\":\"02.20\",\"all\":{\"confirm\":1096,\"dead\":8,\"heal\":127,\"newAddConfirm\":149,\"deadRate\":\"0.73\",\"healRate\":\"11.59\"}},{\"date\":\"02.21\",\"all\":{\"confirm\":1231,\"dead\":11,\"heal\":142,\"newAddConfirm\":127,\"deadRate\":\"0.89\",\"healRate\":\"11.54\"}},{\"date\":\"02.22\",\"all\":{\"confirm\":1528,\"dead\":14,\"heal\":154,\"newAddConfirm\":182,\"deadRate\":\"0.92\",\"healRate\":\"10.08\"}},{\"date\":\"02.23\",\"all\":{\"confirm\":1895,\"dead\":22,\"heal\":155,\"newAddConfirm\":386,\"deadRate\":\"1.16\",\"healRate\":\"8.18\"}},{\"date\":\"02.24\",\"all\":{\"confirm\":2286,\"dead\":32,\"heal\":173,\"newAddConfirm\":300,\"deadRate\":\"1.40\",\"healRate\":\"7.57\"}},{\"date\":\"02.25\",\"all\":{\"confirm\":2575,\"dead\":40,\"heal\":192,\"newAddConfirm\":365,\"deadRate\":\"1.55\",\"healRate\":\"7.46\"}},{\"date\":\"02.26\",\"all\":{\"confirm\":3085,\"dead\":51,\"heal\":220,\"newAddConfirm\":459,\"deadRate\":\"1.65\",\"healRate\":\"7.13\"}},{\"date\":\"02.27\",\"all\":{\"confirm\":3945,\"dead\":64,\"heal\":310,\"newAddConfirm\":736,\"deadRate\":\"1.62\",\"healRate\":\"7.86\"}},{\"date\":\"02.28\",\"all\":{\"confirm\":4947,\"dead\":80,\"heal\":360,\"newAddConfirm\":1030,\"deadRate\":\"1.62\",\"healRate\":\"7.28\"}},{\"date\":\"02.29\",\"all\":{\"confirm\":6305,\"dead\":95,\"heal\":455,\"newAddConfirm\":1309,\"deadRate\":\"1.51\",\"healRate\":\"7.22\"}},{\"date\":\"03.01\",\"all\":{\"confirm\":7342,\"dead\":112,\"heal\":1020,\"newAddConfirm\":1161,\"deadRate\":\"1.53\",\"healRate\":\"13.89\"}},{\"date\":\"03.02\",\"all\":{\"confirm\":9628,\"dead\":152,\"heal\":558,\"newAddConfirm\":1589,\"deadRate\":\"1.58\",\"healRate\":\"5.80\"}},{\"date\":\"03.03\",\"all\":{\"confirm\":12047,\"dead\":184,\"heal\":895,\"newAddConfirm\":1800,\"deadRate\":\"1.53\",\"healRate\":\"7.43\"}},{\"date\":\"03.04\",\"all\":{\"confirm\":13897,\"dead\":236,\"heal\":909,\"newAddConfirm\":2078,\"deadRate\":\"1.70\",\"healRate\":\"6.54\"}},{\"date\":\"03.05\",\"all\":{\"confirm\":16118,\"dead\":294,\"heal\":1087,\"newAddConfirm\":4166,\"deadRate\":\"1.82\",\"healRate\":\"6.74\"}},{\"date\":\"03.06\",\"all\":{\"confirm\":19378,\"dead\":365,\"heal\":1556,\"newAddConfirm\":2743,\"deadRate\":\"1.88\",\"healRate\":\"8.03\"}},{\"date\":\"03.07\",\"all\":{\"confirm\":22946,\"dead\":451,\"heal\":1720,\"newAddConfirm\":3641,\"deadRate\":\"1.97\",\"healRate\":\"7.50\"}},{\"date\":\"03.08\",\"all\":{\"confirm\":26913,\"dead\":561,\"heal\":3208,\"newAddConfirm\":3706,\"deadRate\":\"2.08\",\"healRate\":\"11.92\"}},{\"date\":\"03.09\",\"all\":{\"confirm\":30760,\"dead\":763,\"heal\":3614,\"newAddConfirm\":4063,\"deadRate\":\"2.48\",\"healRate\":\"11.75\"}},{\"date\":\"03.10\",\"all\":{\"confirm\":35713,\"dead\":977,\"heal\":4212,\"newAddConfirm\":3972,\"deadRate\":\"2.74\",\"healRate\":\"11.79\"}},{\"date\":\"03.11\",\"all\":{\"confirm\":41078,\"dead\":1228,\"heal\":5274,\"newAddConfirm\":4596,\"deadRate\":\"2.99\",\"healRate\":\"12.84\"}},{\"date\":\"03.12\",\"all\":{\"confirm\":48535,\"dead\":1577,\"heal\":5779,\"newAddConfirm\":6702,\"deadRate\":\"3.25\",\"healRate\":\"11.91\"}},{\"date\":\"03.13\",\"all\":{\"confirm\":58151,\"dead\":1933,\"heal\":6544,\"newAddConfirm\":7485,\"deadRate\":\"3.32\",\"healRate\":\"11.25\"}},{\"date\":\"03.14\",\"all\":{\"confirm\":67416,\"dead\":2354,\"heal\":7947,\"newAddConfirm\":9750,\"deadRate\":\"3.49\",\"healRate\":\"11.79\"}},{\"date\":\"03.15\",\"all\":{\"confirm\":79182,\"dead\":2751,\"heal\":9304,\"newAddConfirm\":11511,\"deadRate\":\"3.47\",\"healRate\":\"11.75\"}},{\"date\":\"03.16\",\"all\":{\"confirm\":92121,\"dead\":3452,\"heal\":10413,\"newAddConfirm\":14579,\"deadRate\":\"3.75\",\"healRate\":\"11.30\"}},{\"date\":\"03.17\",\"all\":{\"confirm\":105519,\"dead\":4261,\"heal\":11680,\"newAddConfirm\":11665,\"deadRate\":\"4.04\",\"healRate\":\"11.07\"}},{\"date\":\"03.18\",\"all\":{\"confirm\":122951,\"dead\":4955,\"heal\":13483,\"newAddConfirm\":15084,\"deadRate\":\"4.03\",\"healRate\":\"10.97\"}},{\"date\":\"03.19\",\"all\":{\"confirm\":146643,\"dead\":6038,\"heal\":15388,\"newAddConfirm\":17888,\"deadRate\":\"4.12\",\"healRate\":\"10.49\"}},{\"date\":\"03.20\",\"all\":{\"confirm\":171675,\"dead\":7154,\"heal\":17687,\"newAddConfirm\":24120,\"deadRate\":\"4.17\",\"healRate\":\"10.30\"}},{\"date\":\"03.21\",\"all\":{\"confirm\":202690,\"dead\":8589,\"heal\":20704,\"newAddConfirm\":28268,\"deadRate\":\"4.24\",\"healRate\":\"10.21\"}},{\"date\":\"03.22\",\"all\":{\"confirm\":234460,\"dead\":10344,\"heal\":23721,\"newAddConfirm\":32665,\"deadRate\":\"4.41\",\"healRate\":\"10.12\"}},{\"date\":\"03.23\",\"all\":{\"confirm\":269064,\"dead\":12071,\"heal\":26708,\"newAddConfirm\":40678,\"deadRate\":\"4.49\",\"healRate\":\"9.93\"}},{\"date\":\"03.24\",\"all\":{\"confirm\":308511,\"dead\":13818,\"heal\":29281,\"newAddConfirm\":0,\"deadRate\":\"4.48\",\"healRate\":\"9.49\"}}]}"}
import json
d=json.loads(res.text) #和上次一样先将json格式转字典
# print(d)print(type(d["data"]))  #查看key为data的数据还是<class 'str'>data_history=json.loads(d["data"])  #str>>dict
print(type(data_history))   #返回<class 'dict'>
data_history.keys()  #查看keys们都有谁


这下我们终于有chinaDayList和它的兄弟了,快看看长啥样:


先看这俩吧,反正长得都还行

下面正式上源码,和上面原理一样,就是history需要从这个url上获取,加上就OK啦

然后接下来就不用说了吧,其他代码照搬上次的就OK了

最后看一下欧不欧凯

3.web

3.1.Flask快速入门

Flask 是一个使用 Python 编写的轻量级 Web 应用框架。其 WSGI(Python Web Server Gateway Interface) 工具包采用 Werkzeug ,模板引擎则使 用 Jinja2 ,是目前十分流行的 web 框架。

安装:pip install flask

创建Flask项目

创建后会有一个helloword模板,可以直接运行这个mainif __name__ == '__main__': app.run()

from flask import Flaskapp = Flask(__name__)@app.route('/abc')
def hello_world1():return """<form>账号:<input><br>密码:<input><br></form>"""if __name__ == '__main__':app.run()

运行后打开浏览器输入网址http://127.0.0.1:5000/abc

使用模板

3.2.使用 Ajax 局部刷新页面

Ajax 是 Asynchronous JavaScript and XML 的简称,通过 Ajax 向服务 器发送请求,接收服务器返回的 json 数据,然后使用 JavaScript 修改网 页的来实现页面局部数据更新

使用 jquery 框架可方便的编写 ajax 代码,需要 jquery.js 文件


先下载jquery.min.js文件放到static/js/下

可视化大屏模板制作

3.3.echarts快速入门

ECharts,缩写来自 Enterprise Charts,商业级数据图表,是百度的一个开源的数据可视 化工具,提供了丰富的图表库,能够在 PC 端和移动设备上流畅运行

官网网站:https://echarts.apache.org/zh/index.html

5分钟上手echarts

上手这个五分钟的案例,我们就可以搞个差不多了

echarts绘制图表
全国疫情地图实现

  1. 复制中国地图 option,导入 china.js
  2. 获取数据
def get_c2_data():""":return:  返回各省数据"""# 因为会更新多次数据,取时间戳最新的那组数据sql = "select province,sum(confirm) from details " \"where update_time=(select update_time from details " \"order by update_time desc limit 1) " \"group by province"res = query(sql)return res

全国累计趋势

  1. 复制折线图 option

  2. 获取数据

def get_l1_data():""":return:返回每天历史累计数据"""sql = "select ds,confirm,suspect,heal,dead from history"res = query(sql)return res

全国新增趋势

  1. 复制折线图 option

  2. 获取数据

def get_l2_data():""":return:返回每天新增确诊和疑似数据"""sql = "select ds,confirm_add,suspect_add from history"res = query(sql)return res

非湖北地区TOP5

  1. 复制柱状图 option
  2. 获取数据
def get_r1_data():""":return:  返回非湖北地区城市确诊人数前5名"""sql = 'SELECT city,confirm FROM ' \'(select city,confirm from details  ' \'where update_time=(select update_time from details order by update_time desc limit 1) ' \'and province not in ("湖北","北京","上海","天津","重庆") ' \'union all ' \'select province as city,sum(confirm) as confirm from details  ' \'where update_time=(select update_time from details order by update_time desc limit 1) ' \'and province in ("北京","上海","天津","重庆") group by province) as a ' \'ORDER BY confirm DESC LIMIT 5'res = query(sql)return res

疫情热搜

  1. 复制词云图 option,导入wordcloud.js
  2. 获取数据,使用 jieba 获取关键字
def get_r2_data():""":return:  返回最近的20条热搜"""sql = 'select content from hotsearch order by id desc limit 20'res = query(sql)  # 格式 (('民警抗疫一线奋战16天牺牲1037364',), ('四川再派两批医疗队1537382',)return res

pycharm运行项目效果

4.linux部署Flask

4.1.部署模式

开发模式部署
修改 app.run() 的 host 为 0.0.0.0

生产模式部署
部署 Flask 应用时,通常都是使用一种 WSGI 应用服务器搭配 Nginx 作为反向代理

常用的 WSGI 服务器: gunicorn、uwsgi

反向代理和正向代理:



生产模式部署

安装 Nginx:yum install nginx (

安装 Gunicorn: pip install gunicorn

启动 Gunicorn: gunicorn -b 127.0.0.1:8080 -D my_app:app

编辑 Nginx 配置文件 vim /etc/nginx/nginx.conf

启动 Nginx : /usr/sbin/nginx

4.2.部署定时爬虫

获取脚本参数

sys.argv

sys.argv[0] 是脚本所在绝对路径

根据不同参数调用不用方法

• Linux 安装 chrome

yum install https://dl.google.com/linux/direct/google-chromestable_current_x86_64.rpm

• 下载 chromedriver

http://npm.taobao.org/mirrors/chromedriver/ 项目中使用的 79.0.3945.36/

获取crontab 定时调度 crontab –l 列出当前任务 crontab –e 编辑任务

格式:* * * * * 指令 五个星号分别代表 分 、时 、日 、月、周

pycharm:先给大家看一下我的项目结构

python疫情监控(爬虫+可视化)相关推荐

  1. 视频教程-Python疫情监控完整项目实战-Python

    Python疫情监控完整项目实战 数据产品讲师,人工智能探索者,15年一线IT研发经验,国内顶级互联网行业工作背景,社区达人,著有长篇连载<胖子哥的大数据之路>,<数据实践之美> ...

  2. Python大作业——爬虫+可视化+数据分析+数据库(数据库篇)

    相关链接 Python大作业--爬虫+可视化+数据分析+数据库(简介篇) Python大作业--爬虫+可视化+数据分析+数据库(爬虫篇) Python大作业--爬虫+可视化+数据分析+数据库(数据分析 ...

  3. 基于python的电影爬虫可视化系统设计与实现

    大数据时代的到来,随着人们线上互动以及网络交易,用户的信息数据完全充斥着网络,个体对产品及服务的偏好可以从这些数据中完全体现出来,为商家以及平台提供了更好的发展方向.但是要人为获取数据库中的大量数据信 ...

  4. Python新闻推荐系统+爬虫+可视化 大数据项目 源码下载

    Python新闻推荐系统+爬虫+可视化 大数据项目 源码下载 网络爬虫:通过Python实现新浪新闻的爬取,可爬取新闻页面上的标题.文本.图片.视频链接 推荐算法:权重衰减+标签推荐+区域推荐+热点推 ...

  5. Python大作业——爬虫+可视化+数据分析+数据库(数据分析篇)

    个人博客 Python大作业--爬虫+可视化+数据分析+数据库(简介篇) Python大作业--爬虫+可视化+数据分析+数据库(爬虫篇) Python大作业--爬虫+可视化+数据分析+数据库(可视化篇 ...

  6. Python大作业——爬虫+可视化+数据分析+数据库(爬虫篇)

    相关链接 Python大作业--爬虫+可视化+数据分析+数据库(简介篇) Python大作业--爬虫+可视化+数据分析+数据库(可视化篇) Python大作业--爬虫+可视化+数据分析+数据库(数据分 ...

  7. python疫情大数据可视化

    一.实验目的 通过本次实验掌握数据获取.数据清洗与存储和数据可视化工具的基本使用方法. 二. 实验平台 操作系统:window10 python版本:3.8 IDE:pycharm 可视化工具:ech ...

  8. 分享思路:Python+Spark招聘爬虫可视化系统 招聘数据分析 Hadoop职位可视化 大数据毕业设计 51job数据分析(可选加推荐算法)

    开发技术 Hadoop.HDFS.Spark.SpringBoot.echarts.PySpark.Python.MySQL 创新点 大数据架构.爬虫.数据可视化 啰里啰嗦 适合大数据毕业设计.数据分 ...

  9. Python疫情数据分析+数据可视化展示

    采集流程 一. 明确需求 采集/确诊人数/新增人数 二. 代码流程 四大步骤 发送请求 获取数据 网页源代码 解析数据 筛选一些我想用的数据 保存数据 保存成表格 做数据可视化分析 开始代码 1. 发 ...

最新文章

  1. 结构型模式/设计模式
  2. 文巾解题 12. 整数转罗马数字
  3. UIButton的属性设置
  4. 异常解决(二)-- AttributeError: cannot assign module before Module.__init__() call
  5. 教你如何快速入门python_如何快速入门python
  6. 一个程序员的日常,简直太欢乐了!
  7. 进度计划软件哪个好用_斑马进度计划软件学习视频-资源管理
  8. 关于C++中的 多态 问题
  9. python画roc曲线需要什么数据,Python ROC曲线绘制
  10. 日语+AI语音黑科技,早道开启小语种AI智能时代!
  11. 高级维修电工实训装置
  12. 程序员转行做数据分析师_程序员可以转行数据分析师吗?
  13. 松鼠症 知识过载与疲于奔命
  14. 机器学习-推荐系统-利用用户标签数据
  15. IJCAI2021会议论文列表(可下载)
  16. 安装blackbox_exporter
  17. 新绝代双骄3终极全攻略2
  18. 变量four赋值数字python_第2节:初识python
  19. 今年流行的3步走,学习前端方法路径总结
  20. 在线教育:直播视频有哪些运营方式呢?

热门文章

  1. Python 实战之淘宝手机销售分析(数据清洗、可视化、数据建模、文本分析)
  2. 品牌如何热搜不断?五菱社会化超级运营的玩梗之路
  3. Vue框架的初识入门
  4. 在linux下恶臭hellotext中作用的?,《Linux内核与程序设计》实验学习笔记
  5. 一到两年工作经验的看完这些面试轻松拿offer
  6. 软件测试方法进行调优,一种大型软件测试方法
  7. 微信小程序的后台在哪里云开发控制台操作方法
  8. (转)BluePrint Framemaker学习
  9. 【笔记整理】面试笔记
  10. B-spline Curves 学习之B样条曲线的移动控制点、修改节点分析(7)