-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathowid_international.csv
We can't make this file beautiful and searchable because it's too large.
1703 lines (1703 loc) · 896 KB
/
owid_international.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
index,index,iso_code,continent,location,date,total_cases,new_cases,new_cases_smoothed,total_deaths,new_deaths,new_deaths_smoothed,total_cases_per_million,new_cases_per_million,new_cases_smoothed_per_million,total_deaths_per_million,new_deaths_per_million,new_deaths_smoothed_per_million,reproduction_rate,icu_patients,icu_patients_per_million,hosp_patients,hosp_patients_per_million,weekly_icu_admissions,weekly_icu_admissions_per_million,weekly_hosp_admissions,weekly_hosp_admissions_per_million,total_tests,new_tests,total_tests_per_thousand,new_tests_per_thousand,new_tests_smoothed,new_tests_smoothed_per_thousand,positive_rate,tests_per_case,tests_units,total_vaccinations,people_vaccinated,people_fully_vaccinated,total_boosters,new_vaccinations,new_vaccinations_smoothed,total_vaccinations_per_hundred,people_vaccinated_per_hundred,people_fully_vaccinated_per_hundred,total_boosters_per_hundred,new_vaccinations_smoothed_per_million,new_people_vaccinated_smoothed,new_people_vaccinated_smoothed_per_hundred,stringency_index,population,population_density,median_age,aged_65_older,aged_70_older,gdp_per_capita,extreme_poverty,cardiovasc_death_rate,diabetes_prevalence,female_smokers,male_smokers,handwashing_facilities,hospital_beds_per_thousand,life_expectancy,human_development_index,excess_mortality_cumulative_absolute,excess_mortality_cumulative,excess_mortality,excess_mortality_cumulative_per_million
0,143570,PCN,Oceania,Pitcairn,2021-09-01,3709386.0,1115.0,1091.857,60602.0,10.0,12.0,33403.775,10.041,9.832,545.7330000000001,0.09,0.10800000000000001,1.52,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,28472887.0,21192.0,256.404,0.191,19245.0,0.17300000000000001,0.0093,107.8,people tested,83.0,47.0,36.0,14880868.0,227791.0,0.0,176.6,100.0,76.6,13.4,0.0,0.0,0.0,37.96,47.0,351.87300000000005,25.2,4.803,2.661,7599.188,3.5,370.43699999999995,7.07,7.8,40.8,78.46300000000001,1.0,71.23,0.718,204049.6,16.16,-9.94,1837.5081309999998
1,143571,PCN,Oceania,Pitcairn,2021-09-02,3709386.0,1115.0,1091.857,60602.0,10.0,12.0,33403.775,10.041,9.832,545.7330000000001,0.09,0.10800000000000001,1.52,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,28472887.0,21192.0,256.404,0.191,19245.0,0.17300000000000001,0.0093,107.8,people tested,83.0,47.0,36.0,14880868.0,227791.0,0.0,176.6,100.0,76.6,13.4,0.0,0.0,0.0,37.96,47.0,351.87300000000005,25.2,4.803,2.661,7599.188,3.5,370.43699999999995,7.07,7.8,40.8,78.46300000000001,1.0,71.23,0.718,204049.6,16.16,-9.94,1837.5081309999998
2,143572,PCN,Oceania,Pitcairn,2021-09-03,3709386.0,1115.0,1091.857,60602.0,10.0,12.0,33403.775,10.041,9.832,545.7330000000001,0.09,0.10800000000000001,1.52,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,28472887.0,21192.0,256.404,0.191,19245.0,0.17300000000000001,0.0093,107.8,people tested,83.0,47.0,36.0,14880868.0,227791.0,0.0,176.6,100.0,76.6,13.4,0.0,0.0,0.0,37.96,47.0,351.87300000000005,25.2,4.803,2.661,7599.188,3.5,370.43699999999995,7.07,7.8,40.8,78.46300000000001,1.0,71.23,0.718,204049.6,16.16,-9.94,1837.5081309999998
3,143573,PCN,Oceania,Pitcairn,2021-09-04,3709386.0,1115.0,1091.857,60602.0,10.0,12.0,33403.775,10.041,9.832,545.7330000000001,0.09,0.10800000000000001,1.52,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,28472887.0,21192.0,256.404,0.191,19245.0,0.17300000000000001,0.0093,107.8,people tested,83.0,47.0,36.0,14880868.0,227791.0,0.0,176.6,100.0,76.6,13.4,0.0,0.0,0.0,37.96,47.0,351.87300000000005,25.2,4.803,2.661,7599.188,3.5,370.43699999999995,7.07,7.8,40.8,78.46300000000001,1.0,71.23,0.718,204049.6,16.16,-9.94,1837.5081309999998
4,143574,PCN,Oceania,Pitcairn,2021-09-05,3709386.0,1115.0,1091.857,60602.0,10.0,12.0,33403.775,10.041,9.832,545.7330000000001,0.09,0.10800000000000001,1.52,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,28472887.0,21192.0,256.404,0.191,19245.0,0.17300000000000001,0.0093,107.8,people tested,83.0,47.0,36.0,14880868.0,227791.0,0.0,176.6,100.0,76.6,13.4,0.0,0.0,0.0,37.96,47.0,351.87300000000005,25.2,4.803,2.661,7599.188,3.5,370.43699999999995,7.07,7.8,40.8,78.46300000000001,1.0,71.23,0.718,204049.6,16.16,-9.94,1837.5081309999998
5,143575,PCN,Oceania,Pitcairn,2021-09-06,3709386.0,1115.0,1091.857,60602.0,10.0,12.0,33403.775,10.041,9.832,545.7330000000001,0.09,0.10800000000000001,1.52,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,28472887.0,21192.0,256.404,0.191,19245.0,0.17300000000000001,0.0093,107.8,people tested,83.0,47.0,36.0,14880868.0,227791.0,0.0,176.6,100.0,76.6,13.4,0.0,0.0,0.0,37.96,47.0,351.87300000000005,25.2,4.803,2.661,7599.188,3.5,370.43699999999995,7.07,7.8,40.8,78.46300000000001,1.0,71.23,0.718,204049.6,16.16,-9.94,1837.5081309999998
6,143576,PCN,Oceania,Pitcairn,2021-09-07,3709386.0,1115.0,1091.857,60602.0,10.0,12.0,33403.775,10.041,9.832,545.7330000000001,0.09,0.10800000000000001,1.52,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,28472887.0,21192.0,256.404,0.191,19245.0,0.17300000000000001,0.0093,107.8,people tested,94.0,47.0,47.0,14880868.0,227791.0,0.0,200.0,100.0,100.0,13.4,0.0,0.0,0.0,37.96,47.0,351.87300000000005,25.2,4.803,2.661,7599.188,3.5,370.43699999999995,7.07,7.8,40.8,78.46300000000001,1.0,71.23,0.718,204049.6,16.16,-9.94,1837.5081309999998
7,179351,TKL,Oceania,Tokelau,2021-10-06,37482.0,14.0,17.285999999999998,275.0,0.0,0.0,4420.964,1.651,2.039,32.436,0.0,0.0,1.4,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,749695.0,877.0,88.426,0.10300000000000001,377.0,0.044000000000000004,0.0235,42.6,tests performed,968.0,968.0,1557538.0,87104.0,7881.0,17.0,70.76,70.76,18.37,1.03,12427.0,0.0,0.0,37.96,1368.0,143.366,19.4,2.839,1.525,1429.8129999999999,49.2,280.033,6.15,0.9,14.2,10.475,0.7,81.86,0.515,97687.9,8.02,19.55,1396.5221060000001
8,179352,TKL,Oceania,Tokelau,2021-10-07,37482.0,14.0,17.285999999999998,275.0,0.0,0.0,4420.964,1.651,2.039,32.436,0.0,0.0,1.4,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,749695.0,877.0,88.426,0.10300000000000001,377.0,0.044000000000000004,0.0235,42.6,tests performed,968.0,968.0,1557538.0,87104.0,7881.0,17.0,70.76,70.76,18.37,1.03,12427.0,0.0,0.0,37.96,1368.0,143.366,19.4,2.839,1.525,1429.8129999999999,49.2,280.033,6.15,0.9,14.2,10.475,0.7,81.86,0.515,97687.9,8.02,19.55,1396.5221060000001
9,179353,TKL,Oceania,Tokelau,2021-10-08,37482.0,14.0,17.285999999999998,275.0,0.0,0.0,4420.964,1.651,2.039,32.436,0.0,0.0,1.4,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,749695.0,877.0,88.426,0.10300000000000001,377.0,0.044000000000000004,0.0235,42.6,tests performed,968.0,968.0,1557538.0,87104.0,7881.0,17.0,70.76,70.76,18.37,1.03,12427.0,0.0,0.0,37.96,1368.0,143.366,19.4,2.839,1.525,1429.8129999999999,49.2,280.033,6.15,0.9,14.2,10.475,0.7,81.86,0.515,97687.9,8.02,19.55,1396.5221060000001
10,179354,TKL,Oceania,Tokelau,2021-10-09,37482.0,14.0,17.285999999999998,275.0,0.0,0.0,4420.964,1.651,2.039,32.436,0.0,0.0,1.4,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,749695.0,877.0,88.426,0.10300000000000001,377.0,0.044000000000000004,0.0235,42.6,tests performed,968.0,968.0,1557538.0,87104.0,7881.0,17.0,70.76,70.76,18.37,1.03,12427.0,0.0,0.0,37.96,1368.0,143.366,19.4,2.839,1.525,1429.8129999999999,49.2,280.033,6.15,0.9,14.2,10.475,0.7,81.86,0.515,97687.9,8.02,19.55,1396.5221060000001
11,179355,TKL,Oceania,Tokelau,2021-10-10,37482.0,14.0,17.285999999999998,275.0,0.0,0.0,4420.964,1.651,2.039,32.436,0.0,0.0,1.4,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,749695.0,877.0,88.426,0.10300000000000001,377.0,0.044000000000000004,0.0235,42.6,tests performed,968.0,968.0,1557538.0,87104.0,7881.0,17.0,70.76,70.76,18.37,1.03,12427.0,0.0,0.0,37.96,1368.0,143.366,19.4,2.839,1.525,1429.8129999999999,49.2,280.033,6.15,0.9,14.2,10.475,0.7,81.86,0.515,97687.9,8.02,19.55,1396.5221060000001
12,179356,TKL,Oceania,Tokelau,2021-10-11,37482.0,14.0,17.285999999999998,275.0,0.0,0.0,4420.964,1.651,2.039,32.436,0.0,0.0,1.4,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,749695.0,877.0,88.426,0.10300000000000001,377.0,0.044000000000000004,0.0235,42.6,tests performed,968.0,968.0,1557538.0,87104.0,7881.0,17.0,70.76,70.76,18.37,1.03,12427.0,0.0,0.0,37.96,1368.0,143.366,19.4,2.839,1.525,1429.8129999999999,49.2,280.033,6.15,0.9,14.2,10.475,0.7,81.86,0.515,97687.9,8.02,19.55,1396.5221060000001
13,179357,TKL,Oceania,Tokelau,2021-10-12,37482.0,14.0,17.285999999999998,275.0,0.0,0.0,4420.964,1.651,2.039,32.436,0.0,0.0,1.4,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,749695.0,877.0,88.426,0.10300000000000001,377.0,0.044000000000000004,0.0235,42.6,tests performed,1936.0,968.0,968.0,87104.0,7881.0,17.0,141.52,70.76,70.76,1.03,12427.0,0.0,0.0,37.96,1368.0,143.366,19.4,2.839,1.525,1429.8129999999999,49.2,280.033,6.15,0.9,14.2,10.475,0.7,81.86,0.515,97687.9,8.02,19.55,1396.5221060000001
14,133957,OWID_CYN,Asia,Northern Cyprus,2021-11-20,314501.0,290.0,137.286,9327.0,0.0,0.7140000000000001,151009.214,139.245,65.918,4478.405,0.0,0.34299999999999997,1.5,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,2074132.0,1124.0,995.905,0.54,792.0,0.38,0.0743,13.5,tests performed,575309.0,279313.0,268242.0,62976.0,795.0,2249.0,150.51,73.07,70.18,16.48,5884.0,308.0,0.081,40.74,2082661.0,82.6,39.1,13.26,8.16,13111.214,5.0,322.688,10.08,0.6,10.8,41.949,4.28,75.8,0.774,16133.6,35.44,22.15,7746.627992000001
15,133958,OWID_CYN,Asia,Northern Cyprus,2021-11-21,314501.0,290.0,137.286,9327.0,0.0,0.7140000000000001,151009.214,139.245,65.918,4478.405,0.0,0.34299999999999997,1.5,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,2074132.0,1124.0,995.905,0.54,792.0,0.38,0.0743,13.5,tests performed,575309.0,279313.0,268242.0,62976.0,795.0,2876.0,150.51,73.07,70.18,16.48,7524.0,376.0,0.098,40.74,2082661.0,82.6,39.1,13.26,8.16,13111.214,5.0,322.688,10.08,0.6,10.8,41.949,4.28,75.8,0.774,16133.6,35.44,22.15,7746.627992000001
16,133959,OWID_CYN,Asia,Northern Cyprus,2021-11-22,314501.0,290.0,137.286,9327.0,0.0,0.7140000000000001,151009.214,139.245,65.918,4478.405,0.0,0.34299999999999997,1.5,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,2074132.0,1124.0,995.905,0.54,792.0,0.38,0.0743,13.5,tests performed,575309.0,279313.0,268242.0,62976.0,795.0,3503.0,150.51,73.07,70.18,16.48,9165.0,445.0,0.11599999999999999,40.74,2082661.0,82.6,39.1,13.26,8.16,13111.214,5.0,322.688,10.08,0.6,10.8,41.949,4.28,75.8,0.774,16133.6,35.44,22.15,7746.627992000001
17,133960,OWID_CYN,Asia,Northern Cyprus,2021-11-23,314501.0,290.0,137.286,9327.0,0.0,0.7140000000000001,151009.214,139.245,65.918,4478.405,0.0,0.34299999999999997,1.5,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,2074132.0,1124.0,995.905,0.54,792.0,0.38,0.0743,13.5,tests performed,575309.0,279313.0,268242.0,62976.0,795.0,4130.0,150.51,73.07,70.18,16.48,10805.0,514.0,0.134,40.74,2082661.0,82.6,39.1,13.26,8.16,13111.214,5.0,322.688,10.08,0.6,10.8,41.949,4.28,75.8,0.774,16133.6,35.44,22.15,7746.627992000001
18,133961,OWID_CYN,Asia,Northern Cyprus,2021-11-24,314501.0,290.0,137.286,9327.0,0.0,0.7140000000000001,151009.214,139.245,65.918,4478.405,0.0,0.34299999999999997,1.5,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,2074132.0,1124.0,995.905,0.54,792.0,0.38,0.0743,13.5,tests performed,575309.0,279313.0,268242.0,62976.0,795.0,4757.0,150.51,73.07,70.18,16.48,12445.0,583.0,0.153,40.74,2082661.0,82.6,39.1,13.26,8.16,13111.214,5.0,322.688,10.08,0.6,10.8,41.949,4.28,75.8,0.774,16133.6,35.44,22.15,7746.627992000001
19,133962,OWID_CYN,Asia,Northern Cyprus,2021-11-25,314501.0,290.0,137.286,9327.0,0.0,0.7140000000000001,151009.214,139.245,65.918,4478.405,0.0,0.34299999999999997,1.5,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,2074132.0,1124.0,995.905,0.54,792.0,0.38,0.0743,13.5,tests performed,575309.0,279313.0,268242.0,62976.0,795.0,5384.0,150.51,73.07,70.18,16.48,14086.0,652.0,0.171,40.74,2082661.0,82.6,39.1,13.26,8.16,13111.214,5.0,322.688,10.08,0.6,10.8,41.949,4.28,75.8,0.774,16133.6,35.44,22.15,7746.627992000001
20,133963,OWID_CYN,Asia,Northern Cyprus,2021-11-26,314501.0,290.0,137.286,9327.0,0.0,0.7140000000000001,151009.214,139.245,65.918,4478.405,0.0,0.34299999999999997,1.5,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,2074132.0,1124.0,995.905,0.54,792.0,0.38,0.0743,13.5,tests performed,617389.0,284357.0,275988.0,80243.0,795.0,6011.0,161.52,74.39,72.2,20.99,15726.0,721.0,0.18899999999999997,40.74,2082661.0,82.6,39.1,13.26,8.16,13111.214,5.0,322.688,10.08,0.6,10.8,41.949,4.28,75.8,0.774,16133.6,35.44,22.15,7746.627992000001
21,134567,MNP,Oceania,Northern Mariana Islands,2021-11-28,314501.0,290.0,137.286,9327.0,0.0,0.7140000000000001,151009.214,139.245,65.918,4478.405,0.0,0.34299999999999997,1.5,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,58985.0,39.0,1018.563,0.6729999999999999,55.0,0.95,0.799,1.3,tests performed,617389.0,284357.0,275988.0,80243.0,795.0,6011.0,161.52,74.39,72.2,20.99,15726.0,721.0,0.18899999999999997,40.74,57910.0,119.87799999999999,39.1,13.26,8.16,13111.214,5.0,194.99400000000003,10.08,0.6,10.8,41.949,4.28,76.74,0.774,16133.6,35.44,22.15,7746.627992000001
22,134568,MNP,Oceania,Northern Mariana Islands,2021-11-29,314501.0,290.0,137.286,9327.0,0.0,0.7140000000000001,151009.214,139.245,65.918,4478.405,0.0,0.34299999999999997,1.5,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,59035.0,50.0,1019.427,0.863,48.0,0.8290000000000001,0.7559999999999999,1.3,tests performed,617389.0,284357.0,275988.0,80243.0,795.0,6011.0,161.52,74.39,72.2,20.99,15726.0,721.0,0.18899999999999997,40.74,57910.0,119.87799999999999,39.1,13.26,8.16,13111.214,5.0,194.99400000000003,10.08,0.6,10.8,41.949,4.28,76.74,0.774,16133.6,35.44,22.15,7746.627992000001
23,134569,MNP,Oceania,Northern Mariana Islands,2021-11-30,314501.0,290.0,137.286,9327.0,0.0,0.7140000000000001,151009.214,139.245,65.918,4478.405,0.0,0.34299999999999997,1.5,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,59086.0,51.0,1020.307,0.8809999999999999,49.0,0.846,0.789,1.3,tests performed,617389.0,284357.0,275988.0,80243.0,795.0,6011.0,161.52,74.39,72.2,20.99,15726.0,721.0,0.18899999999999997,40.74,57910.0,119.87799999999999,39.1,13.26,8.16,13111.214,5.0,194.99400000000003,10.08,0.6,10.8,41.949,4.28,76.74,0.774,16133.6,35.44,22.15,7746.627992000001
24,134570,MNP,Oceania,Northern Mariana Islands,2021-12-01,314501.0,290.0,137.286,9327.0,0.0,0.7140000000000001,151009.214,139.245,65.918,4478.405,0.0,0.34299999999999997,1.5,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,59093.0,7.0,1020.428,0.121,46.0,0.794,0.831,1.2,tests performed,617389.0,284357.0,275988.0,80243.0,795.0,6011.0,161.52,74.39,72.2,20.99,15726.0,721.0,0.18899999999999997,40.74,57910.0,119.87799999999999,39.1,13.26,8.16,13111.214,5.0,194.99400000000003,10.08,0.6,10.8,41.949,4.28,76.74,0.774,16133.6,35.44,22.15,7746.627992000001
25,134571,MNP,Oceania,Northern Mariana Islands,2021-12-02,314501.0,290.0,137.286,9327.0,0.0,0.7140000000000001,151009.214,139.245,65.918,4478.405,0.0,0.34299999999999997,1.5,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,59099.0,6.0,1020.5319999999999,0.10400000000000001,37.0,0.639,0.805,1.2,tests performed,617389.0,284357.0,275988.0,80243.0,795.0,6011.0,161.52,74.39,72.2,20.99,15726.0,721.0,0.18899999999999997,40.74,57910.0,119.87799999999999,39.1,13.26,8.16,13111.214,5.0,194.99400000000003,10.08,0.6,10.8,41.949,4.28,76.74,0.774,16133.6,35.44,22.15,7746.627992000001
26,134572,MNP,Oceania,Northern Mariana Islands,2021-12-03,314501.0,290.0,137.286,9327.0,0.0,0.7140000000000001,151009.214,139.245,65.918,4478.405,0.0,0.34299999999999997,1.5,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,59103.0,4.0,1020.6010000000001,0.069,28.0,0.484,0.746,1.3,tests performed,617389.0,284357.0,275988.0,80243.0,795.0,6011.0,161.52,74.39,72.2,20.99,15726.0,721.0,0.18899999999999997,40.74,57910.0,119.87799999999999,39.1,13.26,8.16,13111.214,5.0,194.99400000000003,10.08,0.6,10.8,41.949,4.28,76.74,0.774,16133.6,35.44,22.15,7746.627992000001
27,134573,MNP,Oceania,Northern Mariana Islands,2021-12-04,314501.0,290.0,137.286,9327.0,0.0,0.7140000000000001,151009.214,139.245,65.918,4478.405,0.0,0.34299999999999997,1.5,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,59110.0,7.0,1020.722,0.121,23.0,0.397,0.701,1.4,tests performed,617389.0,284357.0,275988.0,80243.0,795.0,6011.0,161.52,74.39,72.2,20.99,15726.0,721.0,0.18899999999999997,40.74,57910.0,119.87799999999999,39.1,13.26,8.16,13111.214,5.0,194.99400000000003,10.08,0.6,10.8,41.949,4.28,76.74,0.774,16133.6,35.44,22.15,7746.627992000001
28,182706,TKM,Asia,Turkmenistan,2022-02-28,15180444.0,57113.0,11964.0,99057.0,25.0,6.0,178503.711,671.58,140.68200000000002,1164.7910000000002,0.294,0.071,0.06,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,163164533.0,128854.0,1918.618,1.515,134604.0,1.5830000000000002,0.0077,130.4,tests performed,51746.0,32240.0,19506.0,36889615.0,5279.0,19106.0,0.85,0.53,0.32,43.38,3123.0,7918.0,0.129,66.67,6117933.0,12.253,26.9,4.277,2.541,16389.023,0.2,536.783,7.11,14.1,41.1,100.0,7.4,68.19,0.715,20481.6,16.84,40.84,1715.9856710000001
29,182707,TKM,Asia,Turkmenistan,2022-03-01,15180444.0,57113.0,11964.0,99057.0,25.0,6.0,178503.711,671.58,140.68200000000002,1164.7910000000002,0.294,0.071,0.06,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,163164533.0,128854.0,1918.618,1.515,134604.0,1.5830000000000002,0.0077,130.4,tests performed,51746.0,32240.0,19506.0,36889615.0,5279.0,19106.0,0.85,0.53,0.32,43.38,3123.0,7918.0,0.129,66.67,6117933.0,12.253,26.9,4.277,2.541,16389.023,0.2,536.783,7.11,14.1,41.1,100.0,7.4,68.19,0.715,20481.6,16.84,40.84,1715.9856710000001
30,182708,TKM,Asia,Turkmenistan,2022-03-02,15180444.0,57113.0,11964.0,99057.0,25.0,6.0,178503.711,671.58,140.68200000000002,1164.7910000000002,0.294,0.071,0.06,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,163164533.0,128854.0,1918.618,1.515,134604.0,1.5830000000000002,0.0077,130.4,tests performed,51746.0,32240.0,19506.0,36889615.0,5279.0,19106.0,0.85,0.53,0.32,43.38,3123.0,7918.0,0.129,66.67,6117933.0,12.253,26.9,4.277,2.541,16389.023,0.2,536.783,7.11,14.1,41.1,100.0,7.4,68.19,0.715,20481.6,16.84,40.84,1715.9856710000001
31,182709,TKM,Asia,Turkmenistan,2022-03-03,15180444.0,57113.0,11964.0,99057.0,25.0,6.0,178503.711,671.58,140.68200000000002,1164.7910000000002,0.294,0.071,0.06,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,163164533.0,128854.0,1918.618,1.515,134604.0,1.5830000000000002,0.0077,130.4,tests performed,51746.0,32240.0,19506.0,36889615.0,5279.0,19106.0,0.85,0.53,0.32,43.38,3123.0,7918.0,0.129,66.67,6117933.0,12.253,26.9,4.277,2.541,16389.023,0.2,536.783,7.11,14.1,41.1,100.0,7.4,68.19,0.715,20481.6,16.84,40.84,1715.9856710000001
32,182710,TKM,Asia,Turkmenistan,2022-03-04,15180444.0,57113.0,11964.0,99057.0,25.0,6.0,178503.711,671.58,140.68200000000002,1164.7910000000002,0.294,0.071,0.06,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,163164533.0,128854.0,1918.618,1.515,134604.0,1.5830000000000002,0.0077,130.4,tests performed,51746.0,32240.0,19506.0,36889615.0,5279.0,19106.0,0.85,0.53,0.32,43.38,3123.0,7918.0,0.129,66.67,6117933.0,12.253,26.9,4.277,2.541,16389.023,0.2,536.783,7.11,14.1,41.1,100.0,7.4,68.19,0.715,20481.6,16.84,40.84,1715.9856710000001
33,182711,TKM,Asia,Turkmenistan,2022-03-05,15180444.0,57113.0,11964.0,99057.0,25.0,6.0,178503.711,671.58,140.68200000000002,1164.7910000000002,0.294,0.071,0.06,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,163164533.0,128854.0,1918.618,1.515,134604.0,1.5830000000000002,0.0077,130.4,tests performed,51746.0,32240.0,19506.0,36889615.0,5279.0,19106.0,0.85,0.53,0.32,43.38,3123.0,7918.0,0.129,66.67,6117933.0,12.253,26.9,4.277,2.541,16389.023,0.2,536.783,7.11,14.1,41.1,100.0,7.4,68.19,0.715,20481.6,16.84,40.84,1715.9856710000001
34,182712,TKM,Asia,Turkmenistan,2022-03-06,15180444.0,57113.0,11964.0,99057.0,25.0,6.0,178503.711,671.58,140.68200000000002,1164.7910000000002,0.294,0.071,0.06,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,163164533.0,128854.0,1918.618,1.515,134604.0,1.5830000000000002,0.0077,130.4,tests performed,7140000.0,2970000.0,2920000.0,1250000.0,5279.0,19106.0,116.71,48.55,47.73,20.43,3123.0,7918.0,0.129,66.67,6117933.0,12.253,26.9,4.277,2.541,16389.023,0.2,536.783,7.11,14.1,41.1,100.0,7.4,68.19,0.715,20481.6,16.84,40.84,1715.9856710000001
35,131104,NIU,Oceania,Niue,2022-03-07,257637.0,347.0,97.0,3144.0,0.0,0.0,1218.714,1.641,0.45899999999999996,14.872,0.0,0.0,1.44,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,5279608.0,11989.0,24.974,0.057,8950.0,0.042,0.0056,180.0,tests performed,2628.0,1340.0,1288.0,1171892.0,186047.0,14.0,162.83,83.02,79.8,0.55,8674.0,3.0,0.18600000000000003,40.74,1614.0,209.588,18.1,2.7510000000000003,1.4469999999999998,5338.454000000001,44.5,181.013,2.42,0.6,10.8,41.949,0.3,73.71,0.539,8148.4,31.97,5.18,1215.747423
36,131105,NIU,Oceania,Niue,2022-03-08,257637.0,347.0,97.0,3144.0,0.0,0.0,1218.714,1.641,0.45899999999999996,14.872,0.0,0.0,1.44,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,5279608.0,11989.0,24.974,0.057,8950.0,0.042,0.0056,180.0,tests performed,2628.0,1340.0,1288.0,1171892.0,186047.0,14.0,162.83,83.02,79.8,0.55,8674.0,3.0,0.18600000000000003,40.74,1614.0,209.588,18.1,2.7510000000000003,1.4469999999999998,5338.454000000001,44.5,181.013,2.42,0.6,10.8,41.949,0.3,73.71,0.539,8148.4,31.97,5.18,1215.747423
37,131106,NIU,Oceania,Niue,2022-03-09,257637.0,347.0,97.0,3144.0,0.0,0.0,1218.714,1.641,0.45899999999999996,14.872,0.0,0.0,1.44,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,5279608.0,11989.0,24.974,0.057,8950.0,0.042,0.0056,180.0,tests performed,2628.0,1340.0,1288.0,1171892.0,186047.0,14.0,162.83,83.02,79.8,0.55,8674.0,3.0,0.18600000000000003,40.74,1614.0,209.588,18.1,2.7510000000000003,1.4469999999999998,5338.454000000001,44.5,181.013,2.42,0.6,10.8,41.949,0.3,73.71,0.539,8148.4,31.97,5.18,1215.747423
38,131107,NIU,Oceania,Niue,2022-03-10,257637.0,347.0,97.0,3144.0,0.0,0.0,1218.714,1.641,0.45899999999999996,14.872,0.0,0.0,1.44,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,5279608.0,11989.0,24.974,0.057,8950.0,0.042,0.0056,180.0,tests performed,2628.0,1340.0,1288.0,1171892.0,186047.0,14.0,162.83,83.02,79.8,0.55,8674.0,3.0,0.18600000000000003,40.74,1614.0,209.588,18.1,2.7510000000000003,1.4469999999999998,5338.454000000001,44.5,181.013,2.42,0.6,10.8,41.949,0.3,73.71,0.539,8148.4,31.97,5.18,1215.747423
39,131108,NIU,Oceania,Niue,2022-03-11,257637.0,347.0,97.0,3144.0,0.0,0.0,1218.714,1.641,0.45899999999999996,14.872,0.0,0.0,1.44,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,5279608.0,11989.0,24.974,0.057,8950.0,0.042,0.0056,180.0,tests performed,2628.0,1340.0,1288.0,1171892.0,186047.0,14.0,162.83,83.02,79.8,0.55,8674.0,3.0,0.18600000000000003,40.74,1614.0,209.588,18.1,2.7510000000000003,1.4469999999999998,5338.454000000001,44.5,181.013,2.42,0.6,10.8,41.949,0.3,73.71,0.539,8148.4,31.97,5.18,1215.747423
40,131109,NIU,Oceania,Niue,2022-03-12,257637.0,347.0,97.0,3144.0,0.0,0.0,1218.714,1.641,0.45899999999999996,14.872,0.0,0.0,1.44,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,5279608.0,11989.0,24.974,0.057,8950.0,0.042,0.0056,180.0,tests performed,2628.0,1340.0,1288.0,1171892.0,186047.0,14.0,162.83,83.02,79.8,0.55,8674.0,3.0,0.18600000000000003,40.74,1614.0,209.588,18.1,2.7510000000000003,1.4469999999999998,5338.454000000001,44.5,181.013,2.42,0.6,10.8,41.949,0.3,73.71,0.539,8148.4,31.97,5.18,1215.747423
41,131110,NIU,Oceania,Niue,2022-03-13,257637.0,347.0,97.0,3144.0,0.0,0.0,1218.714,1.641,0.45899999999999996,14.872,0.0,0.0,1.44,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,5279608.0,11989.0,24.974,0.057,8950.0,0.042,0.0056,180.0,tests performed,4161.0,1650.0,1417.0,1094.0,186047.0,14.0,257.81,102.23,87.79,67.78,8674.0,3.0,0.18600000000000003,40.74,1614.0,209.588,18.1,2.7510000000000003,1.4469999999999998,5338.454000000001,44.5,181.013,2.42,0.6,10.8,41.949,0.3,73.71,0.539,8148.4,31.97,5.18,1215.747423
42,183879,TUV,Oceania,Tuvalu,2022-03-30,6219.0,0.0,1.143,36.0,0.0,0.0,158542.803,0.0,29.135,917.7589999999999,0.0,0.0,0.06,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,163164533.0,128854.0,1918.618,1.515,134604.0,1.5830000000000002,0.0077,130.4,tests performed,12114.0,6230.0,5884.0,7851.0,5279.0,3.0,101.58,52.24,49.34,20.01,252.0,1.0,0.008,66.67,11925.0,373.06699999999995,26.9,4.277,2.541,3575.1040000000003,3.3,536.783,27.25,14.1,41.1,100.0,7.4,67.57,0.715,20481.6,16.84,40.84,1715.9856710000001
43,183880,TUV,Oceania,Tuvalu,2022-03-31,6219.0,0.0,1.143,36.0,0.0,0.0,158542.803,0.0,29.135,917.7589999999999,0.0,0.0,0.06,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,163164533.0,128854.0,1918.618,1.515,134604.0,1.5830000000000002,0.0077,130.4,tests performed,12114.0,6230.0,5884.0,7851.0,5279.0,3.0,101.58,52.24,49.34,20.01,252.0,1.0,0.008,66.67,11925.0,373.06699999999995,26.9,4.277,2.541,3575.1040000000003,3.3,536.783,27.25,14.1,41.1,100.0,7.4,67.57,0.715,20481.6,16.84,40.84,1715.9856710000001
44,183881,TUV,Oceania,Tuvalu,2022-04-01,6219.0,0.0,1.143,36.0,0.0,0.0,158542.803,0.0,29.135,917.7589999999999,0.0,0.0,0.06,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,163164533.0,128854.0,1918.618,1.515,134604.0,1.5830000000000002,0.0077,130.4,tests performed,12114.0,6230.0,5884.0,7851.0,5279.0,3.0,101.58,52.24,49.34,20.01,252.0,1.0,0.008,66.67,11925.0,373.06699999999995,26.9,4.277,2.541,3575.1040000000003,3.3,536.783,27.25,14.1,41.1,100.0,7.4,67.57,0.715,20481.6,16.84,40.84,1715.9856710000001
45,183882,TUV,Oceania,Tuvalu,2022-04-02,6219.0,0.0,1.143,36.0,0.0,0.0,158542.803,0.0,29.135,917.7589999999999,0.0,0.0,0.06,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,163164533.0,128854.0,1918.618,1.515,134604.0,1.5830000000000002,0.0077,130.4,tests performed,12114.0,6230.0,5884.0,7851.0,5279.0,3.0,101.58,52.24,49.34,20.01,252.0,1.0,0.008,66.67,11925.0,373.06699999999995,26.9,4.277,2.541,3575.1040000000003,3.3,536.783,27.25,14.1,41.1,100.0,7.4,67.57,0.715,20481.6,16.84,40.84,1715.9856710000001
46,183883,TUV,Oceania,Tuvalu,2022-04-03,6219.0,0.0,1.143,36.0,0.0,0.0,158542.803,0.0,29.135,917.7589999999999,0.0,0.0,0.06,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,163164533.0,128854.0,1918.618,1.515,134604.0,1.5830000000000002,0.0077,130.4,tests performed,12114.0,6230.0,5884.0,7851.0,5279.0,3.0,101.58,52.24,49.34,20.01,252.0,1.0,0.008,66.67,11925.0,373.06699999999995,26.9,4.277,2.541,3575.1040000000003,3.3,536.783,27.25,14.1,41.1,100.0,7.4,67.57,0.715,20481.6,16.84,40.84,1715.9856710000001
47,183884,TUV,Oceania,Tuvalu,2022-04-04,6219.0,0.0,1.143,36.0,0.0,0.0,158542.803,0.0,29.135,917.7589999999999,0.0,0.0,0.06,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,163164533.0,128854.0,1918.618,1.515,134604.0,1.5830000000000002,0.0077,130.4,tests performed,12114.0,6230.0,5884.0,7851.0,5279.0,3.0,101.58,52.24,49.34,20.01,252.0,1.0,0.008,66.67,11925.0,373.06699999999995,26.9,4.277,2.541,3575.1040000000003,3.3,536.783,27.25,14.1,41.1,100.0,7.4,67.57,0.715,20481.6,16.84,40.84,1715.9856710000001
48,183885,TUV,Oceania,Tuvalu,2022-04-05,6219.0,0.0,1.143,36.0,0.0,0.0,158542.803,0.0,29.135,917.7589999999999,0.0,0.0,0.06,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,163164533.0,128854.0,1918.618,1.515,134604.0,1.5830000000000002,0.0077,130.4,tests performed,12528.0,6368.0,6160.0,7851.0,5279.0,3.0,105.06,53.4,51.66,20.01,252.0,1.0,0.008,66.67,11925.0,373.06699999999995,26.9,4.277,2.541,3575.1040000000003,3.3,536.783,27.25,14.1,41.1,100.0,7.4,67.57,0.715,20481.6,16.84,40.84,1715.9856710000001
49,124858,NRU,Oceania,Nauru,2022-04-05,169247.0,17.0,24.429000000000002,4065.0,0.0,0.5710000000000001,65413.412000000004,6.57,9.442,1571.109,0.0,0.221,0.54,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1056045.0,778.0,408.158,0.301,772.0,0.298,0.0579,17.3,tests performed,16824.0,9150.0,7674.0,64392.0,168.0,293.0,154.73,84.15,70.58,2.49,26947.0,15.0,0.138,23.15,10873.0,682.45,22.0,3.552,2.085,12895.635,13.4,243.81099999999998,24.07,43.0,36.9,44.6,5.0,59.96,0.6459999999999999,2633.7,21.49,55.05,4193.449258
50,124859,NRU,Oceania,Nauru,2022-04-06,169247.0,17.0,24.429000000000002,4065.0,0.0,0.5710000000000001,65413.412000000004,6.57,9.442,1571.109,0.0,0.221,0.54,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1056045.0,778.0,408.158,0.301,772.0,0.298,0.0579,17.3,tests performed,16824.0,9150.0,7674.0,64392.0,168.0,293.0,154.73,84.15,70.58,2.49,26947.0,15.0,0.138,23.15,10873.0,682.45,22.0,3.552,2.085,12895.635,13.4,243.81099999999998,24.07,43.0,36.9,44.6,5.0,59.96,0.6459999999999999,2633.7,21.49,55.05,4193.449258
51,124860,NRU,Oceania,Nauru,2022-04-07,169247.0,17.0,24.429000000000002,4065.0,0.0,0.5710000000000001,65413.412000000004,6.57,9.442,1571.109,0.0,0.221,0.54,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1056045.0,778.0,408.158,0.301,772.0,0.298,0.0579,17.3,tests performed,16824.0,9150.0,7674.0,64392.0,168.0,293.0,154.73,84.15,70.58,2.49,26947.0,15.0,0.138,23.15,10873.0,682.45,22.0,3.552,2.085,12895.635,13.4,243.81099999999998,24.07,43.0,36.9,44.6,5.0,59.96,0.6459999999999999,2633.7,21.49,55.05,4193.449258
52,124861,NRU,Oceania,Nauru,2022-04-08,169247.0,17.0,24.429000000000002,4065.0,0.0,0.5710000000000001,65413.412000000004,6.57,9.442,1571.109,0.0,0.221,0.54,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1056045.0,778.0,408.158,0.301,772.0,0.298,0.0579,17.3,tests performed,16824.0,9150.0,7674.0,64392.0,168.0,293.0,154.73,84.15,70.58,2.49,26947.0,15.0,0.138,23.15,10873.0,682.45,22.0,3.552,2.085,12895.635,13.4,243.81099999999998,24.07,43.0,36.9,44.6,5.0,59.96,0.6459999999999999,2633.7,21.49,55.05,4193.449258
53,124862,NRU,Oceania,Nauru,2022-04-09,169247.0,17.0,24.429000000000002,4065.0,0.0,0.5710000000000001,65413.412000000004,6.57,9.442,1571.109,0.0,0.221,0.54,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1056045.0,778.0,408.158,0.301,772.0,0.298,0.0579,17.3,tests performed,16824.0,9150.0,7674.0,64392.0,168.0,293.0,154.73,84.15,70.58,2.49,26947.0,15.0,0.138,23.15,10873.0,682.45,22.0,3.552,2.085,12895.635,13.4,243.81099999999998,24.07,43.0,36.9,44.6,5.0,59.96,0.6459999999999999,2633.7,21.49,55.05,4193.449258
54,124863,NRU,Oceania,Nauru,2022-04-10,169247.0,17.0,24.429000000000002,4065.0,0.0,0.5710000000000001,65413.412000000004,6.57,9.442,1571.109,0.0,0.221,0.54,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1056045.0,778.0,408.158,0.301,772.0,0.298,0.0579,17.3,tests performed,16824.0,9150.0,7674.0,64392.0,168.0,293.0,154.73,84.15,70.58,2.49,26947.0,15.0,0.138,23.15,10873.0,682.45,22.0,3.552,2.085,12895.635,13.4,243.81099999999998,24.07,43.0,36.9,44.6,5.0,59.96,0.6459999999999999,2633.7,21.49,55.05,4193.449258
55,124864,NRU,Oceania,Nauru,2022-04-11,169247.0,17.0,24.429000000000002,4065.0,0.0,0.5710000000000001,65413.412000000004,6.57,9.442,1571.109,0.0,0.221,0.54,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1056045.0,778.0,408.158,0.301,772.0,0.298,0.0579,17.3,tests performed,22976.0,9464.0,8585.0,4927.0,168.0,293.0,211.31,87.04,78.96,45.31,26947.0,15.0,0.138,23.15,10873.0,682.45,22.0,3.552,2.085,12895.635,13.4,243.81099999999998,24.07,43.0,36.9,44.6,5.0,59.96,0.6459999999999999,2633.7,21.49,55.05,4193.449258
56,195458,ESH,Africa,Western Sahara,2022-04-20,454.0,0.0,0.0,7.0,0.0,0.0,40923.021,0.0,0.0,630.972,0.0,0.0,0.91,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,3943.0,56715.0,6.444,0.578,620.0,0.006,0.9523,1.1,tests performed,16426.0,6483.0,6457.0,3201.0,66330.0,7.0,148.06,58.44,58.2,28.85,631.0,2.0,0.018000000000000002,25.93,611872.0,308.127,28.4,7.15,1.38,6171.884,2.0,245.465,6.0,1.0,45.9,85.84700000000001,2.6,70.26,0.7040000000000001,38486.9,10.93,1.96,1134.110282
57,73015,GUM,Oceania,Guam,2022-06-12,18376.0,0.0,15.142999999999999,232.0,0.0,0.0,162597.885,0.0,133.99,2052.825,0.0,0.0,1.3,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,320254.0,141.0,1881.81,0.8290000000000001,204.0,1.199,0.145,6.9,tests performed,89147.0,43772.0,38565.0,6810.0,67.0,11.0,78.88,38.73,34.12,6.03,97.0,4.0,0.004,22.22,170184.0,304.128,31.4,9.551,5.492999999999999,13593.877,1.5,310.496,21.52,35.3,52.0,41.047,3.7,80.07,0.779,-82.9,-6.6,-55.8,-1457.761834
58,146119,PRI,North America,Puerto Rico,2022-06-12,5171236.0,10375.0,8832.0,24149.0,28.0,22.0,508583.316,1020.3660000000001,868.6139999999999,2375.018,2.7539999999999996,2.164,0.66,85.0,8.36,1743.0,171.421,9.0,1.669,234.0,42.846000000000004,3000200.0,1275.0,1060.799,0.451,2623.0,0.927,0.23800000000000002,4.2,tests performed,24616852.0,9729123.0,8884776.0,6731760.0,79.0,12306.0,242.1,95.68,87.38,66.21,1210.0,299.0,0.003,30.56,2828246.0,376.23199999999997,38.2,15.168,9.829,35044.67,0.5,108.094,12.9,16.3,30.0,78.46300000000001,3.39,80.1,0.8640000000000001,6142.2,8.73,17.19,2171.734708
59,146120,PRI,North America,Puerto Rico,2022-06-13,5171236.0,10375.0,8832.0,24149.0,28.0,22.0,508583.316,1020.3660000000001,868.6139999999999,2375.018,2.7539999999999996,2.164,0.66,85.0,8.36,1743.0,171.421,9.0,1.669,234.0,42.846000000000004,3004251.0,4051.0,1062.231,1.432,2627.0,0.929,0.23800000000000002,4.2,tests performed,24616852.0,9729123.0,8884776.0,6731760.0,79.0,12306.0,242.1,95.68,87.38,66.21,1210.0,299.0,0.003,30.56,2828246.0,376.23199999999997,38.2,15.168,9.829,35044.67,0.5,108.094,12.9,16.3,30.0,78.46300000000001,3.39,80.1,0.8640000000000001,6142.2,8.73,17.19,2171.734708
60,73016,GUM,Oceania,Guam,2022-06-13,18376.0,0.0,15.142999999999999,232.0,0.0,0.0,162597.885,0.0,133.99,2052.825,0.0,0.0,1.3,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,320349.0,95.0,1882.368,0.5579999999999999,148.0,0.87,0.18,5.6,tests performed,89147.0,43772.0,38565.0,6810.0,67.0,11.0,78.88,38.73,34.12,6.03,97.0,4.0,0.004,22.22,170184.0,304.128,31.4,9.551,5.492999999999999,13593.877,1.5,310.496,21.52,35.3,52.0,41.047,3.7,80.07,0.779,-82.9,-6.6,-55.8,-1457.761834
61,189056,VIR,North America,United States Virgin Islands,2022-06-13,87886589.0,43028.0,102432.85699999999,1017915.0,67.0,272.57099999999997,263991.017,129.246,307.685,3057.5820000000003,0.201,0.8190000000000001,1.13,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,114786.0,88.0,1101.403,0.8440000000000001,46.0,0.441,0.19899999999999998,5.0,tests performed,596233489.0,259957415.0,222271398.0,123531432.0,19802.0,163157.0,179.58,78.3,66.95,37.21,491.0,41714.0,0.013000000000000001,43.52,104218.0,306.48,42.2,18.601,10.799000000000001,54225.445999999996,1.2,273.67,12.26,19.1,24.6,21.221999999999998,2.77,80.58,0.9259999999999999,1105051.9,16.45,-3.34,3319.320711
62,73017,GUM,Oceania,Guam,2022-06-14,18376.0,0.0,15.142999999999999,232.0,0.0,0.0,162597.885,0.0,133.99,2052.825,0.0,0.0,1.3,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,320571.0,222.0,1883.6729999999998,1.304,119.0,0.6990000000000001,0.22399999999999998,4.5,tests performed,89147.0,43772.0,38565.0,6810.0,67.0,11.0,78.88,38.73,34.12,6.03,97.0,4.0,0.004,22.22,170184.0,304.128,31.4,9.551,5.492999999999999,13593.877,1.5,310.496,21.52,35.3,52.0,41.047,3.7,80.07,0.779,-82.9,-6.6,-55.8,-1457.761834
63,146121,PRI,North America,Puerto Rico,2022-06-14,5171236.0,10375.0,8832.0,24149.0,28.0,22.0,508583.316,1020.3660000000001,868.6139999999999,2375.018,2.7539999999999996,2.164,0.66,85.0,8.36,1743.0,171.421,9.0,1.669,234.0,42.846000000000004,3008812.0,4561.0,1063.844,1.6130000000000002,2759.0,0.976,0.23800000000000002,4.2,tests performed,24616852.0,9729123.0,8884776.0,6731760.0,79.0,12306.0,242.1,95.68,87.38,66.21,1210.0,299.0,0.003,30.56,2828246.0,376.23199999999997,38.2,15.168,9.829,35044.67,0.5,108.094,12.9,16.3,30.0,78.46300000000001,3.39,80.1,0.8640000000000001,6142.2,8.73,17.19,2171.734708
64,189057,VIR,North America,United States Virgin Islands,2022-06-14,87886589.0,43028.0,102432.85699999999,1017915.0,67.0,272.57099999999997,263991.017,129.246,307.685,3057.5820000000003,0.201,0.8190000000000001,1.13,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,114852.0,66.0,1102.036,0.633,35.0,0.336,0.163,6.1,tests performed,596233489.0,259957415.0,222271398.0,123531432.0,19802.0,163157.0,179.58,78.3,66.95,37.21,491.0,41714.0,0.013000000000000001,43.52,104218.0,306.48,42.2,18.601,10.799000000000001,54225.445999999996,1.2,273.67,12.26,19.1,24.6,21.221999999999998,2.77,80.58,0.9259999999999999,1105051.9,16.45,-3.34,3319.320711
65,73018,GUM,Oceania,Guam,2022-06-15,18376.0,0.0,15.142999999999999,232.0,0.0,0.0,162597.885,0.0,133.99,2052.825,0.0,0.0,1.3,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,320898.0,327.0,1885.594,1.921,121.0,0.711,0.245,4.1,tests performed,89147.0,43772.0,38565.0,6810.0,67.0,11.0,78.88,38.73,34.12,6.03,97.0,4.0,0.004,22.22,170184.0,304.128,31.4,9.551,5.492999999999999,13593.877,1.5,310.496,21.52,35.3,52.0,41.047,3.7,80.07,0.779,-82.9,-6.6,-55.8,-1457.761834
66,146122,PRI,North America,Puerto Rico,2022-06-15,5171236.0,10375.0,8832.0,24149.0,28.0,22.0,508583.316,1020.3660000000001,868.6139999999999,2375.018,2.7539999999999996,2.164,0.66,85.0,8.36,1743.0,171.421,9.0,1.669,234.0,42.846000000000004,3012447.0,3635.0,1065.129,1.285,2655.0,0.9390000000000001,0.23800000000000002,4.2,tests performed,24616852.0,9729123.0,8884776.0,6731760.0,79.0,12306.0,242.1,95.68,87.38,66.21,1210.0,299.0,0.003,30.56,2828246.0,376.23199999999997,38.2,15.168,9.829,35044.67,0.5,108.094,12.9,16.3,30.0,78.46300000000001,3.39,80.1,0.8640000000000001,6142.2,8.73,17.19,2171.734708
67,189058,VIR,North America,United States Virgin Islands,2022-06-15,87886589.0,43028.0,102432.85699999999,1017915.0,67.0,272.57099999999997,263991.017,129.246,307.685,3057.5820000000003,0.201,0.8190000000000001,1.13,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,114909.0,57.0,1102.583,0.547,35.0,0.336,0.23399999999999999,4.3,tests performed,596233489.0,259957415.0,222271398.0,123531432.0,19802.0,163157.0,179.58,78.3,66.95,37.21,491.0,41714.0,0.013000000000000001,43.52,104218.0,306.48,42.2,18.601,10.799000000000001,54225.445999999996,1.2,273.67,12.26,19.1,24.6,21.221999999999998,2.77,80.58,0.9259999999999999,1105051.9,16.45,-3.34,3319.320711
68,189059,VIR,North America,United States Virgin Islands,2022-06-16,87886589.0,43028.0,102432.85699999999,1017915.0,67.0,272.57099999999997,263991.017,129.246,307.685,3057.5820000000003,0.201,0.8190000000000001,1.13,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,115001.0,92.0,1103.4660000000001,0.883,48.0,0.461,0.209,4.8,tests performed,596233489.0,259957415.0,222271398.0,123531432.0,19802.0,163157.0,179.58,78.3,66.95,37.21,491.0,41714.0,0.013000000000000001,43.52,104218.0,306.48,42.2,18.601,10.799000000000001,54225.445999999996,1.2,273.67,12.26,19.1,24.6,21.221999999999998,2.77,80.58,0.9259999999999999,1105051.9,16.45,-3.34,3319.320711
69,73019,GUM,Oceania,Guam,2022-06-16,18376.0,0.0,15.142999999999999,232.0,0.0,0.0,162597.885,0.0,133.99,2052.825,0.0,0.0,1.3,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,321422.0,524.0,1888.6729999999998,3.0789999999999997,194.0,1.14,0.21,4.8,tests performed,89147.0,43772.0,38565.0,6810.0,67.0,11.0,78.88,38.73,34.12,6.03,97.0,4.0,0.004,22.22,170184.0,304.128,31.4,9.551,5.492999999999999,13593.877,1.5,310.496,21.52,35.3,52.0,41.047,3.7,80.07,0.779,-82.9,-6.6,-55.8,-1457.761834
70,146123,PRI,North America,Puerto Rico,2022-06-16,5171236.0,10375.0,8832.0,24149.0,28.0,22.0,508583.316,1020.3660000000001,868.6139999999999,2375.018,2.7539999999999996,2.164,0.66,85.0,8.36,1743.0,171.421,9.0,1.669,234.0,42.846000000000004,3015616.0,3169.0,1066.25,1.12,2923.0,1.034,0.23800000000000002,4.2,tests performed,24616852.0,9729123.0,8884776.0,6731760.0,79.0,12306.0,242.1,95.68,87.38,66.21,1210.0,299.0,0.003,30.56,2828246.0,376.23199999999997,38.2,15.168,9.829,35044.67,0.5,108.094,12.9,16.3,30.0,78.46300000000001,3.39,80.1,0.8640000000000001,6142.2,8.73,17.19,2171.734708
71,189060,VIR,North America,United States Virgin Islands,2022-06-17,87886589.0,43028.0,102432.85699999999,1017915.0,67.0,272.57099999999997,263991.017,129.246,307.685,3057.5820000000003,0.201,0.8190000000000001,1.13,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,115053.0,52.0,1103.965,0.499,55.0,0.528,0.191,5.2,tests performed,596233489.0,259957415.0,222271398.0,123531432.0,19802.0,163157.0,179.58,78.3,66.95,37.21,491.0,41714.0,0.013000000000000001,43.52,104218.0,306.48,42.2,18.601,10.799000000000001,54225.445999999996,1.2,273.67,12.26,19.1,24.6,21.221999999999998,2.77,80.58,0.9259999999999999,1105051.9,16.45,-3.34,3319.320711
72,146124,PRI,North America,Puerto Rico,2022-06-17,5171236.0,10375.0,8832.0,24149.0,28.0,22.0,508583.316,1020.3660000000001,868.6139999999999,2375.018,2.7539999999999996,2.164,0.66,85.0,8.36,1743.0,171.421,9.0,1.669,234.0,42.846000000000004,3018185.0,2569.0,1067.1580000000001,0.9079999999999999,2982.0,1.054,0.23800000000000002,4.2,tests performed,24616852.0,9729123.0,8884776.0,6731760.0,79.0,12306.0,242.1,95.68,87.38,66.21,1210.0,299.0,0.003,30.56,2828246.0,376.23199999999997,38.2,15.168,9.829,35044.67,0.5,108.094,12.9,16.3,30.0,78.46300000000001,3.39,80.1,0.8640000000000001,6142.2,8.73,17.19,2171.734708
73,73020,GUM,Oceania,Guam,2022-06-17,18376.0,0.0,15.142999999999999,232.0,0.0,0.0,162597.885,0.0,133.99,2052.825,0.0,0.0,1.3,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,323103.0,1681.0,1898.5510000000002,9.878,432.0,2.5380000000000003,0.10800000000000001,9.3,tests performed,89147.0,43772.0,38565.0,6810.0,67.0,11.0,78.88,38.73,34.12,6.03,97.0,4.0,0.004,22.22,170184.0,304.128,31.4,9.551,5.492999999999999,13593.877,1.5,310.496,21.52,35.3,52.0,41.047,3.7,80.07,0.779,-82.9,-6.6,-55.8,-1457.761834
74,146125,PRI,North America,Puerto Rico,2022-06-18,5171236.0,10375.0,8832.0,24149.0,28.0,22.0,508583.316,1020.3660000000001,868.6139999999999,2375.018,2.7539999999999996,2.164,0.66,85.0,8.36,1743.0,171.421,9.0,1.669,234.0,42.846000000000004,3019115.0,930.0,1067.487,0.32899999999999996,2884.0,1.02,0.23800000000000002,4.2,tests performed,24616852.0,9729123.0,8884776.0,6731760.0,79.0,12306.0,242.1,95.68,87.38,66.21,1210.0,299.0,0.003,30.56,2828246.0,376.23199999999997,38.2,15.168,9.829,35044.67,0.5,108.094,12.9,16.3,30.0,78.46300000000001,3.39,80.1,0.8640000000000001,6142.2,8.73,17.19,2171.734708
75,73021,GUM,Oceania,Guam,2022-06-18,18376.0,0.0,15.142999999999999,232.0,0.0,0.0,162597.885,0.0,133.99,2052.825,0.0,0.0,1.3,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,323516.0,413.0,1900.9779999999998,2.427,486.0,2.8560000000000003,0.10300000000000001,9.7,tests performed,89147.0,43772.0,38565.0,6810.0,67.0,11.0,78.88,38.73,34.12,6.03,97.0,4.0,0.004,22.22,170184.0,304.128,31.4,9.551,5.492999999999999,13593.877,1.5,310.496,21.52,35.3,52.0,41.047,3.7,80.07,0.779,-82.9,-6.6,-55.8,-1457.761834
76,161390,SXM,North America,Sint Maarten (Dutch part),2022-06-18,1473180.0,5946.0,8501.857,1419.0,1.0,1.429,270129.82300000003,1090.289,1558.944,260.195,0.183,0.262,1.35,7.0,1.0190000000000001,118.0,17.172,21.0,3.8510000000000004,976.0,178.96400000000003,428517.0,24000.0,52.635,4.401,24000.0,4.401,0.1627,6.1,samples tested,63477.0,28325.0,26334.0,8818.0,2675.0,16.0,146.19,65.23,60.65,20.31,368.0,4.0,0.009000000000000001,41.67,43421.0,1209.088,42.4,12.922,7.0489999999999995,36327.232,52.2,92.243,10.99,5.2,28.3,19.275,2.4,78.95,0.938,2868.1,5.71,34.08,525.909491
77,189061,VIR,North America,United States Virgin Islands,2022-06-18,87886589.0,43028.0,102432.85699999999,1017915.0,67.0,272.57099999999997,263991.017,129.246,307.685,3057.5820000000003,0.201,0.8190000000000001,1.13,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,115065.0,12.0,1104.08,0.115,55.0,0.528,0.19399999999999998,5.2,tests performed,596233489.0,259957415.0,222271398.0,123531432.0,19802.0,163157.0,179.58,78.3,66.95,37.21,491.0,41714.0,0.013000000000000001,43.52,104218.0,306.48,42.2,18.601,10.799000000000001,54225.445999999996,1.2,273.67,12.26,19.1,24.6,21.221999999999998,2.77,80.58,0.9259999999999999,1105051.9,16.45,-3.34,3319.320711
78,161391,SXM,North America,Sint Maarten (Dutch part),2022-06-19,1473180.0,5946.0,8501.857,1419.0,1.0,1.429,270129.82300000003,1090.289,1558.944,260.195,0.183,0.262,1.35,7.0,1.0190000000000001,118.0,17.172,21.0,3.8510000000000004,976.0,178.96400000000003,428517.0,24000.0,52.635,4.401,24000.0,4.401,0.1627,6.1,samples tested,63477.0,28325.0,26334.0,8818.0,2675.0,15.0,146.19,65.23,60.65,20.31,345.0,4.0,0.009000000000000001,41.67,43421.0,1209.088,42.4,12.922,7.0489999999999995,36327.232,52.2,92.243,10.99,5.2,28.3,19.275,2.4,78.95,0.938,2868.1,5.71,34.08,525.909491
79,189062,VIR,North America,United States Virgin Islands,2022-06-19,87886589.0,43028.0,102432.85699999999,1017915.0,67.0,272.57099999999997,263991.017,129.246,307.685,3057.5820000000003,0.201,0.8190000000000001,1.13,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,115079.0,14.0,1104.214,0.134,54.0,0.518,0.192,5.2,tests performed,596233489.0,259957415.0,222271398.0,123531432.0,19802.0,163157.0,179.58,78.3,66.95,37.21,491.0,41714.0,0.013000000000000001,43.52,104218.0,306.48,42.2,18.601,10.799000000000001,54225.445999999996,1.2,273.67,12.26,19.1,24.6,21.221999999999998,2.77,80.58,0.9259999999999999,1105051.9,16.45,-3.34,3319.320711
80,92116,JEY,Europe,Jersey,2022-06-20,9405007.0,16785.0,22009.571,31328.0,14.0,27.143,74612.833,133.161,174.609,248.535,0.111,0.215,1.31,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,53504941.0,138240.0,424.471,1.097,94925.0,0.753,0.1483,6.7,people tested,235534.0,83554.0,80680.0,71300.0,143450.0,46.0,233.03,82.67,79.82,70.54,455.0,5.0,0.005,39.81,101073.0,347.778,48.2,27.049,18.493,39002.223,2.0,79.37,5.72,11.2,33.7,66.425,13.05,84.63,0.919,9539.4,0.29,8.92,75.67901436
81,161392,SXM,North America,Sint Maarten (Dutch part),2022-06-20,1473180.0,5946.0,8501.857,1419.0,1.0,1.429,270129.82300000003,1090.289,1558.944,260.195,0.183,0.262,1.35,7.0,1.0190000000000001,118.0,17.172,21.0,3.8510000000000004,976.0,178.96400000000003,428517.0,24000.0,52.635,4.401,24000.0,4.401,0.1627,6.1,samples tested,63477.0,28325.0,26334.0,8818.0,2675.0,14.0,146.19,65.23,60.65,20.31,322.0,4.0,0.009000000000000001,41.67,43421.0,1209.088,42.4,12.922,7.0489999999999995,36327.232,52.2,92.243,10.99,5.2,28.3,19.275,2.4,78.95,0.938,2868.1,5.71,34.08,525.909491
82,74404,GGY,Europe,Guernsey,2022-06-21,921146.0,852.0,3383.429,18616.0,16.0,16.0,50474.117999999995,46.685,185.395,1020.062,0.877,0.877,1.49,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,4067775.0,10381.0,222.893,0.569,10008.0,0.5479999999999999,0.1911,5.2,people tested,156744.0,54146.0,51351.0,39278.0,754.0,33.0,247.29,85.42,81.01,61.97,521.0,80.0,0.126,37.5,63385.0,157.834,22.9,4.694,3.016,7423.808000000001,8.7,155.898,10.18,35.3,52.0,76.665,0.6,74.3,0.6629999999999999,43113.3,25.35,10.04,2362.38969
83,161393,SXM,North America,Sint Maarten (Dutch part),2022-06-21,1473180.0,5946.0,8501.857,1419.0,1.0,1.429,270129.82300000003,1090.289,1558.944,260.195,0.183,0.262,1.35,7.0,1.0190000000000001,118.0,17.172,21.0,3.8510000000000004,976.0,178.96400000000003,428517.0,24000.0,52.635,4.401,24000.0,4.401,0.1627,6.1,samples tested,63477.0,28325.0,26334.0,8818.0,2675.0,13.0,146.19,65.23,60.65,20.31,299.0,4.0,0.009000000000000001,41.67,43421.0,1209.088,42.4,12.922,7.0489999999999995,36327.232,52.2,92.243,10.99,5.2,28.3,19.275,2.4,78.95,0.938,2868.1,5.71,34.08,525.909491
84,92117,JEY,Europe,Jersey,2022-06-21,9405007.0,16785.0,22009.571,31328.0,14.0,27.143,74612.833,133.161,174.609,248.535,0.111,0.215,1.31,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,53504941.0,138240.0,424.471,1.097,94925.0,0.753,0.1483,6.7,people tested,235534.0,83554.0,80680.0,71300.0,143450.0,50.0,233.03,82.67,79.82,70.54,495.0,5.0,0.005,39.81,101073.0,347.778,48.2,27.049,18.493,39002.223,2.0,79.37,5.72,11.2,33.7,66.425,13.05,84.63,0.919,9539.4,0.29,8.92,75.67901436
85,92118,JEY,Europe,Jersey,2022-06-22,9405007.0,16785.0,22009.571,31328.0,14.0,27.143,74612.833,133.161,174.609,248.535,0.111,0.215,1.31,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,53504941.0,138240.0,424.471,1.097,94925.0,0.753,0.1483,6.7,people tested,235534.0,83554.0,80680.0,71300.0,143450.0,54.0,233.03,82.67,79.82,70.54,534.0,5.0,0.005,39.81,101073.0,347.778,48.2,27.049,18.493,39002.223,2.0,79.37,5.72,11.2,33.7,66.425,13.05,84.63,0.919,9539.4,0.29,8.92,75.67901436
86,161394,SXM,North America,Sint Maarten (Dutch part),2022-06-22,1473180.0,5946.0,8501.857,1419.0,1.0,1.429,270129.82300000003,1090.289,1558.944,260.195,0.183,0.262,1.35,7.0,1.0190000000000001,118.0,17.172,21.0,3.8510000000000004,976.0,178.96400000000003,428517.0,24000.0,52.635,4.401,24000.0,4.401,0.1627,6.1,samples tested,63477.0,28325.0,26334.0,8818.0,2675.0,13.0,146.19,65.23,60.65,20.31,299.0,4.0,0.009000000000000001,41.67,43421.0,1209.088,42.4,12.922,7.0489999999999995,36327.232,52.2,92.243,10.99,5.2,28.3,19.275,2.4,78.95,0.938,2868.1,5.71,34.08,525.909491
87,74405,GGY,Europe,Guernsey,2022-06-22,921146.0,852.0,3383.429,18616.0,16.0,16.0,50474.117999999995,46.685,185.395,1020.062,0.877,0.877,1.49,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,4067775.0,10381.0,222.893,0.569,10008.0,0.5479999999999999,0.1911,5.2,people tested,156744.0,54146.0,51351.0,39278.0,754.0,36.0,247.29,85.42,81.01,61.97,568.0,80.0,0.126,37.5,63385.0,157.834,22.9,4.694,3.016,7423.808000000001,8.7,155.898,10.18,35.3,52.0,76.665,0.6,74.3,0.6629999999999999,43113.3,25.35,10.04,2362.38969
88,161395,SXM,North America,Sint Maarten (Dutch part),2022-06-23,1473180.0,5946.0,8501.857,1419.0,1.0,1.429,270129.82300000003,1090.289,1558.944,260.195,0.183,0.262,1.35,7.0,1.0190000000000001,118.0,17.172,21.0,3.8510000000000004,976.0,178.96400000000003,428517.0,24000.0,52.635,4.401,24000.0,4.401,0.1627,6.1,samples tested,63477.0,28325.0,26334.0,8818.0,2675.0,12.0,146.19,65.23,60.65,20.31,276.0,5.0,0.012,41.67,43421.0,1209.088,42.4,12.922,7.0489999999999995,36327.232,52.2,92.243,10.99,5.2,28.3,19.275,2.4,78.95,0.938,2868.1,5.71,34.08,525.909491
89,92119,JEY,Europe,Jersey,2022-06-23,9405007.0,16785.0,22009.571,31328.0,14.0,27.143,74612.833,133.161,174.609,248.535,0.111,0.215,1.31,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,53504941.0,138240.0,424.471,1.097,94925.0,0.753,0.1483,6.7,people tested,235534.0,83554.0,80680.0,71300.0,143450.0,58.0,233.03,82.67,79.82,70.54,574.0,5.0,0.005,39.81,101073.0,347.778,48.2,27.049,18.493,39002.223,2.0,79.37,5.72,11.2,33.7,66.425,13.05,84.63,0.919,9539.4,0.29,8.92,75.67901436
90,74406,GGY,Europe,Guernsey,2022-06-23,921146.0,852.0,3383.429,18616.0,16.0,16.0,50474.117999999995,46.685,185.395,1020.062,0.877,0.877,1.49,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,4067775.0,10381.0,222.893,0.569,10008.0,0.5479999999999999,0.1911,5.2,people tested,156744.0,54146.0,51351.0,39278.0,754.0,39.0,247.29,85.42,81.01,61.97,615.0,80.0,0.126,37.5,63385.0,157.834,22.9,4.694,3.016,7423.808000000001,8.7,155.898,10.18,35.3,52.0,76.665,0.6,74.3,0.6629999999999999,43113.3,25.35,10.04,2362.38969
91,74407,GGY,Europe,Guernsey,2022-06-24,921146.0,852.0,3383.429,18616.0,16.0,16.0,50474.117999999995,46.685,185.395,1020.062,0.877,0.877,1.49,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,4067775.0,10381.0,222.893,0.569,10008.0,0.5479999999999999,0.1911,5.2,people tested,156744.0,54146.0,51351.0,39278.0,754.0,42.0,247.29,85.42,81.01,61.97,663.0,80.0,0.126,37.5,63385.0,157.834,22.9,4.694,3.016,7423.808000000001,8.7,155.898,10.18,35.3,52.0,76.665,0.6,74.3,0.6629999999999999,43113.3,25.35,10.04,2362.38969
92,92120,JEY,Europe,Jersey,2022-06-24,9405007.0,16785.0,22009.571,31328.0,14.0,27.143,74612.833,133.161,174.609,248.535,0.111,0.215,1.31,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,53504941.0,138240.0,424.471,1.097,94925.0,0.753,0.1483,6.7,people tested,235534.0,83554.0,80680.0,71300.0,143450.0,62.0,233.03,82.67,79.82,70.54,613.0,5.0,0.005,39.81,101073.0,347.778,48.2,27.049,18.493,39002.223,2.0,79.37,5.72,11.2,33.7,66.425,13.05,84.63,0.919,9539.4,0.29,8.92,75.67901436
93,161396,SXM,North America,Sint Maarten (Dutch part),2022-06-24,1473180.0,5946.0,8501.857,1419.0,1.0,1.429,270129.82300000003,1090.289,1558.944,260.195,0.183,0.262,1.35,7.0,1.0190000000000001,118.0,17.172,21.0,3.8510000000000004,976.0,178.96400000000003,428517.0,24000.0,52.635,4.401,24000.0,4.401,0.1627,6.1,samples tested,63552.0,28357.0,26350.0,8845.0,2675.0,11.0,146.36,65.31,60.68,20.37,253.0,5.0,0.012,41.67,43421.0,1209.088,42.4,12.922,7.0489999999999995,36327.232,52.2,92.243,10.99,5.2,28.3,19.275,2.4,78.95,0.938,2868.1,5.71,34.08,525.909491
94,92121,JEY,Europe,Jersey,2022-06-25,9405007.0,16785.0,22009.571,31328.0,14.0,27.143,74612.833,133.161,174.609,248.535,0.111,0.215,1.31,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,53504941.0,138240.0,424.471,1.097,94925.0,0.753,0.1483,6.7,people tested,235534.0,83554.0,80680.0,71300.0,143450.0,66.0,233.03,82.67,79.82,70.54,653.0,6.0,0.006,39.81,101073.0,347.778,48.2,27.049,18.493,39002.223,2.0,79.37,5.72,11.2,33.7,66.425,13.05,84.63,0.919,9539.4,0.29,8.92,75.67901436
95,74408,GGY,Europe,Guernsey,2022-06-25,921146.0,852.0,3383.429,18616.0,16.0,16.0,50474.117999999995,46.685,185.395,1020.062,0.877,0.877,1.49,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,4067775.0,10381.0,222.893,0.569,10008.0,0.5479999999999999,0.1911,5.2,people tested,156744.0,54146.0,51351.0,39278.0,754.0,42.0,247.29,85.42,81.01,61.97,663.0,80.0,0.126,37.5,63385.0,157.834,22.9,4.694,3.016,7423.808000000001,8.7,155.898,10.18,35.3,52.0,76.665,0.6,74.3,0.6629999999999999,43113.3,25.35,10.04,2362.38969
96,92122,JEY,Europe,Jersey,2022-06-26,9405007.0,16785.0,22009.571,31328.0,14.0,27.143,74612.833,133.161,174.609,248.535,0.111,0.215,1.31,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,53504941.0,138240.0,424.471,1.097,94925.0,0.753,0.1483,6.7,people tested,236026.0,83595.0,80755.0,71676.0,143450.0,70.0,233.52,82.71,79.9,70.92,693.0,6.0,0.006,39.81,101073.0,347.778,48.2,27.049,18.493,39002.223,2.0,79.37,5.72,11.2,33.7,66.425,13.05,84.63,0.919,9539.4,0.29,8.92,75.67901436
97,74409,GGY,Europe,Guernsey,2022-06-26,921146.0,852.0,3383.429,18616.0,16.0,16.0,50474.117999999995,46.685,185.395,1020.062,0.877,0.877,1.49,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,4067775.0,10381.0,222.893,0.569,10008.0,0.5479999999999999,0.1911,5.2,people tested,156744.0,54146.0,51351.0,39278.0,754.0,42.0,247.29,85.42,81.01,61.97,663.0,80.0,0.126,37.5,63385.0,157.834,22.9,4.694,3.016,7423.808000000001,8.7,155.898,10.18,35.3,52.0,76.665,0.6,74.3,0.6629999999999999,43113.3,25.35,10.04,2362.38969
98,74410,GGY,Europe,Guernsey,2022-06-27,921146.0,852.0,3383.429,18616.0,16.0,16.0,50474.117999999995,46.685,185.395,1020.062,0.877,0.877,1.49,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,4067775.0,10381.0,222.893,0.569,10008.0,0.5479999999999999,0.1911,5.2,people tested,157161.0,54146.0,51351.0,39278.0,754.0,42.0,247.95,85.42,81.01,61.97,663.0,80.0,0.126,37.5,63385.0,157.834,22.9,4.694,3.016,7423.808000000001,8.7,155.898,10.18,35.3,52.0,76.665,0.6,74.3,0.6629999999999999,43113.3,25.35,10.04,2362.38969
99,131999,OWID_NAM,Oceania,North America,2022-06-28,103052365.0,157908.0,130817.85699999999,1459633.0,633.0,450.0,172738.18,264.688,219.27900000000002,2446.6620000000003,1.061,0.754,1.44,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,5279608.0,11989.0,24.974,0.057,8950.0,0.042,0.0056,180.0,tests performed,1025952030.0,435132332.0,381102308.0,220920137.0,112472.0,271181.0,171.97,72.94,63.88,37.03,455.0,51378.0,0.009000000000000001,40.74,596581283.0,209.588,18.1,2.7510000000000003,1.4469999999999998,5338.454000000001,44.5,181.013,2.42,0.6,10.8,41.949,0.3,73.71,0.539,8148.4,31.97,5.18,1215.747423
100,198002,ZMB,Africa,Zambia,2022-06-28,325498.0,150.0,134.286,4003.0,0.0,0.7140000000000001,17203.314,7.928,7.097,211.56799999999998,0.0,0.038,1.02,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,3514038.0,2352.0,185.725,0.124,2122.0,0.11199999999999999,0.0582,17.2,tests performed,6917310.0,3240892.0,4329422.0,33684.0,98008.0,40231.0,36.56,17.13,22.88,0.18,2126.0,8387.0,0.044000000000000004,12.04,18920657.0,22.995,17.7,2.48,1.5419999999999998,3689.2509999999997,57.5,234.49900000000002,3.94,3.1,24.7,13.937999999999999,2.0,63.89,0.584,38486.9,10.93,1.96,1134.110282
101,165476,ZAF,Africa,South Africa,2022-06-28,3993004.0,343.0,873.143,101745.0,5.0,15.0,66503.519,5.712999999999999,14.542,1694.5639999999999,0.083,0.25,0.49,202.0,3.364,1725.0,28.73,7.0,3.319,470.0,7.827999999999999,25637671.0,19244.0,426.996,0.321,14296.0,0.23800000000000002,0.0726,13.8,people tested,36780463.0,22015067.0,19041761.0,3442388.0,20365.0,20806.0,61.26,36.67,31.71,5.73,347.0,7351.0,0.012,11.11,60041996.0,46.754,27.3,5.343999999999999,3.053,12294.876,18.9,200.38,5.52,8.1,33.2,43.993,2.32,64.13,0.7090000000000001,272670.6,21.46,10.13,4541.331371
102,191637,UZB,Asia,Uzbekistan,2022-06-28,240569.0,91.0,108.0,1637.0,0.0,0.0,7088.951999999999,2.682,3.182,48.238,0.0,0.0,1.4,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,6086835.0,2072.0,1746.505,0.595,3188.0,0.915,0.0836,12.0,people tested,55782994.0,19699111.0,15571588.0,10296725.0,145313.0,130190.0,164.38,58.05,45.89,30.34,3836.0,12536.0,0.037000000000000005,11.11,33935765.0,76.134,28.2,4.468999999999999,2.873,6253.104,0.1,724.4169999999999,7.57,1.3,24.7,21.221999999999998,4.0,71.72,0.72,38486.9,10.93,1.96,1134.110282
103,89019,ISR,Asia,Israel,2022-06-28,4328732.0,12527.0,10515.714,10946.0,4.0,5.0,465905.93,1348.2939999999999,1131.817,1178.129,0.431,0.5379999999999999,1.24,54.0,5.812,1401.0,150.791,39.0,4.198,1360.0,146.378,51780014.0,30887.0,5573.137,3.324,26227.0,2.823,0.33299999999999996,3.0,people tested,18185269.0,6712309.0,6145082.0,5327878.0,1523.0,1234.0,195.73,72.25,66.14,57.34,133.0,77.0,0.001,14.81,9291000.0,402.606,30.6,11.732999999999999,7.359,33132.32,0.5,93.32,6.74,15.4,35.4,94.57600000000001,2.99,82.97,0.919,10022.5,8.92,-9.47,1078.7321060000002
104,55856,EST,Europe,Estonia,2022-06-28,580111.0,795.0,113.571,2591.0,3.0,0.429,437757.511,599.915,85.70200000000001,1955.194,2.2640000000000002,0.32299999999999995,1.15,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,3425068.0,1246.0,2584.59,0.94,993.0,0.7490000000000001,0.1183,8.5,tests performed,1993944.0,863093.0,847710.0,476572.0,144.0,76.0,150.46,65.13,63.97,35.96,57.0,19.0,0.001,11.11,1325188.0,31.033,42.7,19.452,13.491,29481.252,0.5,255.56900000000002,4.02,24.5,39.3,24.64,4.69,78.74,0.892,3805.5,9.78,12.82,2871.66802
105,164597,SOM,Africa,Somalia,2022-06-28,26803.0,0.0,7.857,1361.0,0.0,0.0,1638.375,0.0,0.48,83.193,0.0,0.0,0.5,11.0,5.292000000000001,62.0,29.826,7.0,3.319,43.0,20.863000000000003,501224.0,3998.0,30.638,1.923,252.0,0.015,0.0414,24.2,tests performed,3143630.0,2645189.0,1641835.0,2343.0,0.0,5733.0,19.22,16.17,10.04,0.33,350.0,5946.0,0.036000000000000004,40.74,16359500.0,23.5,16.8,2.7310000000000003,1.496,2205.923,25.1,365.769,6.05,20.1,25.0,9.831,0.9,57.4,0.5670000000000001,5202.5,10.13,-6.54,2502.73846
106,29039,BFA,Africa,Burkina Faso,2022-06-28,21044.0,0.0,0.0,387.0,0.0,0.0,978.923,0.0,0.0,18.002,0.0,0.0,0.0,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,324773.0,41.0,15.107999999999999,0.002,291.0,0.013999999999999999,0.0,624.3,tests performed,2947625.0,2449809.0,1555140.0,768430.0,1242.0,9.0,13.71,11.4,7.23,11.14,0.0,9.0,0.0,8.33,21497097.0,70.15100000000001,17.6,2.4090000000000003,1.358,1703.102,43.7,269.048,2.42,1.6,23.9,11.877,0.4,61.58,0.452,66889.5,26.21,-5.49,9698.83226
107,61006,FLK,South America,Falkland Islands,2022-06-28,1807.0,0.0,7.2860000000000005,28.0,0.0,0.0,512188.209,0.0,2065.112,570.811,0.0,0.0,0.55,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,777845.0,391.0,15857.236,7.971,539.0,10.988,0.6621,1.5,people tested,4407.0,2632.0,1775.0,21284.0,42.0,12.0,124.91,74.6,50.31,43.39,3401.0,4.0,0.113,11.11,3528.0,35.308,19.8,3.5260000000000002,2.063,1729.9270000000001,26.7,182.63400000000001,7.47,0.4,8.5,7.96,0.3,81.44,0.485,-38.6,-3.8,10.79,-786.903961
108,95921,OWID_KOS,Europe,Kosovo,2022-06-28,228873.0,64.0,44.286,3140.0,0.0,0.0,128427.739,35.912,24.85,1761.951,0.0,0.0,2.49,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,1846365.0,1719.0,1036.053,0.965,214.0,0.12,0.0754,13.3,tests performed,1830544.0,903615.0,823720.0,103209.0,62.0,42.0,102.72,50.7,46.22,5.79,24.0,11.0,0.001,37.04,1782115.0,168.155,23.2,3.895,2.21,9795.834,0.6,434.657,22.66,35.9,58.9,24.651,1.9,68.37,0.63,5869.8,25.36,-11.76,3293.726836
109,20606,BMU,North America,Bermuda,2022-06-28,15957.0,0.0,27.857,138.0,0.0,0.0,256989.628,0.0,448.64300000000003,2222.509,0.0,0.0,0.04,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,41927.0,4992.0,675.24,80.39699999999999,867.0,13.963,0.0872,11.5,samples tested,131612.0,48554.0,47657.0,35401.0,5470.0,6.0,211.96,78.2,76.75,57.01,97.0,5.0,0.008,22.22,62092.0,1308.82,18.8,3.2439999999999998,1.942,50669.315,49.6,139.547,13.0,0.6,12.3,11.035,0.5,82.59,0.545,15.4,2.8,-1.1,248.0190685
110,194827,VNM,Asia,Vietnam,2022-06-28,10744854.0,769.0,849.2860000000001,43087.0,3.0,0.5710000000000001,109452.808,7.832999999999999,8.651,438.907,0.031,0.006,0.91,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,85824349.0,56715.0,874.253,0.578,620.0,0.006,0.9523,1.1,people tested,230933469.0,86238110.0,80890773.0,63275923.0,1078735.0,620762.0,235.24,87.85,82.4,64.46,6323.0,79977.0,0.081,25.93,98168829.0,308.127,32.6,7.15,4.718,6171.884,2.0,245.465,6.0,1.0,45.9,85.84700000000001,2.6,75.4,0.7040000000000001,38486.9,10.93,1.96,1134.110282
111,112953,MLT,Europe,Malta,2022-06-28,102023.0,570.0,490.0,740.0,0.0,0.7140000000000001,197680.682,1104.437,949.428,1433.8310000000001,0.0,1.3840000000000001,1.36,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1950858.0,1892.0,3780.0,3.6660000000000004,1440.0,2.79,0.2334,4.3,tests performed,1316890.0,476851.0,469774.0,404628.0,617.0,589.0,255.16,92.4,91.02,78.4,1141.0,16.0,0.003,13.89,516100.0,1454.037,42.4,19.426,11.324000000000002,36513.323,0.2,168.71099999999998,8.83,20.9,30.2,52.232,4.485,82.53,0.895,539.8,5.7,-1.02,1045.921333
112,31606,CMR,Africa,Cameroon,2022-06-28,120068.0,66.0,17.285999999999998,1931.0,1.0,0.14300000000000002,4410.331,2.424,0.635,70.929,0.037000000000000005,0.005,0.03,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,2731181.0,3334.0,100.322,0.19699999999999998,608.0,0.022000000000000002,0.0,33.7,tests performed,1838907.0,1559801.0,1216589.0,52011.0,9890.0,92.0,6.75,5.73,4.47,0.19,3.0,76.0,0.0,22.22,27224262.0,50.885,18.8,3.165,1.919,3364.926,23.8,244.66099999999997,7.2,2.0,33.7,2.735,1.3,59.29,0.563,66889.5,26.21,-5.49,9698.83226
113,198839,ZWE,Africa,Zimbabwe,2022-06-28,255383.0,0.0,66.286,5549.0,0.0,1.857,16921.555,0.0,4.3919999999999995,367.67400000000004,0.0,0.12300000000000001,0.67,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,2379907.0,3537.0,157.691,0.23399999999999999,2246.0,0.149,0.0421,23.7,tests performed,11949993.0,6297324.0,4601845.0,1050824.0,3949.0,5665.0,79.18,41.73,30.49,6.96,375.0,1427.0,0.009000000000000001,38.89,15092171.0,42.729,19.6,2.822,1.882,1899.775,21.4,307.846,1.82,1.6,30.7,36.791,1.7,61.49,0.5710000000000001,38486.9,10.93,1.96,1134.110282
114,17211,BLR,Europe,Belarus,2022-06-28,982867.0,0.0,0.0,6978.0,0.0,0.0,104085.655,0.0,0.0,738.97,0.0,0.0,-0.0,50.0,5.529,874.0,96.649,,,,,13220483.0,9650.0,1400.05,1.022,7068.0,0.7490000000000001,0.0404,24.8,tests performed,13206203.0,6425755.0,6325490.0,756085.0,31.0,7151.0,139.85,68.05,66.99,8.01,757.0,1628.0,0.017,20.37,9442867.0,46.858000000000004,40.3,14.799000000000001,9.788,17167.967,14.8,443.129,5.18,10.5,46.1,88.469,11.0,74.79,0.823,31222.4,20.4,1.61,3306.4534320000002
115,7731,ARG,South America,Argentina,2022-06-28,9367172.0,0.0,3668.571,129070.0,0.0,7.7139999999999995,205394.21,0.0,80.441,2830.1209999999996,0.0,0.16899999999999998,1.09,372.0,8.157,,,,,,,36663990.0,6236.0,803.932,0.13699999999999998,36366.0,0.797,0.287,3.5,tests performed,105776880.0,41159363.0,37575815.0,27359086.0,94164.0,73631.0,231.94,90.25,82.39,59.99,1615.0,1045.0,0.002,39.81,45605823.0,16.177,31.9,11.198,7.441,18933.907,0.6,191.032,5.5,16.2,27.7,26.664,5.0,76.67,0.845,41948.2,12.45,28.58,919.7992107000001
116,100963,LSO,Africa,Lesotho,2022-06-28,33938.0,0.0,0.0,699.0,0.0,0.0,15718.827,0.0,0.0,323.751,0.0,0.0,0.19,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,459732.0,553.0,212.93099999999998,0.256,234.0,0.10800000000000001,0.1172,8.5,tests performed,933825.0,933825.0,735610.0,600115.0,292132.0,811.0,43.25,43.25,34.07,8.87,376.0,4333.0,0.201,32.41,2159067.0,73.562,22.2,4.506,2.647,2851.153,59.6,405.126,3.94,0.4,53.9,2.117,2.9,54.33,0.527,15149.6,30.18,57.47,2238.035464
117,48199,DNK,Europe,Denmark,2022-06-28,3167267.0,2832.0,1613.5710000000001,6454.0,6.0,3.1430000000000002,544830.976,487.159,277.565,1110.212,1.032,0.541,1.34,12.0,2.064,307.0,52.81,10.0,0.932,500.0,86.01,64649913.0,7934.0,11121.031,1.365,7179.0,1.235,0.19399999999999998,5.2,tests performed,13225171.0,4829843.0,4793520.0,3648554.0,575.0,652.0,227.5,83.08,82.46,62.76,112.0,31.0,0.001,11.11,5813302.0,136.52,42.3,19.677,12.325,46682.515,0.2,114.76700000000001,6.41,19.3,18.8,4.4719999999999995,2.5,80.9,0.94,1780.7,1.29,0.54,306.3147244
118,855,AFG,Asia,Afghanistan,2022-06-28,182324.0,96.0,73.714,7722.0,2.0,1.0,4576.931,2.41,1.85,193.84799999999998,0.05,0.025,1.12,,,,,,,,,994894.0,,24.975,,435.0,0.011000000000000001,0.222,4.5,tests performed,6408475.0,5629522.0,4979930.0,,383.0,9263.0,16.09,14.13,12.5,,233.0,9307.0,0.023,11.11,39835428.0,54.422,18.6,2.5810000000000004,1.337,1803.987,,597.029,9.59,,,37.746,0.5,64.83,0.511,,,,
119,116870,FSM,Oceania,Micronesia (country),2022-06-28,38.0,0.0,0.0,325793.0,5.0,28.143,326.868,0.0,0.0,2501.055,0.038,0.21600000000000003,1.51,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,15569464.0,1462.0,119.524,0.011000000000000001,12427.0,0.095,0.488,2.0,people tested,209179257.0,88336802.0,79947470.0,53157386.0,157958.0,21292.0,160.58,67.81,61.37,40.81,163.0,4943.0,0.004,17.59,116255.0,150.77700000000002,23.0,4.81,2.392,3299.4640000000004,16.0,454.343,12.02,6.9,21.4,87.84700000000001,1.38,67.88,0.62,663318.5,37.67,-8.77,5092.178684
120,189951,OWID_UMC,North America,Upper middle income,2022-06-28,131451504.0,119433.0,99680.14300000001,2531926.0,489.0,399.286,52294.596,47.513000000000005,39.655,1007.262,0.195,0.159,1.13,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,115079.0,14.0,1104.214,0.134,54.0,0.518,0.192,5.2,tests performed,5221806276.0,2075222010.0,1964532662.0,1149949385.0,2402706.0,1556707.0,207.74,82.56,78.15,45.75,619.0,76640.0,0.003,43.52,2513672790.0,306.48,42.2,18.601,10.799000000000001,54225.445999999996,1.2,273.67,12.26,19.1,24.6,21.221999999999998,2.77,80.58,0.9259999999999999,1105051.9,16.45,-3.34,3319.320711
121,169831,LKA,Asia,Sri Lanka,2022-06-28,664098.0,8.0,11.429,16521.0,0.0,0.14300000000000002,30892.15,0.37200000000000005,0.532,768.515,0.0,0.006999999999999999,1.13,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,7691045.0,1111.0,357.76800000000003,0.052000000000000005,1204.0,0.055999999999999994,0.0083,120.4,tests performed,39586599.0,17073712.0,14523208.0,7989679.0,14667.0,1436.0,184.15,79.42,67.56,37.17,67.0,108.0,0.001,28.7,21497306.0,341.955,34.1,10.068999999999999,5.331,11669.077,0.7,197.093,10.68,0.3,27.0,43.993,3.6,76.98,0.782,104463.1,10.09,5.53,2234.733736
122,88153,IMN,Europe,Isle of Man,2022-06-28,33821.0,0.0,0.0,108.0,0.0,0.0,395984.07700000005,0.0,0.0,1264.489,0.0,0.0,0.89,31.0,6.221,746.0,149.71200000000002,17.0,3.3960000000000004,708.0,142.02,12347313.0,5553.0,2477.935,1.114,5178.0,1.0390000000000001,0.32,3.1,tests performed,189994.0,69560.0,67106.0,53328.0,1.0,4.0,222.45,81.44,78.57,62.44,47.0,0.0,0.0,11.11,85410.0,147.872,38.7,13.927999999999999,8.677999999999999,67335.293,0.2,126.459,3.28,23.0,25.7,94.57600000000001,2.96,81.4,0.955,3219.2,4.29,15.34,646.0489706000001
123,193933,VEN,South America,Venezuela,2022-06-28,525827.0,0.0,103.14299999999999,5730.0,0.0,0.7140000000000001,18318.341,0.0,3.593,199.61700000000002,0.0,0.025,1.41,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,11989.0,2072.0,38.125,0.595,76.0,0.242,0.0132,76.0,people tested,37860994.0,22157232.0,14287370.0,651502.0,145313.0,0.0,131.9,77.19,49.77,2.27,0.0,0.0,0.0,13.89,28704947.0,36.253,29.0,6.614,3.915,16745.022,13.2,204.85,6.47,2.8,34.5,25.209,0.8,72.06,0.711,38486.9,10.93,1.96,1134.110282
124,115424,MUS,Africa,Mauritius,2022-06-28,229479.0,0.0,291.0,1002.0,0.0,0.14300000000000002,180205.712,0.0,228.517,786.852,0.0,0.11199999999999999,0.26,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1282782.0,1362.0,1007.346,0.285,12.0,0.009000000000000001,0.0,11.3,tests performed,2559789.0,978297.0,945621.0,626856.0,35153.0,734.0,201.02,76.82,74.26,49.23,576.0,99.0,0.008,37.96,1273428.0,622.962,37.4,10.945,5.8839999999999995,20292.745,0.5,224.644,22.02,3.2,40.7,15.95,3.4,74.99,0.804,1097.6,4.72,46.05,861.9254484999999
125,135428,NOR,Europe,Norway,2022-06-28,1445824.0,790.0,665.7139999999999,3280.0,0.0,4.2860000000000005,264530.212,144.54,121.8,600.114,0.0,0.784,1.14,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,11154564.0,1943.0,2040.856,0.355,1723.0,0.315,0.322,3.1,people tested,11406647.0,4341696.0,4046929.0,3018022.0,1868.0,1416.0,208.7,79.44,74.04,55.22,259.0,77.0,0.001,11.11,5465629.0,14.462,39.7,16.820999999999998,10.812999999999999,64800.057,0.2,114.316,5.31,19.6,20.7,41.949,3.6,82.4,0.9570000000000001,2521.4,2.52,5.9,461.31927360000003
126,95078,KIR,Oceania,Kiribati,2022-06-28,3236.0,0.0,3.0,13.0,0.0,0.0,26658.319,0.0,24.714000000000002,107.095,0.0,0.0,0.02,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,3728165.0,2868.0,67.80199999999999,0.052000000000000005,3338.0,0.061,0.1107,9.0,tests performed,147497.0,80566.0,60670.0,6261.0,13702.0,156.0,121.51,66.37,49.98,5.16,1285.0,38.0,0.031,34.26,121388.0,143.701,23.2,3.895,2.21,1981.132,36.8,434.657,22.66,35.9,58.9,24.651,1.9,68.37,0.63,83124.6,26.77,-14.32,4376.140237
127,102656,LBY,Africa,Libya,2022-06-28,502138.0,0.0,4.0,6430.0,0.0,0.0,72161.422,0.0,0.575,924.045,0.0,0.0,1.19,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,139824.0,1351.0,26.991999999999997,0.19399999999999998,3669.0,0.527,0.2478,4.0,samples tested,3579762.0,2269135.0,1183940.0,126687.0,602.0,1793.0,51.44,32.61,17.01,1.82,258.0,630.0,0.009000000000000001,50.0,6958538.0,3.623,29.0,4.4239999999999995,2.8160000000000003,17881.509,38.6,341.86199999999997,10.43,1.5,18.1,1.188,3.7,72.91,0.7240000000000001,15149.6,30.18,57.47,2238.035464
128,26495,VGB,North America,British Virgin Islands,2022-06-28,6941.0,0.0,0.0,63.0,0.0,0.0,228149.755,0.0,0.0,2070.802,0.0,0.0,1.41,22.0,1.859,143.0,12.085,,,760.0,65.335,96630.0,126242.0,3176.215,0.59,121418.0,0.5670000000000001,0.0483,20.7,people tested,41198.0,19389.0,18083.0,3726.0,802024.0,8.0,135.42,63.73,59.44,12.25,263.0,3.0,0.01,39.81,30423.0,207.97299999999998,33.5,8.552,5.06,14103.452,3.4,177.96099999999998,13.67,10.1,17.9,97.164,2.2,79.07,0.765,781197.4,23.53,5.87,3650.567028
129,50729,DOM,North America,Dominican Republic,2022-06-28,603256.0,0.0,666.0,4383.0,0.0,0.0,55073.193,0.0,60.801,400.13800000000003,0.0,0.0,1.39,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,3444251.0,3731.0,314.437,0.341,4839.0,0.442,0.1524,6.6,samples tested,15768179.0,7235994.0,5997912.0,2378805.0,4700.0,3794.0,143.95,66.06,54.76,21.72,346.0,569.0,0.005,5.56,10953714.0,222.873,27.6,6.981,4.419,14600.861,1.6,266.653,8.2,8.5,19.1,55.181999999999995,1.6,74.08,0.7559999999999999,5419.2,6.66,10.66,494.73630589999993
130,18927,BLZ,North America,Belize,2022-06-28,63572.0,262.0,158.143,679.0,0.0,0.0,157000.85199999998,647.049,390.55800000000005,1676.895,0.0,0.0,1.21,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,572900.0,1351.0,1414.865,3.3369999999999997,1012.0,2.499,0.1451,6.9,tests performed,489508.0,247975.0,213197.0,49729.0,5470.0,346.0,120.89,61.24,52.65,12.28,855.0,207.0,0.051,42.59,404915.0,16.426,25.0,3.853,2.279,7824.361999999999,0.2,176.957,17.11,25.1,31.4,90.083,1.3,74.62,0.716,127.6,6.28,51.1,315.1278663
131,59331,OWID_EUN,Africa,European Union,2022-06-28,148191774.0,479905.0,286368.571,1102917.0,471.0,304.143,331384.428,1073.157,640.374,2466.328,1.053,0.68,0.55,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,5024643.0,4118.0,42.626000000000005,0.035,4906.0,0.042,0.1325,7.5,tests performed,883157404.0,337597852.0,327455950.0,240957179.0,214301.0,142546.0,197.49,75.49,73.23,53.88,319.0,4536.0,0.001,25.0,447189915.0,104.95700000000001,19.8,3.5260000000000002,2.063,1729.9270000000001,26.7,182.63400000000001,7.47,0.4,8.5,7.96,0.3,66.6,0.485,3805.5,9.78,12.82,2871.66802
132,128305,NZL,Oceania,New Zealand,2022-06-28,1330538.0,8062.0,5915.714,1449.0,12.0,11.571,259551.333,1572.674,1153.993,282.66,2.3409999999999997,2.2569999999999997,1.12,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,7264156.0,1761.0,1417.037,0.344,3141.0,0.613,0.685,1.5,tests performed,11127224.0,4292598.0,4114204.0,2720422.0,7377.0,2145.0,217.06,83.74,80.26,53.07,418.0,69.0,0.001,26.85,5126300.0,18.206,37.9,15.322000000000001,9.72,36085.843,15.0,128.797,8.08,14.8,17.2,47.782,2.61,82.29,0.9309999999999999,-1746.4,-2.07,9.86,-340.6745606
133,132780,PRK,Asia,North Korea,2022-06-28,1.0,0.0,0.0,6.0,0.0,0.0,0.039,0.0,0.0,0.23199999999999998,0.0,0.0,1.44,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,182968.0,1558.0,7.068,0.06,554.0,0.021,0.0056,180.0,samples tested,1026446944.0,435186771.0,381228305.0,221110296.0,112472.0,271181.0,172.05,72.95,63.9,37.06,455.0,51378.0,0.009000000000000001,40.74,25887045.0,211.701,35.3,9.491,6.138999999999999,5338.454000000001,44.5,321.681,4.0,0.6,10.8,41.949,13.2,72.27,0.539,8148.4,31.97,5.18,1215.747423
134,56699,SWZ,Africa,Eswatini,2022-06-28,73091.0,15.0,9.0,1416.0,1.0,0.14300000000000002,62344.705,12.795,7.6770000000000005,1207.8110000000001,0.853,0.122,0.71,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,549656.0,333.0,468.842,0.284,303.0,0.258,0.0434,23.1,tests performed,535393.0,387468.0,336066.0,66331.0,7504.0,0.0,45.67,33.05,28.67,5.66,0.0,0.0,0.0,23.15,1172369.0,79.492,21.5,3.1630000000000003,1.845,7738.975,0.5,333.436,3.94,1.7,16.5,24.096999999999998,2.1,60.19,0.611,3805.5,9.78,12.82,2871.66802
135,162241,SVK,Europe,Slovakia,2022-06-28,2549692.0,728.0,413.14300000000003,20144.0,2.0,1.0,467896.06700000004,133.596,75.816,3696.6420000000003,0.36700000000000005,0.184,1.22,8.0,1.4680000000000002,235.0,43.125,21.0,3.8510000000000004,976.0,178.96400000000003,51238482.0,2231.0,9402.815999999999,0.409,2123.0,0.39,0.133,7.5,tests performed,7076057.0,2822419.0,2768349.0,1653395.0,2675.0,71.0,129.85,51.79,50.8,30.34,13.0,11.0,0.0,11.11,5449270.0,113.12799999999999,41.2,15.07,9.167,30155.152000000002,0.7,287.959,7.29,23.1,37.7,19.275,5.82,77.54,0.86,26567.1,20.98,1.28,4875.350276
136,53295,SLV,North America,El Salvador,2022-06-28,169646.0,0.0,0.0,4141.0,0.0,0.429,26025.313,0.0,0.0,635.269,0.0,0.066,0.08,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,1921625.0,4675.0,294.796,0.7170000000000001,4668.0,0.716,0.106,9.4,tests performed,10892892.0,4610987.0,4315754.0,1966151.0,46995.0,8256.0,167.11,70.74,66.21,30.16,1267.0,592.0,0.009000000000000001,37.96,6518500.0,307.811,27.6,8.273,5.417000000000001,7292.4580000000005,2.2,167.295,8.87,2.5,18.8,90.65,1.3,73.32,0.6729999999999999,4739.0,16.28,49.24,727.0077472
137,54137,GNQ,Africa,Equatorial Guinea,2022-06-28,16034.0,39.0,11.286,183.0,0.0,0.0,11058.761999999999,26.899,7.784,126.21600000000001,0.0,0.0,1.41,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,484554.0,501.0,334.2,0.34600000000000003,109.0,0.075,0.0157,63.6,tests performed,484554.0,267610.0,208104.0,4420.0,639.0,0.0,33.42,18.46,14.35,0.3,0.0,0.0,0.0,37.96,1449891.0,45.193999999999996,22.4,2.846,1.7519999999999998,22604.873,2.2,202.812,7.78,2.5,18.8,24.64,2.1,58.74,0.5920000000000001,4739.0,16.28,49.24,727.0077472
138,122816,MOZ,Africa,Mozambique,2022-06-28,227725.0,65.0,67.143,2212.0,0.0,0.14300000000000002,7080.331,2.021,2.088,68.775,0.0,0.004,1.0,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1341769.0,939.0,41.718,0.028999999999999998,870.0,0.027000000000000003,0.0989,10.1,tests performed,31616078.0,14978771.0,14098645.0,425736.0,295812.0,0.0,98.3,46.57,43.83,1.32,0.0,0.0,0.0,28.7,32163045.0,37.728,17.7,3.158,1.87,1136.103,62.9,329.94199999999995,3.3,5.1,29.1,12.227,0.7,60.85,0.456,2633.7,21.49,55.05,4193.449258
139,129143,NIC,North America,Nicaragua,2022-06-28,14619.0,0.0,0.0,241.0,0.0,0.0,2181.166,0.0,0.0,35.957,0.0,0.0,0.06,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,196380.0,1761.0,29.3,0.344,205.0,0.031,0.0174,57.4,tests performed,11341125.0,5917353.0,5423772.0,2756062.0,7377.0,15294.0,169.21,88.29,80.92,53.76,2282.0,3436.0,0.051,13.89,6702379.0,51.667,27.3,5.445,3.5189999999999997,5321.444,3.2,137.016,11.47,14.8,17.2,47.782,0.9,74.48,0.66,8148.4,31.97,5.18,1215.747423
140,116340,MEX,North America,Mexico,2022-06-28,5986917.0,20959.0,13618.286,325638.0,42.0,25.714000000000002,45960.502,160.899,104.545,2499.865,0.322,0.19699999999999998,1.54,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,15569464.0,1462.0,119.524,0.011000000000000001,12427.0,0.095,0.488,2.0,people tested,209179257.0,88336802.0,79947470.0,53157386.0,157958.0,21292.0,160.58,67.81,61.37,40.81,163.0,4943.0,0.004,17.59,130262220.0,66.444,29.3,6.857,4.321000000000001,17336.468999999997,2.5,152.783,13.06,6.9,21.4,87.84700000000001,1.38,75.05,0.779,663318.5,37.67,-8.77,5092.178684
141,4305,AND,Europe,Andorra,2022-06-28,43774.0,0.0,46.428999999999995,153.0,0.0,0.0,565891.874,0.0,600.2090000000001,1977.92,0.0,0.0,0.4,0.0,0.0,,,,,,,300307.0,957.0,3882.243,0.33299999999999996,91.0,1.176,0.7049,1.4,tests performed,153383.0,57886.0,53456.0,42041.0,1973.0,15.0,198.29,74.83,69.11,54.35,194.0,0.0,0.0,8.33,77354.0,163.755,29.1,6.211,3.8569999999999998,13913.839,0.5,109.135,7.97,29.0,37.8,83.741,1.9,83.73,0.868,89.6,27.2,31.41,1158.311141
142,125750,NPL,Asia,Nepal,2022-06-28,979607.0,38.0,30.143,11952.0,0.0,0.0,33011.277,1.281,1.016,402.764,0.0,0.0,1.51,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,6969050.0,5062.0,234.84599999999998,0.171,2745.0,0.09300000000000001,0.006999999999999999,142.9,samples tested,46113867.0,22995709.0,20267818.0,6300646.0,136996.0,102550.0,155.4,77.49,68.3,21.23,3456.0,57369.0,0.193,46.3,29674920.0,204.43,25.0,5.809,3.2119999999999997,2442.804,15.0,260.797,7.26,9.5,37.8,47.782,0.3,70.78,0.602,2633.7,21.49,55.05,4193.449258
143,51585,ECU,South America,Ecuador,2022-06-28,901739.0,0.0,438.85699999999997,35705.0,0.0,1.429,50408.939000000006,0.0,24.533,1995.9779999999998,0.0,0.08,0.92,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,2870685.0,2817.0,160.477,0.157,4020.0,0.225,0.271,3.7,people tested,35827364.0,15189092.0,14015575.0,7186610.0,19351.0,14068.0,200.28,84.91,78.35,40.17,786.0,691.0,0.004,75.0,17888474.0,66.939,28.1,7.104,4.458,10581.936000000002,3.6,140.44799999999998,5.55,2.0,12.3,80.635,1.5,77.01,0.759,70967.5,42.39,-4.36,3967.219339
144,91646,JPN,Asia,Japan,2022-06-28,9270305.0,19365.0,15652.143,31246.0,108.0,26.714000000000002,73544.2,153.629,124.17299999999999,247.88400000000001,0.857,0.212,1.19,282.0,2.237,4862.0,38.571999999999996,259.0,4.29,2964.0,49.099,53504941.0,138240.0,424.471,1.097,94925.0,0.753,0.1483,6.7,people tested,284924354.0,103734672.0,102349100.0,78840582.0,118006.0,133152.0,226.04,82.3,81.2,62.55,1056.0,4278.0,0.003,39.81,126050796.0,347.778,48.2,27.049,18.493,39002.223,2.0,79.37,5.72,11.2,33.7,66.425,13.05,84.63,0.919,9539.4,0.29,8.92,75.67901436
145,192239,VUT,Oceania,Vanuatu,2022-06-28,11206.0,32.0,31.0,14.0,0.0,0.0,35635.24,101.76,98.58,44.52,0.0,0.0,0.71,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,11989.0,2072.0,38.125,0.595,76.0,0.242,0.0132,76.0,people tested,309433.0,172232.0,126591.0,10610.0,145313.0,151.0,98.4,54.77,40.26,3.37,480.0,0.0,0.0,68.06,314464.0,22.662,23.1,4.394,2.62,2921.909,13.2,546.3,12.02,2.8,34.5,25.209,4.0,70.47,0.609,38486.9,10.93,1.96,1134.110282
146,168941,ESP,Europe,Spain,2022-06-28,12734038.0,52218.0,17200.571,107906.0,107.0,43.143,272413.745,1117.077,367.964,2308.386,2.289,0.9229999999999999,1.49,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,93162168.0,29943.0,1992.9779999999998,0.6409999999999999,43694.0,0.935,0.31,3.2,tests performed,95071546.0,41254310.0,40550392.0,25357394.0,47657.0,11754.0,203.38,88.25,86.75,54.25,251.0,690.0,0.001,29.17,46745211.0,93.105,45.5,19.436,13.799000000000001,34272.36,1.0,99.40299999999999,7.17,27.4,31.4,43.993,2.97,83.56,0.904,104463.1,10.09,5.53,2234.733736
147,21457,BTN,Asia,Bhutan,2022-06-28,59729.0,0.0,7.857,21.0,0.0,0.0,76585.46,0.0,10.075,26.927,0.0,0.0,0.29,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,1711669.0,13010.0,2194.729,16.682000000000002,8392.0,10.76,0.036000000000000004,27.8,samples tested,1910077.0,692909.0,672575.0,544593.0,414.0,45.0,244.91,88.85,86.24,69.83,58.0,5.0,0.001,22.22,779900.0,21.188000000000002,28.6,4.885,2.977,8708.597,1.5,217.06599999999997,9.75,0.6,12.3,79.807,1.7,71.78,0.654,15.4,2.8,-1.1,248.0190685
148,89905,ITA,Europe,Italy,2022-06-28,18343422.0,84161.0,54870.429000000004,168234.0,69.0,56.0,303862.688,1394.145,908.94,2786.8320000000003,1.143,0.9279999999999999,1.44,237.0,3.926,6272.0,103.897,204.0,3.3789999999999996,2964.0,49.099,224876148.0,246512.0,3725.1209999999996,4.084,193140.0,3.199,0.2053,4.9,tests performed,138236021.0,50802575.0,47947772.0,40993493.0,19461.0,15551.0,228.99,84.16,79.43,67.91,258.0,447.0,0.001,22.22,60367471.0,205.859,47.9,23.021,16.24,35220.084,2.0,113.15100000000001,4.78,19.8,27.8,94.57600000000001,3.18,83.51,0.892,180753.4,11.84,-8.54,2994.218525
149,107862,MAC,Asia,Macao,2022-06-28,189.0,17.0,13.0,1094.0,0.0,0.857,287.063,25.820999999999998,19.745,1723.339,0.0,1.35,1.56,3.0,4.726,15.0,23.629,10.0,5.282,1.0,1.575,4299901.0,2293.0,6773.482,3.612,1630.0,2.568,0.376,2.7,tests performed,1438953.0,613429.0,585679.0,279050.0,508.0,475.0,218.56,93.17,88.96,42.38,721.0,136.0,0.021,73.15,658391.0,20546.766,39.2,9.798,4.9910000000000005,104861.851,0.2,128.275,4.42,20.9,26.0,1.188,4.51,84.24,0.9159999999999999,413.4,8.35,22.9,627.8943667000001
150,47315,COD,Africa,Democratic Republic of Congo,2022-06-28,91082.0,0.0,74.429,1371.0,0.0,2.571,985.971,0.0,0.8059999999999999,14.841,0.0,0.027999999999999997,0.53,8.0,0.746,191.0,17.81,10.0,0.932,238.0,22.191999999999997,1045120.0,4000.0,11.314,0.373,928.0,0.01,0.1168,8.6,tests performed,3514480.0,2979005.0,2272532.0,4240912.0,42303.0,40168.0,3.8,3.22,2.46,39.54,435.0,40168.0,0.043,31.48,92377986.0,35.879,17.0,3.02,1.745,808.133,77.1,318.949,6.1,30.5,38.3,4.4719999999999995,6.63,60.68,0.48,42100.6,15.74,5.93,3925.6274829999998
151,100180,LBN,Asia,Lebanon,2022-06-28,1109423.0,1210.0,736.429,10463.0,2.0,1.143,163893.965,178.752,108.792,1545.6889999999999,0.295,0.16899999999999998,1.67,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,4731376.0,14038.0,698.962,2.074,14688.0,2.17,0.1238,8.1,tests performed,5673326.0,2698736.0,2374475.0,600115.0,292132.0,1238.0,83.81,39.87,35.08,8.87,183.0,348.0,0.005,17.59,6769151.0,594.561,31.1,8.514,5.43,13367.565,0.7,266.591,12.71,26.9,40.7,49.839,2.9,78.93,0.7440000000000001,15149.6,30.18,57.47,2238.035464
152,121102,MSR,North America,Montserrat,2022-06-28,1016.0,0.0,0.14300000000000002,8.0,0.0,0.0,203975.105,0.0,28.68,1606.1029999999998,0.0,0.0,1.62,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,7408778.0,4118.0,2225.3379999999997,1.237,487.0,0.146,0.4242,2.4,samples tested,4422.0,2044.0,1868.0,510.0,13.0,3.0,88.78,41.04,37.5,10.24,602.0,3.0,0.06,11.11,4981.0,46.28,39.1,14.762,9.395,16409.288,1.0,387.305,10.08,44.0,47.9,71.18,3.861,74.16,0.8290000000000001,2633.7,21.49,55.05,4193.449258
153,90751,JAM,North America,Jamaica,2022-06-28,142626.0,68.0,120.714,3121.0,1.0,3.286,47966.31,22.869,40.597,1049.618,0.336,1.105,0.89,291.0,4.82,7503.0,124.289,259.0,4.29,2964.0,49.099,1124299.0,2223.0,378.111,0.748,678.0,0.228,0.2164,4.6,samples tested,1457057.0,812502.0,709168.0,42124.0,709.0,483.0,49.0,27.33,23.85,1.42,162.0,271.0,0.009000000000000001,11.11,2973462.0,266.879,31.4,9.684,6.39,8193.571,2.0,206.537,11.28,5.3,28.6,66.425,1.7,74.47,0.7340000000000001,5134.8,14.0,1.16,1726.875945
154,16353,BRB,North America,Barbados,2022-06-28,83975.0,155.0,125.714,473.0,0.0,0.14300000000000002,291875.791,538.741,436.95099999999996,1644.0279999999998,0.0,0.49700000000000005,1.03,50.0,5.529,874.0,96.649,,,,,697476.0,734.0,2424.25,2.551,507.0,1.7619999999999998,0.1812,5.5,tests performed,316070.0,162589.0,153481.0,29645608.0,26.0,40.0,109.86,56.51,53.35,17.83,139.0,16.0,0.006,40.74,287708.0,664.4630000000001,39.8,14.952,9.472999999999999,16978.068,14.8,170.05,13.57,1.9,14.5,88.469,5.8,79.19,0.8140000000000001,-270.0,-5.42,-3.28,-938.4514855
155,49038,DJI,Africa,Djibouti,2022-06-28,15690.0,0.0,0.0,189.0,0.0,0.0,15655.605,0.0,0.0,188.58599999999998,0.0,0.0,0.04,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,309732.0,912.0,309.053,0.91,196.0,0.196,0.0,31.2,tests performed,222387.0,201787.0,161003.0,3650643.0,12179.0,1785.0,22.19,20.13,16.07,62.8,1781.0,860.0,0.086,49.07,1002197.0,41.285,25.4,4.213,2.38,2705.406,22.5,258.03700000000003,6.05,1.7,24.5,4.4719999999999995,1.4,67.11,0.524,1780.7,1.29,0.54,306.3147244
156,92970,JOR,Asia,Jordan,2022-06-28,1699197.0,0.0,125.85700000000001,14068.0,0.0,0.0,165468.24,0.0,12.255999999999998,1369.945,0.0,0.0,0.04,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,16803235.0,42668.0,1636.3029999999999,4.155,2541.0,0.247,0.0171,58.3,tests performed,10007983.0,4805507.0,4538702.0,667902.0,16423.0,2346.0,97.46,46.8,44.2,6.5,228.0,1556.0,0.015,20.37,10269022.0,109.285,23.2,3.81,2.3609999999999998,8337.49,0.1,208.257,11.75,11.2,33.7,66.425,1.4,74.53,0.7290000000000001,4569.1,16.03,25.33,444.94013160000003
157,99315,LVA,Europe,Latvia,2022-06-28,834535.0,824.0,292.857,5858.0,3.0,1.0,447008.30299999996,441.365,156.865,3137.765,1.607,0.536,1.69,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,7263566.0,2035.0,3890.639,1.09,1888.0,1.011,0.1238,8.1,tests performed,2893861.0,1345920.0,1305625.0,528276.0,75.0,45.0,155.01,72.09,69.93,28.3,24.0,4.0,0.0,11.11,1866934.0,31.212,43.9,19.754,14.136,25063.846,0.7,350.06,4.91,25.6,51.0,49.839,5.57,75.29,0.866,8297.0,12.2,2.87,4444.184958
158,8614,ARM,Asia,Armenia,2022-06-28,423243.0,0.0,19.857,8629.0,0.0,0.0,142595.939,0.0,6.69,2907.22,0.0,0.0,-0.01,372.0,8.157,,,,,,,3102267.0,1467.0,1045.193,0.494,1467.0,0.494,0.003,333.3,tests performed,2150112.0,1129669.0,985807.0,40725.0,13751.0,126.0,72.44,38.06,33.21,1.37,42.0,24.0,0.001,39.81,2968128.0,102.931,35.7,11.232000000000001,7.571000000000001,8787.58,1.8,341.01,7.11,1.5,52.1,94.04299999999999,4.2,75.09,0.7759999999999999,21748.4,36.89,0.44,7327.31203
159,12105,AUT,Europe,Austria,2022-06-28,4432922.0,7085.0,8642.714,20029.0,6.0,4.428999999999999,490200.896,783.4730000000001,955.7280000000001,2214.845,0.6629999999999999,0.49,1.54,47.0,5.197,842.0,93.11,,,,,189791719.0,97659.0,20987.527000000002,10.799000000000001,86208.0,9.533,0.0752,13.3,tests performed,18416362.0,6831443.0,6625071.0,5311138.0,4140.0,1169.0,203.65,75.54,73.26,58.73,129.0,50.0,0.001,35.19,9043072.0,106.749,44.4,19.202,13.748,45436.685999999994,0.7,145.183,6.35,28.4,30.9,94.04299999999999,7.37,81.54,0.922,17273.6,8.5,6.4,1910.147348
160,190795,URY,South America,Uruguay,2022-06-28,957629.0,0.0,811.571,7331.0,0.0,2.714,274773.955,0.0,232.865,2103.495,0.0,0.779,1.14,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,6086835.0,2072.0,1746.505,0.595,3188.0,0.915,0.0836,12.0,people tested,8663343.0,2996925.0,2886692.0,2779726.0,9207.0,8318.0,248.58,85.99,82.83,79.76,2387.0,154.0,0.004,13.89,3485152.0,19.750999999999998,35.6,14.655,10.360999999999999,20551.409,0.1,160.708,6.93,14.0,19.9,21.221999999999998,2.8,77.91,0.8170000000000001,6095.1,7.28,8.55,1748.8763760000002
161,49873,DMA,North America,Dominica,2022-06-28,14852.0,31.0,10.142999999999999,68.0,1.0,0.14300000000000002,205786.177,429.529,140.537,942.194,13.856,1.979,0.43,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,205366.0,341.0,2845.508,4.725,356.0,4.933,0.0,6.0,tests performed,66974.0,32865.0,30463.0,3646.0,270.0,6.0,92.8,45.54,42.21,5.05,83.0,2.0,0.003,32.41,72172.0,98.56700000000001,25.4,4.213,2.38,9673.367,22.5,227.37599999999998,11.62,1.7,24.5,4.4719999999999995,3.8,75.0,0.742,1780.7,1.29,0.54,306.3147244
162,130838,NGA,Africa,Nigeria,2022-06-28,256958.0,0.0,35.286,3144.0,0.0,0.0,1215.502,0.0,0.16699999999999998,14.872,0.0,0.0,1.43,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,5279608.0,11989.0,24.974,0.057,8950.0,0.042,0.0056,180.0,tests performed,50619238.0,28340766.0,20986761.0,1171892.0,186047.0,301975.0,23.94,13.41,9.93,0.55,1428.0,67082.0,0.032,40.74,211400704.0,209.588,18.1,2.7510000000000003,1.4469999999999998,5338.454000000001,44.5,181.013,2.42,0.6,10.8,41.949,0.3,54.69,0.539,8148.4,31.97,5.18,1215.747423
163,109527,MWI,Africa,Malawi,2022-06-28,86448.0,38.0,28.429000000000002,2645.0,0.0,0.14300000000000002,4399.909000000001,1.9340000000000002,1.4469999999999998,134.621,0.0,0.006999999999999999,1.38,3.0,4.726,15.0,23.629,10.0,5.282,1.0,1.575,589303.0,490.0,29.994,0.025,307.0,0.016,0.0656,15.2,tests performed,2166402.0,2047317.0,1590299.0,740.0,14163.0,0.0,11.03,10.42,8.09,0.0,0.0,64387.0,0.32799999999999996,47.22,19647681.0,197.519,18.1,2.9789999999999996,1.7830000000000001,1095.042,71.4,227.34900000000002,3.94,4.4,24.7,8.704,1.3,64.26,0.483,413.4,8.35,22.9,627.8943667000001
164,19768,BEN,Africa,Benin,2022-06-28,27122.0,0.0,0.0,163.0,0.0,0.0,2178.294,0.0,0.0,13.091,0.0,0.0,0.04,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,604310.0,1351.0,48.535,3.3369999999999997,1012.0,2.499,0.1451,6.9,tests performed,3681560.0,3174135.0,2690085.0,200.0,5470.0,2213.0,29.57,25.49,21.61,0.0,178.0,481.0,0.004,13.89,12451031.0,99.11,18.8,3.2439999999999998,1.942,2064.236,49.6,235.84799999999998,0.99,0.6,12.3,11.035,0.5,61.77,0.545,127.6,6.28,51.1,315.1278663
165,97622,KGZ,Asia,Kyrgyzstan,2022-06-28,201053.0,29.0,5.2860000000000005,2991.0,0.0,0.0,30332.299,4.375,0.797,451.244,0.0,0.0,-0.0,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,8208880.0,8163.0,1896.4489999999998,1.886,6104.0,1.41,0.0165,60.4,tests performed,3151034.0,1570937.0,1320438.0,1364852.0,1492.0,1291.0,47.54,23.7,19.92,31.53,195.0,255.0,0.004,33.33,6628347.0,32.333,26.3,4.489,2.8819999999999997,3393.474,1.4,436.36199999999997,7.11,3.6,50.5,89.22,4.5,71.45,0.6970000000000001,15644.0,20.79,13.42,2360.166117
166,60184,FRO,Europe,Faeroe Islands,2022-06-28,34658.0,0.0,0.0,28.0,0.0,0.0,706541.9040000001,0.0,0.0,570.811,0.0,0.0,0.55,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,777845.0,391.0,15857.236,7.971,539.0,10.988,0.6621,1.5,people tested,103894.0,41715.0,40895.0,21284.0,42.0,26.0,211.8,85.04,83.37,43.39,530.0,2.0,0.004,11.11,49053.0,35.308,19.8,3.5260000000000002,2.063,1729.9270000000001,26.7,182.63400000000001,7.47,0.4,8.5,7.96,0.3,80.67,0.485,-38.6,-3.8,10.79,-786.903961
167,28192,BGR,Europe,Bulgaria,2022-06-28,1171235.0,549.0,345.286,37249.0,2.0,2.714,169826.532,79.604,50.066,5401.024,0.29,0.39399999999999996,1.48,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,10080207.0,4881.0,1461.608,0.708,3104.0,0.45,0.0777,12.9,tests performed,4408643.0,2092116.0,2061600.0,764940.0,1157.0,439.0,63.92,30.34,29.89,11.09,64.0,63.0,0.001,11.11,6896655.0,65.18,44.7,20.801,13.272,18563.307,1.5,424.68800000000005,5.81,30.1,44.4,97.164,7.454,75.05,0.816,66889.5,26.21,-5.49,9698.83226
168,121981,MAR,Africa,Morocco,2022-06-28,1209302.0,4009.0,2806.571,16104.0,3.0,2.4290000000000003,32382.083,107.351,75.153,431.225,0.08,0.065,1.36,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,11738659.0,4632.0,314.332,0.124,6983.0,0.187,0.1107,9.0,people tested,54823412.0,24946369.0,23429942.0,6534825.0,51870.0,5718.0,146.8,66.8,62.74,17.5,153.0,836.0,0.002,58.33,37344787.0,80.08,29.6,6.769,4.209,7485.013000000001,1.0,419.14599999999996,7.14,0.8,47.1,71.18,1.1,76.68,0.6859999999999999,2633.7,21.49,55.05,4193.449258
169,58437,OWID_EUR,Africa,Europe,2022-06-28,204677493.0,540408.0,315863.0,1856046.0,653.0,434.286,273281.187,721.5419999999999,421.73400000000004,2478.155,0.872,0.58,0.55,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,5024643.0,4118.0,42.626000000000005,0.035,4906.0,0.042,0.1325,7.5,tests performed,1295331729.0,515072975.0,492835512.0,307244004.0,248750.0,239134.0,172.95,68.77,65.8,41.02,319.0,33442.0,0.004,25.0,748962983.0,104.95700000000001,19.8,3.5260000000000002,2.063,1729.9270000000001,26.7,182.63400000000001,7.47,0.4,8.5,7.96,0.3,66.6,0.485,3805.5,9.78,12.82,2871.66802
170,126609,NLD,Europe,Netherlands,2022-06-28,8181879.0,5778.0,4879.429,22448.0,4.0,2.1430000000000002,476435.929,336.457,284.132,1307.161,0.233,0.125,1.39,35.0,2.0380000000000003,692.0,40.296,28.0,1.63,613.0,35.695,30687346.0,6207.0,1786.943,0.361,4928.0,0.287,0.685,1.5,tests performed,33326378.0,12804977.0,11980109.0,9295105.0,144666.0,1769.0,194.06,74.56,69.76,54.13,103.0,194.0,0.001,19.44,17173094.0,508.54400000000004,43.2,18.779,11.880999999999998,48472.545,15.0,109.361,5.29,24.4,27.3,47.782,3.32,82.28,0.9440000000000001,30266.9,7.84,1.12,1762.460509
171,124489,NAM,Africa,Namibia,2022-06-28,169076.0,0.0,24.570999999999998,4061.0,0.0,0.7140000000000001,65347.320999999996,0.0,9.497,1569.5629999999999,0.0,0.276,0.54,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1056045.0,778.0,408.158,0.301,772.0,0.298,0.0579,17.3,tests performed,825518.0,496475.0,426681.0,64392.0,3837.0,127.0,31.91,19.19,16.49,2.49,49.0,1243.0,0.048,23.15,2587344.0,3.0780000000000003,22.0,3.552,2.085,9541.808,13.4,243.81099999999998,3.94,9.7,34.2,44.6,0.9,63.71,0.6459999999999999,2633.7,21.49,55.05,4193.449258
172,30755,KHM,Asia,Cambodia,2022-06-28,136262.0,0.0,0.0,3056.0,0.0,0.0,8040.741999999999,0.0,0.0,180.333,0.0,0.0,0.82,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,2977609.0,3334.0,175.707,0.19699999999999998,566.0,0.033,0.0,1772.7,tests performed,40956960.0,15078410.0,14377340.0,9435373.0,61376.0,35026.0,241.68,88.98,84.84,55.68,2067.0,1468.0,0.009000000000000001,16.67,16946446.0,90.67200000000001,25.6,4.412,2.385,3645.07,71.7,270.892,4.0,2.0,33.7,66.229,0.8,69.82,0.594,66889.5,26.21,-5.49,9698.83226
173,54973,ERI,Africa,Eritrea,2022-06-28,9796.0,4.0,2.0,103.0,0.0,0.0,2720.006,1.111,0.555,28.599,0.0,0.0,0.95,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,23693.0,501.0,6.579,0.34600000000000003,109.0,0.075,0.0157,63.6,tests performed,484554.0,267610.0,208104.0,4420.0,639.0,0.0,33.42,18.46,14.35,0.3,0.0,0.0,0.0,50.93,3601462.0,44.303999999999995,19.3,3.6069999999999998,2.171,1510.4589999999998,2.2,311.11,6.05,0.2,11.4,24.64,0.7,66.32,0.45899999999999996,4739.0,16.28,49.24,727.0077472
174,27343,BRN,Asia,Brunei,2022-06-28,162311.0,773.0,541.0,225.0,0.0,0.0,367608.69,1750.7220000000002,1225.279,509.589,0.0,0.0,1.29,22.0,1.859,143.0,12.085,,,760.0,65.335,93192.0,297.0,211.065,0.6729999999999999,121418.0,0.5670000000000001,0.0483,20.7,samples tested,1173118.0,444293.0,426764.0,301719.0,3827.0,1493.0,265.69,100.63,96.66,68.33,3381.0,169.0,0.038,16.67,441532.0,81.347,32.4,4.591,2.3819999999999997,71809.25099999999,3.4,201.285,12.79,2.0,30.9,97.164,2.7,75.86,0.838,-16.8,-0.95,-7.41,-38.04933731
175,93814,KAZ,Asia,Kazakhstan,2022-06-28,1395594.0,61.0,56.286,19018.0,0.0,0.14300000000000002,73471.813,3.2110000000000003,2.963,1001.2130000000001,0.0,0.008,1.9,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,11965068.0,52729.0,629.908,2.7760000000000002,39955.0,2.103,0.03,33.4,tests performed,20918681.0,9522541.0,9304087.0,2514071.0,12492.0,10734.0,110.13,50.13,48.98,13.24,565.0,558.0,0.003,11.11,18994958.0,6.681,30.6,6.9910000000000005,4.625,24055.588,0.1,466.792,7.11,7.0,43.1,98.999,6.7,73.6,0.825,83124.6,26.77,-14.32,4376.140237
176,123646,MMR,Asia,Myanmar,2022-06-28,613577.0,9.0,9.857000000000001,19434.0,0.0,0.0,11195.431999999999,0.16399999999999998,0.18,354.596,0.0,0.0,1.22,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,8332037.0,16383.0,152.028,0.299,5100.0,0.09300000000000001,0.0016,626.3,samples tested,62259560.0,33004742.0,27027467.0,2227351.0,3800.0,187094.0,113.6,60.22,49.31,4.06,3414.0,110614.0,0.20199999999999999,51.85,54806014.0,81.721,29.1,5.732,3.12,5591.597,6.4,202.104,4.61,6.3,35.2,79.28699999999999,0.9,67.13,0.583,2633.7,21.49,55.05,4193.449258
177,163756,SLB,Oceania,Solomon Islands,2022-06-28,21544.0,0.0,0.0,153.0,0.0,0.0,30602.49,0.0,0.0,217.331,0.0,0.0,0.17,11.0,5.292000000000001,62.0,29.826,7.0,3.319,43.0,20.863000000000003,5336373.0,3998.0,2567.14,1.923,3172.0,1.526,0.128,7.8,tests performed,463637.0,283298.0,177996.0,2343.0,108.0,738.0,65.86,40.24,25.28,0.33,1048.0,0.0,0.0,42.59,703995.0,21.840999999999998,20.8,3.5069999999999997,2.043,2205.923,25.1,459.78,18.68,20.1,25.0,35.89,1.4,73.0,0.5670000000000001,5202.5,10.13,-6.54,2502.73846
178,108699,MDG,Africa,Madagascar,2022-06-28,65381.0,0.0,53.143,1398.0,0.0,0.0,2299.9339999999997,0.0,1.869,49.178000000000004,0.0,0.0,0.44,3.0,4.726,15.0,23.629,10.0,5.282,1.0,1.575,451753.0,693.0,15.892000000000001,0.024,541.0,0.019,0.0547,18.3,tests performed,2369775.0,1290584.0,1199011.0,43528.0,13544.0,0.0,8.34,4.54,4.22,0.15,0.0,0.0,0.0,17.59,28427333.0,43.951,19.6,2.929,1.686,1416.44,77.6,405.994,3.94,20.9,26.0,50.54,0.2,67.04,0.528,413.4,8.35,22.9,627.8943667000001
179,173264,CHE,Europe,Switzerland,2022-06-28,3759730.0,33115.0,4730.714,13824.0,0.0,0.5710000000000001,431384.612,3799.555,542.794,1586.141,0.0,0.066,1.17,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,21277734.0,9789.0,2441.369,1.123,9093.0,1.043,0.40700000000000003,2.5,tests performed,15759752.0,6087852.0,6002672.0,3781389.0,1091.0,1605.0,180.82,69.85,68.87,43.39,184.0,82.0,0.001,11.11,8715494.0,214.243,43.1,18.436,12.644,57410.166,0.5,99.73899999999999,5.59,22.6,28.9,67.779,4.53,83.78,0.955,11808.7,7.09,-9.86,1354.9088550000001
180,195451,WLF,Oceania,Wallis and Futuna,2022-06-28,454.0,0.0,0.0,7.0,0.0,0.0,40923.021,0.0,0.0,630.972,0.0,0.0,0.91,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,85824349.0,56715.0,874.253,0.578,620.0,0.006,0.9523,1.1,people tested,16426.0,6483.0,6457.0,3201.0,66330.0,7.0,148.06,58.44,58.2,28.85,631.0,2.0,0.018000000000000002,25.93,11094.0,308.127,32.6,7.15,4.718,6171.884,2.0,245.465,6.0,1.0,45.9,85.84700000000001,2.6,79.94,0.7040000000000001,38486.9,10.93,1.96,1134.110282
181,172403,SWE,Europe,Sweden,2022-06-28,2515769.0,0.0,416.57099999999997,19093.0,0.0,2.571,247611.18399999998,0.0,41.0,1879.203,0.0,0.253,0.49,46.0,4.527,1148.0,112.99,241.0,5.156000000000001,5307.0,113.53,18407585.0,2417.0,1811.7420000000002,0.23800000000000002,2417.0,0.23800000000000002,0.1183,8.5,tests performed,22674504.0,7838695.0,7651988.0,5439028.0,398.0,6212.0,223.17,77.15,75.31,53.53,611.0,153.0,0.002,11.11,10160159.0,24.718000000000004,41.0,19.985,13.433,46949.282999999996,0.5,133.982,4.79,18.8,18.9,67.779,2.22,82.8,0.945,10434.7,4.75,0.41,1027.021329
182,94665,KEN,Africa,Kenya,2022-06-28,332898.0,439.0,410.57099999999997,5652.0,0.0,0.14300000000000002,6054.265,7.984,7.4670000000000005,102.79,0.0,0.003,1.01,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,3728165.0,2868.0,67.80199999999999,0.052000000000000005,3338.0,0.061,0.1107,9.0,tests performed,18535975.0,12641679.0,9326814.0,376018.0,13702.0,12048.0,33.71,22.99,16.96,0.68,219.0,4649.0,0.008,37.04,54985702.0,87.324,20.0,2.6860000000000004,1.528,2993.028,36.8,218.637,2.92,1.2,20.4,24.651,1.4,66.7,0.601,83124.6,26.77,-14.32,4376.140237
183,101803,LBR,Africa,Liberia,2022-06-28,7493.0,0.0,0.0,294.0,0.0,0.0,1446.467,0.0,0.0,56.754,0.0,0.0,0.16,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,139824.0,553.0,26.991999999999997,0.256,234.0,0.10800000000000001,0.1172,8.5,tests performed,2716330.0,2458813.0,2129565.0,1912.0,8242.0,89696.0,52.44,47.47,41.11,0.04,17315.0,101042.0,1.9509999999999998,48.15,5180208.0,49.126999999999995,19.2,3.057,1.756,752.788,38.6,272.509,2.42,1.5,18.1,1.188,0.8,64.1,0.48,15149.6,30.18,57.47,2238.035464
184,188238,USA,North America,United States,2022-06-28,87296327.0,126768.0,108653.85699999999,1016768.0,560.0,381.714,262218.006,380.782,326.371,3054.136,1.682,1.147,1.1,3323.0,9.982000000000001,29536.0,88.719,241.0,5.156000000000001,35540.0,106.75399999999999,912521698.0,406474.0,2741.0040000000004,1.2209999999999999,502550.0,1.51,0.138,7.2,tests performed,596233489.0,259957415.0,222271398.0,123531432.0,19802.0,163157.0,179.58,78.3,66.95,37.21,491.0,41714.0,0.013000000000000001,38.89,332915074.0,35.608000000000004,38.3,15.413,9.732000000000001,54225.445999999996,1.2,151.089,10.79,19.1,24.6,21.221999999999998,2.77,78.86,0.9259999999999999,1105051.9,16.45,-3.34,3319.320711
185,3450,DZA,Africa,Algeria,2022-06-28,266062.0,13.0,9.857000000000001,6875.0,0.0,0.0,5963.293000000001,0.29100000000000004,0.221,154.091,0.0,0.0,1.34,0.0,0.0,,,,,,,230553.0,957.0,5.167000000000001,0.33299999999999996,375.0,0.131,0.4263,2.3,tests performed,15205854.0,8210605.0,6851660.0,514063.0,147230.0,0.0,34.08,18.4,15.36,1.15,0.0,13231.0,0.03,47.22,44616626.0,17.348,29.1,6.211,3.8569999999999998,13913.839,0.5,278.36400000000003,6.73,0.7,30.4,83.741,1.9,76.88,0.748,49888.7,26.86,29.47,1118.163888
186,11244,AUS,Oceania,Australia,2022-06-28,8081866.0,24137.0,27722.286,9813.0,55.0,43.714,313393.749,935.97,1074.998,380.523,2.133,1.695,1.08,108.0,4.188,3224.0,125.01799999999999,,,,,73370295.0,82399.0,2845.1090000000004,3.195,67114.0,2.603,0.149,6.7,tests performed,57893550.0,22350120.0,21666494.0,13876936.0,10226.0,8414.0,224.5,86.67,84.02,53.81,326.0,1100.0,0.004,13.89,25788217.0,3.202,37.9,15.504000000000001,10.129,44648.71,0.5,107.791,5.07,13.0,16.5,94.04299999999999,3.84,83.44,0.9440000000000001,4853.0,1.35,8.37,188.1867211
187,24806,BWA,Africa,Botswana,2022-06-28,321968.0,1841.0,491.42900000000003,2739.0,13.0,2.8569999999999998,134307.78699999998,767.966,204.998,1142.5639999999999,5.422999999999999,1.192,0.58,22.0,1.859,143.0,12.085,,,760.0,65.335,2285160.0,2647.0,953.2460000000001,1.104,857.0,0.35700000000000004,0.0483,20.7,tests performed,2730607.0,1696430.0,1512567.0,391031.0,10435.0,197.0,113.91,70.77,63.1,16.31,82.0,81.0,0.003,13.89,2397240.0,4.044,25.8,3.9410000000000003,2.242,15807.374,0.2,237.372,4.81,5.7,34.4,97.164,1.8,69.59,0.735,22134.5,26.94,18.13,6782.527373999999
188,96783,KWT,Asia,Kuwait,2022-06-28,643004.0,0.0,530.571,2555.0,0.0,0.0,148549.411,0.0,122.575,590.2669999999999,0.0,0.0,1.18,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,8208880.0,8163.0,1896.4489999999998,1.886,6104.0,1.41,0.0165,60.4,tests performed,8112363.0,3432854.0,3320935.0,1358574.0,4709.0,2381.0,187.42,79.31,76.72,31.39,550.0,225.0,0.005,11.11,4328553.0,232.128,33.7,2.345,1.114,65530.537000000004,0.6,132.235,15.84,2.7,37.0,24.651,2.0,75.49,0.8059999999999999,3210.8,43.64,14.51,741.7721349
189,29865,BDI,Africa,Burundi,2022-06-28,42542.0,0.0,10.0,38.0,0.0,0.0,3471.278,0.0,0.816,3.1010000000000004,0.0,0.0,0.87,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,1611285.0,3281.0,131.475,0.268,1061.0,0.087,0.0236,42.4,tests performed,17139.0,15287.0,14707.0,5.0,93.0,51.0,0.14,0.12,0.12,0.0,4.0,51.0,0.0,13.89,12255429.0,423.06199999999995,17.5,2.562,1.504,702.225,71.7,293.068,6.05,1.6,23.9,6.144,0.8,61.58,0.433,66889.5,26.21,-5.49,9698.83226
190,23979,BIH,Europe,Bosnia and Herzegovina,2022-06-28,378577.0,72.0,39.429,15805.0,2.0,1.143,116004.82800000001,22.061999999999998,12.082,4843.021,0.613,0.35,1.56,22.0,1.859,143.0,12.085,,,760.0,65.335,1499302.0,4188.0,459.421,1.2830000000000001,3502.0,1.073,0.22699999999999998,4.4,tests performed,1924950.0,943394.0,846080.0,120530.0,66884.0,4315.0,58.98,28.91,25.93,3.69,1322.0,954.0,0.028999999999999998,25.93,3263459.0,68.49600000000001,42.5,16.569000000000003,10.710999999999999,11713.895,0.2,329.635,10.08,30.2,47.7,97.164,3.5,77.4,0.78,22134.5,26.94,18.13,6782.527373999999
191,112101,MLI,Africa,Mali,2022-06-28,31160.0,2.0,2.571,737.0,0.0,0.14300000000000002,1494.0739999999998,0.096,0.12300000000000001,35.338,0.0,0.006999999999999999,1.01,45.0,1.3730000000000002,746.0,22.76,10.0,5.282,1351.0,41.218999999999994,708110.0,605.0,33.953,0.028999999999999998,536.0,0.026000000000000002,0.0035,288.6,tests performed,2406986.0,1781525.0,1304066.0,161938.0,1683.0,7053.0,11.54,8.54,6.25,29.79,338.0,6112.0,0.028999999999999998,40.74,20855724.0,15.196,16.4,2.519,1.486,2014.306,0.1,268.024,2.42,1.6,23.0,52.232,0.1,59.31,0.434,160.6,14.41,3.78,295.42695269999996
192,187343,GBR,Europe,United Kingdom,2022-06-28,22739875.0,21412.0,19513.429,180306.0,117.0,60.286,333394.476,313.926,286.091,2643.507,1.715,0.884,1.38,175.0,2.5660000000000003,10081.0,147.8,241.0,5.156000000000001,9146.0,134.092,503270347.0,245960.0,7378.561,3.6060000000000003,259329.0,3.802,0.0326,30.6,tests performed,149397250.0,53577314.0,50126662.0,39931494.0,38209.0,45267.0,219.03,78.55,73.49,58.54,664.0,4223.0,0.006,11.11,68207114.0,272.89799999999997,40.8,18.517,12.527000000000001,39753.244,0.2,122.137,4.28,20.0,24.7,21.221999999999998,2.54,81.32,0.932,137803.3,9.16,-17.4,2020.3655
193,193090,VAT,Europe,Vatican,2022-06-28,29.0,0.0,0.0,14.0,0.0,0.0,35714.286,0.0,0.0,44.52,0.0,0.0,0.69,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,11989.0,2072.0,38.125,0.595,76.0,0.242,0.0132,76.0,people tested,309433.0,172232.0,126591.0,10610.0,145313.0,151.0,98.4,54.77,40.26,3.37,480.0,0.0,0.0,68.06,812.0,22.662,23.1,4.394,2.62,2921.909,13.2,546.3,12.02,2.8,34.5,25.209,4.0,75.12,0.609,38486.9,10.93,1.96,1134.110282
194,98455,LAO,Asia,Laos,2022-06-28,210258.0,7.0,6.2860000000000005,757.0,0.0,0.0,28492.722999999998,0.9490000000000001,0.852,102.583,0.0,0.0,1.09,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,1030237.0,671.0,139.611,0.091,113.0,0.015,0.1062,9.4,tests performed,10894482.0,5817695.0,5076787.0,1364852.0,11603.0,2560.0,147.63,78.84,68.8,31.53,347.0,599.0,0.008,57.87,7379358.0,29.715,24.4,4.029,2.322,6397.36,22.7,368.111,4.0,7.3,51.2,49.839,1.5,67.92,0.613,15644.0,20.79,13.42,2360.166117
195,9458,ABW,North America,Aruba,2022-06-28,40595.0,0.0,87.85700000000001,221.0,0.0,0.28600000000000003,378702.365,0.0,819.6010000000001,2061.663,0.0,2.665,-0.01,372.0,8.157,,,,,,,793.0,428.0,7.398,3.9930000000000003,1467.0,0.494,0.003,333.3,tests performed,172014.0,89179.0,82835.0,40725.0,29.0,23.0,160.47,83.19,77.28,1.37,215.0,9.0,0.008,25.93,107195.0,584.8,41.2,13.085,7.452000000000001,35973.781,1.8,341.01,11.62,1.5,52.1,94.04299999999999,4.2,76.29,0.7759999999999999,352.2,26.0,11.85,3285.6010079999996
196,32500,CAN,North America,Canada,2022-06-28,3945493.0,3435.0,2271.714,41888.0,10.0,16.570999999999998,103643.53300000001,90.23299999999999,59.675,1100.349,0.263,0.435,1.12,211.0,5.542999999999999,3478.0,91.363,,,760.0,65.335,62177630.0,75648.0,1633.3339999999998,1.9869999999999999,27030.0,0.71,0.0874,11.4,tests performed,86226020.0,32775674.0,31444805.0,22005541.0,10107.0,23279.0,226.51,86.1,82.6,57.81,612.0,1294.0,0.003,25.93,38067913.0,4.037,41.4,16.984,10.797,44017.59099999999,0.5,105.59899999999999,7.37,12.0,16.6,2.735,2.5,82.43,0.929,15846.7,2.65,-9.19,416.2744619
197,127447,NCL,Oceania,New Caledonia,2022-06-28,64201.0,686.0,117.429,313.0,0.0,0.0,222752.301,2380.151,407.431,1085.987,0.0,0.0,1.21,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,30687346.0,6207.0,1786.943,0.361,4928.0,0.287,0.685,1.5,tests performed,461709.0,188411.0,180351.0,92947.0,144666.0,29.0,160.19,65.37,62.57,32.25,101.0,4.0,0.001,19.44,288217.0,15.342,33.4,9.954,6.489,48472.545,15.0,109.361,23.36,24.4,27.3,47.782,3.32,77.55,0.9440000000000001,-89.2,-5.43,-4.34,-309.4890308
198,167235,KOR,Asia,South Korea,2022-06-28,18349756.0,10437.0,7345.0,24537.0,7.0,9.0,357658.906,203.43,143.16299999999998,478.256,0.136,0.175,1.14,62.0,1.208,1725.0,28.73,42.0,0.8190000000000001,429.0,8.362,100269452.0,145445.0,1954.3729999999998,2.835,116619.0,2.273,0.0687,14.5,people tested,125952412.0,45068084.0,44627629.0,37773341.0,12802.0,11417.0,245.5,87.84,86.98,73.62,223.0,275.0,0.001,13.89,51305184.0,527.967,43.4,13.914000000000001,8.622,35938.373999999996,0.2,85.99799999999999,6.8,6.2,40.9,43.993,12.27,83.03,0.9159999999999999,38323.1,5.28,18.0,746.9635037
199,160976,SGP,Asia,Singapore,2022-06-28,1425171.0,11504.0,6725.857,1410.0,1.0,0.7140000000000001,261326.647,2109.4320000000002,1233.288,258.545,0.183,0.131,1.38,7.0,1.0190000000000001,118.0,17.172,18.0,3.301,704.0,129.089,428517.0,24000.0,52.635,4.401,24000.0,4.401,0.1627,6.1,samples tested,14225122.0,5019556.0,4997156.0,4208410.0,2675.0,2928.0,260.84,92.04,91.63,77.17,537.0,177.0,0.003,41.67,5453600.0,7915.731,42.4,12.922,7.0489999999999995,85535.383,52.2,92.243,10.99,5.2,28.3,19.275,2.4,83.62,0.938,2868.1,5.71,34.08,525.909491
200,57543,ETH,Africa,Ethiopia,2022-06-28,488108.0,425.0,437.286,7535.0,3.0,1.429,4140.852,3.605,3.71,63.923,0.025,0.012,0.65,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,5024643.0,4118.0,42.626000000000005,0.035,4906.0,0.042,0.1325,7.5,tests performed,49687694.0,44365594.0,37906419.0,1836576.0,159930.0,2808915.0,42.15,37.64,32.16,1.56,23829.0,2140688.0,1.8159999999999998,25.0,117876226.0,104.95700000000001,19.8,3.5260000000000002,2.063,1729.9270000000001,26.7,182.63400000000001,7.47,0.4,8.5,7.96,0.3,66.6,0.485,3805.5,9.78,12.82,2871.66802
201,168056,SSD,Africa,South Sudan,2022-06-28,17722.0,25.0,3.571,138.0,0.0,0.0,1557.105,2.197,0.314,12.125,0.0,0.0,0.47,59.0,1.15,1725.0,28.73,42.0,0.8190000000000001,413.0,8.05,410280.0,798.0,36.048,0.07,578.0,0.051,0.0131,76.3,tests performed,1226772.0,1164135.0,1122087.0,37830478.0,4158.0,1774.0,10.78,10.23,9.86,73.74,156.0,0.0,0.0,16.67,11381377.0,527.967,19.2,3.4410000000000003,2.032,1569.888,0.2,280.775,10.43,6.2,40.9,43.993,12.27,57.85,0.433,38323.1,5.28,18.0,746.9635037
202,163125,SVN,Europe,Slovenia,2022-06-28,1036653.0,1233.0,654.429,6651.0,2.0,0.7140000000000001,498697.037,593.153,314.822,3199.56,0.9620000000000001,0.344,1.45,11.0,5.292000000000001,62.0,29.826,7.0,3.319,43.0,20.863000000000003,5336373.0,3998.0,2567.14,1.923,3172.0,1.526,0.128,7.8,tests performed,2996026.0,1265761.0,1222151.0,657398.0,103.0,100.0,144.13,60.89,58.79,31.63,48.0,7.0,0.0,11.11,2078723.0,102.619,44.5,19.062,12.93,31400.84,0.7,153.493,7.25,20.1,25.0,19.275,4.5,81.32,0.917,5202.5,10.13,-6.54,2502.73846
203,170675,SDN,Africa,Sudan,2022-06-28,62551.0,0.0,2.571,4951.0,0.0,0.14300000000000002,1392.828,0.0,0.057,110.244,0.0,0.003,0.74,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,562941.0,1111.0,12.535,0.052000000000000005,1204.0,0.055999999999999994,0.0083,120.4,tests performed,8179010.0,6651268.0,4536964.0,50234.0,6534.0,26277.0,18.21,14.81,10.1,0.11,585.0,31370.0,0.07,13.89,44909351.0,23.258000000000003,19.7,3.548,2.0340000000000003,4466.5070000000005,0.7,431.38800000000003,15.67,0.3,27.0,23.436999999999998,0.8,65.31,0.51,104463.1,10.09,5.53,2234.733736
204,129980,NER,Africa,Niger,2022-06-28,9031.0,0.0,0.0,310.0,0.0,0.0,359.36,0.0,0.0,12.335,0.0,0.0,0.05,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,254538.0,374.0,10.129,0.015,260.0,0.01,0.0115,86.7,tests performed,3530154.0,3330202.0,2603341.0,2756062.0,7377.0,118094.0,14.05,13.25,10.36,53.76,4699.0,161635.0,0.643,5.56,25130810.0,16.955,15.1,2.553,1.3780000000000001,926.0,44.5,238.33900000000003,2.42,0.1,15.4,8.978,0.3,62.42,0.39399999999999996,8148.4,31.97,5.18,1215.747423
205,52457,EGY,Africa,Egypt,2022-06-28,515645.0,0.0,0.0,24723.0,0.0,0.14300000000000002,4945.84,0.0,0.0,237.132,0.0,0.001,0.0,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,11954884.0,2817.0,114.666,0.157,194420.0,1.865,0.0,371.0,tests performed,90374411.0,48283385.0,35136269.0,5217106.0,78722.0,225245.0,86.68,46.31,33.7,5.0,2160.0,167947.0,0.161,40.74,104258327.0,97.999,25.3,5.159,2.891,10550.206,1.3,525.432,17.31,0.2,50.1,89.82700000000001,1.6,71.99,0.7070000000000001,307916.8,25.09,41.63,2953.4024649999997
206,133640,MKD,Europe,North Macedonia,2022-06-28,313708.0,168.0,94.0,9322.0,0.0,0.0,150628.451,80.666,45.135,4476.004,0.0,0.0,1.55,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,2074132.0,1124.0,995.905,0.54,792.0,0.38,0.0743,13.5,tests performed,1850145.0,853927.0,837453.0,158765.0,3869.0,21.0,88.84,41.0,40.21,7.62,10.0,4.0,0.0,40.74,2082661.0,82.6,39.1,13.26,8.16,13111.214,5.0,322.688,10.08,0.6,10.8,41.949,4.28,75.8,0.774,16133.6,35.44,22.15,7746.627992000001
207,166340,OWID_SAM,Africa,South America,2022-06-28,59432312.0,86498.0,76671.571,1304132.0,348.0,268.42900000000003,136858.779,199.185,176.55700000000002,3003.112,0.8009999999999999,0.618,0.44,202.0,3.364,1725.0,28.73,7.0,3.319,470.0,7.827999999999999,25637671.0,19244.0,426.996,0.321,14296.0,0.23800000000000002,0.0726,13.8,people tested,887323953.0,367938567.0,328824995.0,203404263.0,1608383.0,703712.0,204.33,84.73,75.72,46.84,1620.0,28141.0,0.006,11.11,434260137.0,46.754,27.3,5.343999999999999,3.053,12294.876,18.9,200.38,5.52,8.1,33.2,43.993,2.32,64.13,0.7090000000000001,272670.6,21.46,10.13,4541.331371
208,171518,SUR,South America,Suriname,2022-06-28,80864.0,47.0,6.7139999999999995,1369.0,10.0,1.429,136641.219,79.419,11.345999999999998,2313.2889999999998,16.898,2.414,1.05,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,84184.0,165.0,142.251,0.27899999999999997,24.0,0.040999999999999995,0.491,2.0,tests performed,505699.0,267820.0,237879.0,48889.0,398.0,14.0,85.45,45.26,40.2,8.26,24.0,6.0,0.001,44.44,591798.0,3.612,29.6,6.933,4.229,13767.118999999999,0.7,258.314,12.54,7.4,42.9,67.779,3.1,71.68,0.738,48.2,1.23,14.57,81.44670986
209,61893,FJI,Oceania,Fiji,2022-06-28,65558.0,0.0,28.143,865.0,0.0,0.0,72608.343,0.0,31.169,958.025,0.0,0.0,1.66,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,558519.0,567.0,618.5840000000001,0.628,765.0,0.847,0.6621,1.5,tests performed,1609748.0,706496.0,635168.0,134042.0,28295.0,62.0,178.29,78.25,70.35,14.85,69.0,26.0,0.003,57.41,902899.0,49.562,28.6,6.224,3.284,8702.975,1.4,412.82,14.49,10.2,34.8,7.96,2.3,67.44,0.743,-38.6,-3.8,10.79,-786.903961
210,38470,COL,South America,Colombia,2022-06-28,6151354.0,0.0,2813.857,139970.0,0.0,7.428999999999999,119989.332,0.0,54.888000000000005,2730.278,0.0,0.145,0.6,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,35241195.0,9497.0,687.421,0.185,18395.0,0.359,0.085,11.8,tests performed,85767160.0,42418509.0,36180137.0,12964054.0,18933.0,43920.0,167.3,82.74,70.57,25.29,857.0,3796.0,0.006999999999999999,25.93,51265841.0,44.223,32.2,7.646,4.312,13254.948999999999,4.5,124.24,7.44,4.7,13.5,65.38600000000001,1.71,77.29,0.767,180760.5,29.56,2.99,3525.944303
211,138360,PLW,Oceania,Palau,2022-06-28,5220.0,19.0,3.8569999999999998,6.0,0.0,0.0,287223.506,1045.45,212.234,330.142,0.0,0.0,0.95,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,59627.0,31201.0,3280.8959999999997,0.139,116.0,6.382999999999999,0.0345,29.0,tests performed,273365003.0,137369525.0,127262916.0,26505821.0,943523.0,880651.0,121.39,61.0,56.51,11.77,3911.0,71679.0,0.032,77.78,18174.0,47.236999999999995,23.5,4.495,2.78,13240.405,4.0,423.031,15.89,7.7,22.7,59.607,4.8,73.7,0.826,4286.8,18.62,-6.95,820.6952745
212,146976,QAT,Asia,Qatar,2022-06-28,381269.0,739.0,636.857,679.0,0.0,0.14300000000000002,130102.671,252.173,217.31900000000002,231.699,0.0,0.049,1.13,85.0,8.36,1743.0,171.421,9.0,1.669,234.0,42.846000000000004,7574423.0,14144.0,2584.665,4.8260000000000005,14321.0,4.887,0.23800000000000002,4.2,tests performed,6974984.0,2646349.0,2646349.0,1682286.0,4802.0,2828.0,238.01,90.3,90.3,57.41,965.0,433.0,0.015,40.74,2930524.0,227.322,31.9,1.307,0.617,116935.6,0.5,176.69,16.52,0.8,26.9,78.46300000000001,1.2,80.23,0.848,1147.4,22.0,20.31,391.5340738
213,151906,LCA,North America,Saint Lucia,2022-06-28,26984.0,14.0,29.143,380.0,0.0,0.5710000000000001,146333.263,75.921,158.041,2060.726,0.0,3.0989999999999998,0.85,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,208560.0,117.0,1131.013,0.634,145.0,0.7859999999999999,0.1488,6.7,tests performed,121397.0,59560.0,54255.0,7582.0,71.0,29.0,65.83,32.3,29.42,4.11,157.0,10.0,0.005,66.67,184401.0,293.187,34.9,9.721,6.405,12951.839,56.0,204.62,11.62,4.7,21.0,87.20200000000001,1.3,76.2,0.759,12.2,3.33,8.11,227.8414821
214,82996,IND,Asia,India,2022-06-28,43433345.0,14506.0,14528.571000000002,525077.0,30.0,24.857,31170.564,10.41,10.427,376.829,0.022000000000000002,0.018000000000000002,1.22,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,858526354.0,388641.0,616.134,0.27899999999999997,442229.0,0.317,0.0278,35.9,samples tested,1972351905.0,1016119457.0,912802491.0,43429957.0,1882155.0,1418670.0,141.55,72.92,65.51,3.12,1018.0,171902.0,0.012,37.04,1393409033.0,450.41900000000004,28.2,5.989,3.4139999999999997,6426.674,21.2,282.28,10.39,1.9,20.6,59.55,0.53,69.66,0.645,213.9,4.1,13.64,580.0017353999999
215,72186,GRD,North America,Grenada,2022-06-28,18270.0,0.0,9.286,232.0,0.0,0.0,161659.957,0.0,82.164,2052.825,0.0,0.0,1.15,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,169195.0,527.0,1497.102,4.663,206.0,1.8230000000000002,0.1172,8.5,tests performed,89070.0,43743.0,38547.0,6780.0,694.0,8.0,78.81,38.71,34.11,6.0,71.0,2.0,0.002,31.48,113015.0,317.132,29.4,7.303999999999999,5.021,13593.877,1.5,243.96400000000003,10.71,35.3,52.0,41.047,3.7,72.4,0.779,-82.9,-6.6,-55.8,-1457.761834
216,43076,HRV,Europe,Croatia,2022-06-28,1146183.0,662.0,548.286,16059.0,7.0,3.429,280813.16,162.189,134.329,3934.4320000000002,1.715,0.84,1.57,177.0,9.213,190.0,46.55,82.0,4.268,121.0,29.73,4922712.0,5587.0,1206.057,1.369,1521.0,0.373,0.2363,4.2,people tested,5257861.0,2315438.0,2245066.0,594785.0,208.0,129.0,128.82,56.73,55.0,14.57,32.0,21.0,0.001,14.81,4081657.0,73.726,44.0,19.724,13.052999999999999,22669.797000000002,0.7,253.782,5.59,34.3,39.9,19.351,5.54,78.49,0.851,19749.3,16.18,-5.95,4838.549638
217,137182,OMN,Asia,Oman,2022-06-28,390244.0,0.0,0.0,4628.0,0.0,0.0,74711.068,0.0,0.0,886.0169999999999,0.0,0.0,0.0,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,2031675.0,1943.0,388.958,0.355,622.0,0.11900000000000001,0.006,167.5,tests performed,7068002.0,3266729.0,3039478.0,761795.0,3650.0,475.0,135.31,62.54,58.19,14.58,91.0,92.0,0.002,14.81,5223376.0,14.98,30.7,2.355,1.53,37960.709,0.2,266.342,12.61,0.5,15.6,97.4,1.6,77.86,0.813,4286.8,18.62,-6.95,820.6952745
218,143485,PHL,Asia,Philippines,2022-06-28,3702319.0,576.0,731.2860000000001,60531.0,13.0,7.857,33340.135,5.187,6.585,545.094,0.11699999999999999,0.071,1.46,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,28472887.0,21192.0,256.404,0.191,19245.0,0.17300000000000001,0.0093,107.8,people tested,153852751.0,75654809.0,70845546.0,14880868.0,227791.0,140975.0,138.55,68.13,63.8,13.4,1270.0,52634.0,0.047,37.96,111046910.0,351.87300000000005,25.2,4.803,2.661,7599.188,3.5,370.43699999999995,7.07,7.8,40.8,78.46300000000001,1.0,71.23,0.718,204049.6,16.16,-9.94,1837.5081309999998
219,105210,OWID_LIC,Europe,Low income,2022-06-28,1859670.0,701.0,889.2860000000001,43271.0,5.0,6.2860000000000005,2795.87,1.054,1.337,65.055,0.008,0.009000000000000001,1.54,1.0,0.536,58.0,21.561999999999998,10.0,5.282,1.0,25.605,8718186.0,136.0,3241.1279999999997,0.051,751.0,0.27899999999999997,0.212,4.7,tests performed,187572268.0,134160718.0,108982218.0,7525232.0,110861.0,53135.0,28.2,20.17,16.38,1.13,80.0,51996.0,0.008,11.11,665149040.0,45.135,43.5,19.002,13.777999999999999,29524.265,0.7,342.98900000000003,3.67,21.3,38.0,1.188,6.56,75.93,0.882,19277.5,21.09,-6.35,7166.7245379999995
220,62781,FIN,Europe,Finland,2022-06-28,1133597.0,0.0,1179.286,4832.0,0.0,8.714,204312.048,0.0,212.547,870.888,0.0,1.571,1.26,15.0,2.7039999999999997,464.0,83.62799999999999,3.0,2.256,79.0,59.395,11038890.0,4591.0,1989.5770000000002,0.8270000000000001,4001.0,0.721,0.331,3.0,tests performed,12159454.0,4516731.0,4333820.0,3308903.0,5922.0,2599.0,219.15,81.41,78.11,59.64,468.0,88.0,0.002,26.85,5548361.0,18.136,42.8,21.228,13.264000000000001,40585.721,1.4,153.507,5.76,18.3,22.6,7.96,3.28,81.91,0.938,4932.8,3.79,7.25,889.0553445
221,104347,LTU,Europe,Lithuania,2022-06-28,1160189.0,622.0,256.42900000000003,9170.0,2.0,1.143,431319.153,231.239,95.331,3409.097,0.7440000000000001,0.425,1.48,1.0,0.536,58.0,21.561999999999998,10.0,5.282,1.0,25.605,8718186.0,136.0,3241.1279999999997,0.051,751.0,0.27899999999999997,0.212,4.7,tests performed,4488714.0,1952346.0,1876616.0,934255.0,85.0,69.0,166.88,72.58,69.77,34.73,26.0,13.0,0.0,11.11,2689862.0,45.135,43.5,19.002,13.777999999999999,29524.265,0.7,342.98900000000003,3.67,21.3,38.0,1.188,6.56,75.93,0.882,19277.5,21.09,-6.35,7166.7245379999995
222,45613,CYP,Europe,Cyprus,2022-06-28,504717.0,0.0,1037.5710000000001,1072.0,0.0,0.28600000000000003,563297.08,0.0,1157.997,1196.422,0.0,0.319,0.92,1.0,1.1159999999999999,47.0,52.455,1.0,1.1159999999999999,26.0,29.018,29501771.0,67206.0,32925.9,75.006,67201.0,75.001,0.0256,39.1,tests performed,1788761.0,668493.0,645099.0,475169.0,1437.0,82.0,199.64,74.61,72.0,53.03,92.0,18.0,0.002,14.81,896005.0,127.65700000000001,37.3,13.415999999999999,8.562999999999999,32415.132,0.7,141.171,9.24,19.6,52.7,85.198,3.4,80.98,0.887,1154.2,7.83,-0.57,1288.1624539999998
223,66201,GMB,Africa,Gambia,2022-06-28,12002.0,0.0,0.0,365.0,0.0,0.0,4826.017,0.0,0.0,146.767,0.0,0.0,0.03,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,155686.0,2256.0,62.602,0.99,68.0,0.027000000000000003,0.0105,95.2,tests performed,812811.0,449464.0,354340.0,9007.0,429.0,3315.0,32.68,18.07,14.25,0.36,1333.0,0.0,0.0,13.89,2486937.0,207.56599999999997,17.5,2.339,1.4169999999999998,1561.767,10.1,331.43,1.91,0.7,31.2,7.876,1.1,62.05,0.496,546.2,16.03,-9.97,1933.2186570000001
224,73884,GTM,North America,Guatemala,2022-06-28,901300.0,3838.0,2940.7140000000004,18516.0,12.0,14.571,49386.65900000001,210.303,161.136,1014.5830000000001,0.6579999999999999,0.7979999999999999,1.52,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,4067775.0,10381.0,222.893,0.569,10008.0,0.5479999999999999,0.1911,5.2,people tested,17860168.0,8294525.0,6323041.0,3242602.0,48046.0,15303.0,97.86,45.45,34.65,17.77,839.0,2118.0,0.012,37.5,18249868.0,157.834,22.9,4.694,3.016,7423.808000000001,8.7,155.898,10.18,35.3,52.0,76.665,0.6,74.3,0.6629999999999999,43113.3,25.35,10.04,2362.38969
225,79503,HND,North America,Honduras,2022-06-28,426879.0,0.0,112.0,10905.0,0.0,0.14300000000000002,42420.675,0.0,11.13,1083.674,0.0,0.013999999999999999,1.0,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,206594.0,263.0,17.9,0.023,197.0,0.017,0.0363,27.6,tests performed,14404631.0,6293459.0,5368598.0,2742949.0,81065.0,5365.0,143.14,62.54,53.35,27.26,533.0,880.0,0.009000000000000001,34.26,10062994.0,82.805,24.9,4.652,2.883,4541.795,16.0,240.208,7.21,2.0,23.1,84.169,0.7,75.27,0.634,43113.3,25.35,10.04,2362.38969
226,68794,GHA,Africa,Ghana,2022-06-28,165749.0,0.0,226.429,1449.0,0.0,0.14300000000000002,5223.380999999999,0.0,7.136,45.663000000000004,0.0,0.005,1.01,1000.0,11.919,16108.0,238.91299999999998,945.0,11.263,4313.0,51.406000000000006,2465238.0,2208.0,77.689,0.07,1210.0,0.038,0.2632,3.8,tests performed,18643437.0,10443364.0,7193153.0,1006920.0,60270.0,27848.0,58.75,32.91,22.67,3.17,878.0,13052.0,0.040999999999999995,51.85,31732128.0,126.719,21.1,3.385,1.9480000000000002,4227.63,12.0,298.245,4.97,0.3,7.7,41.047,0.9,64.07,0.611,90163.5,3.81,-1.17,1074.648318
227,110420,MYS,Asia,Malaysia,2022-06-28,4560583.0,2025.0,2279.571,35758.0,4.0,3.0,139143.149,61.783,69.55,1090.975,0.122,0.092,1.09,37.0,1.129,622.0,18.977,10.0,5.282,1120.0,34.171,60647556.0,29997.0,1850.354,0.915,36861.0,1.125,0.0555,18.0,people tested,71239928.0,28040272.0,27272733.0,16141925.0,3120.0,8812.0,217.35,85.55,83.21,49.25,269.0,1128.0,0.003,47.22,32776195.0,96.25399999999999,29.9,6.292999999999999,3.407,26808.164,0.1,260.942,16.74,1.0,42.4,8.704,1.9,76.16,0.81,1429.6,0.45,30.64,43.61702144
228,150231,SHN,Africa,Saint Helena,2022-06-28,4.0,0.0,0.0,1460.0,0.0,0.14300000000000002,656.2760000000001,0.0,0.0,109.969,0.0,0.011000000000000001,1.44,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,5534918.0,3839.0,416.895,0.289,4661.0,0.35100000000000003,0.008,125.7,samples tested,7892.0,4361.0,3531.0,4945264.0,211071.0,97.0,129.48,71.55,57.93,37.25,15915.0,0.0,0.0,66.67,6095.0,494.869,20.3,2.9739999999999998,1.642,1854.211,56.0,191.375,4.28,4.7,21.0,4.617,8.05,80.56,0.5429999999999999,1217716.1,29.72,2.89,8345.55017
229,75248,GIN,Africa,Guinea,2022-06-28,36817.0,0.0,0.0,442.0,0.0,0.0,2727.743,0.0,0.0,32.747,0.0,0.0,0.01,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,708410.0,10381.0,52.486000000000004,0.569,1193.0,0.08800000000000001,0.0,72.1,tests performed,6329141.0,4550563.0,2639658.0,273.0,522.0,4216.0,46.89,33.71,19.56,0.0,312.0,1925.0,0.013999999999999999,49.07,13497237.0,51.755,19.0,3.135,1.733,1998.9260000000002,35.3,336.717,2.42,35.3,52.0,17.45,0.3,61.6,0.47700000000000004,43113.3,25.35,10.04,2362.38969
230,37619,CHN,Asia,China,2022-06-28,888409.0,106.0,117.0,5226.0,0.0,0.0,615.15,0.073,0.081,3.6189999999999998,0.0,0.0,1.31,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,9214000000.0,58711.0,6379.932,3.056,14769984.0,10.227,0.0016,637.8,tests performed,3401112000.0,1294045000.0,1260501000.0,790025000.0,711000.0,666571.0,235.5,89.6,87.28,54.7,462.0,153571.0,0.011000000000000001,79.17,1444216102.0,147.674,38.7,10.640999999999998,5.928999999999999,15308.712,0.7,261.899,9.74,1.9,48.4,5.818,4.34,76.91,0.7609999999999999,51537.3,19.01,15.69,2682.507232
231,14664,BHR,Asia,Bahrain,2022-06-28,622261.0,1834.0,1815.4289999999999,1492.0,0.0,0.14300000000000002,355924.48600000003,1049.022,1038.399,853.403,0.0,0.08199999999999999,1.12,50.0,5.529,874.0,96.649,,,,,9969082.0,7215.0,5702.174,4.127,6220.0,3.5580000000000003,0.2814,3.6,units unclear,3453414.0,1238289.0,1222944.0,992181.0,362.0,302.0,197.53,70.83,69.95,56.75,173.0,50.0,0.003,17.59,1748295.0,1935.9070000000002,32.4,2.372,1.3869999999999998,43290.705,0.7,151.689,16.52,5.8,37.6,83.241,2.0,77.29,0.852,43744.8,33.01,2.0,4278.913044
232,5971,AIA,North America,Anguilla,2022-06-28,3456.0,0.0,6.428999999999999,9.0,0.0,0.0,228495.86800000002,0.0,425.03,595.0409999999999,0.0,0.0,0.01,0.0,0.0,,,,,,,51382.0,1459.0,3397.157,0.043,169.0,11.174000000000001,0.0803,12.5,tests performed,23926.0,10813.0,10183.0,2930.0,1421.0,19.0,158.19,71.49,67.33,19.37,1256.0,3.0,0.02,22.22,15125.0,23.89,16.8,2.405,1.3619999999999999,5819.495,0.5,276.045,3.94,29.0,37.8,26.664,1.9,81.88,0.581,89.6,27.2,31.41,1158.311141
233,35023,CAF,Africa,Central African Republic,2022-06-28,14649.0,0.0,0.0,113.0,0.0,0.0,2977.447,0.0,0.0,22.968000000000004,0.0,0.0,0.0,220.0,5.779,3505.0,92.072,,,760.0,65.335,94759.0,2691.0,19.26,40.467,142.0,0.028999999999999998,0.0,1.8,tests performed,1217399.0,1124848.0,1068464.0,23536.0,12887.0,1694.0,24.74,22.86,21.72,35.39,344.0,1694.0,0.034,18.52,4919987.0,7.479,18.3,3.655,2.251,661.24,0.5,435.727,6.1,2.1,16.5,16.602999999999998,1.0,53.28,0.397,188.6,6.81,13.94,335.6463149
234,35861,TCD,Africa,Chad,2022-06-28,7425.0,0.0,0.14300000000000002,193.0,0.0,0.0,438.96,0.0,0.008,11.41,0.0,0.0,0.39,220.0,5.779,3505.0,92.072,,,760.0,65.335,218873.0,2691.0,12.94,40.467,129.0,0.008,0.0044,225.9,tests performed,2356138.0,2218493.0,2093522.0,23536.0,12887.0,72.0,13.93,13.12,12.38,35.39,4.0,147.0,0.001,15.74,16914985.0,11.833,16.7,2.4859999999999998,1.446,1768.1529999999998,38.4,280.995,6.1,2.1,16.5,5.818,1.0,54.24,0.39799999999999996,188.6,6.81,13.94,335.6463149
235,157554,SEN,Africa,Senegal,2022-06-28,86289.0,3.0,8.286,1968.0,0.0,0.0,5017.879,0.174,0.48200000000000004,114.443,0.0,0.0,1.27,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,1102099.0,814.0,64.089,0.047,752.0,0.044000000000000004,0.0034,292.5,tests performed,2523856.0,2300648.0,1070503.0,7027.0,7129.0,0.0,14.68,13.38,6.23,0.04,0.0,59633.0,0.34700000000000003,26.85,17196308.0,82.32799999999999,18.7,3.008,1.796,2470.58,38.0,241.21900000000002,2.42,0.4,16.6,20.859,2.7,67.94,0.512,133.0,21.63,-19.49,3910.614525
236,86459,IRQ,Asia,Iraq,2022-06-28,2343265.0,2212.0,1403.1429999999998,25237.0,4.0,1.143,56903.884000000005,53.716,34.074,612.856,0.09699999999999999,0.027999999999999997,2.05,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,19002710.0,20703.0,461.462,0.503,11852.0,0.28800000000000003,0.0092,109.2,tests performed,18636865.0,10833447.0,7609777.0,193641.0,16843.0,6803.0,45.26,26.31,18.48,0.47,165.0,3625.0,0.009000000000000001,35.19,41179351.0,88.125,20.0,3.1860000000000004,1.9569999999999999,15663.986,2.5,218.612,8.83,0.8,21.1,94.57600000000001,1.4,70.6,0.674,261045.6,29.95,27.79,3070.085933
237,12961,AZE,Asia,Azerbaijan,2022-06-28,793176.0,0.0,20.0,9717.0,0.0,0.14300000000000002,77584.79,0.0,1.956,950.472,0.0,0.013999999999999999,1.28,50.0,5.529,874.0,96.649,,,,,6947820.0,6872.0,679.6030000000001,0.672,2341.0,0.22899999999999998,0.017,58.9,tests performed,13762091.0,5353536.0,4853215.0,3306428.0,1475.0,1387.0,134.61,52.37,47.47,32.34,136.0,244.0,0.002,36.11,10223344.0,119.309,32.4,6.018,3.8710000000000004,15847.419,0.7,559.812,7.11,0.3,42.5,83.241,4.7,73.0,0.7559999999999999,43744.8,33.01,2.0,4278.913044
238,151063,KNA,North America,Saint Kitts and Nevis,2022-06-28,5992.0,27.0,11.286,43.0,0.0,0.0,111903.784,504.23900000000003,210.767,803.048,0.0,0.0,2.07,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,94440.0,87.0,1763.717,1.625,609.0,11.373,0.0119,84.1,people tested,60467.0,31162.0,26294.0,3011.0,626.0,18.0,112.93,58.2,49.11,5.62,336.0,9.0,0.017,66.67,53546.0,212.865,20.3,2.9739999999999998,1.642,24654.385,56.0,191.375,12.84,4.7,21.0,4.617,2.3,76.23,0.779,12.2,3.33,8.11,227.8414821
239,41369,CRI,North America,Costa Rica,2022-06-28,904934.0,0.0,0.0,8525.0,0.0,0.0,176089.641,0.0,0.0,1658.866,0.0,0.0,0.01,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,3677525.0,8616.0,715.6039999999999,1.6769999999999998,11820.0,2.3,0.17600000000000002,5.7,people tested,11017624.0,4437629.0,4143017.0,2299181.0,1486.0,17890.0,214.39,86.35,80.62,44.74,3481.0,1031.0,0.02,11.11,5139053.0,96.079,33.6,9.468,5.694,15524.995,1.3,137.97299999999998,8.78,6.4,17.4,83.84100000000001,1.13,80.28,0.81,5946.8,11.58,-1.44,1157.17818
240,179792,TON,Oceania,Tonga,2022-06-28,12301.0,0.0,31.714000000000002,12.0,0.0,0.0,115222.136,0.0,297.064,112.40299999999999,0.0,0.0,0.2,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,749695.0,877.0,88.426,0.10300000000000001,377.0,0.044000000000000004,0.0235,42.6,tests performed,242634.0,108263.0,97151.0,37220.0,7881.0,151.0,227.27,101.41,91.0,34.86,1414.0,0.0,0.0,44.44,106759.0,150.028,22.3,5.82,4.032,5425.621,49.2,227.49,15.42,11.8,44.4,10.475,2.6,70.91,0.725,97687.9,8.02,19.55,1396.5221060000001
241,159256,SYC,Africa,Seychelles,2022-06-28,44669.0,0.0,21.143,167.0,0.0,0.0,451612.57700000005,0.0,213.75900000000001,1688.404,0.0,0.0,0.9,7.0,1.0190000000000001,118.0,17.172,9.0,1.669,7292.0,49.975,9852899.0,7466.0,1433.869,1.087,6317.0,0.919,0.0594,16.8,people tested,221597.0,84943.0,80726.0,41022.0,1315.0,0.0,224.04,85.88,81.62,41.47,0.0,4.0,0.004,37.04,98910.0,208.354,36.2,8.606,5.586,26382.287,1.1,242.648,10.55,7.1,35.7,97.719,3.6,73.4,0.7959999999999999,-110.2,-6.47,3.73,-1114.1441710000001
242,106105,OWID_LMC,Europe,Lower middle income,2022-06-28,91312010.0,30888.0,26295.142999999996,1310983.0,57.0,50.571000000000005,27415.652000000002,9.274,7.895,393.611,0.017,0.015,1.54,1.0,0.536,58.0,21.561999999999998,10.0,5.282,1.0,25.605,8718186.0,136.0,3241.1279999999997,0.051,751.0,0.27899999999999997,0.212,4.7,tests performed,4178016278.0,2067946501.0,1826332764.0,316433494.0,4496005.0,3749092.0,125.44,62.09,54.83,9.5,1126.0,589362.0,0.018000000000000002,11.11,3330652550.0,45.135,43.5,19.002,13.777999999999999,29524.265,0.7,342.98900000000003,3.67,21.3,38.0,1.188,6.56,75.93,0.882,19277.5,21.09,-6.35,7166.7245379999995
243,186457,ARE,Asia,United Arab Emirates,2022-06-28,942253.0,1750.0,1682.5710000000001,2313.0,0.0,0.5710000000000001,94309.396,175.15599999999998,168.407,231.50599999999997,0.0,0.057,1.16,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,168522672.0,325016.0,16867.308,32.531,313964.0,31.424,0.0048,208.0,tests performed,24922054.0,9991089.0,9792266.0,5138699.0,6152.0,795.0,249.44,100.0,98.01,51.43,80.0,0.0,0.0,35.19,9991083.0,112.44200000000001,34.0,1.1440000000000001,0.526,67293.483,0.1,317.84,17.26,1.2,37.4,21.221999999999998,1.2,77.97,0.89,179972.2,14.89,1.92,4140.449928
244,113742,MHL,Oceania,Marshall Islands,2022-06-28,18.0,0.0,0.0,748.0,0.0,1.143,301.922,0.0,0.0,1449.332,0.0,2.214,1.34,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,3184.0,392.0,53.407,6.575,14.0,0.235,0.0,30.3,tests performed,1317628.0,476936.0,469857.0,405198.0,28.0,277.0,255.3,92.41,91.04,78.51,537.0,17.0,0.003,13.89,59618.0,295.15,42.4,19.426,11.324000000000002,3819.202,0.2,557.793,30.53,20.9,30.2,82.50200000000001,2.7,73.7,0.7040000000000001,539.8,5.7,-1.02,1045.921333
245,154164,WSM,Oceania,Samoa,2022-06-28,14906.0,63.0,19.143,29.0,0.0,0.14300000000000002,74476.37700000001,314.77299999999997,95.645,144.89600000000002,0.0,0.7140000000000001,0.84,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,108388.0,59.0,974.1080000000001,0.53,50.0,0.449,0.2257,4.4,tests performed,494684.0,229291.0,198149.0,67244.0,20.0,851.0,247.16,114.56,99.0,33.6,4252.0,45.0,0.022000000000000002,66.67,200144.0,69.413,22.0,5.606,3.5639999999999996,6021.557,56.0,348.977,9.21,16.7,38.1,87.20200000000001,2.6,73.32,0.715,12.2,3.33,8.11,227.8414821
246,148722,RUS,Europe,Russia,2022-06-28,18155165.0,2513.0,2918.571,373297.0,57.0,59.571000000000005,124425.42300000001,17.223,20.002,2558.37,0.391,0.408,0.97,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7408.0,50.77,295244836.0,331438.0,2023.444,2.271,139842.0,0.958,0.0283,35.3,tests performed,168877773.0,81771142.0,74641991.0,14703377.0,4116.0,95101.0,115.74,56.04,51.16,10.08,652.0,28811.0,0.02,25.93,145912022.0,8.823,39.6,14.177999999999999,9.392999999999999,24765.953999999998,0.1,431.29699999999997,6.18,23.4,58.3,78.46300000000001,8.05,72.58,0.8240000000000001,1217716.1,29.72,2.89,8345.55017
247,179237,TGO,Africa,Togo,2022-06-28,37361.0,0.0,14.0,275.0,0.0,0.28600000000000003,4406.692,0.0,1.651,32.436,0.0,0.034,1.38,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,749695.0,877.0,88.426,0.10300000000000001,377.0,0.044000000000000004,0.0235,42.6,tests performed,3290821.0,2092750.0,1557538.0,87104.0,7881.0,0.0,38.81,24.68,18.37,1.03,0.0,428.0,0.005,37.96,8478242.0,143.366,19.4,2.839,1.525,1429.8129999999999,49.2,280.033,6.15,0.9,14.2,10.475,0.7,61.04,0.515,97687.9,8.02,19.55,1396.5221060000001
248,183535,TCA,North America,Turks and Caicos Islands,2022-06-28,6211.0,0.0,3.1430000000000002,36.0,0.0,0.0,158338.857,0.0,80.122,917.7589999999999,0.0,0.0,0.06,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,163164533.0,128854.0,1918.618,1.515,134604.0,1.5830000000000002,0.0077,130.4,tests performed,69803.0,31989.0,29963.0,7851.0,5279.0,16.0,177.95,81.55,76.39,20.01,408.0,9.0,0.023,66.67,39226.0,37.312,26.9,4.277,2.541,16389.023,0.2,536.783,7.11,14.1,41.1,100.0,7.4,80.22,0.715,20481.6,16.84,40.84,1715.9856710000001
249,175000,TWN,Asia,Taiwan,2022-06-28,3686338.0,44417.0,42753.857,6448.0,103.0,138.286,154530.99,1861.957,1792.2379999999998,270.3,4.3180000000000005,5.797000000000001,0.84,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,13021521.0,64492.0,545.861,2.7030000000000003,66864.0,2.803,0.7838,1.3,people tested,57744693.0,21172341.0,19324925.0,17247427.0,92312.0,101512.0,242.07,88.75,81.01,72.3,4255.0,2635.0,0.011000000000000001,26.85,23855008.0,214.243,42.2,18.436,8.353,57410.166,0.5,103.95700000000001,5.59,22.6,28.9,70.598,1.5,80.46,0.5670000000000001,-1625.5,-0.37,15.75,-68.14082812
250,81251,HUN,Europe,Hungary,2022-06-28,1925083.0,0.0,280.143,46626.0,0.0,4.571000000000001,199818.417,0.0,29.078000000000003,4839.653,0.0,0.475,1.2,1000.0,11.919,1499.0,155.592,21.0,2.06,1323.0,127.544,10943720.0,39094.0,1135.9289999999999,4.058,4344.0,0.451,0.2219,4.5,tests performed,16530488.0,6411804.0,6198798.0,4189321.0,93527.0,938.0,171.58,66.55,64.34,43.48,97.0,60.0,0.001,11.11,9634162.0,108.04299999999999,43.4,18.577,11.975999999999999,26777.561,0.5,278.296,7.55,26.8,34.8,84.169,7.02,76.88,0.8540000000000001,37165.7,11.92,-2.81,3857.6993
251,141747,PRY,South America,Paraguay,2022-06-28,655532.0,0.0,300.57099999999997,18963.0,0.0,2.286,90798.421,0.0,41.632,2626.585,0.0,0.317,0.08,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,2609819.0,1757.0,361.48900000000003,0.243,1763.0,0.244,0.0654,15.3,tests performed,8890636.0,3944590.0,3451096.0,1494950.0,10430.0,2767.0,123.15,54.64,47.8,20.71,383.0,1677.0,0.023,13.89,7219641.0,17.144000000000002,26.5,6.377999999999999,3.833,8827.01,1.7,199.128,8.27,5.0,21.6,79.602,1.3,74.25,0.728,24508.4,31.67,-9.8,3394.684029
252,63674,FRA,Europe,France,2022-06-28,30886409.0,147351.0,78465.714,149512.0,37.0,40.143,458105.79600000003,2185.5029999999997,1163.8,2217.555,0.5489999999999999,0.595,1.46,898.0,13.319,15496.0,229.83599999999998,526.0,7.8020000000000005,5925.0,87.87899999999999,278234000.0,179427.0,4126.754,2.661,201691.0,2.991,0.22699999999999998,4.4,people tested,145812471.0,54460097.0,52907366.0,39525244.0,108336.0,58077.0,216.27,80.77,78.47,58.62,861.0,1070.0,0.002,23.15,67422000.0,122.57799999999999,42.0,19.718,13.079,38605.671,1.4,86.06,4.77,30.1,35.6,7.96,5.98,82.66,0.9009999999999999,88431.4,5.98,-7.05,1311.610454
253,67061,GEO,Asia,Georgia,2022-06-28,1659371.0,0.0,88.0,16839.0,0.0,0.14300000000000002,416951.16799999995,0.0,22.112,4231.146,0.0,0.036000000000000004,-0.02,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,13652505.0,20318.0,3430.473,5.105,3491.0,0.877,0.0706,14.2,tests performed,2902085.0,1631237.0,1270848.0,80818.0,758.0,266.0,72.92,40.99,31.93,2.03,67.0,159.0,0.004,13.89,3979773.0,65.032,38.7,14.864,10.244000000000002,9745.079,4.2,496.218,7.11,5.3,55.5,7.876,2.6,73.77,0.812,20504.2,22.8,46.06,5152.102896
254,155021,SMR,Europe,San Marino,2022-06-28,17767.0,0.0,28.143,115.0,0.0,0.0,522405.175,0.0,827.488,3381.3579999999997,0.0,0.0,1.13,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,108388.0,59.0,974.1080000000001,0.53,50.0,0.449,0.2257,4.4,tests performed,69338.0,26357.0,23633.0,19348.0,9.0,4.0,203.88,77.5,69.49,56.89,118.0,0.0,0.0,13.89,34010.0,556.6669999999999,22.0,5.606,3.5639999999999996,56861.47,56.0,348.977,5.64,16.7,38.1,87.20200000000001,3.8,84.97,0.715,133.0,21.63,-19.49,3910.614525
255,1728,OWID_AFR,Asia,Africa,2022-06-28,12041335.0,9275.0,6717.143,254960.0,26.0,30.570999999999998,8766.985,6.752999999999999,4.891,185.63,0.019,0.022000000000000002,1.12,,,,,,,,,994894.0,,24.975,,435.0,0.011000000000000001,0.222,4.5,tests performed,561150018.0,343613263.0,269266046.0,30562174.0,636173.0,331460.0,40.86,25.02,19.6,2.23,241.0,215737.0,0.016,11.11,1373486472.0,54.422,18.6,2.5810000000000004,1.337,1803.987,,597.029,9.59,,,37.746,0.5,64.83,0.511,,,,
256,176636,TZA,Africa,Tanzania,2022-06-28,35366.0,0.0,1.714,841.0,0.0,0.14300000000000002,575.072,0.0,0.027999999999999997,13.675,0.0,0.002,0.02,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,455776.0,64492.0,7.4110000000000005,2.7030000000000003,1004.0,0.016,0.0161,62.2,tests performed,8837371.0,7588592.0,4079863.0,3527355.0,113265.0,31068.0,14.37,12.34,6.63,36.18,505.0,39453.0,0.064,8.33,61498438.0,64.699,17.7,3.108,1.874,2683.304,49.1,217.28799999999998,5.75,3.3,26.7,47.953,0.7,65.46,0.529,9879.4,30.17,0.38,1013.3107679999999
257,43921,CUB,North America,Cuba,2022-06-28,1105978.0,28.0,26.143,8529.0,0.0,0.0,97722.836,2.474,2.31,753.612,0.0,0.0,1.09,177.0,9.213,190.0,46.55,82.0,4.268,121.0,29.73,5296762.0,38826.0,468.015,3.431,35601.0,3.1460000000000004,0.0879,11.4,tests performed,38593193.0,10679168.0,9973753.0,7395330.0,34849.0,30603.0,341.0,94.36,88.13,65.34,2704.0,227.0,0.002,18.52,11317498.0,110.40799999999999,43.1,14.738,9.719,22669.797000000002,0.7,190.968,8.27,17.1,53.3,85.198,5.2,78.8,0.7829999999999999,53645.6,23.69,2.89,4740.058271
258,67951,DEU,Europe,Germany,2022-06-28,28048190.0,133950.0,84852.14300000001,141022.0,175.0,80.0,334303.12899999996,1596.535,1011.3430000000001,1680.825,2.086,0.9540000000000001,1.23,981.0,11.692,16108.0,238.91299999999998,932.0,11.107999999999999,5762.0,68.67699999999999,131286804.0,20318.0,1564.7920000000001,5.105,88471.0,1.054,0.418,2.4,tests performed,182747905.0,64701052.0,63346230.0,56994732.0,55154.0,37164.0,217.82,77.12,75.5,67.93,443.0,1223.0,0.001,17.59,83900471.0,237.016,46.6,21.453000000000003,15.957,45229.245,4.2,156.139,8.31,28.2,33.1,7.876,8.0,81.33,0.9470000000000001,90163.5,3.81,-1.17,1074.648318
259,197163,YEM,Asia,Yemen,2022-06-28,11824.0,0.0,0.0,2149.0,0.0,0.0,387.791,0.0,0.0,70.48100000000001,0.0,0.0,0.01,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,336937.0,56715.0,11.050999999999998,0.578,84.0,0.003,0.0,587.4,tests performed,864544.0,697956.0,446120.0,80.0,7669290.0,442.0,2.84,2.29,1.46,0.0,14.0,416.0,0.001,25.93,30490639.0,53.508,20.3,2.9219999999999997,1.5830000000000002,1479.1470000000002,18.8,495.00300000000004,5.35,7.6,29.2,49.542,0.7,66.12,0.47,38486.9,10.93,1.96,1134.110282
260,160082,SLE,Africa,Sierra Leone,2022-06-28,7695.0,1.0,1.0,125.0,0.0,0.0,945.176,0.12300000000000001,0.12300000000000001,15.354000000000001,0.0,0.0,0.71,7.0,1.0190000000000001,118.0,17.172,9.0,1.669,7292.0,49.975,428517.0,7466.0,52.635,1.087,251.0,0.031,0.0011,877.6,tests performed,3493386.0,2621469.0,1893466.0,12864.0,1928.0,52708.0,42.91,32.2,23.26,0.16,6474.0,33976.0,0.41700000000000004,48.15,8141343.0,104.7,19.1,2.5380000000000003,1.285,1390.3,52.2,325.721,2.42,8.8,41.3,19.275,3.6,54.7,0.452,-110.2,-6.47,3.73,-1114.1441710000001
261,64518,PYF,Oceania,French Polynesia,2022-06-28,73268.0,0.0,14.571,649.0,0.0,0.0,259324.54100000003,0.0,51.574,2297.069,0.0,0.0,1.42,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,278234000.0,179427.0,4126.754,2.661,201691.0,2.991,0.22699999999999998,4.4,people tested,453259.0,188352.0,180807.0,84100.0,405.0,125.0,160.43,66.67,63.99,29.77,442.0,125.0,0.044000000000000004,23.15,282534.0,77.324,32.7,7.775,4.593,38605.671,1.4,86.06,22.63,30.1,35.6,7.96,5.98,77.66,0.9009999999999999,546.2,16.03,-9.97,1933.2186570000001
262,114585,MRT,Africa,Mauritania,2022-06-28,59569.0,75.0,35.0,982.0,0.0,0.0,12474.896,15.706,7.33,205.65,0.0,0.0,2.7,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,998154.0,1362.0,209.033,0.285,735.0,0.154,0.0142,70.5,tests performed,2872677.0,1927038.0,1334032.0,216491.0,3777.0,3183.0,60.16,40.36,27.94,4.53,667.0,167.0,0.003,43.52,4775110.0,4.289,20.3,3.138,1.7919999999999998,3597.633,6.0,232.347,2.42,20.9,30.2,15.95,2.7,64.92,0.546,539.8,5.7,-1.02,1045.921333
263,155841,STP,Africa,Sao Tome and Principe,2022-06-28,6043.0,0.0,2.8569999999999998,73.0,0.0,0.0,27054.494,0.0,12.790999999999999,326.82099999999997,0.0,0.0,-0.04,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,4694.0,767.0,21.015,3.4339999999999997,110.0,0.49200000000000005,0.0091,110.0,tests performed,218850.0,124684.0,97402.0,22342.0,9.0,204.0,97.98,55.82,43.61,10.0,913.0,76.0,0.034,13.89,223364.0,212.84099999999998,18.7,2.886,2.162,3052.7140000000004,32.3,270.113,2.42,16.7,38.1,41.34,2.9,70.39,0.625,133.0,21.63,-19.49,3910.614525
264,40518,COK,Oceania,Cook Islands,2022-06-28,5774.0,6.0,1.714,1.0,0.0,0.0,328590.94,341.452,97.55799999999999,56.909,0.0,0.0,0.06,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,395040.0,9497.0,69.832,0.185,639.0,0.113,0.0,4566.4,tests performed,39780.0,15033.0,14685.0,10062.0,1486.0,3.0,226.38,85.55,83.57,57.26,171.0,0.0,0.0,32.41,17572.0,15.405,19.0,3.4019999999999997,2.063,4881.406,37.0,344.094,7.2,1.7,52.3,47.964,2.2,76.25,0.574,180760.5,29.56,2.99,3525.944303
265,80397,HKG,Asia,Hong Kong,2022-06-28,1241435.0,1685.0,1746.5710000000001,9399.0,1.0,0.429,164367.519,223.09599999999998,231.248,1244.4389999999999,0.132,0.057,1.0,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,49426686.0,263.0,6544.154,0.023,72419.0,9.588,0.0038,262.5,tests performed,17679772.0,6742255.0,6447858.0,4489659.0,14535.0,15344.0,234.08,89.27,85.37,59.44,2032.0,1029.0,0.013999999999999999,52.78,7552800.0,7039.714,44.8,16.303,10.158,56054.92,16.0,240.208,8.33,2.0,23.1,84.169,0.7,84.86,0.9490000000000001,10531.0,9.01,66.75,1394.317339
266,85597,IRN,Asia,Iran,2022-06-28,7237156.0,443.0,283.0,141386.0,0.0,2.286,85114.213,5.21,3.3280000000000003,1662.8020000000001,0.0,0.027000000000000003,1.63,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,52269202.0,76234.0,614.724,0.897,25540.0,0.3,0.0078,129.0,tests performed,149957751.0,64545209.0,57860379.0,27552163.0,31765.0,22970.0,176.36,75.91,68.05,32.4,270.0,5082.0,0.006,58.33,85028760.0,49.831,32.4,5.44,3.182,19082.62,0.2,270.308,9.59,0.8,21.1,64.204,1.5,76.68,0.7829999999999999,261045.6,29.95,27.79,3070.085933
267,184715,UGA,Africa,Uganda,2022-06-28,167511.0,0.0,73.571,3621.0,0.0,0.429,3554.7209999999995,0.0,1.561,76.84100000000001,0.0,0.009000000000000001,0.85,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,2749166.0,10103.0,58.34,0.214,1382.0,0.028999999999999998,0.0646,15.5,tests performed,21756456.0,16226827.0,11144005.0,82919.0,134275.0,37972.0,46.17,34.43,23.65,0.18,806.0,27737.0,0.059000000000000004,28.7,47123533.0,213.75900000000001,16.4,2.168,1.308,1697.707,41.6,213.333,2.5,3.4,16.7,21.221999999999998,0.5,63.37,0.544,20481.6,16.84,40.84,1715.9856710000001
268,196347,OWID_WRL,Africa,World,2022-06-28,545534331.0,961728.0,684208.1429999999,6332590.0,2018.0,1488.714,69274.50200000001,122.125,86.884,804.1419999999999,0.256,0.18899999999999997,1.2,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,3943.0,56715.0,6.444,0.578,620.0,0.006,0.9523,1.1,tests performed,12091102190.0,5248998391.0,4810271935.0,2120408565.0,7669290.0,6080962.0,153.54,66.65,61.08,26.93,772.0,783352.0,0.01,25.93,7874965730.0,58.045,30.9,8.696,5.355,15469.207,10.0,233.07,8.51,6.434,34.635,60.13,2.705,72.58,0.737,38486.9,10.93,1.96,1134.110282
269,36724,CHL,South America,Chile,2022-06-28,3973291.0,5517.0,9597.714,58459.0,14.0,24.714000000000002,206809.085,287.159,499.559,3042.78,0.7290000000000001,1.286,0.99,182.0,9.472999999999999,3505.0,92.072,75.0,3.904,857.0,44.607,39773213.0,58711.0,2070.189,3.056,67521.0,3.514,0.1502,6.7,tests performed,59262521.0,18000027.0,17575317.0,24261894.0,94737.0,56115.0,308.46,93.69,91.48,126.28,2921.0,922.0,0.005,27.31,19212362.0,24.281999999999996,35.4,11.087,6.938,22767.037,1.3,127.993,8.46,34.2,41.5,5.818,2.11,80.18,0.851,51537.3,19.01,15.69,2682.507232
270,158414,SRB,Europe,Serbia,2022-06-28,2027606.0,810.0,599.571,16125.0,1.0,1.714,295072.711,117.87700000000001,87.25399999999999,2346.633,0.146,0.249,1.48,8.0,1.1640000000000001,98.0,14.262,9.0,1.669,7292.0,49.975,9852899.0,7466.0,1433.869,1.087,6317.0,0.919,0.0594,16.8,people tested,8534688.0,3354075.0,3278198.0,1902412.0,221.0,175.0,124.2,48.81,47.71,27.69,25.0,47.0,0.001,11.11,6871547.0,80.291,41.2,17.366,1.796,14048.881000000001,38.0,439.415,10.08,37.7,40.2,97.719,5.609,76.0,0.8059999999999999,58394.0,24.45,1.98,8497.940857
271,117719,MDA,Europe,Moldova,2022-06-28,520168.0,427.0,102.286,11567.0,4.0,1.857,129265.59800000001,106.113,25.419,2874.485,0.9940000000000001,0.462,0.59,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,15569464.0,2711.0,119.524,0.674,12754.0,3.1689999999999996,0.2407,4.2,tests performed,2165600.0,1083286.0,1063425.0,82869.0,1079.0,583.0,53.82,26.92,26.43,2.06,145.0,316.0,0.008,0.0,4024025.0,123.655,37.6,10.864,6.955,5189.972,0.2,408.50199999999995,5.72,5.9,44.6,86.979,5.8,71.9,0.75,15702.0,22.3,14.29,3902.063233
272,39266,COM,Africa,Comoros,2022-06-28,8139.0,3.0,1.143,160.0,0.0,0.0,9160.836,3.377,1.286,180.088,0.0,0.0,0.08,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,100289.0,9497.0,112.88,0.185,1306.0,1.47,0.0002,4566.4,tests performed,642320.0,341302.0,301218.0,12964054.0,18933.0,0.0,72.3,38.42,33.9,25.29,0.0,0.0,0.0,25.93,888456.0,437.352,20.4,2.963,1.726,1413.89,18.1,261.51599999999996,11.88,4.4,23.6,15.574000000000002,2.2,64.32,0.5539999999999999,180760.5,29.56,2.99,3525.944303
273,82109,ISL,Europe,Iceland,2022-06-28,193987.0,996.0,279.42900000000003,153.0,0.0,0.0,526006.529,2700.7090000000003,757.686,414.86800000000005,0.0,0.0,1.67,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,1373785.0,632.0,3725.094,1.714,460.0,1.247,0.2219,4.5,tests performed,805469.0,309770.0,290193.0,250542.0,1925.0,61.0,218.41,84.0,78.69,67.94,165.0,10.0,0.003,11.11,368792.0,3.404,37.3,14.431,9.207,46482.958,0.2,117.992,5.31,14.3,15.2,84.169,2.91,82.99,0.9490000000000001,213.9,4.1,13.64,580.0017353999999
274,185569,UKR,Europe,Ukraine,2022-06-28,5040518.0,0.0,0.0,112459.0,0.0,0.0,115962.42300000001,0.0,0.0,2587.238,0.0,0.0,-0.0,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,19288823.0,96361.0,443.76,2.217,52561.0,1.209,0.6027,1.7,tests performed,31668577.0,15774300.0,15153577.0,741197.0,62935.0,24457.0,72.86,36.29,34.86,1.71,563.0,13420.0,0.031,75.0,43466822.0,77.39,41.4,16.462,11.133,7894.393,0.1,539.849,7.11,13.5,47.4,21.221999999999998,8.8,72.06,0.779,179972.2,14.89,1.92,4140.449928
275,138043,PAK,Asia,Pakistan,2022-06-28,1535144.0,541.0,382.0,30393.0,1.0,1.286,6816.805,2.4019999999999997,1.696,134.96,0.004,0.006,1.96,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,28889568.0,31201.0,128.284,0.139,11780.0,0.052000000000000005,0.0142,70.5,tests performed,268206710.0,136961847.0,126385289.0,22534220.0,1006265.0,1037945.0,119.1,60.82,56.12,10.01,4609.0,90426.0,0.04,77.78,225199929.0,255.57299999999998,23.5,4.495,2.78,5034.708,4.0,423.031,8.35,2.8,36.7,59.607,0.6,67.27,0.557,4286.8,18.62,-6.95,820.6952745
276,142598,PER,South America,Peru,2022-06-28,3620801.0,3172.0,2524.857,213483.0,8.0,11.142999999999999,108539.104,95.086,75.686,6399.483,0.24,0.33399999999999996,1.4,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,28971116.0,1757.0,868.454,0.243,49170.0,1.474,0.009000000000000001,111.1,tests performed,77739533.0,29519907.0,27636375.0,20583251.0,98062.0,88186.0,233.04,88.49,82.84,61.7,2644.0,3904.0,0.012,50.93,33359415.0,25.129,29.1,7.151,4.455,12236.706,3.5,85.755,5.95,4.8,21.6,79.602,1.6,76.74,0.777,231903.0,72.67,1.94,6951.650681
277,34181,CYM,North America,Cayman Islands,2022-06-28,27171.0,0.0,53.428999999999995,28.0,0.0,0.0,408598.755,0.0,803.461,421.065,0.0,0.0,1.38,220.0,5.779,3505.0,92.072,,,760.0,65.335,9358.0,2691.0,140.726,40.467,384.0,5.775,0.0,3.0,tests performed,145906.0,61307.0,59547.0,23536.0,226.0,58.0,219.41,92.19,89.55,35.39,872.0,10.0,0.015,19.44,66498.0,256.496,25.7,4.46,3.437,49903.029,0.5,182.21900000000002,13.22,2.1,16.5,2.735,2.1,83.92,0.665,188.6,6.81,13.94,335.6463149
278,78657,OWID_HIC,North America,High income,2022-06-28,320884746.0,810647.0,557315.8570000001,2446332.0,1467.0,1032.4289999999999,264117.838,667.237,458.723,2013.558,1.207,0.85,1.32,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,206594.0,263.0,17.9,0.023,197.0,0.017,0.0363,27.6,tests performed,2503625552.0,971632355.0,910390438.0,646489298.0,659718.0,722028.0,206.07,79.97,74.93,53.21,594.0,65354.0,0.005,34.26,1214930230.0,398.44800000000004,24.3,4.8,2.9539999999999997,1653.1729999999998,23.5,430.548,6.65,2.9,23.1,22.863000000000003,0.7,64.0,0.51,43113.3,25.35,10.04,2362.38969
279,76080,GNB,Africa,Guinea-Bissau,2022-06-28,8348.0,0.0,0.14300000000000002,171.0,0.0,0.0,4141.920999999999,0.0,0.071,84.84299999999999,0.0,0.0,0.25,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,142948.0,390.0,70.925,0.19399999999999998,231.0,0.115,0.0247,40.4,tests performed,572954.0,529783.0,342218.0,304.0,1658.0,26.0,28.43,26.29,16.98,0.02,13.0,26.0,0.001,49.07,2015490.0,66.191,19.4,3.002,1.565,1548.675,67.1,382.474,2.42,35.3,52.0,6.403,0.3,58.32,0.48,43113.3,25.35,10.04,2362.38969
280,178384,TLS,Asia,Timor,2022-06-28,22954.0,3.0,1.286,133.0,0.0,0.0,17080.458,2.2319999999999998,0.9570000000000001,98.96799999999999,0.0,0.0,0.98,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,264839.0,504.0,197.071,0.375,145.0,0.10800000000000001,0.0039,253.9,tests performed,1638158.0,822666.0,694694.0,120798.0,7881.0,4883.0,121.9,61.22,51.69,8.99,3634.0,1291.0,0.096,16.67,1343875.0,87.176,18.0,3.556,1.8969999999999998,6570.102,30.3,335.346,6.86,6.3,78.1,28.178,5.9,69.5,0.606,97687.9,8.02,19.55,1396.5221060000001
281,25666,BRA,South America,Brazil,2022-06-28,32206954.0,76638.0,55446.71400000001,670848.0,316.0,208.28599999999997,150504.39800000002,358.13199999999995,259.105,3134.9,1.4769999999999999,0.973,1.36,22.0,1.859,143.0,12.085,,,760.0,65.335,70923215.0,126242.0,331.42699999999996,0.59,121418.0,0.5670000000000001,0.0483,20.7,tests performed,452218476.0,184574635.0,168604658.0,104348850.0,430569.0,450304.0,211.32,86.25,78.79,48.76,2104.0,19339.0,0.009000000000000001,39.81,213993441.0,25.04,33.5,8.552,5.06,14103.452,3.4,177.96099999999998,8.11,10.1,17.9,97.164,2.2,75.88,0.765,781197.4,23.53,5.87,3650.567028
282,103509,LIE,Europe,Liechtenstein,2022-06-28,17860.0,46.0,17.429000000000002,85.0,0.0,0.0,466879.281,1202.489,455.601,2221.99,0.0,0.0,1.37,1.0,0.536,294.0,157.477,10.0,5.282,1.0,25.605,90632.0,248.0,2369.216,6.483,220.0,5.751,0.344,2.9,tests performed,70780.0,26744.0,26429.0,18624.0,0.0,7.0,185.03,69.91,69.09,48.69,183.0,0.0,0.0,14.81,38254.0,237.012,29.0,4.4239999999999995,2.8160000000000003,17881.509,38.6,341.86199999999997,7.77,1.5,18.1,1.188,2.397,82.49,0.919,46.6,8.62,10.62,1218.1732630000001
283,180635,TTO,North America,Trinidad and Tobago,2022-06-28,166900.0,188.0,121.0,4005.0,3.0,2.571,118927.67,133.963,86.221,2853.837,2.138,1.8319999999999999,0.8,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,768404.0,1900.0,547.54,1.354,739.0,0.527,0.222,4.5,people tested,1572805.0,751177.0,713930.0,165134.0,543.0,443.0,112.07,53.53,50.87,11.77,316.0,44.0,0.003,13.89,1403374.0,266.88599999999997,36.2,10.014,5.819,28763.071,49.2,228.467,10.97,11.8,44.4,89.443,3.0,73.51,0.7959999999999999,97687.9,8.02,19.55,1396.5221060000001
284,181488,TUN,Africa,Tunisia,2022-06-28,1046703.0,0.0,0.0,28670.0,0.0,0.0,87694.68,0.0,0.0,2402.025,0.0,0.0,0.32,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,4647813.0,1722.0,389.402,0.14400000000000002,996.0,0.083,0.0958,10.4,people tested,13192714.0,7234385.0,6376006.0,1272091.0,1662.0,775.0,110.53,60.61,53.42,10.66,65.0,233.0,0.002,47.22,11935764.0,74.22800000000001,32.7,8.001,5.075,10849.296999999999,2.0,318.991,8.52,1.1,65.8,78.687,2.3,76.7,0.74,20481.6,16.84,40.84,1715.9856710000001
285,152727,SPM,North America,Saint Pierre and Miquelon,2022-06-28,2767.0,0.0,0.0,1.0,0.0,0.0,479466.297,0.0,0.0,173.28,0.0,0.0,0.86,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,208560.0,117.0,1131.013,0.634,145.0,0.7859999999999999,0.1488,6.7,tests performed,121513.0,59602.0,54309.0,7602.0,49.0,17.0,65.9,32.32,29.45,4.12,92.0,6.0,0.003,66.67,5771.0,293.187,34.9,9.721,6.405,12951.839,56.0,204.62,11.62,4.7,21.0,87.20200000000001,1.3,81.07,0.759,12.2,3.33,8.11,227.8414821
286,182334,TUR,Asia,Turkey,2022-06-28,15096696.0,0.0,1564.8570000000002,99015.0,0.0,2.714,177518.93600000002,0.0,18.401,1164.297,0.0,0.032,0.0,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,163164533.0,128854.0,1918.618,1.515,134604.0,1.5830000000000002,0.0077,130.4,tests performed,147822027.0,57857831.0,53087211.0,36876985.0,3429.0,2575.0,173.82,68.03,62.42,43.36,30.0,444.0,0.001,13.89,85042736.0,104.914,31.6,8.152999999999999,5.061,25129.341,0.2,171.285,12.13,14.1,41.1,78.687,2.81,77.69,0.82,20481.6,16.84,40.84,1715.9856710000001
287,42215,CIV,Africa,Cote d'Ivoire,2022-06-28,83049.0,0.0,34.857,805.0,0.0,0.429,3069.7909999999997,0.0,1.288,29.756,0.0,0.016,1.75,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,1540831.0,635.0,56.955,0.023,1206.0,0.045,0.031,32.2,tests performed,12753769.0,8026397.0,5540193.0,87290.0,20396.0,0.0,47.14,29.67,20.48,0.32,0.0,5281.0,0.02,15.74,27053629.0,76.399,18.7,2.9330000000000003,1.5819999999999999,3601.006,28.2,303.74,2.42,6.4,17.4,19.351,1.13,57.78,0.5379999999999999,5946.8,11.58,-1.44,1157.17818
288,136320,OWID_OCE,Europe,Oceania,2022-06-28,9734839.0,33005.0,33891.429,13986.0,67.0,56.0,225239.458,763.6519999999999,784.1619999999999,323.601,1.55,1.296,1.06,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,11154564.0,1943.0,2040.856,0.355,1723.0,0.315,0.322,3.1,people tested,73916432.0,28976883.0,27753813.0,17051409.0,17603.0,10559.0,171.02,67.05,64.22,39.45,244.0,1169.0,0.003,11.11,43219954.0,14.462,39.7,16.820999999999998,10.812999999999999,64800.057,0.2,114.316,5.31,19.6,20.7,41.949,3.6,82.4,0.9570000000000001,2521.4,2.52,5.9,461.31927360000003
289,15513,BGD,Asia,Bangladesh,2022-06-28,1969361.0,2087.0,1612.4289999999999,29145.0,3.0,1.714,11841.97,12.549000000000001,9.696,175.252,0.018000000000000002,0.01,1.79,50.0,5.529,874.0,96.649,,,,,13820904.0,8536.0,83.10700000000001,0.051,2366.0,0.013999999999999999,0.2761,3.6,tests performed,277499188.0,129343045.0,119422697.0,29061179.0,252703.0,260133.0,166.86,77.78,71.81,17.47,1564.0,13378.0,0.008,34.26,166303494.0,1265.036,27.5,5.098,3.262,3523.9840000000004,14.8,298.003,8.38,1.0,44.7,34.808,0.8,72.59,0.632,43744.8,33.01,2.0,4278.913044
290,69647,GIB,Europe,Gibraltar,2022-06-28,19306.0,0.0,42.286,104.0,0.0,0.28600000000000003,573031.373,0.0,1255.104,3086.8779999999997,0.0,8.48,1.0,1000.0,11.919,16108.0,238.91299999999998,945.0,11.263,4313.0,51.406000000000006,533268.0,514.0,15828.203000000001,15.255999999999998,553.0,16.414,0.0858,11.7,tests performed,119855.0,42074.0,41421.0,36360.0,202.0,40.0,355.75,124.88,122.94,107.92,1187.0,1.0,0.003,51.85,33691.0,3457.1,21.1,3.385,1.9480000000000002,4227.63,12.0,298.245,4.97,0.3,7.7,41.047,0.9,79.93,0.611,19.6,5.77,157.23,581.7577395
291,70510,GRC,Europe,Greece,2022-06-28,3644889.0,20333.0,11766.428999999998,30206.0,16.0,13.0,351458.675,1960.611,1134.579,2912.616,1.5430000000000001,1.254,1.42,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,84483362.0,73217.0,8146.314,7.06,95227.0,9.182,0.0827,12.1,samples tested,21086486.0,7918960.0,7628872.0,6114901.0,5893.0,3298.0,203.33,76.36,73.56,58.96,318.0,120.0,0.001,24.07,10370747.0,83.479,45.3,20.396,14.524000000000001,24574.382,1.5,175.695,4.55,35.3,52.0,41.047,4.21,82.24,0.888,31443.0,10.58,12.88,3031.8934600000002
292,140060,PAN,North America,Panama,2022-06-28,917912.0,1989.0,1639.5710000000001,8352.0,4.0,3.286,209493.236,453.94599999999997,374.19599999999997,1906.16,0.9129999999999999,0.75,0.81,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,6499239.0,7609.0,1483.308,1.7369999999999999,8930.0,2.0380000000000003,0.1835,5.5,tests performed,8358729.0,3482802.0,3114030.0,1761897.0,5925.0,5061.0,190.77,79.49,71.07,40.21,1155.0,189.0,0.004,28.7,4381583.0,55.133,29.7,7.917999999999999,5.03,22267.037,2.2,128.346,8.33,2.4,9.9,59.607,2.3,78.51,0.815,7503.4,19.42,-1.22,1712.4861039999998
293,71351,GRL,North America,Greenland,2022-06-28,11971.0,0.0,0.0,21.0,0.0,0.0,210505.02899999998,0.0,0.0,369.276,0.0,0.0,1.4,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,84483362.0,73217.0,8146.314,7.06,95227.0,9.182,0.0827,12.1,samples tested,79745.0,41243.0,38502.0,6138379.0,15.0,2.0,140.23,72.52,67.7,59.19,35.0,1.0,0.002,11.11,56868.0,0.13699999999999998,45.3,20.396,14.524000000000001,24574.382,1.5,199.94099999999997,2.16,35.3,52.0,41.047,4.21,71.7,0.888,-82.9,-6.6,-55.8,-1457.761834
294,18093,BEL,Europe,Belgium,2022-06-28,4225222.0,0.0,3982.429,31903.0,0.0,5.0,363230.80100000004,0.0,342.35900000000004,2742.614,0.0,0.43,1.73,79.0,6.791,1326.0,113.993,,,704.0,60.521,34315605.0,4743.0,2950.0190000000002,0.408,11433.0,0.983,0.26,3.8,tests performed,25659044.0,9248163.0,9151020.0,7689375.0,3047.0,5333.0,220.58,79.5,78.67,66.1,458.0,96.0,0.001,23.15,11632334.0,375.564,41.8,18.570999999999998,12.849,42658.575999999994,0.2,114.898,4.29,25.1,31.4,88.469,5.64,81.63,0.9309999999999999,21907.9,8.31,-0.77,1883.362359
295,147836,ROU,Europe,Romania,2022-06-28,2919461.0,0.0,567.714,65739.0,0.0,1.857,152629.43300000002,0.0,29.68,3436.835,0.0,0.09699999999999999,-0.02,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,234.0,42.846000000000004,21260367.0,14144.0,1111.492,4.8260000000000005,75700.0,3.958,0.0565,17.7,tests performed,16827486.0,8175541.0,8114769.0,1688620.0,1208.0,1208.0,87.97,42.74,42.42,57.62,63.0,9930.0,0.052000000000000005,11.11,19127772.0,85.12899999999999,43.0,17.85,11.69,23313.199,5.7,370.94599999999997,9.74,22.9,37.1,78.46300000000001,6.892,76.05,0.828,117243.5,19.06,-5.09,6129.490669
296,83851,IDN,Asia,Indonesia,2022-06-28,6084063.0,2167.0,1875.714,156728.0,2.0,4.0,22014.849,7.841,6.787000000000001,567.112,0.006999999999999999,0.013999999999999999,1.3,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,59503735.0,103179.0,215.31099999999998,0.373,114413.0,0.414,0.0837,11.9,people tested,417522347.0,201000560.0,168251795.0,48269992.0,0.0,267095.0,151.08,72.73,60.88,17.47,966.0,43565.0,0.016,52.78,276361788.0,145.725,29.3,5.319,3.053,11188.743999999999,5.7,342.86400000000003,6.32,2.8,76.1,64.204,1.04,71.72,0.718,213.9,4.1,13.64,580.0017353999999
297,145279,PRT,Europe,Portugal,2022-06-28,5154296.0,15637.0,10529.857,24082.0,21.0,19.429000000000002,506917.29299999995,1537.876,1035.596,2368.429,2.065,1.911,0.66,85.0,8.36,1743.0,171.421,9.0,1.669,234.0,42.846000000000004,42825431.0,52990.0,4211.817,5.211,48792.0,4.7989999999999995,0.5063,2.0,tests performed,24616852.0,9729123.0,8884776.0,6731760.0,79.0,12306.0,242.1,95.68,87.38,66.21,1210.0,299.0,0.003,13.89,10167923.0,112.37100000000001,46.2,21.502,14.924000000000001,27936.896,0.5,127.84200000000001,9.85,16.3,30.0,78.46300000000001,3.39,82.05,0.8640000000000001,22143.4,7.83,10.95,2177.7702289999997
298,118576,MCO,Europe,Monaco,2022-06-28,12887.0,0.0,30.714000000000002,57.0,0.0,0.0,326088.057,0.0,777.183,1442.308,0.0,0.0,1.29,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,15569464.0,2711.0,119.524,0.674,12754.0,3.1689999999999996,0.2407,4.2,tests performed,65140.0,28875.0,25667.0,10598.0,1079.0,158.0,164.83,73.06,64.95,26.82,3998.0,23.0,0.057999999999999996,17.59,39520.0,19347.5,37.6,10.864,6.955,5189.972,0.2,408.50199999999995,5.46,5.9,44.6,86.979,13.8,86.75,0.75,142.0,12.37,10.24,3593.1174090000004
299,87316,IRL,Europe,Ireland,2022-06-28,1587385.0,0.0,1300.143,7469.0,0.0,3.8569999999999998,318566.24199999997,0.0,260.921,1498.925,0.0,0.774,0.89,31.0,6.221,746.0,149.71200000000002,17.0,3.3960000000000004,708.0,142.02,12347313.0,5553.0,2477.935,1.114,5178.0,1.0390000000000001,0.32,3.1,tests performed,10978690.0,4090714.0,4042808.0,3085937.0,1751.0,1423.0,220.33,82.09,81.13,61.93,286.0,91.0,0.002,11.11,4982904.0,69.874,38.7,13.927999999999999,8.677999999999999,67335.293,0.2,126.459,3.28,23.0,25.7,94.57600000000001,2.96,82.3,0.955,3219.2,4.29,15.34,646.0489706000001
300,33337,CPV,Africa,Cape Verde,2022-06-28,59533.0,117.0,152.286,403.0,0.0,0.14300000000000002,105949.269,208.222,271.019,717.2080000000001,0.0,0.254,1.44,220.0,5.779,3505.0,92.072,,,760.0,65.335,62177630.0,904.0,1633.3339999999998,1.609,324.0,0.5770000000000001,0.1168,8.6,tests performed,773810.0,355377.0,307526.0,183.0,4461.0,404.0,137.71,63.25,54.73,0.03,719.0,5.0,0.001,19.44,561901.0,135.58,25.7,4.46,3.437,6222.554,0.5,182.21900000000002,2.42,2.1,16.5,2.735,2.1,72.98,0.665,188.6,6.81,13.94,335.6463149
301,84730,OWID_INT,Asia,International,2022-06-28,721.0,0.0,0.0,15.0,0.0,0.0,22055.694,5.189,6.955,567.22,0.033,0.017,1.22,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,59503735.0,103179.0,215.31099999999998,0.373,114413.0,0.414,0.0837,11.9,people tested,417522347.0,201000560.0,168251795.0,48269992.0,0.0,267095.0,151.08,72.73,60.88,17.47,966.0,43565.0,0.016,52.78,276361788.0,145.725,29.3,5.319,3.053,11188.743999999999,5.7,342.86400000000003,6.32,2.8,76.1,64.204,1.04,71.72,0.718,213.9,4.1,13.64,580.0017353999999
302,77762,HTI,North America,Haiti,2022-06-28,31470.0,60.0,50.714,837.0,0.0,0.0,2726.639,5.199,4.394,72.52,0.0,0.0,1.32,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,206594.0,263.0,17.9,0.023,197.0,0.017,0.0363,27.6,tests performed,342724.0,241385.0,157276.0,68657.0,4278.0,3249.0,2.97,2.09,1.36,8.69,282.0,3090.0,0.027000000000000003,34.26,11541683.0,398.44800000000004,24.3,4.8,2.9539999999999997,1653.1729999999998,23.5,430.548,6.65,2.9,23.1,22.863000000000003,0.7,64.0,0.51,43113.3,25.35,10.04,2362.38969
303,46469,CZE,Europe,Czechia,2022-06-28,3931585.0,1186.0,715.0,40316.0,2.0,1.0,366596.631,110.587,66.669,3759.224,0.18600000000000003,0.09300000000000001,1.53,6.0,0.5589999999999999,191.0,17.81,8.0,0.746,209.0,19.488,54587458.0,4000.0,5089.952,0.373,3708.0,0.34600000000000003,0.111,9.0,tests performed,17669843.0,6965302.0,6879603.0,4235518.0,1001.0,1065.0,164.76,64.95,64.15,39.49,99.0,67.0,0.001,14.81,10724553.0,137.17600000000002,43.3,19.027,11.58,32605.906000000003,0.7,227.485,6.82,30.5,38.3,85.198,6.63,79.38,0.9,42100.6,15.74,5.93,3925.6274829999998
304,13802,BHS,North America,Bahamas,2022-06-28,35902.0,21.0,32.0,817.0,0.0,0.28600000000000003,90452.844,52.908,80.622,2058.38,0.0,0.72,0.9,50.0,5.529,874.0,96.649,,,,,241200.0,567.0,607.688,1.429,134.0,0.33799999999999997,0.3486,2.9,tests performed,340866.0,166471.0,157964.0,27866.0,6771.0,189.0,85.88,41.94,39.8,7.02,476.0,34.0,0.009000000000000001,44.44,396914.0,39.497,34.3,8.996,5.2,27717.847,0.7,235.954,13.17,3.1,20.4,83.241,2.9,73.92,0.8140000000000001,43744.8,33.01,2.0,4278.913044
305,139212,PSE,Asia,Palestine,2022-06-28,659853.0,0.0,192.857,5660.0,0.0,0.0,126341.916,0.0,36.926,1083.719,0.0,0.0,0.14,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,59627.0,3267.0,3280.8959999999997,0.626,1289.0,0.247,0.1962,5.1,tests performed,3734270.0,2008544.0,1772479.0,331383.0,0.0,182.0,71.5,38.46,33.94,6.34,35.0,77.0,0.001,16.67,5222756.0,778.202,20.4,3.043,1.726,4449.898,1.0,265.91,10.59,7.7,22.7,59.607,4.8,74.05,0.708,1197.4,9.28,58.86,229.2659278
306,22303,BOL,South America,Bolivia,2022-06-28,922121.0,1017.0,861.2860000000001,21953.0,0.0,0.14300000000000002,77928.335,85.947,72.78699999999999,1855.245,0.0,0.012,1.51,22.0,1.859,143.0,12.085,,,760.0,65.335,4440371.0,6982.0,375.255,0.59,6277.0,0.53,0.0726,13.8,tests performed,13892966.0,7229825.0,6003856.0,1657937.0,9396.0,7883.0,117.41,61.1,50.74,14.01,666.0,1303.0,0.011000000000000001,23.15,11832936.0,10.202,25.4,6.704,4.393,6885.829000000001,7.1,204.299,6.89,0.6,12.3,25.383000000000003,1.1,71.51,0.718,57352.5,51.82,43.99,4846.852886
307,65361,GAB,Africa,Gabon,2022-06-28,47824.0,0.0,11.714,305.0,0.0,0.14300000000000002,20986.217,0.0,5.14,133.841,0.0,0.063,0.1,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,1599902.0,2256.0,702.072,0.99,114.0,0.05,0.0389,25.7,tests performed,567575.0,308857.0,256337.0,2381.0,1486.0,34.0,24.91,13.55,11.25,0.1,15.0,16.0,0.001,11.11,2278829.0,7.859,23.1,4.45,2.9760000000000004,16562.413,3.4,259.967,7.2,30.1,35.6,7.96,6.3,66.47,0.703,546.2,16.03,-9.97,1933.2186570000001
308,5142,AGO,Africa,Angola,2022-06-28,101320.0,1559.0,222.71400000000003,1900.0,0.0,0.0,2985.83,45.943000000000005,6.563,55.992,0.0,0.0,0.0,0.0,0.0,,,,,,,1618566.0,1459.0,47.698,0.043,1013.0,0.03,0.033,30.3,tests performed,20397115.0,13153694.0,7127231.0,737233.0,1973.0,43342.0,60.11,38.76,21.0,2.17,1277.0,21560.0,0.064,22.22,33933611.0,23.89,16.8,2.405,1.3619999999999999,5819.495,0.5,276.045,3.94,29.0,37.8,26.664,1.9,61.15,0.581,89.6,27.2,31.41,1158.311141
309,174099,SYR,Asia,Syria,2022-06-28,55925.0,2.0,1.143,3150.0,0.0,0.0,3060.074,0.109,0.063,172.36,0.0,0.0,1.11,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,175957.0,9789.0,9.628,1.123,221.0,0.012,0.0052,193.4,tests performed,4232490.0,2748571.0,1831005.0,28686.0,72289.0,11862.0,23.16,15.04,10.02,0.16,649.0,5373.0,0.028999999999999998,26.85,18275704.0,214.243,21.7,18.436,2.577,57410.166,0.5,376.264,5.59,22.6,28.9,70.598,1.5,72.7,0.5670000000000001,11808.7,7.09,-9.86,1354.9088550000001
310,119423,MNG,Asia,Mongolia,2022-06-28,928013.0,1731.0,247.28599999999997,2179.0,0.0,0.0,278742.684,519.932,74.27600000000001,654.495,0.0,0.0,0.22,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,7408778.0,4118.0,2225.3379999999997,1.237,487.0,0.146,0.4242,2.4,samples tested,5492919.0,2272965.0,2175617.0,1044337.0,1100.0,143.0,164.99,68.27,65.35,31.37,43.0,0.0,0.0,11.11,3329282.0,1.98,28.6,4.031000000000001,2.421,11840.846000000001,0.5,460.043,4.82,5.5,46.5,71.18,7.0,69.87,0.737,609.0,1.43,-2.07,182.92232380000002
311,175795,TJK,Asia,Tajikistan,2022-06-28,17786.0,0.0,0.0,125.0,0.0,0.0,1824.275,0.0,0.0,12.821,0.0,0.0,-0.0,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,13021521.0,64492.0,545.861,2.7030000000000003,66864.0,2.803,0.7838,1.3,people tested,13782905.0,5220731.0,5034819.0,3527355.0,113265.0,36536.0,141.37,53.55,51.64,36.18,3747.0,882.0,0.009000000000000001,8.33,9749625.0,64.281,23.3,3.466,2.155,2896.913,4.8,427.69800000000004,7.11,22.6,28.9,72.704,4.8,71.1,0.6679999999999999,9879.4,30.17,0.38,1013.3107679999999
312,153570,VCT,North America,Saint Vincent and the Grenadines,2022-06-28,9038.0,12.0,6.143,111.0,0.0,0.0,81226.577,107.84700000000001,55.207,997.582,0.0,0.0,0.96,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,108388.0,59.0,974.1080000000001,0.53,50.0,0.449,0.2257,4.4,tests performed,71501.0,36742.0,30855.0,3904.0,20.0,28.0,64.26,33.02,27.73,3.51,252.0,9.0,0.008,66.67,111269.0,281.78700000000003,31.8,7.724,4.832,10727.146,56.0,252.675,11.62,4.7,21.0,87.20200000000001,2.6,72.53,0.738,12.2,3.33,8.11,227.8414821
313,2589,ALB,Europe,Albania,2022-06-28,279167.0,90.0,214.857,3498.0,1.0,0.14300000000000002,97171.39300000001,31.326999999999998,74.78699999999999,1217.5710000000001,0.348,0.05,2.02,,,,,,,,,1613870.0,957.0,561.75,0.33299999999999996,375.0,0.131,0.4263,2.3,tests performed,2906126.0,1326545.0,1248781.0,324545.0,2541.0,1035.0,101.16,46.17,43.47,11.3,360.0,154.0,0.005,11.11,2872934.0,104.87100000000001,38.0,13.187999999999999,8.642999999999999,11803.431,1.1,304.195,10.08,7.1,51.2,37.746,2.89,78.57,0.795,16257.3,32.6,-3.38,5658.779492000001
314,40108,COG,Africa,Congo,2022-06-28,24128.0,0.0,0.0,385.0,0.0,0.0,4265.145,0.0,0.0,68.057,0.0,0.0,0.06,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,395040.0,9497.0,69.832,0.185,639.0,0.113,0.0,4566.4,tests performed,831318.0,693902.0,652422.0,12964054.0,1486.0,0.0,14.7,12.27,11.53,25.29,0.0,0.0,0.0,32.41,5657017.0,15.405,19.0,3.4019999999999997,2.063,4881.406,37.0,344.094,7.2,1.7,52.3,47.964,2.2,64.57,0.574,180760.5,29.56,2.99,3525.944303
315,76925,GUY,South America,Guyana,2022-06-28,67221.0,107.0,90.429,1251.0,0.0,0.429,85054.45199999999,135.387,114.419,1582.885,0.0,0.542,1.02,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,442695.0,390.0,560.14,0.19399999999999998,2771.0,3.5060000000000002,0.3388,3.0,tests performed,913974.0,478010.0,368450.0,67514.0,58394.0,10323.0,115.64,60.48,46.62,8.54,13062.0,409.0,0.052000000000000005,29.63,790329.0,3.952,26.3,5.305,2.8369999999999997,7435.047,67.1,373.159,11.62,35.3,52.0,77.15899999999999,1.6,69.91,0.682,43113.3,25.35,10.04,2362.38969
316,111269,MDV,Asia,Maldives,2022-06-28,181586.0,0.0,171.71400000000003,305.0,0.0,0.7140000000000001,334031.125,0.0,315.872,561.054,0.0,1.314,0.45,45.0,1.3730000000000002,746.0,22.76,10.0,5.282,1351.0,41.218999999999994,2211113.0,2103.0,4067.387,3.8689999999999998,57.0,0.105,0.0,13.9,samples tested,945036.0,398751.0,384347.0,161938.0,1683.0,68.0,173.84,73.35,70.7,29.79,125.0,3.0,0.001,47.22,543620.0,1454.433,30.6,4.12,2.875,15183.616000000002,0.1,164.905,9.19,2.1,55.0,95.803,1.9,78.92,0.74,160.6,14.41,3.78,295.42695269999996
317,6815,ATG,North America,Antigua and Barbuda,2022-06-28,8625.0,0.0,6.2860000000000005,141.0,0.0,0.14300000000000002,87361.235,0.0,63.667,1428.1660000000002,0.0,1.4469999999999998,0.82,0.0,0.0,,,,,,,16700.0,1459.0,169.15200000000002,0.043,26.0,0.263,0.0055,181.8,tests performed,126122.0,64091.0,62031.0,2930.0,305.0,14.0,127.75,64.92,62.83,19.37,142.0,5.0,0.005,22.22,98728.0,231.845,32.1,6.933,4.631,21490.943,0.5,191.511,13.17,29.0,37.8,26.664,3.8,77.02,0.778,-61.0,-4.75,-24.71,-617.8591686000001
318,140897,PNG,Oceania,Papua New Guinea,2022-06-28,44711.0,0.0,2.8569999999999998,662.0,0.0,0.5710000000000001,4903.057,0.0,0.313,72.596,0.0,0.063,0.75,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,249149.0,7609.0,27.322,1.7369999999999999,8930.0,2.0380000000000003,0.1835,5.5,people tested,615156.0,337243.0,277913.0,1764414.0,5925.0,618.0,6.75,3.7,3.05,40.27,68.0,306.0,0.003,34.26,9119005.0,18.22,22.6,3.8080000000000003,2.142,3823.1940000000004,2.2,561.494,17.65,23.5,48.8,59.607,2.3,64.5,0.555,7503.4,19.42,-1.22,1712.4861039999998
319,144423,POL,Europe,Poland,2022-06-28,6013859.0,695.0,314.143,116420.0,3.0,2.8569999999999998,159109.427,18.387999999999998,8.311,3080.139,0.079,0.076,1.58,41.0,2.387,287.0,7.593,9.0,1.669,234.0,42.846000000000004,36962382.0,21192.0,977.918,0.191,3366.0,0.08900000000000001,0.0591,16.9,tests performed,54594371.0,22734782.0,22514708.0,12157501.0,2844.0,2801.0,144.44,60.15,59.57,32.17,74.0,400.0,0.001,14.81,37797000.0,124.027,41.8,16.762999999999998,10.202,27216.445,3.5,227.331,5.91,23.3,33.1,78.46300000000001,6.62,78.73,0.88,169651.0,16.76,-7.57,4488.477922
320,120263,MNE,Europe,Montenegro,2022-06-28,239552.0,0.0,127.14299999999999,2725.0,0.0,0.28600000000000003,381421.25399999996,0.0,202.44,4338.82,0.0,0.455,1.53,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,7408778.0,4118.0,2225.3379999999997,1.237,487.0,0.146,0.4242,2.4,samples tested,675030.0,291500.0,283678.0,99852.0,30.0,29.0,107.48,46.41,45.17,15.9,46.0,7.0,0.001,11.11,628051.0,46.28,39.1,14.762,9.395,16409.288,1.0,387.305,10.08,44.0,47.9,71.18,3.861,76.88,0.8290000000000001,2633.7,21.49,55.05,4193.449258
321,44764,CUW,North America,Curacao,2022-06-28,44440.0,0.0,18.0,278.0,0.0,0.0,269666.739,0.0,109.226,1686.934,0.0,0.0,1.2,177.0,9.213,190.0,46.55,82.0,4.268,121.0,29.73,22100.0,2303.0,134.105,13.975,329.0,1.996,0.2193,4.6,tests performed,254139.0,108278.0,99573.0,46288.0,43.0,37.0,154.21,65.7,60.42,28.09,225.0,5.0,0.003,18.52,164796.0,362.644,41.7,16.367,10.068,22669.797000000002,0.7,190.968,11.62,17.1,53.3,85.198,5.2,78.88,0.7829999999999999,53645.6,23.69,2.89,4740.058271
322,106967,LUX,Europe,Luxembourg,2022-06-28,261163.0,2696.0,640.714,1092.0,4.0,0.857,411400.82,4246.913,1009.295,1720.1889999999999,6.301,1.35,1.65,3.0,4.726,15.0,23.629,10.0,5.282,1.0,1.575,4299901.0,2293.0,6773.482,3.612,1630.0,2.568,0.376,2.7,tests performed,1303575.0,481303.0,462338.0,389857.0,404.0,176.0,205.35,75.82,72.83,61.41,277.0,9.0,0.001,19.44,634814.0,231.447,39.7,14.312000000000001,9.842,94277.965,0.2,128.275,4.42,20.9,26.0,1.188,4.51,82.25,0.9159999999999999,-48.9,-0.46,7.27,-77.03043726
323,177549,THA,Asia,Thailand,2022-06-28,4517651.0,0.0,1817.4289999999999,30620.0,0.0,13.571,64583.224,0.0,25.982,437.736,0.0,0.19399999999999998,1.05,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,24733803.0,7706.0,353.588,0.11,11151.0,0.159,0.3093,3.2,tests performed,138811911.0,56700099.0,52871919.0,29239893.0,57105.0,63767.0,198.44,81.06,75.58,41.8,912.0,5918.0,0.008,30.09,69950844.0,135.132,40.1,11.373,6.89,16277.671,0.1,109.861,7.04,1.9,38.8,90.67,2.1,77.15,0.777,97687.9,8.02,19.55,1396.5221060000001
324,10353,OWID_ASI,North America,Asia,2022-06-28,156595266.0,134634.0,120247.14300000001,1443818.0,291.0,249.429,33471.648,28.778000000000002,25.701999999999998,308.611,0.062,0.053,-0.01,372.0,8.157,,,,,,,793.0,428.0,7.398,3.9930000000000003,1467.0,0.494,0.003,333.3,tests performed,8247428028.0,3558264371.0,3310489261.0,1341226578.0,5045909.0,4524916.0,176.29,76.06,70.76,28.67,967.0,453485.0,0.01,25.93,4678444992.0,584.8,41.2,13.085,7.452000000000001,35973.781,1.8,341.01,11.62,1.5,52.1,94.04299999999999,4.2,76.29,0.7759999999999999,352.2,26.0,11.85,3285.6010079999996
325,23127,BES,North America,Bonaire Sint Eustatius and Saba,2022-06-28,10373.0,53.0,12.142999999999999,37.0,0.0,0.14300000000000002,392248.06200000003,2004.16,459.17400000000004,1399.13,0.0,5.402,1.5,22.0,1.859,143.0,12.085,,,760.0,65.335,4440371.0,6982.0,375.255,0.59,6277.0,0.53,0.0726,13.8,tests performed,35845.0,19109.0,16736.0,1657937.0,9396.0,196.0,135.55,72.26,63.29,14.01,7412.0,92.0,0.348,23.15,26445.0,10.202,25.4,6.704,4.393,6885.829000000001,7.1,204.299,6.89,0.6,12.3,25.383000000000003,1.1,77.79,0.718,57352.5,51.82,43.99,4846.852886
326,156696,SAU,Asia,Saudi Arabia,2022-06-28,793729.0,869.0,931.0,9205.0,3.0,2.0,22459.357999999997,24.589000000000002,26.344,260.465,0.085,0.057,1.16,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,43251385.0,28668.0,1223.8410000000001,0.8109999999999999,29372.0,0.831,0.0347,28.9,tests performed,66700629.0,26713922.0,25082132.0,10793985.0,113359.0,47889.0,188.74,75.59,70.97,30.54,1355.0,6276.0,0.018000000000000002,11.11,35340680.0,15.322000000000001,31.9,3.295,1.845,49045.41099999999,32.3,259.538,17.72,1.8,25.4,41.34,2.7,75.13,0.8540000000000001,133.0,21.63,-19.49,3910.614525
327,149565,RWA,Africa,Rwanda,2022-06-28,130902.0,43.0,36.571,1459.0,0.0,0.0,9859.664,3.239,2.755,109.89299999999999,0.0,0.0,1.32,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,5534918.0,3839.0,416.895,0.289,4661.0,0.35100000000000003,0.008,125.7,samples tested,22715578.0,9112973.0,8657341.0,4945264.0,211071.0,49126.0,171.1,68.64,65.21,37.25,3700.0,5206.0,0.039,66.67,13276517.0,494.869,20.3,2.9739999999999998,1.642,1854.211,56.0,191.375,4.28,4.7,21.0,4.617,8.05,69.02,0.5429999999999999,1217716.1,29.72,2.89,8345.55017
328,195452,WLF,Oceania,Wallis and Futuna,2022-06-29,454.0,0.0,0.0,7.0,0.0,0.0,40923.021,0.0,0.0,630.972,0.0,0.0,0.91,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,85824349.0,56715.0,874.253,0.578,620.0,0.006,0.9523,1.1,people tested,16426.0,6483.0,6457.0,3201.0,66330.0,7.0,148.06,58.44,58.2,28.85,631.0,2.0,0.018000000000000002,25.93,11094.0,308.127,32.6,7.15,4.718,6171.884,2.0,245.465,6.0,1.0,45.9,85.84700000000001,2.6,79.94,0.7040000000000001,38486.9,10.93,1.96,1134.110282
329,141748,PRY,South America,Paraguay,2022-06-29,655532.0,0.0,300.57099999999997,18963.0,0.0,2.286,90798.421,0.0,41.632,2626.585,0.0,0.317,0.07,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,2609819.0,1757.0,361.48900000000003,0.243,1763.0,0.244,0.0654,15.3,tests performed,8890636.0,3944590.0,3451096.0,1494950.0,10430.0,3407.0,123.15,54.64,47.8,20.71,472.0,1118.0,0.015,13.89,7219641.0,17.144000000000002,26.5,6.377999999999999,3.833,8827.01,1.7,199.128,8.27,5.0,21.6,79.602,1.3,74.25,0.728,24508.4,31.67,-9.8,3394.684029
330,114586,MRT,Africa,Mauritania,2022-06-29,59677.0,108.0,47.0,982.0,0.0,0.0,12497.513,22.616999999999997,9.843,205.65,0.0,0.0,2.81,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,998154.0,1362.0,209.033,0.285,735.0,0.154,0.0142,70.5,tests performed,2872677.0,1927038.0,1334032.0,216491.0,3777.0,3183.0,60.16,40.36,27.94,4.53,667.0,167.0,0.003,43.52,4775110.0,4.289,20.3,3.138,1.7919999999999998,3597.633,6.0,232.347,2.42,20.9,30.2,15.95,2.7,64.92,0.546,539.8,5.7,-1.02,1045.921333
331,164598,SOM,Africa,Somalia,2022-06-29,26803.0,0.0,7.857,1361.0,0.0,0.0,1638.375,0.0,0.48,83.193,0.0,0.0,0.5,11.0,5.292000000000001,62.0,29.826,7.0,3.319,43.0,20.863000000000003,501224.0,3998.0,30.638,1.923,252.0,0.015,0.0414,24.2,tests performed,3143630.0,2645189.0,1641835.0,2343.0,0.0,5733.0,19.22,16.17,10.04,0.33,350.0,5946.0,0.036000000000000004,40.74,16359500.0,23.5,16.8,2.7310000000000003,1.496,2205.923,25.1,365.769,6.05,20.1,25.0,9.831,0.9,57.4,0.5670000000000001,5202.5,10.13,-6.54,2502.73846
332,8615,ARM,Asia,Armenia,2022-06-29,423243.0,0.0,19.857,8629.0,0.0,0.0,142595.939,0.0,6.69,2907.22,0.0,0.0,-0.01,372.0,8.157,,,,,,,3102267.0,1467.0,1045.193,0.494,1467.0,0.494,0.003,333.3,tests performed,2150112.0,1129669.0,985807.0,40725.0,13751.0,126.0,72.44,38.06,33.21,1.37,42.0,24.0,0.001,39.81,2968128.0,102.931,35.7,11.232000000000001,7.571000000000001,8787.58,1.8,341.01,7.11,1.5,52.1,94.04299999999999,4.2,75.09,0.7759999999999999,21748.4,36.89,0.44,7327.31203
333,7732,ARG,South America,Argentina,2022-06-29,9367172.0,0.0,3668.571,129070.0,0.0,7.7139999999999995,205394.21,0.0,80.441,2830.1209999999996,0.0,0.16899999999999998,1.04,372.0,8.157,,,,,,,36663990.0,6236.0,803.932,0.13699999999999998,36366.0,0.797,0.287,3.5,tests performed,105866530.0,41160752.0,37579219.0,27443975.0,89650.0,71673.0,232.13,90.25,82.4,60.18,1572.0,1031.0,0.002,39.81,45605823.0,16.177,31.9,11.198,7.441,18933.907,0.6,191.032,5.5,16.2,27.7,26.664,5.0,76.67,0.845,41948.2,12.45,28.58,919.7992107000001
334,163126,SVN,Europe,Slovenia,2022-06-29,1037714.0,1061.0,709.429,6651.0,0.0,0.5710000000000001,499207.446,510.41,341.281,3199.56,0.0,0.275,1.43,11.0,5.292000000000001,62.0,29.826,7.0,3.319,43.0,20.863000000000003,5336373.0,3998.0,2567.14,1.923,3172.0,1.526,0.128,7.8,tests performed,2996160.0,1265771.0,1222162.0,657523.0,134.0,92.0,144.13,60.89,58.79,31.63,44.0,6.0,0.0,11.11,2078723.0,102.619,44.5,19.062,12.93,31400.84,0.7,153.493,7.25,20.1,25.0,19.275,4.5,81.32,0.917,5202.5,10.13,-6.54,2502.73846
335,43922,CUB,North America,Cuba,2022-06-29,1105989.0,11.0,24.570999999999998,8529.0,0.0,0.0,97723.808,0.972,2.171,753.612,0.0,0.0,1.06,177.0,9.213,190.0,46.55,82.0,4.268,121.0,29.73,5296762.0,38826.0,468.015,3.431,35601.0,3.1460000000000004,0.0879,11.4,tests performed,38629851.0,10679352.0,9973955.0,7398882.0,36658.0,29257.0,341.33,94.36,88.13,65.38,2585.0,208.0,0.002,18.52,11317498.0,110.40799999999999,43.1,14.738,9.719,22669.797000000002,0.7,190.968,8.27,17.1,53.3,85.198,5.2,78.8,0.7829999999999999,53645.6,23.69,2.89,4740.058271
336,179238,TGO,Africa,Togo,2022-06-29,37382.0,21.0,14.286,275.0,0.0,0.28600000000000003,4409.169,2.477,1.685,32.436,0.0,0.034,1.39,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,749695.0,877.0,88.426,0.10300000000000001,377.0,0.044000000000000004,0.0235,42.6,tests performed,3290821.0,2092750.0,1557538.0,87104.0,7881.0,0.0,38.81,24.68,18.37,1.03,0.0,428.0,0.005,37.96,8478242.0,143.366,19.4,2.839,1.525,1429.8129999999999,49.2,280.033,6.15,0.9,14.2,10.475,0.7,61.04,0.515,97687.9,8.02,19.55,1396.5221060000001
337,92971,JOR,Asia,Jordan,2022-06-29,1699197.0,0.0,125.85700000000001,14068.0,0.0,0.0,165468.24,0.0,12.255999999999998,1369.945,0.0,0.0,0.04,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,16803235.0,42668.0,1636.3029999999999,4.155,2541.0,0.247,0.0171,58.3,tests performed,10007983.0,4805507.0,4538702.0,667902.0,16423.0,2346.0,97.46,46.8,44.2,6.5,228.0,1556.0,0.015,20.37,10269022.0,109.285,23.2,3.81,2.3609999999999998,8337.49,0.1,208.257,11.75,11.2,33.7,66.425,1.4,74.53,0.7290000000000001,4569.1,16.03,25.33,444.94013160000003
338,65362,GAB,Africa,Gabon,2022-06-29,47824.0,0.0,11.714,305.0,0.0,0.14300000000000002,20986.217,0.0,5.14,133.841,0.0,0.063,0.1,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,1599902.0,2256.0,702.072,0.99,114.0,0.05,0.0389,25.7,tests performed,567575.0,308857.0,256337.0,2381.0,1486.0,34.0,24.91,13.55,11.25,0.1,15.0,16.0,0.001,11.11,2278829.0,7.859,23.1,4.45,2.9760000000000004,16562.413,3.4,259.967,7.2,30.1,35.6,7.96,6.3,66.47,0.703,546.2,16.03,-9.97,1933.2186570000001
339,52458,EGY,Africa,Egypt,2022-06-29,515645.0,0.0,0.0,24723.0,0.0,0.14300000000000002,4945.84,0.0,0.0,237.132,0.0,0.001,0.0,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,11954884.0,2817.0,114.666,0.157,194420.0,1.865,0.0,371.0,tests performed,91447330.0,50399016.0,37289388.0,5584684.0,78722.0,277114.0,87.71,48.34,35.77,5.36,2658.0,316258.0,0.303,40.74,104258327.0,97.999,25.3,5.159,2.891,10550.206,1.3,525.432,17.31,0.2,50.1,89.82700000000001,1.6,71.99,0.7070000000000001,307916.8,25.09,41.63,2953.4024649999997
340,140061,PAN,North America,Panama,2022-06-29,919740.0,1828.0,1621.1429999999998,8359.0,7.0,3.8569999999999998,209910.43600000002,417.20099999999996,369.99,1907.7579999999998,1.598,0.88,0.81,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,6499239.0,7609.0,1483.308,1.7369999999999999,8930.0,2.0380000000000003,0.1835,5.5,tests performed,8358729.0,3482802.0,3114030.0,1761897.0,5925.0,5188.0,190.77,79.49,71.07,40.21,1184.0,194.0,0.004,28.7,4381583.0,55.133,29.7,7.917999999999999,5.03,22267.037,2.2,128.346,8.33,2.4,9.9,59.607,2.3,78.51,0.815,7503.4,19.42,-1.22,1712.4861039999998
341,44765,CUW,North America,Curacao,2022-06-29,44545.0,105.0,15.0,278.0,0.0,0.0,270303.891,637.151,91.022,1686.934,0.0,0.0,1.2,177.0,9.213,190.0,46.55,82.0,4.268,121.0,29.73,22100.0,2303.0,134.105,13.975,329.0,1.996,0.2193,4.6,tests performed,254158.0,108278.0,99577.0,46303.0,19.0,30.0,154.23,65.7,60.42,28.1,182.0,4.0,0.002,18.52,164796.0,362.644,41.7,16.367,10.068,22669.797000000002,0.7,190.968,11.62,17.1,53.3,85.198,5.2,78.88,0.7829999999999999,53645.6,23.69,2.89,4740.058271
342,120264,MNE,Europe,Montenegro,2022-06-29,239989.0,437.0,168.857,2729.0,4.0,0.857,382117.05700000003,695.803,268.85900000000004,4345.189,6.369,1.365,1.7,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,7408778.0,4118.0,2225.3379999999997,1.237,487.0,0.146,0.4242,2.4,samples tested,675090.0,291522.0,283697.0,99871.0,60.0,30.0,107.49,46.42,45.17,15.9,48.0,8.0,0.001,11.11,628051.0,46.28,39.1,14.762,9.395,16409.288,1.0,387.305,10.08,44.0,47.9,71.18,3.861,76.88,0.8290000000000001,2633.7,21.49,55.05,4193.449258
343,175796,TJK,Asia,Tajikistan,2022-06-29,17786.0,0.0,0.0,125.0,0.0,0.0,1824.275,0.0,0.0,12.821,0.0,0.0,-0.0,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,13021521.0,64492.0,545.861,2.7030000000000003,66864.0,2.803,0.7838,1.3,people tested,13782905.0,5220731.0,5034819.0,3527355.0,113265.0,36536.0,141.37,53.55,51.64,36.18,3747.0,882.0,0.009000000000000001,8.33,9749625.0,64.281,23.3,3.466,2.155,2896.913,4.8,427.69800000000004,7.11,22.6,28.9,72.704,4.8,71.1,0.6679999999999999,9879.4,30.17,0.38,1013.3107679999999
344,40109,COG,Africa,Congo,2022-06-29,24128.0,0.0,0.0,385.0,0.0,0.0,4265.145,0.0,0.0,68.057,0.0,0.0,0.06,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,395040.0,9497.0,69.832,0.185,639.0,0.113,0.0,4566.4,tests performed,831318.0,693902.0,652422.0,12964054.0,1486.0,0.0,14.7,12.27,11.53,25.29,0.0,0.0,0.0,32.41,5657017.0,15.405,19.0,3.4019999999999997,2.063,4881.406,37.0,344.094,7.2,1.7,52.3,47.964,2.2,64.57,0.574,180760.5,29.56,2.99,3525.944303
345,163757,SLB,Oceania,Solomon Islands,2022-06-29,21544.0,0.0,0.0,153.0,0.0,0.0,30602.49,0.0,0.0,217.331,0.0,0.0,0.17,11.0,5.292000000000001,62.0,29.826,7.0,3.319,43.0,20.863000000000003,5336373.0,3998.0,2567.14,1.923,3172.0,1.526,0.128,7.8,tests performed,463637.0,283298.0,177996.0,2343.0,108.0,738.0,65.86,40.24,25.28,0.33,1048.0,0.0,0.0,42.59,703995.0,21.840999999999998,20.8,3.5069999999999997,2.043,2205.923,25.1,459.78,18.68,20.1,25.0,35.89,1.4,73.0,0.5670000000000001,5202.5,10.13,-6.54,2502.73846
346,140898,PNG,Oceania,Papua New Guinea,2022-06-29,44717.0,6.0,3.714,662.0,0.0,0.0,4903.715,0.6579999999999999,0.40700000000000003,72.596,0.0,0.0,0.76,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,249149.0,7609.0,27.322,1.7369999999999999,8930.0,2.0380000000000003,0.1835,5.5,people tested,615156.0,337243.0,277913.0,1764414.0,5925.0,618.0,6.75,3.7,3.05,40.27,68.0,306.0,0.003,34.26,9119005.0,18.22,22.6,3.8080000000000003,2.142,3823.1940000000004,2.2,561.494,17.65,23.5,48.8,59.607,2.3,64.5,0.555,7503.4,19.42,-1.22,1712.4861039999998
347,12962,AZE,Asia,Azerbaijan,2022-06-29,793176.0,0.0,16.143,9717.0,0.0,0.14300000000000002,77584.79,0.0,1.579,950.472,0.0,0.013999999999999999,1.41,50.0,5.529,874.0,96.649,,,,,6947820.0,6872.0,679.6030000000001,0.672,2341.0,0.22899999999999998,0.017,58.9,tests performed,13762091.0,5353536.0,4853215.0,3306428.0,1475.0,1351.0,134.61,52.37,47.47,32.34,132.0,253.0,0.002,36.11,10223344.0,119.309,32.4,6.018,3.8710000000000004,15847.419,0.7,559.812,7.11,0.3,42.5,83.241,4.7,73.0,0.7559999999999999,43744.8,33.01,2.0,4278.913044
348,170676,SDN,Africa,Sudan,2022-06-29,62624.0,73.0,11.857000000000001,4951.0,0.0,0.0,1394.453,1.625,0.264,110.244,0.0,0.0,0.74,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,562941.0,1111.0,12.535,0.052000000000000005,1204.0,0.055999999999999994,0.0083,120.4,tests performed,8179010.0,6651268.0,4536964.0,50234.0,6534.0,26277.0,18.21,14.81,10.1,0.11,585.0,31370.0,0.07,13.89,44909351.0,23.258000000000003,19.7,3.548,2.0340000000000003,4466.5070000000005,0.7,431.38800000000003,15.67,0.3,27.0,23.436999999999998,0.8,65.31,0.51,104463.1,10.09,5.53,2234.733736
349,23128,BES,North America,Bonaire Sint Eustatius and Saba,2022-06-29,10405.0,32.0,12.142999999999999,37.0,0.0,0.0,393458.12100000004,1210.059,459.17400000000004,1399.13,0.0,0.0,1.5,22.0,1.859,143.0,12.085,,,760.0,65.335,4440371.0,6982.0,375.255,0.59,6277.0,0.53,0.0726,13.8,tests performed,35845.0,19109.0,16736.0,1657937.0,9396.0,196.0,135.55,72.26,63.29,14.01,7412.0,92.0,0.348,23.15,26445.0,10.202,25.4,6.704,4.393,6885.829000000001,7.1,204.299,6.89,0.6,12.3,25.383000000000003,1.1,77.79,0.718,57352.5,51.82,43.99,4846.852886
350,100181,LBN,Asia,Lebanon,2022-06-29,1110822.0,1399.0,813.2860000000001,10464.0,1.0,1.143,164100.638,206.673,120.146,1545.836,0.14800000000000002,0.16899999999999998,1.66,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,4731376.0,14038.0,698.962,2.074,14688.0,2.17,0.1238,8.1,tests performed,5673326.0,2698736.0,2374475.0,600115.0,292132.0,1238.0,83.81,39.87,35.08,8.87,183.0,348.0,0.005,17.59,6769151.0,594.561,31.1,8.514,5.43,13367.565,0.7,266.591,12.71,26.9,40.7,49.839,2.9,78.93,0.7440000000000001,15149.6,30.18,57.47,2238.035464
351,19769,BEN,Africa,Benin,2022-06-29,27122.0,0.0,0.0,163.0,0.0,0.0,2178.294,0.0,0.0,13.091,0.0,0.0,0.04,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,604310.0,1351.0,48.535,3.3369999999999997,1012.0,2.499,0.1451,6.9,tests performed,3681560.0,3174135.0,2690085.0,200.0,5470.0,2213.0,29.57,25.49,21.61,0.0,178.0,481.0,0.004,13.89,12451031.0,99.11,18.8,3.2439999999999998,1.942,2064.236,49.6,235.84799999999998,0.99,0.6,12.3,11.035,0.5,61.77,0.545,127.6,6.28,51.1,315.1278663
352,57544,ETH,Africa,Ethiopia,2022-06-29,488433.0,325.0,379.85699999999997,7536.0,1.0,1.429,4143.609,2.7569999999999997,3.2230000000000003,63.931000000000004,0.008,0.012,0.59,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,5024643.0,4118.0,42.626000000000005,0.035,4906.0,0.042,0.1325,7.5,tests performed,49687694.0,44365594.0,37906419.0,1836576.0,159930.0,2808915.0,42.15,37.64,32.16,1.56,23829.0,2140688.0,1.8159999999999998,25.0,117876226.0,104.95700000000001,19.8,3.5260000000000002,2.063,1729.9270000000001,26.7,182.63400000000001,7.47,0.4,8.5,7.96,0.3,66.6,0.485,3805.5,9.78,12.82,2871.66802
353,156697,SAU,Asia,Saudi Arabia,2022-06-29,794488.0,759.0,884.857,9207.0,2.0,1.857,22480.835,21.476999999999997,25.038,260.52099999999996,0.057,0.053,1.15,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,43251385.0,28668.0,1223.8410000000001,0.8109999999999999,29372.0,0.831,0.0347,28.9,tests performed,66700629.0,26713922.0,25082132.0,10793985.0,113359.0,47889.0,188.74,75.59,70.97,30.54,1355.0,6276.0,0.018000000000000002,11.11,35340680.0,15.322000000000001,31.9,3.295,1.845,49045.41099999999,32.3,259.538,17.72,1.8,25.4,41.34,2.7,75.13,0.8540000000000001,133.0,21.63,-19.49,3910.614525
354,25667,BRA,South America,Brazil,2022-06-29,32206954.0,0.0,45174.429000000004,670848.0,0.0,188.28599999999997,150504.39800000002,0.0,211.102,3134.9,0.0,0.88,1.37,22.0,1.859,143.0,12.085,,,760.0,65.335,70923215.0,126242.0,331.42699999999996,0.59,121418.0,0.5670000000000001,0.0483,20.7,tests performed,454770759.0,184662547.0,168901560.0,106526094.0,430569.0,560427.0,212.52,86.29,78.93,49.78,2619.0,21900.0,0.01,39.81,213993441.0,25.04,33.5,8.552,5.06,14103.452,3.4,177.96099999999998,8.11,10.1,17.9,97.164,2.2,75.88,0.765,781197.4,23.53,5.87,3650.567028
355,66202,GMB,Africa,Gambia,2022-06-29,12002.0,0.0,0.0,365.0,0.0,0.0,4826.017,0.0,0.0,146.767,0.0,0.0,0.03,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,155686.0,2256.0,62.602,0.99,68.0,0.027000000000000003,0.0105,95.2,tests performed,812811.0,449464.0,354340.0,9007.0,429.0,3315.0,32.68,18.07,14.25,0.36,1333.0,0.0,0.0,13.89,2486937.0,207.56599999999997,17.5,2.339,1.4169999999999998,1561.767,10.1,331.43,1.91,0.7,31.2,7.876,1.1,62.05,0.496,546.2,16.03,-9.97,1933.2186570000001
356,75249,GIN,Africa,Guinea,2022-06-29,36817.0,0.0,0.0,442.0,0.0,0.0,2727.743,0.0,0.0,32.747,0.0,0.0,0.01,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,708410.0,10381.0,52.486000000000004,0.569,1193.0,0.08800000000000001,0.0,72.1,tests performed,6329141.0,4550563.0,2639658.0,273.0,522.0,4216.0,46.89,33.71,19.56,0.0,312.0,1925.0,0.013999999999999999,49.07,13497237.0,51.755,19.0,3.135,1.733,1998.9260000000002,35.3,336.717,2.42,35.3,52.0,17.45,0.3,61.6,0.47700000000000004,43113.3,25.35,10.04,2362.38969
357,82110,ISL,Europe,Iceland,2022-06-29,193987.0,0.0,279.42900000000003,153.0,0.0,0.0,526006.529,0.0,757.686,414.86800000000005,0.0,0.0,1.68,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,1373785.0,632.0,3725.094,1.714,460.0,1.247,0.2219,4.5,tests performed,805469.0,309770.0,290193.0,250542.0,1925.0,61.0,218.41,84.0,78.69,67.94,165.0,10.0,0.003,11.11,368792.0,3.404,37.3,14.431,9.207,46482.958,0.2,117.992,5.31,14.3,15.2,84.169,2.91,82.99,0.9490000000000001,213.9,4.1,13.64,580.0017353999999
358,82997,IND,Asia,India,2022-06-29,43452164.0,18819.0,15315.143,525116.0,39.0,25.0,31184.069,13.505999999999998,10.991,376.85699999999997,0.027999999999999997,0.018000000000000002,1.2,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,858526354.0,388641.0,616.134,0.27899999999999997,442229.0,0.317,0.0278,35.9,samples tested,1973822032.0,1016311008.0,913642889.0,43868135.0,1470127.0,1432271.0,141.65,72.94,65.57,3.15,1028.0,177132.0,0.013000000000000001,37.04,1393409033.0,450.41900000000004,28.2,5.989,3.4139999999999997,6426.674,21.2,282.28,10.39,1.9,20.6,59.55,0.53,69.66,0.645,213.9,4.1,13.64,580.0017353999999
359,29866,BDI,Africa,Burundi,2022-06-29,42542.0,0.0,10.0,38.0,0.0,0.0,3471.278,0.0,0.816,3.1010000000000004,0.0,0.0,0.87,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,1611285.0,3281.0,131.475,0.268,1061.0,0.087,0.0236,42.4,tests performed,17139.0,15287.0,14707.0,5.0,93.0,51.0,0.14,0.12,0.12,0.0,4.0,51.0,0.0,13.89,12255429.0,423.06199999999995,17.5,2.562,1.504,702.225,71.7,293.068,6.05,1.6,23.9,6.144,0.8,61.58,0.433,66889.5,26.21,-5.49,9698.83226
360,106968,LUX,Europe,Luxembourg,2022-06-29,263167.0,2004.0,809.143,1094.0,2.0,1.0,414557.65,3156.83,1274.614,1723.339,3.1510000000000002,1.575,1.62,3.0,4.726,15.0,23.629,10.0,5.282,1.0,1.575,4299901.0,2293.0,6773.482,3.612,1630.0,2.568,0.376,2.7,tests performed,1303874.0,481318.0,462338.0,390117.0,299.0,186.0,205.39,75.82,72.83,61.45,293.0,10.0,0.002,19.44,634814.0,231.447,39.7,14.312000000000001,9.842,94277.965,0.2,128.275,4.42,20.9,26.0,1.188,4.51,82.25,0.9159999999999999,-48.9,-0.46,7.27,-77.03043726
361,24807,BWA,Africa,Botswana,2022-06-29,321968.0,0.0,491.42900000000003,2739.0,0.0,2.8569999999999998,134307.78699999998,0.0,204.998,1142.5639999999999,0.0,1.192,0.58,22.0,1.859,143.0,12.085,,,760.0,65.335,2285160.0,2647.0,953.2460000000001,1.104,857.0,0.35700000000000004,0.0483,20.7,tests performed,2730607.0,1696430.0,1512567.0,391031.0,10435.0,197.0,113.91,70.77,63.1,16.31,82.0,81.0,0.003,13.89,2397240.0,4.044,25.8,3.9410000000000003,2.242,15807.374,0.2,237.372,4.81,5.7,34.4,97.164,1.8,69.59,0.735,22134.5,26.94,18.13,6782.527373999999
362,101804,LBR,Africa,Liberia,2022-06-29,7493.0,0.0,0.0,294.0,0.0,0.0,1446.467,0.0,0.0,56.754,0.0,0.0,0.16,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,139824.0,553.0,26.991999999999997,0.256,234.0,0.10800000000000001,0.1172,8.5,tests performed,2716330.0,2458813.0,2129565.0,1912.0,8242.0,89696.0,52.44,47.47,41.11,0.04,17315.0,101042.0,1.9509999999999998,48.15,5180208.0,49.126999999999995,19.2,3.057,1.756,752.788,38.6,272.509,2.42,1.5,18.1,1.188,0.8,64.1,0.48,15149.6,30.18,57.47,2238.035464
363,58438,OWID_EUR,Africa,Europe,2022-06-29,205147993.0,470500.0,333429.714,1856618.0,572.0,440.42900000000003,273909.38899999997,628.202,445.189,2478.9179999999997,0.764,0.588,0.55,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,5024643.0,4118.0,42.626000000000005,0.035,4906.0,0.042,0.1325,7.5,tests performed,1295666764.0,515104000.0,492886505.0,307510956.0,248750.0,239134.0,172.99,68.78,65.81,41.06,319.0,33442.0,0.004,25.0,748962983.0,104.95700000000001,19.8,3.5260000000000002,2.063,1729.9270000000001,26.7,182.63400000000001,7.47,0.4,8.5,7.96,0.3,66.6,0.485,3805.5,9.78,12.82,2871.66802
364,35862,TCD,Africa,Chad,2022-06-29,7425.0,0.0,0.14300000000000002,193.0,0.0,0.0,438.96,0.0,0.008,11.41,0.0,0.0,0.38,220.0,5.779,3505.0,92.072,,,760.0,65.335,218873.0,2691.0,12.94,40.467,129.0,0.008,0.0044,225.9,tests performed,2356138.0,2218493.0,2093522.0,23536.0,12887.0,72.0,13.93,13.12,12.38,35.39,4.0,147.0,0.001,15.74,16914985.0,11.833,16.7,2.4859999999999998,1.446,1768.1529999999998,38.4,280.995,6.1,2.1,16.5,5.818,1.0,54.24,0.39799999999999996,188.6,6.81,13.94,335.6463149
365,155842,STP,Africa,Sao Tome and Principe,2022-06-29,6043.0,0.0,2.8569999999999998,73.0,0.0,0.0,27054.494,0.0,12.790999999999999,326.82099999999997,0.0,0.0,-0.04,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,4694.0,767.0,21.015,3.4339999999999997,110.0,0.49200000000000005,0.0091,110.0,tests performed,218850.0,124684.0,97402.0,22342.0,9.0,204.0,97.98,55.82,43.61,10.0,913.0,76.0,0.034,13.89,223364.0,212.84099999999998,18.7,2.886,2.162,3052.7140000000004,32.3,270.113,2.42,16.7,38.1,41.34,2.9,70.39,0.625,133.0,21.63,-19.49,3910.614525
366,196348,OWID_WRL,Africa,World,2022-06-29,546468715.0,934384.0,702814.286,6334362.0,1772.0,1448.714,69393.155,118.652,89.24700000000001,804.367,0.225,0.184,1.2,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,3943.0,56715.0,6.444,0.578,620.0,0.006,0.9523,1.1,tests performed,12100387019.0,5251684069.0,4814217546.0,2125635734.0,7669290.0,6080962.0,153.66,66.69,61.13,26.99,772.0,783352.0,0.01,25.93,7874965730.0,58.045,30.9,8.696,5.355,15469.207,10.0,233.07,8.51,6.434,34.635,60.13,2.705,72.58,0.737,38486.9,10.93,1.96,1134.110282
367,94666,KEN,Africa,Kenya,2022-06-29,333290.0,392.0,401.714,5652.0,0.0,0.14300000000000002,6061.394,7.129,7.306,102.79,0.0,0.003,0.96,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,3728165.0,2868.0,67.80199999999999,0.052000000000000005,3338.0,0.061,0.1107,9.0,tests performed,18535975.0,12641679.0,9326814.0,376018.0,13702.0,12048.0,33.71,22.99,16.96,0.68,219.0,4649.0,0.008,37.04,54985702.0,87.324,20.0,2.6860000000000004,1.528,2993.028,36.8,218.637,2.92,1.2,20.4,24.651,1.4,66.7,0.601,83124.6,26.77,-14.32,4376.140237
368,83852,IDN,Asia,Indonesia,2022-06-29,6086212.0,2149.0,1899.1429999999998,156731.0,3.0,4.143,22022.625,7.776,6.872000000000001,567.123,0.011000000000000001,0.015,1.26,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,59503735.0,103179.0,215.31099999999998,0.373,114413.0,0.414,0.0837,11.9,people tested,417522347.0,201000560.0,168251795.0,48269992.0,0.0,267095.0,151.08,72.73,60.88,17.47,966.0,43565.0,0.016,52.78,276361788.0,145.725,29.3,5.319,3.053,11188.743999999999,5.7,342.86400000000003,6.32,2.8,76.1,64.204,1.04,71.72,0.718,213.9,4.1,13.64,580.0017353999999
369,123647,MMR,Asia,Myanmar,2022-06-29,613583.0,6.0,8.857000000000001,19434.0,0.0,0.0,11195.541000000001,0.109,0.162,354.596,0.0,0.0,1.25,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,8332037.0,16383.0,152.028,0.299,5100.0,0.09300000000000001,0.0016,626.3,samples tested,62259560.0,33004742.0,27027467.0,2227351.0,3800.0,187094.0,113.6,60.22,49.31,4.06,3414.0,110614.0,0.20199999999999999,51.85,54806014.0,81.721,29.1,5.732,3.12,5591.597,6.4,202.104,4.61,6.3,35.2,79.28699999999999,0.9,67.13,0.583,2633.7,21.49,55.05,4193.449258
370,130839,NGA,Africa,Nigeria,2022-06-29,256958.0,0.0,35.286,3144.0,0.0,0.0,1215.502,0.0,0.16699999999999998,14.872,0.0,0.0,1.43,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,5279608.0,11989.0,24.974,0.057,8950.0,0.042,0.0056,180.0,tests performed,50619238.0,28340766.0,20986761.0,1171892.0,186047.0,301975.0,23.94,13.41,9.93,0.55,1428.0,67082.0,0.032,40.74,211400704.0,209.588,18.1,2.7510000000000003,1.4469999999999998,5338.454000000001,44.5,181.013,2.42,0.6,10.8,41.949,0.3,54.69,0.539,8148.4,31.97,5.18,1215.747423
371,30756,KHM,Asia,Cambodia,2022-06-29,136272.0,10.0,1.429,3056.0,0.0,0.0,8041.331999999999,0.59,0.084,180.333,0.0,0.0,0.96,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,2977609.0,3334.0,175.707,0.19699999999999998,566.0,0.033,0.0,1772.7,tests performed,40956960.0,15078410.0,14377340.0,9435373.0,61376.0,35026.0,241.68,88.98,84.84,55.68,2067.0,1468.0,0.009000000000000001,16.67,16946446.0,90.67200000000001,25.6,4.412,2.385,3645.07,71.7,270.892,4.0,2.0,33.7,66.229,0.8,69.82,0.594,66889.5,26.21,-5.49,9698.83226
372,129981,NER,Africa,Niger,2022-06-29,9031.0,0.0,0.0,310.0,0.0,0.0,359.36,0.0,0.0,12.335,0.0,0.0,0.05,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,254538.0,374.0,10.129,0.015,260.0,0.01,0.0115,86.7,tests performed,3530154.0,3330202.0,2603341.0,2756062.0,7377.0,118094.0,14.05,13.25,10.36,53.76,4699.0,161635.0,0.643,5.56,25130810.0,16.955,15.1,2.553,1.3780000000000001,926.0,44.5,238.33900000000003,2.42,0.1,15.4,8.978,0.3,62.42,0.39399999999999996,8148.4,31.97,5.18,1215.747423
373,80398,HKG,Asia,Hong Kong,2022-06-29,1243439.0,2004.0,1826.1429999999998,9399.0,0.0,0.28600000000000003,164632.851,265.332,241.78400000000002,1244.4389999999999,0.0,0.038,1.0,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,49426686.0,263.0,6544.154,0.023,72419.0,9.588,0.0038,262.5,tests performed,17693546.0,6743051.0,6450573.0,4499922.0,13774.0,15158.0,234.26,89.28,85.41,59.58,2007.0,1010.0,0.013000000000000001,52.78,7552800.0,7039.714,44.8,16.303,10.158,56054.92,16.0,240.208,8.33,2.0,23.1,84.169,0.7,84.86,0.9490000000000001,10531.0,9.01,66.75,1394.317339
374,183536,TCA,North America,Turks and Caicos Islands,2022-06-29,6219.0,8.0,1.143,36.0,0.0,0.0,158542.803,203.946,29.135,917.7589999999999,0.0,0.0,0.06,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,163164533.0,128854.0,1918.618,1.515,134604.0,1.5830000000000002,0.0077,130.4,tests performed,69803.0,31989.0,29963.0,7851.0,5279.0,16.0,177.95,81.55,76.39,20.01,408.0,9.0,0.023,66.67,39226.0,37.312,26.9,4.277,2.541,16389.023,0.2,536.783,7.11,14.1,41.1,100.0,7.4,80.22,0.715,20481.6,16.84,40.84,1715.9856710000001
375,42216,CIV,Africa,Cote d'Ivoire,2022-06-29,83309.0,260.0,66.714,805.0,0.0,0.14300000000000002,3079.402,9.611,2.4659999999999997,29.756,0.0,0.005,1.82,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,1540831.0,635.0,56.955,0.023,1206.0,0.045,0.031,32.2,tests performed,12753769.0,8026397.0,5540193.0,87290.0,20396.0,0.0,47.14,29.67,20.48,0.32,0.0,5281.0,0.02,15.74,27053629.0,76.399,18.7,2.9330000000000003,1.5819999999999999,3601.006,28.2,303.74,2.42,6.4,17.4,19.351,1.13,57.78,0.5379999999999999,5946.8,11.58,-1.44,1157.17818
376,182335,TUR,Asia,Turkey,2022-06-29,15123331.0,26635.0,5369.857,99032.0,17.0,5.143,177832.13100000002,313.195,63.143,1164.497,0.2,0.06,0.02,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,163164533.0,128854.0,1918.618,1.515,134604.0,1.5830000000000002,0.0077,130.4,tests performed,147825439.0,57858289.0,53087739.0,36879411.0,3412.0,2579.0,173.82,68.03,62.42,43.37,30.0,421.0,0.0,13.89,85042736.0,104.914,31.6,8.152999999999999,5.061,25129.341,0.2,171.285,12.13,14.1,41.1,78.687,2.81,77.69,0.82,20481.6,16.84,40.84,1715.9856710000001
377,54974,ERI,Africa,Eritrea,2022-06-29,9796.0,0.0,1.714,103.0,0.0,0.0,2720.006,0.0,0.47600000000000003,28.599,0.0,0.0,0.94,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,23693.0,501.0,6.579,0.34600000000000003,109.0,0.075,0.0157,63.6,tests performed,484554.0,267610.0,208104.0,4420.0,639.0,0.0,33.42,18.46,14.35,0.3,0.0,0.0,0.0,50.93,3601462.0,44.303999999999995,19.3,3.6069999999999998,2.171,1510.4589999999998,2.2,311.11,6.05,0.2,11.4,24.64,0.7,66.32,0.45899999999999996,4739.0,16.28,49.24,727.0077472
378,13803,BHS,North America,Bahamas,2022-06-29,35902.0,0.0,28.429000000000002,817.0,0.0,0.14300000000000002,90452.844,0.0,71.624,2058.38,0.0,0.36,0.9,50.0,5.529,874.0,96.649,,,,,241200.0,567.0,607.688,1.429,134.0,0.33799999999999997,0.3486,2.9,tests performed,340866.0,166471.0,157964.0,27866.0,6771.0,189.0,85.88,41.94,39.8,7.02,476.0,34.0,0.009000000000000001,44.44,396914.0,39.497,34.3,8.996,5.2,27717.847,0.7,235.954,13.17,3.1,20.4,83.241,2.9,73.92,0.8140000000000001,43744.8,33.01,2.0,4278.913044
379,126610,NLD,Europe,Netherlands,2022-06-29,8188150.0,6271.0,5085.857,22456.0,8.0,3.1430000000000002,476801.094,365.164,296.153,1307.627,0.466,0.183,1.33,39.0,2.271,675.0,39.306,28.0,1.63,619.0,36.045,30687346.0,6207.0,1786.943,0.361,4928.0,0.287,0.685,1.5,tests performed,33326378.0,12804977.0,11980109.0,9295105.0,144666.0,1769.0,194.06,74.56,69.76,54.13,103.0,194.0,0.001,19.44,17173094.0,508.54400000000004,43.2,18.779,11.880999999999998,48472.545,15.0,109.361,5.29,24.4,27.3,47.782,3.32,82.28,0.9440000000000001,30266.9,7.84,1.12,1762.460509
380,177550,THA,Asia,Thailand,2022-06-29,4522915.0,5264.0,2241.0,30648.0,28.0,15.0,64658.475999999995,75.253,32.037,438.13599999999997,0.4,0.214,1.09,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,24733803.0,7706.0,353.588,0.11,11151.0,0.159,0.3093,3.2,tests performed,138879750.0,56704644.0,52880403.0,29294703.0,67839.0,65308.0,198.54,81.06,75.6,41.88,934.0,5714.0,0.008,30.09,69950844.0,135.132,40.1,11.373,6.89,16277.671,0.1,109.861,7.04,1.9,38.8,90.67,2.1,77.15,0.777,97687.9,8.02,19.55,1396.5221060000001
381,10354,OWID_ASI,North America,Asia,2022-06-29,156764248.0,168982.0,126091.0,1444057.0,239.0,243.143,33507.768,36.119,26.951,308.66200000000003,0.051,0.052000000000000005,-0.01,372.0,8.157,,,,,,,793.0,428.0,7.398,3.9930000000000003,1467.0,0.494,0.003,333.3,tests performed,8252147604.0,3558692759.0,3311772110.0,1343301388.0,5045909.0,4524916.0,176.39,76.07,70.79,28.71,967.0,453485.0,0.01,25.93,4678444992.0,584.8,41.2,13.085,7.452000000000001,35973.781,1.8,341.01,11.62,1.5,52.1,94.04299999999999,4.2,76.29,0.7759999999999999,352.2,26.0,11.85,3285.6010079999996
382,28193,BGR,Europe,Bulgaria,2022-06-29,1171767.0,532.0,373.286,37251.0,2.0,2.286,169903.671,77.139,54.126000000000005,5401.314,0.29,0.331,1.47,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,10080207.0,4881.0,1461.608,0.708,3104.0,0.45,0.0777,12.9,tests performed,4409941.0,2092116.0,2061696.0,766083.0,1298.0,573.0,63.94,30.34,29.89,11.11,83.0,63.0,0.001,11.11,6896655.0,65.18,44.7,20.801,13.272,18563.307,1.5,424.68800000000005,5.81,30.1,44.4,97.164,7.454,75.05,0.816,66889.5,26.21,-5.49,9698.83226
383,49039,DJI,Africa,Djibouti,2022-06-29,15690.0,0.0,0.0,189.0,0.0,0.0,15655.605,0.0,0.0,188.58599999999998,0.0,0.0,0.04,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,309732.0,912.0,309.053,0.91,196.0,0.196,0.0,31.2,tests performed,222387.0,201787.0,161003.0,3650643.0,12179.0,1785.0,22.19,20.13,16.07,62.8,1781.0,860.0,0.086,49.07,1002197.0,41.285,25.4,4.213,2.38,2705.406,22.5,258.03700000000003,6.05,1.7,24.5,4.4719999999999995,1.4,67.11,0.524,1780.7,1.29,0.54,306.3147244
384,97623,KGZ,Asia,Kyrgyzstan,2022-06-29,201053.0,0.0,4.143,2991.0,0.0,0.0,30332.299,0.0,0.625,451.244,0.0,0.0,-0.0,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,8208880.0,8163.0,1896.4489999999998,1.886,6104.0,1.41,0.0165,60.4,tests performed,3152324.0,1571206.0,1321103.0,1364852.0,1290.0,1229.0,47.56,23.7,19.93,31.53,185.0,251.0,0.004,33.33,6628347.0,32.333,26.3,4.489,2.8819999999999997,3393.474,1.4,436.36199999999997,7.11,3.6,50.5,89.22,4.5,71.45,0.6970000000000001,15644.0,20.79,13.42,2360.166117
385,76926,GUY,South America,Guyana,2022-06-29,67325.0,104.0,90.0,1253.0,2.0,0.5710000000000001,85186.043,131.591,113.87700000000001,1585.4160000000002,2.531,0.723,1.01,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,442695.0,390.0,560.14,0.19399999999999998,2771.0,3.5060000000000002,0.3388,3.0,tests performed,913974.0,478010.0,368450.0,67514.0,58394.0,12034.0,115.64,60.48,46.62,8.54,15227.0,475.0,0.06,29.63,790329.0,3.952,26.3,5.305,2.8369999999999997,7435.047,67.1,373.159,11.62,35.3,52.0,77.15899999999999,1.6,69.91,0.682,43113.3,25.35,10.04,2362.38969
386,192240,VUT,Oceania,Vanuatu,2022-06-29,11266.0,60.0,34.286,14.0,0.0,0.0,35826.041,190.801,109.029,44.52,0.0,0.0,0.7,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,11989.0,2072.0,38.125,0.595,76.0,0.242,0.0132,76.0,people tested,309433.0,172232.0,126591.0,10610.0,145313.0,151.0,98.4,54.77,40.26,3.37,480.0,0.0,0.0,68.06,314464.0,22.662,23.1,4.394,2.62,2921.909,13.2,546.3,12.02,2.8,34.5,25.209,4.0,70.47,0.609,38486.9,10.93,1.96,1134.110282
387,190796,URY,South America,Uruguay,2022-06-29,957629.0,0.0,811.571,7331.0,0.0,2.714,274773.955,0.0,232.865,2103.495,0.0,0.779,1.11,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,6086835.0,2072.0,1746.505,0.595,3188.0,0.915,0.0836,12.0,people tested,8672174.0,2997030.0,2886824.0,2788320.0,8831.0,8184.0,248.83,85.99,82.83,80.01,2348.0,157.0,0.005,13.89,3485152.0,19.750999999999998,35.6,14.655,10.360999999999999,20551.409,0.1,160.708,6.93,14.0,19.9,21.221999999999998,2.8,77.91,0.8170000000000001,6095.1,7.28,8.55,1748.8763760000002
388,153571,VCT,North America,Saint Vincent and the Grenadines,2022-06-29,9045.0,7.0,6.428999999999999,112.0,1.0,0.14300000000000002,81289.488,62.911,57.775,1006.57,8.987,1.284,0.96,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,108388.0,59.0,974.1080000000001,0.53,50.0,0.449,0.2257,4.4,tests performed,71501.0,36742.0,30855.0,3904.0,20.0,28.0,64.26,33.02,27.73,3.51,252.0,9.0,0.008,66.67,111269.0,281.78700000000003,31.8,7.724,4.832,10727.146,56.0,252.675,11.62,4.7,21.0,87.20200000000001,2.6,72.53,0.738,12.2,3.33,8.11,227.8414821
389,108700,MDG,Africa,Madagascar,2022-06-29,65381.0,0.0,53.143,1398.0,0.0,0.0,2299.9339999999997,0.0,1.869,49.178000000000004,0.0,0.0,0.44,3.0,4.726,15.0,23.629,10.0,5.282,1.0,1.575,451753.0,693.0,15.892000000000001,0.024,541.0,0.019,0.0547,18.3,tests performed,2369775.0,1290584.0,1199011.0,43528.0,13544.0,0.0,8.34,4.54,4.22,0.15,0.0,0.0,0.0,17.59,28427333.0,43.951,19.6,2.929,1.686,1416.44,77.6,405.994,3.94,20.9,26.0,50.54,0.2,67.04,0.528,413.4,8.35,22.9,627.8943667000001
390,16354,BRB,North America,Barbados,2022-06-29,84095.0,120.0,121.85700000000001,476.0,3.0,0.5710000000000001,292292.88,417.09,423.545,1654.455,10.427,1.986,1.03,50.0,5.529,874.0,96.649,,,,,697476.0,734.0,2424.25,2.551,507.0,1.7619999999999998,0.1812,5.5,tests performed,316126.0,162616.0,153510.0,29645608.0,56.0,39.0,109.88,56.52,53.36,17.83,136.0,17.0,0.006,40.74,287708.0,664.4630000000001,39.8,14.952,9.472999999999999,16978.068,14.8,170.05,13.57,1.9,14.5,88.469,5.8,79.19,0.8140000000000001,-270.0,-5.42,-3.28,-938.4514855
391,5143,AGO,Africa,Angola,2022-06-29,101320.0,1559.0,222.71400000000003,1900.0,0.0,0.0,2985.83,45.943000000000005,6.563,55.992,0.0,0.0,-0.0,0.0,0.0,,,,,,,1618566.0,1459.0,47.698,0.043,1013.0,0.03,0.033,30.3,tests performed,20397115.0,13153694.0,7127231.0,737233.0,1973.0,43342.0,60.11,38.76,21.0,2.17,1277.0,21560.0,0.064,22.22,33933611.0,23.89,16.8,2.405,1.3619999999999999,5819.495,0.5,276.045,3.94,29.0,37.8,26.664,1.9,61.15,0.581,89.6,27.2,31.41,1158.311141
392,78658,OWID_HIC,North America,High income,2022-06-29,321712483.0,827737.0,578386.286,2447824.0,1492.0,1014.571,264799.142,681.304,476.065,2014.786,1.228,0.835,1.32,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,206594.0,263.0,17.9,0.023,197.0,0.017,0.0363,27.6,tests performed,2504270902.0,971652498.0,910467440.0,647051588.0,659718.0,722028.0,206.12,79.98,74.94,53.26,594.0,65354.0,0.005,34.26,1214930230.0,398.44800000000004,24.3,4.8,2.9539999999999997,1653.1729999999998,23.5,430.548,6.65,2.9,23.1,22.863000000000003,0.7,64.0,0.51,43113.3,25.35,10.04,2362.38969
393,144424,POL,Europe,Poland,2022-06-29,6014404.0,545.0,345.714,116424.0,4.0,2.8569999999999998,159123.846,14.419,9.147,3080.244,0.106,0.076,1.61,41.0,2.387,287.0,7.593,9.0,1.669,234.0,42.846000000000004,36962382.0,21192.0,977.918,0.191,3366.0,0.08900000000000001,0.0591,16.9,tests performed,54594605.0,22734782.0,22514889.0,12157596.0,234.0,2381.0,144.44,60.15,59.57,32.17,63.0,409.0,0.001,14.81,37797000.0,124.027,41.8,16.762999999999998,10.202,27216.445,3.5,227.331,5.91,23.3,33.1,78.46300000000001,6.62,78.73,0.88,169651.0,16.76,-7.57,4488.477922
394,198003,ZMB,Africa,Zambia,2022-06-29,325498.0,0.0,134.286,4003.0,0.0,0.7140000000000001,17203.314,0.0,7.097,211.56799999999998,0.0,0.038,1.01,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,3514038.0,2352.0,185.725,0.124,2122.0,0.11199999999999999,0.0582,17.2,tests performed,7103097.0,3240892.0,4458897.0,33684.0,98008.0,40542.0,37.54,17.13,23.57,0.18,2143.0,8387.0,0.044000000000000004,12.04,18920657.0,22.995,17.7,2.48,1.5419999999999998,3689.2509999999997,57.5,234.49900000000002,3.94,3.1,24.7,13.937999999999999,2.0,63.89,0.584,38486.9,10.93,1.96,1134.110282
395,178385,TLS,Asia,Timor,2022-06-29,22957.0,3.0,1.714,133.0,0.0,0.0,17082.69,2.2319999999999998,1.276,98.96799999999999,0.0,0.0,0.96,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,264839.0,504.0,197.071,0.375,145.0,0.10800000000000001,0.0039,253.9,tests performed,1638158.0,822666.0,694694.0,120798.0,7881.0,4883.0,121.9,61.22,51.69,8.99,3634.0,1291.0,0.096,16.67,1343875.0,87.176,18.0,3.556,1.8969999999999998,6570.102,30.3,335.346,6.86,6.3,78.1,28.178,5.9,69.5,0.606,97687.9,8.02,19.55,1396.5221060000001
396,109528,MWI,Africa,Malawi,2022-06-29,86478.0,30.0,27.285999999999998,2645.0,0.0,0.0,4401.435,1.527,1.389,134.621,0.0,0.0,1.35,3.0,4.726,15.0,23.629,10.0,5.282,1.0,1.575,589303.0,490.0,29.994,0.025,307.0,0.016,0.0656,15.2,tests performed,2166402.0,2047317.0,1590299.0,740.0,14163.0,0.0,11.03,10.42,8.09,0.0,0.0,64387.0,0.32799999999999996,47.22,19647681.0,197.519,18.1,2.9789999999999996,1.7830000000000001,1095.042,71.4,227.34900000000002,3.94,4.4,24.7,8.704,1.3,64.26,0.483,413.4,8.35,22.9,627.8943667000001
397,119424,MNG,Asia,Mongolia,2022-06-29,928586.0,573.0,329.14300000000003,2179.0,0.0,0.0,278914.793,172.109,98.863,654.495,0.0,0.0,0.25,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,7408778.0,4118.0,2225.3379999999997,1.237,487.0,0.146,0.4242,2.4,samples tested,5492919.0,2272965.0,2175617.0,1044337.0,1100.0,143.0,164.99,68.27,65.35,31.37,43.0,0.0,0.0,11.11,3329282.0,1.98,28.6,4.031000000000001,2.421,11840.846000000001,0.5,460.043,4.82,5.5,46.5,71.18,7.0,69.87,0.737,609.0,1.43,-2.07,182.92232380000002
398,38471,COL,South America,Colombia,2022-06-29,6151354.0,0.0,2813.857,139970.0,0.0,7.428999999999999,119989.332,0.0,54.888000000000005,2730.278,0.0,0.145,0.6,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,35241195.0,9497.0,687.421,0.185,18395.0,0.359,0.085,11.8,tests performed,85767160.0,42418509.0,36180137.0,12964054.0,18933.0,43920.0,167.3,82.74,70.57,25.29,857.0,3796.0,0.006999999999999999,25.93,51265841.0,44.223,32.2,7.646,4.312,13254.948999999999,4.5,124.24,7.44,4.7,13.5,65.38600000000001,1.71,77.29,0.767,180760.5,29.56,2.99,3525.944303
399,22304,BOL,South America,Bolivia,2022-06-29,925096.0,2975.0,1079.857,21953.0,0.0,0.14300000000000002,78179.75200000001,251.417,91.259,1855.245,0.0,0.012,1.52,22.0,1.859,143.0,12.085,,,760.0,65.335,4440371.0,6982.0,375.255,0.59,6277.0,0.53,0.0726,13.8,tests performed,13892966.0,7229825.0,6003856.0,1657937.0,9396.0,7883.0,117.41,61.1,50.74,14.01,666.0,1303.0,0.011000000000000001,23.15,11832936.0,10.202,25.4,6.704,4.393,6885.829000000001,7.1,204.299,6.89,0.6,12.3,25.383000000000003,1.1,71.51,0.718,57352.5,51.82,43.99,4846.852886
400,125751,NPL,Asia,Nepal,2022-06-29,979658.0,51.0,33.429,11952.0,0.0,0.0,33012.995,1.719,1.126,402.764,0.0,0.0,1.45,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,6969050.0,5062.0,234.84599999999998,0.171,2745.0,0.09300000000000001,0.006999999999999999,142.9,samples tested,46113867.0,22995709.0,20267818.0,6300646.0,136996.0,105832.0,155.4,77.49,68.3,21.23,3566.0,62662.0,0.21100000000000002,46.3,29674920.0,204.43,25.0,5.809,3.2119999999999997,2442.804,15.0,260.797,7.26,9.5,37.8,47.782,0.3,70.78,0.602,2633.7,21.49,55.05,4193.449258
401,54138,GNQ,Africa,Equatorial Guinea,2022-06-29,16034.0,0.0,10.286,183.0,0.0,0.0,11058.761999999999,0.0,7.093999999999999,126.21600000000001,0.0,0.0,1.42,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,484554.0,501.0,334.2,0.34600000000000003,109.0,0.075,0.0157,63.6,tests performed,484554.0,267610.0,208104.0,4420.0,639.0,0.0,33.42,18.46,14.35,0.3,0.0,0.0,0.0,37.96,1449891.0,45.193999999999996,22.4,2.846,1.7519999999999998,22604.873,2.2,202.812,7.78,2.5,18.8,24.64,2.1,58.74,0.5920000000000001,4739.0,16.28,49.24,727.0077472
402,152728,SPM,North America,Saint Pierre and Miquelon,2022-06-29,2779.0,12.0,1.714,1.0,0.0,0.0,481545.659,2079.362,297.052,173.28,0.0,0.0,0.86,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,208560.0,117.0,1131.013,0.634,145.0,0.7859999999999999,0.1488,6.7,tests performed,121513.0,59602.0,54309.0,7602.0,49.0,17.0,65.9,32.32,29.45,4.12,92.0,6.0,0.003,66.67,5771.0,293.187,34.9,9.721,6.405,12951.839,56.0,204.62,11.62,4.7,21.0,87.20200000000001,1.3,81.07,0.759,12.2,3.33,8.11,227.8414821
403,191638,UZB,Asia,Uzbekistan,2022-06-29,240667.0,98.0,110.286,1637.0,0.0,0.0,7091.84,2.888,3.25,48.238,0.0,0.0,1.36,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,6086835.0,2072.0,1746.505,0.595,3188.0,0.915,0.0836,12.0,people tested,55782994.0,19699111.0,15571588.0,10296725.0,145313.0,130190.0,164.38,58.05,45.89,30.34,3836.0,12536.0,0.037000000000000005,11.11,33935765.0,76.134,28.2,4.468999999999999,2.873,6253.104,0.1,724.4169999999999,7.57,1.3,24.7,21.221999999999998,4.0,71.72,0.72,38486.9,10.93,1.96,1134.110282
404,70511,GRC,Europe,Greece,2022-06-29,3661004.0,16115.0,12564.571000000002,30218.0,12.0,13.429,353012.565,1553.89,1211.54,2913.7729999999997,1.157,1.295,1.41,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,84483362.0,73217.0,8146.314,7.06,95227.0,9.182,0.0827,12.1,samples tested,21091153.0,7919114.0,7629060.0,6119231.0,4667.0,3487.0,203.37,76.36,73.56,59.0,336.0,120.0,0.001,24.07,10370747.0,83.479,45.3,20.396,14.524000000000001,24574.382,1.5,175.695,4.55,35.3,52.0,41.047,4.21,82.24,0.888,31443.0,10.58,12.88,3031.8934600000002
405,116341,MEX,North America,Mexico,2022-06-29,5986917.0,0.0,13618.286,325638.0,0.0,25.714000000000002,45960.502,0.0,104.545,2499.865,0.0,0.19699999999999998,1.54,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,15569464.0,1462.0,119.524,0.011000000000000001,12427.0,0.095,0.488,2.0,people tested,209179257.0,88336802.0,79947470.0,53157386.0,157958.0,21292.0,160.58,67.81,61.37,40.81,163.0,4943.0,0.004,17.59,130262220.0,66.444,29.3,6.857,4.321000000000001,17336.468999999997,2.5,152.783,13.06,6.9,21.4,87.84700000000001,1.38,75.05,0.779,663318.5,37.67,-8.77,5092.178684
406,167236,KOR,Asia,South Korea,2022-06-29,18359341.0,9585.0,7651.143,24547.0,10.0,8.429,357845.73,186.82299999999998,149.13,478.45099999999996,0.195,0.16399999999999998,1.17,59.0,1.15,1725.0,28.73,42.0,0.8190000000000001,413.0,8.05,100269452.0,145445.0,1954.3729999999998,2.835,116619.0,2.273,0.0687,14.5,people tested,125965168.0,45068403.0,44628292.0,37785123.0,12756.0,11454.0,245.52,87.84,86.99,73.65,223.0,278.0,0.001,13.89,51305184.0,527.967,43.4,13.914000000000001,8.622,35938.373999999996,0.2,85.99799999999999,6.8,6.2,40.9,43.993,12.27,83.03,0.9159999999999999,38323.1,5.28,18.0,746.9635037
407,118577,MCO,Europe,Monaco,2022-06-29,12945.0,58.0,32.857,58.0,1.0,0.14300000000000002,327555.668,1467.611,831.405,1467.611,25.304000000000002,3.615,1.3,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,15569464.0,2711.0,119.524,0.674,12754.0,3.1689999999999996,0.2407,4.2,tests performed,65140.0,28875.0,25667.0,10598.0,1079.0,158.0,164.83,73.06,64.95,26.82,3998.0,23.0,0.057999999999999996,17.59,39520.0,19347.5,37.6,10.864,6.955,5189.972,0.2,408.50199999999995,5.46,5.9,44.6,86.979,13.8,86.75,0.75,142.0,12.37,10.24,3593.1174090000004
408,11245,AUS,Oceania,Australia,2022-06-29,8130927.0,49061.0,30154.714,9897.0,84.0,48.286,315296.207,1902.4579999999999,1169.3210000000001,383.78,3.2569999999999997,1.8719999999999999,1.11,98.0,3.8,3267.0,126.686,,,,,73370295.0,82399.0,2845.1090000000004,3.195,67114.0,2.603,0.149,6.7,tests performed,57903864.0,22351411.0,21668833.0,13883620.0,10314.0,8490.0,224.54,86.67,84.03,53.84,329.0,1116.0,0.004,13.89,25788217.0,3.202,37.9,15.504000000000001,10.129,44648.71,0.5,107.791,5.07,13.0,16.5,94.04299999999999,3.84,83.44,0.9440000000000001,4853.0,1.35,8.37,188.1867211
409,181489,TUN,Africa,Tunisia,2022-06-29,1052180.0,5477.0,782.429,28691.0,21.0,3.0,88153.55300000001,458.87300000000005,65.553,2403.784,1.7590000000000001,0.251,0.32,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,4647813.0,1722.0,389.402,0.14400000000000002,996.0,0.083,0.0958,10.4,people tested,13192714.0,7234385.0,6376006.0,1272091.0,1662.0,775.0,110.53,60.61,53.42,10.66,65.0,233.0,0.002,47.22,11935764.0,74.22800000000001,32.7,8.001,5.075,10849.296999999999,2.0,318.991,8.52,1.1,65.8,78.687,2.3,76.7,0.74,20481.6,16.84,40.84,1715.9856710000001
410,77763,HTI,North America,Haiti,2022-06-29,31550.0,80.0,46.286,837.0,0.0,0.0,2733.57,6.931,4.01,72.52,0.0,0.0,1.32,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,206594.0,263.0,17.9,0.023,197.0,0.017,0.0363,27.6,tests performed,342724.0,241385.0,157276.0,68657.0,4278.0,3249.0,2.97,2.09,1.36,8.69,282.0,3090.0,0.027000000000000003,34.26,11541683.0,398.44800000000004,24.3,4.8,2.9539999999999997,1653.1729999999998,23.5,430.548,6.65,2.9,23.1,22.863000000000003,0.7,64.0,0.51,43113.3,25.35,10.04,2362.38969
411,98456,LAO,Asia,Laos,2022-06-29,210278.0,20.0,9.142999999999999,757.0,0.0,0.0,28495.432999999997,2.71,1.239,102.583,0.0,0.0,1.16,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,1030237.0,671.0,139.611,0.091,113.0,0.015,0.1062,9.4,tests performed,10894482.0,5817695.0,5076787.0,1364852.0,11603.0,2560.0,147.63,78.84,68.8,31.53,347.0,599.0,0.008,57.87,7379358.0,29.715,24.4,4.029,2.322,6397.36,22.7,368.111,4.0,7.3,51.2,49.839,1.5,67.92,0.613,15644.0,20.79,13.42,2360.166117
412,53296,SLV,North America,El Salvador,2022-06-29,169646.0,0.0,0.0,4142.0,1.0,0.429,26025.313,0.0,0.0,635.422,0.153,0.066,0.08,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,1921625.0,4675.0,294.796,0.7170000000000001,4668.0,0.716,0.106,9.4,tests performed,10958940.0,4615720.0,4319779.0,2023441.0,46995.0,8256.0,168.12,70.81,66.27,31.04,1267.0,592.0,0.009000000000000001,37.96,6518500.0,307.811,27.6,8.273,5.417000000000001,7292.4580000000005,2.2,167.295,8.87,2.5,18.8,90.65,1.3,73.32,0.6729999999999999,4739.0,16.28,49.24,727.0077472
413,69648,GIB,Europe,Gibraltar,2022-06-29,19306.0,0.0,42.286,104.0,0.0,0.28600000000000003,573031.373,0.0,1255.104,3086.8779999999997,0.0,8.48,1.0,1000.0,11.919,16108.0,238.91299999999998,945.0,11.263,4313.0,51.406000000000006,533268.0,514.0,15828.203000000001,15.255999999999998,553.0,16.414,0.0858,11.7,tests performed,119855.0,42074.0,41421.0,36360.0,202.0,40.0,355.75,124.88,122.94,107.92,1187.0,1.0,0.003,51.85,33691.0,3457.1,21.1,3.385,1.9480000000000002,4227.63,12.0,298.245,4.97,0.3,7.7,41.047,0.9,79.93,0.611,19.6,5.77,157.23,581.7577395
414,145280,PRT,Europe,Portugal,2022-06-29,5160861.0,6565.0,9271.714,24121.0,39.0,22.0,507562.951,645.658,911.8589999999999,2372.264,3.8360000000000003,2.164,0.66,85.0,8.36,1743.0,171.421,9.0,1.669,234.0,42.846000000000004,42825431.0,52990.0,4211.817,5.211,48792.0,4.7989999999999995,0.5063,2.0,tests performed,24616852.0,9729123.0,8884776.0,6731760.0,79.0,12306.0,242.1,95.68,87.38,66.21,1210.0,299.0,0.003,13.89,10167923.0,112.37100000000001,46.2,21.502,14.924000000000001,27936.896,0.5,127.84200000000001,9.85,16.3,30.0,78.46300000000001,3.39,82.05,0.8640000000000001,22143.4,7.83,10.95,2177.7702289999997
415,171519,SUR,South America,Suriname,2022-06-29,80864.0,0.0,6.7139999999999995,1369.0,10.0,1.429,136641.219,0.0,11.345999999999998,2313.2889999999998,16.898,2.414,1.05,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,84184.0,165.0,142.251,0.27899999999999997,24.0,0.040999999999999995,0.491,2.0,tests performed,505699.0,267820.0,237879.0,48889.0,398.0,14.0,85.45,45.26,40.2,8.26,24.0,6.0,0.001,44.44,591798.0,3.612,29.6,6.933,4.229,13767.118999999999,0.7,258.314,12.54,7.4,42.9,67.779,3.1,71.68,0.738,48.2,1.23,14.57,81.44670986
416,37620,CHN,Asia,China,2022-06-29,888546.0,137.0,116.85700000000001,5226.0,0.0,0.0,615.244,0.095,0.081,3.6189999999999998,0.0,0.0,1.32,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,9214000000.0,58711.0,6379.932,3.056,14769984.0,10.227,0.0016,637.8,tests performed,3401857000.0,1294045000.0,1260501000.0,790025000.0,745000.0,661857.0,235.55,89.6,87.28,54.7,458.0,153571.0,0.011000000000000001,79.17,1444216102.0,147.674,38.7,10.640999999999998,5.928999999999999,15308.712,0.7,261.899,9.74,1.9,48.4,5.818,4.34,76.91,0.7609999999999999,51537.3,19.01,15.69,2682.507232
417,5972,AIA,North America,Anguilla,2022-06-29,3456.0,0.0,6.428999999999999,9.0,0.0,0.0,228495.86800000002,0.0,425.03,595.0409999999999,0.0,0.0,0.01,0.0,0.0,,,,,,,51382.0,1459.0,3397.157,0.043,169.0,11.174000000000001,0.0803,12.5,tests performed,23926.0,10813.0,10183.0,2930.0,1421.0,19.0,158.19,71.49,67.33,19.37,1256.0,3.0,0.02,22.22,15125.0,23.89,16.8,2.405,1.3619999999999999,5819.495,0.5,276.045,3.94,29.0,37.8,26.664,1.9,81.88,0.581,89.6,27.2,31.41,1158.311141
418,127448,NCL,Oceania,New Caledonia,2022-06-29,64337.0,136.0,117.429,313.0,0.0,0.0,223224.168,471.86699999999996,407.431,1085.987,0.0,0.0,1.21,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,30687346.0,6207.0,1786.943,0.361,4928.0,0.287,0.685,1.5,tests performed,461709.0,188411.0,180351.0,92947.0,144666.0,29.0,160.19,65.37,62.57,32.25,101.0,4.0,0.001,19.44,288217.0,15.342,33.4,9.954,6.489,48472.545,15.0,109.361,23.36,24.4,27.3,47.782,3.32,77.55,0.9440000000000001,-89.2,-5.43,-4.34,-309.4890308
419,166341,OWID_SAM,Africa,South America,2022-06-29,59450243.0,17931.0,67012.857,1304164.0,32.0,248.571,136900.07,41.291000000000004,154.315,3003.1859999999997,0.07400000000000001,0.5720000000000001,0.44,202.0,3.364,1725.0,28.73,7.0,3.319,470.0,7.827999999999999,25637671.0,19244.0,426.996,0.321,14296.0,0.23800000000000002,0.0726,13.8,people tested,890132010.0,368032203.0,329133088.0,205820398.0,1608383.0,703712.0,204.98,84.75,75.79,47.4,1620.0,28141.0,0.006,11.11,434260137.0,46.754,27.3,5.343999999999999,3.053,12294.876,18.9,200.38,5.52,8.1,33.2,43.993,2.32,64.13,0.7090000000000001,272670.6,21.46,10.13,4541.331371
420,128306,NZL,Oceania,New Zealand,2022-06-29,1338501.0,7963.0,6263.429,1466.0,17.0,12.286,261104.695,1553.362,1221.822,285.976,3.3160000000000003,2.397,1.12,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,7264156.0,1761.0,1417.037,0.344,3141.0,0.613,0.685,1.5,tests performed,11127224.0,4292598.0,4114204.0,2720422.0,7377.0,2851.0,217.06,83.74,80.26,53.07,556.0,70.0,0.001,26.85,5126300.0,18.206,37.9,15.322000000000001,9.72,36085.843,15.0,128.797,8.08,14.8,17.2,47.782,2.61,82.29,0.9309999999999999,-1746.4,-2.07,9.86,-340.6745606
421,102657,LBY,Africa,Libya,2022-06-29,502138.0,0.0,4.0,6430.0,0.0,0.0,72161.422,0.0,0.575,924.045,0.0,0.0,1.17,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,139824.0,1351.0,26.991999999999997,0.19399999999999998,3669.0,0.527,0.2478,4.0,samples tested,3579762.0,2269135.0,1183940.0,126687.0,602.0,1793.0,51.44,32.61,17.01,1.82,258.0,630.0,0.009000000000000001,50.0,6958538.0,3.623,29.0,4.4239999999999995,2.8160000000000003,17881.509,38.6,341.86199999999997,10.43,1.5,18.1,1.188,3.7,72.91,0.7240000000000001,15149.6,30.18,57.47,2238.035464
422,124490,NAM,Africa,Namibia,2022-06-29,169076.0,0.0,24.570999999999998,4061.0,0.0,0.7140000000000001,65347.320999999996,0.0,9.497,1569.5629999999999,0.0,0.276,0.55,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1056045.0,778.0,408.158,0.301,772.0,0.298,0.0579,17.3,tests performed,825518.0,496475.0,426681.0,64392.0,3837.0,127.0,31.91,19.19,16.49,2.49,49.0,1243.0,0.048,23.15,2587344.0,3.0780000000000003,22.0,3.552,2.085,9541.808,13.4,243.81099999999998,3.94,9.7,34.2,44.6,0.9,63.71,0.6459999999999999,2633.7,21.49,55.05,4193.449258
423,39267,COM,Africa,Comoros,2022-06-29,8139.0,0.0,1.143,160.0,0.0,0.0,9160.836,0.0,1.286,180.088,0.0,0.0,0.08,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,100289.0,9497.0,112.88,0.185,1306.0,1.47,0.0002,4566.4,tests performed,642320.0,341302.0,301218.0,12964054.0,18933.0,0.0,72.3,38.42,33.9,25.29,0.0,0.0,0.0,25.93,888456.0,437.352,20.4,2.963,1.726,1413.89,18.1,261.51599999999996,11.88,4.4,23.6,15.574000000000002,2.2,64.32,0.5539999999999999,180760.5,29.56,2.99,3525.944303
424,95079,KIR,Oceania,Kiribati,2022-06-29,3236.0,0.0,3.0,13.0,0.0,0.0,26658.319,0.0,24.714000000000002,107.095,0.0,0.0,0.02,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,3728165.0,2868.0,67.80199999999999,0.052000000000000005,3338.0,0.061,0.1107,9.0,tests performed,147497.0,80566.0,60670.0,6261.0,13702.0,156.0,121.51,66.37,49.98,5.16,1285.0,38.0,0.031,34.26,121388.0,143.701,23.2,3.895,2.21,1981.132,36.8,434.657,22.66,35.9,58.9,24.651,1.9,68.37,0.63,83124.6,26.77,-14.32,4376.140237
425,142599,PER,South America,Peru,2022-06-29,3620801.0,0.0,2169.571,213483.0,0.0,8.286,108539.104,0.0,65.036,6399.483,0.0,0.248,1.4,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,28971116.0,1757.0,868.454,0.243,49170.0,1.474,0.009000000000000001,111.1,tests performed,77804519.0,29522674.0,27641721.0,20640124.0,64986.0,84118.0,233.23,88.5,82.86,61.87,2522.0,3666.0,0.011000000000000001,50.93,33359415.0,25.129,29.1,7.151,4.455,12236.706,3.5,85.755,5.95,4.8,21.6,79.602,1.6,76.74,0.777,231903.0,72.67,1.94,6951.650681
426,49874,DMA,North America,Dominica,2022-06-29,14852.0,0.0,10.142999999999999,68.0,0.0,0.14300000000000002,205786.177,0.0,140.537,942.194,0.0,1.979,0.42,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,205366.0,341.0,2845.508,4.725,356.0,4.933,0.0,6.0,tests performed,66974.0,32865.0,30463.0,3646.0,270.0,5.0,92.8,45.54,42.21,5.05,69.0,2.0,0.003,32.41,72172.0,98.56700000000001,25.4,4.213,2.38,9673.367,22.5,227.37599999999998,11.62,1.7,24.5,4.4719999999999995,3.8,75.0,0.742,1780.7,1.29,0.54,306.3147244
427,67952,DEU,Europe,Germany,2022-06-29,28180861.0,132671.0,86753.714,141105.0,83.0,77.857,335884.42,1581.29,1034.007,1681.8139999999999,0.9890000000000001,0.9279999999999999,1.22,935.0,11.144,16108.0,238.91299999999998,913.0,10.882,5653.0,67.377,131286804.0,20318.0,1564.7920000000001,5.105,88471.0,1.054,0.418,2.4,tests performed,182801612.0,64702423.0,63348388.0,57044910.0,53707.0,37089.0,217.88,77.12,75.5,67.99,442.0,1238.0,0.001,17.59,83900471.0,237.016,46.6,21.453000000000003,15.957,45229.245,4.2,156.139,8.31,28.2,33.1,7.876,8.0,81.33,0.9470000000000001,90163.5,3.81,-1.17,1074.648318
428,856,AFG,Asia,Afghanistan,2022-06-29,182403.0,79.0,70.143,7722.0,0.0,1.0,4578.914000000001,1.983,1.761,193.84799999999998,0.0,0.025,1.12,,,,,,,,,994894.0,,24.975,,435.0,0.011000000000000001,0.222,4.5,tests performed,6408475.0,5629522.0,4979930.0,,383.0,9768.0,16.09,14.13,12.5,,245.0,9307.0,0.023,11.11,39835428.0,54.422,18.6,2.5810000000000004,1.337,1803.987,,597.029,9.59,,,37.746,0.5,64.83,0.511,,,,
429,48200,DNK,Europe,Denmark,2022-06-29,3169600.0,2333.0,1667.1429999999998,6463.0,9.0,4.143,545232.297,401.32099999999997,286.781,1111.761,1.548,0.713,1.34,12.0,2.064,307.0,52.81,10.0,0.932,498.0,85.666,64649913.0,7934.0,11121.031,1.365,7179.0,1.235,0.19399999999999998,5.2,tests performed,13226179.0,4829906.0,4793636.0,3649375.0,1008.0,630.0,227.52,83.08,82.46,62.78,108.0,33.0,0.001,11.11,5813302.0,136.52,42.3,19.677,12.325,46682.515,0.2,114.76700000000001,6.41,19.3,18.8,4.4719999999999995,2.5,80.9,0.94,1780.7,1.29,0.54,306.3147244
430,176637,TZA,Africa,Tanzania,2022-06-29,35366.0,0.0,0.0,841.0,0.0,0.0,575.072,0.0,0.0,13.675,0.0,0.0,0.02,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,455776.0,64492.0,7.4110000000000005,2.7030000000000003,1004.0,0.016,0.0161,62.2,tests performed,8837371.0,7588592.0,4079863.0,3527355.0,113265.0,31068.0,14.37,12.34,6.63,36.18,505.0,39453.0,0.064,8.33,61498438.0,64.699,17.7,3.108,1.874,2683.304,49.1,217.28799999999998,5.75,3.3,26.7,47.953,0.7,65.46,0.529,9879.4,30.17,0.38,1013.3107679999999
431,189952,OWID_UMC,North America,Upper middle income,2022-06-29,131515683.0,64179.0,94896.0,2532117.0,191.0,375.57099999999997,52320.128,25.531999999999996,37.751999999999995,1007.3380000000001,0.076,0.149,1.13,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,115079.0,14.0,1104.214,0.134,54.0,0.518,0.192,5.2,tests performed,5225462835.0,2075350178.0,1964892399.0,1152362176.0,2402706.0,1556707.0,207.88,82.56,78.17,45.84,619.0,76640.0,0.003,43.52,2513672790.0,306.48,42.2,18.601,10.799000000000001,54225.445999999996,1.2,273.67,12.26,19.1,24.6,21.221999999999998,2.77,80.58,0.9259999999999999,1105051.9,16.45,-3.34,3319.320711
432,155022,SMR,Europe,San Marino,2022-06-29,17961.0,194.0,47.143,115.0,0.0,0.0,528109.38,5704.205,1386.1470000000002,3381.3579999999997,0.0,0.0,1.16,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,108388.0,59.0,974.1080000000001,0.53,50.0,0.449,0.2257,4.4,tests performed,69338.0,26357.0,23633.0,19348.0,9.0,4.0,203.88,77.5,69.49,56.89,118.0,0.0,0.0,13.89,34010.0,556.6669999999999,22.0,5.606,3.5639999999999996,56861.47,56.0,348.977,5.64,16.7,38.1,87.20200000000001,3.8,84.97,0.715,133.0,21.63,-19.49,3910.614525
433,3451,DZA,Africa,Algeria,2022-06-29,266073.0,11.0,9.571,6875.0,0.0,0.0,5963.539000000001,0.247,0.215,154.091,0.0,0.0,1.35,0.0,0.0,,,,,,,230553.0,957.0,5.167000000000001,0.33299999999999996,375.0,0.131,0.4263,2.3,tests performed,15205854.0,8210605.0,6851660.0,514063.0,147230.0,0.0,34.08,18.4,15.36,1.15,0.0,13231.0,0.03,47.22,44616626.0,17.348,29.1,6.211,3.8569999999999998,13913.839,0.5,278.36400000000003,6.73,0.7,30.4,83.741,1.9,76.88,0.748,49888.7,26.86,29.47,1118.163888
434,67062,GEO,Asia,Georgia,2022-06-29,1660429.0,1058.0,151.143,16841.0,2.0,0.28600000000000003,417217.01200000005,265.844,37.978,4231.648,0.503,0.07200000000000001,-0.01,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,13652505.0,20318.0,3430.473,5.105,3491.0,0.877,0.0706,14.2,tests performed,2902085.0,1631237.0,1270848.0,80818.0,758.0,266.0,72.92,40.99,31.93,2.03,67.0,159.0,0.004,13.89,3979773.0,65.032,38.7,14.864,10.244000000000002,9745.079,4.2,496.218,7.11,5.3,55.5,7.876,2.6,73.77,0.812,20504.2,22.8,46.06,5152.102896
435,56700,SWZ,Africa,Eswatini,2022-06-29,73098.0,7.0,7.0,1416.0,0.0,0.14300000000000002,62350.676,5.971,5.971,1207.8110000000001,0.0,0.122,0.73,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,549656.0,333.0,468.842,0.284,303.0,0.258,0.0434,23.1,tests performed,535393.0,387468.0,336066.0,66331.0,7504.0,0.0,45.67,33.05,28.67,5.66,0.0,0.0,0.0,23.15,1172369.0,79.492,21.5,3.1630000000000003,1.845,7738.975,0.5,333.436,3.94,1.7,16.5,24.096999999999998,2.1,60.19,0.611,3805.5,9.78,12.82,2871.66802
436,81252,HUN,Europe,Hungary,2022-06-29,1928125.0,3042.0,434.57099999999997,46647.0,21.0,3.0,200134.168,315.751,45.107,4841.833,2.18,0.311,1.2,1000.0,11.919,1499.0,155.592,21.0,2.06,1323.0,127.544,10943720.0,39094.0,1135.9289999999999,4.058,4344.0,0.451,0.2219,4.5,tests performed,16530488.0,6411804.0,6198798.0,4189321.0,93527.0,938.0,171.58,66.55,64.34,43.48,97.0,60.0,0.001,11.11,9634162.0,108.04299999999999,43.4,18.577,11.975999999999999,26777.561,0.5,278.296,7.55,26.8,34.8,84.169,7.02,76.88,0.8540000000000001,37165.7,11.92,-2.81,3857.6993
437,76081,GNB,Africa,Guinea-Bissau,2022-06-29,8348.0,0.0,0.14300000000000002,171.0,0.0,0.0,4141.920999999999,0.0,0.071,84.84299999999999,0.0,0.0,0.25,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,142948.0,390.0,70.925,0.19399999999999998,231.0,0.115,0.0247,40.4,tests performed,572954.0,529783.0,342218.0,304.0,1658.0,26.0,28.43,26.29,16.98,0.02,13.0,26.0,0.001,49.07,2015490.0,66.191,19.4,3.002,1.565,1548.675,67.1,382.474,2.42,35.3,52.0,6.403,0.3,58.32,0.48,43113.3,25.35,10.04,2362.38969
438,129144,NIC,North America,Nicaragua,2022-06-29,14690.0,71.0,10.142999999999999,242.0,1.0,0.14300000000000002,2191.759,10.593,1.5130000000000001,36.107,0.149,0.021,0.06,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,196380.0,1761.0,29.3,0.344,205.0,0.031,0.0174,57.4,tests performed,11341125.0,5917353.0,5423772.0,2756062.0,7377.0,11923.0,169.21,88.29,80.92,53.76,1779.0,2485.0,0.037000000000000005,13.89,6702379.0,51.667,27.3,5.445,3.5189999999999997,5321.444,3.2,137.016,11.47,14.8,17.2,47.782,0.9,74.48,0.66,8148.4,31.97,5.18,1215.747423
439,115425,MUS,Africa,Mauritius,2022-06-29,229479.0,0.0,291.0,1002.0,0.0,0.14300000000000002,180205.712,0.0,228.517,786.852,0.0,0.11199999999999999,0.26,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1282782.0,1362.0,1007.346,0.285,12.0,0.009000000000000001,0.0,11.3,tests performed,2559789.0,978297.0,945621.0,626856.0,35153.0,734.0,201.02,76.82,74.26,49.23,576.0,99.0,0.008,37.96,1273428.0,622.962,37.4,10.945,5.8839999999999995,20292.745,0.5,224.644,22.02,3.2,40.7,15.95,3.4,74.99,0.804,1097.6,4.72,46.05,861.9254484999999
440,27344,BRN,Asia,Brunei,2022-06-29,163055.0,744.0,646.857,225.0,0.0,0.0,369293.732,1685.0420000000001,1465.029,509.589,0.0,0.0,1.28,22.0,1.859,143.0,12.085,,,760.0,65.335,93192.0,297.0,211.065,0.6729999999999999,121418.0,0.5670000000000001,0.0483,20.7,samples tested,1173118.0,444293.0,426764.0,301719.0,3827.0,1493.0,265.69,100.63,96.66,68.33,3381.0,169.0,0.038,16.67,441532.0,81.347,32.4,4.591,2.3819999999999997,71809.25099999999,3.4,201.285,12.79,2.0,30.9,97.164,2.7,75.86,0.838,-16.8,-0.95,-7.41,-38.04933731
441,121982,MAR,Africa,Morocco,2022-06-29,1212906.0,3604.0,2872.7140000000004,16107.0,3.0,2.1430000000000002,32478.589,96.506,76.92399999999999,431.305,0.08,0.057,1.32,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,11738659.0,4632.0,314.332,0.124,6983.0,0.187,0.1107,9.0,people tested,54823412.0,24946369.0,23429942.0,6534825.0,51870.0,6048.0,146.8,66.8,62.74,17.5,162.0,836.0,0.002,58.33,37344787.0,80.08,29.6,6.769,4.209,7485.013000000001,1.0,419.14599999999996,7.14,0.8,47.1,71.18,1.1,76.68,0.6859999999999999,2633.7,21.49,55.05,4193.449258
442,36725,CHL,South America,Chile,2022-06-29,3979797.0,6506.0,9163.429,58467.0,8.0,24.429000000000002,207147.72100000002,338.63599999999997,476.955,3043.197,0.41600000000000004,1.272,0.98,183.0,9.525,3505.0,92.072,82.0,4.268,857.0,44.607,39773213.0,58711.0,2070.189,3.056,67521.0,3.514,0.1502,6.7,tests performed,59354828.0,18001490.0,17577626.0,24350429.0,92307.0,55847.0,308.94,93.7,91.49,126.74,2907.0,902.0,0.005,27.31,19212362.0,24.281999999999996,35.4,11.087,6.938,22767.037,1.3,127.993,8.46,34.2,41.5,5.818,2.11,80.18,0.851,51537.3,19.01,15.69,2682.507232
443,41370,CRI,North America,Costa Rica,2022-06-29,904934.0,0.0,0.0,8525.0,0.0,0.0,176089.641,0.0,0.0,1658.866,0.0,0.0,0.01,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,3677525.0,8616.0,715.6039999999999,1.6769999999999998,11820.0,2.3,0.17600000000000002,5.7,people tested,11017624.0,4437629.0,4143017.0,2299181.0,1486.0,17890.0,214.39,86.35,80.62,44.74,3481.0,1031.0,0.02,11.11,5139053.0,96.079,33.6,9.468,5.694,15524.995,1.3,137.97299999999998,8.78,6.4,17.4,83.84100000000001,1.13,80.28,0.81,5946.8,11.58,-1.44,1157.17818
444,168057,SSD,Africa,South Sudan,2022-06-29,17722.0,0.0,3.571,138.0,0.0,0.0,1557.105,0.0,0.314,12.125,0.0,0.0,0.47,59.0,1.15,1725.0,28.73,42.0,0.8190000000000001,413.0,8.05,410280.0,798.0,36.048,0.07,578.0,0.051,0.0131,76.3,tests performed,1226772.0,1164135.0,1122087.0,37830478.0,4158.0,1774.0,10.78,10.23,9.86,73.74,156.0,0.0,0.0,16.67,11381377.0,527.967,19.2,3.4410000000000003,2.032,1569.888,0.2,280.775,10.43,6.2,40.9,43.993,12.27,57.85,0.433,38323.1,5.28,18.0,746.9635037
445,96784,KWT,Asia,Kuwait,2022-06-29,643004.0,0.0,306.714,2555.0,0.0,0.0,148549.411,0.0,70.858,590.2669999999999,0.0,0.0,1.17,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,8208880.0,8163.0,1896.4489999999998,1.886,6104.0,1.41,0.0165,60.4,tests performed,8112363.0,3432854.0,3320935.0,1358574.0,4709.0,2442.0,187.42,79.31,76.72,31.39,564.0,234.0,0.005,11.11,4328553.0,232.128,33.7,2.345,1.114,65530.537000000004,0.6,132.235,15.84,2.7,37.0,24.651,2.0,75.49,0.8059999999999999,3210.8,43.64,14.51,741.7721349
446,14665,BHR,Asia,Bahrain,2022-06-29,624269.0,2008.0,1805.286,1492.0,0.0,0.0,357073.034,1148.548,1032.598,853.403,0.0,0.0,1.1,50.0,5.529,874.0,96.649,,,,,9969082.0,7215.0,5702.174,4.127,6220.0,3.5580000000000003,0.2814,3.6,units unclear,3453636.0,1238324.0,1222999.0,992313.0,222.0,292.0,197.54,70.83,69.95,56.76,167.0,48.0,0.003,17.59,1748295.0,1935.9070000000002,32.4,2.372,1.3869999999999998,43290.705,0.7,151.689,16.52,5.8,37.6,83.241,2.0,77.29,0.852,43744.8,33.01,2.0,4278.913044
447,68795,GHA,Africa,Ghana,2022-06-29,166133.0,384.0,227.429,1450.0,1.0,0.28600000000000003,5235.482,12.100999999999999,7.167000000000001,45.695,0.032,0.009000000000000001,1.01,1000.0,11.919,16108.0,238.91299999999998,945.0,11.263,4313.0,51.406000000000006,2465238.0,2208.0,77.689,0.07,1210.0,0.038,0.2632,3.8,tests performed,18643437.0,10443364.0,7193153.0,1006920.0,60270.0,27848.0,58.75,32.91,22.67,3.17,878.0,13052.0,0.040999999999999995,51.85,31732128.0,126.719,21.1,3.385,1.9480000000000002,4227.63,12.0,298.245,4.97,0.3,7.7,41.047,0.9,64.07,0.611,90163.5,3.81,-1.17,1074.648318
448,172404,SWE,Europe,Sweden,2022-06-29,2515769.0,0.0,416.57099999999997,19093.0,0.0,2.571,247611.18399999998,0.0,41.0,1879.203,0.0,0.253,0.49,46.0,4.527,1148.0,112.99,241.0,5.156000000000001,5307.0,113.53,18407585.0,2417.0,1811.7420000000002,0.23800000000000002,2417.0,0.23800000000000002,0.1183,8.5,tests performed,22674504.0,7838695.0,7651988.0,5439028.0,398.0,6212.0,223.17,77.15,75.31,53.53,611.0,153.0,0.002,11.11,10160159.0,24.718000000000004,41.0,19.985,13.433,46949.282999999996,0.5,133.982,4.79,18.8,18.9,67.779,2.22,82.8,0.945,10434.7,4.75,0.41,1027.021329
449,79504,HND,North America,Honduras,2022-06-29,427355.0,476.0,180.0,10906.0,1.0,0.28600000000000003,42467.977,47.302,17.887,1083.7730000000001,0.099,0.027999999999999997,1.0,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,206594.0,263.0,17.9,0.023,197.0,0.017,0.0363,27.6,tests performed,14404631.0,6293459.0,5368598.0,2742949.0,81065.0,5467.0,143.14,62.54,53.35,27.26,543.0,923.0,0.009000000000000001,34.26,10062994.0,82.805,24.9,4.652,2.883,4541.795,16.0,240.208,7.21,2.0,23.1,84.169,0.7,75.27,0.634,43113.3,25.35,10.04,2362.38969
450,151907,LCA,North America,Saint Lucia,2022-06-29,27022.0,38.0,29.429000000000002,383.0,3.0,1.0,146539.335,206.07299999999998,159.59,2076.995,16.269000000000002,5.422999999999999,0.85,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,208560.0,117.0,1131.013,0.634,145.0,0.7859999999999999,0.1488,6.7,tests performed,121397.0,59560.0,54255.0,7582.0,71.0,28.0,65.83,32.3,29.42,4.11,152.0,10.0,0.005,66.67,184401.0,293.187,34.9,9.721,6.405,12951.839,56.0,204.62,11.62,4.7,21.0,87.20200000000001,1.3,76.2,0.759,12.2,3.33,8.11,227.8414821
451,105211,OWID_LIC,Europe,Low income,2022-06-29,1860481.0,811.0,838.0,43272.0,1.0,5.857,2797.0890000000004,1.219,1.26,65.056,0.002,0.009000000000000001,1.54,1.0,0.536,58.0,21.561999999999998,10.0,5.282,1.0,25.605,8718186.0,136.0,3241.1279999999997,0.051,751.0,0.27899999999999997,0.212,4.7,tests performed,187572268.0,134160718.0,108982218.0,7525232.0,110861.0,53135.0,28.2,20.17,16.38,1.13,80.0,51996.0,0.008,11.11,665149040.0,45.135,43.5,19.002,13.777999999999999,29524.265,0.7,342.98900000000003,3.67,21.3,38.0,1.188,6.56,75.93,0.882,19277.5,21.09,-6.35,7166.7245379999995
452,99316,LVA,Europe,Latvia,2022-06-29,835152.0,617.0,324.0,5860.0,2.0,0.7140000000000001,447338.792,330.48800000000006,173.547,3138.836,1.071,0.38299999999999995,1.68,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,7263566.0,2035.0,3890.639,1.09,1888.0,1.011,0.1238,8.1,tests performed,2893861.0,1345920.0,1305625.0,528276.0,75.0,45.0,155.01,72.09,69.93,28.3,24.0,4.0,0.0,11.11,1866934.0,31.212,43.9,19.754,14.136,25063.846,0.7,350.06,4.91,25.6,51.0,49.839,5.57,75.29,0.866,8297.0,12.2,2.87,4444.184958
453,143486,PHL,Asia,Philippines,2022-06-29,3703100.0,781.0,758.143,60542.0,11.0,8.286,33347.168,7.0329999999999995,6.827000000000001,545.193,0.099,0.075,1.5,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,28472887.0,21192.0,256.404,0.191,19245.0,0.17300000000000001,0.0093,107.8,people tested,153852751.0,75654809.0,70845546.0,14880868.0,227791.0,140975.0,138.55,68.13,63.8,13.4,1270.0,52634.0,0.047,37.96,111046910.0,351.87300000000005,25.2,4.803,2.661,7599.188,3.5,370.43699999999995,7.07,7.8,40.8,78.46300000000001,1.0,71.23,0.718,204049.6,16.16,-9.94,1837.5081309999998
454,95922,OWID_KOS,Europe,Kosovo,2022-06-29,229050.0,177.0,63.428999999999995,3140.0,0.0,0.0,128527.05900000001,99.32,35.592,1761.951,0.0,0.0,2.51,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,1846365.0,1719.0,1036.053,0.965,214.0,0.12,0.0754,13.3,tests performed,1830592.0,903627.0,823741.0,103224.0,48.0,43.0,102.72,50.71,46.22,5.79,24.0,10.0,0.001,37.04,1782115.0,168.155,23.2,3.895,2.21,9795.834,0.6,434.657,22.66,35.9,58.9,24.651,1.9,68.37,0.63,5869.8,25.36,-11.76,3293.726836
455,43077,HRV,Europe,Croatia,2022-06-29,1147380.0,1197.0,600.143,16060.0,1.0,3.0,281106.423,293.263,147.034,3934.677,0.245,0.735,1.59,177.0,9.213,190.0,46.55,82.0,4.268,121.0,29.73,4922712.0,5587.0,1206.057,1.369,1521.0,0.373,0.2363,4.2,people tested,5258291.0,2315490.0,2245155.0,594785.0,430.0,178.0,128.83,56.73,55.01,14.57,44.0,27.0,0.001,14.81,4081657.0,73.726,44.0,19.724,13.052999999999999,22669.797000000002,0.7,253.782,5.59,34.3,39.9,19.351,5.54,78.49,0.851,19749.3,16.18,-5.95,4838.549638
456,55857,EST,Europe,Estonia,2022-06-29,580114.0,3.0,114.0,2591.0,0.0,0.429,437759.774,2.2640000000000002,86.02600000000001,1955.194,0.0,0.32299999999999995,1.15,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,3425068.0,1246.0,2584.59,0.94,993.0,0.7490000000000001,0.1183,8.5,tests performed,1993944.0,863093.0,847710.0,476572.0,144.0,76.0,150.46,65.13,63.97,35.96,57.0,19.0,0.001,11.11,1325188.0,31.033,42.7,19.452,13.491,29481.252,0.5,255.56900000000002,4.02,24.5,39.3,24.64,4.69,78.74,0.892,3805.5,9.78,12.82,2871.66802
457,113743,MHL,Oceania,Marshall Islands,2022-06-29,18.0,0.0,0.0,748.0,0.0,1.143,301.922,0.0,0.0,1449.332,0.0,2.214,1.34,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,3184.0,392.0,53.407,6.575,14.0,0.235,0.0,30.3,tests performed,1317628.0,476936.0,469857.0,405198.0,28.0,277.0,255.3,92.41,91.04,78.51,537.0,17.0,0.003,13.89,59618.0,295.15,42.4,19.426,11.324000000000002,3819.202,0.2,557.793,30.53,20.9,30.2,82.50200000000001,2.7,73.7,0.7040000000000001,539.8,5.7,-1.02,1045.921333
458,29040,BFA,Africa,Burkina Faso,2022-06-29,21044.0,0.0,0.0,387.0,0.0,0.0,978.923,0.0,0.0,18.002,0.0,0.0,0.0,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,324773.0,41.0,15.107999999999999,0.002,291.0,0.013999999999999999,0.0,624.3,tests performed,2947625.0,2449809.0,1555140.0,768430.0,1242.0,9.0,13.71,11.4,7.23,11.14,0.0,9.0,0.0,8.33,21497097.0,70.15100000000001,17.6,2.4090000000000003,1.358,1703.102,43.7,269.048,2.42,1.6,23.9,11.877,0.4,61.58,0.452,66889.5,26.21,-5.49,9698.83226
459,146977,QAT,Asia,Qatar,2022-06-29,381976.0,707.0,642.0,679.0,0.0,0.14300000000000002,130343.925,241.25400000000002,219.07299999999998,231.699,0.0,0.049,1.14,85.0,8.36,1743.0,171.421,9.0,1.669,234.0,42.846000000000004,7574423.0,14144.0,2584.665,4.8260000000000005,14321.0,4.887,0.23800000000000002,4.2,tests performed,6974984.0,2646349.0,2646349.0,1682286.0,4802.0,2733.0,238.01,90.3,90.3,57.41,933.0,373.0,0.013000000000000001,40.74,2930524.0,227.322,31.9,1.307,0.617,116935.6,0.5,176.69,16.52,0.8,26.9,78.46300000000001,1.2,80.23,0.848,1147.4,22.0,20.31,391.5340738
460,165477,ZAF,Africa,South Africa,2022-06-29,3993444.0,440.0,633.857,101764.0,19.0,9.571,66510.84700000001,7.327999999999999,10.557,1694.88,0.316,0.159,0.43,202.0,3.364,1725.0,28.73,7.0,3.319,470.0,7.827999999999999,25637671.0,19244.0,426.996,0.321,14296.0,0.23800000000000002,0.0726,13.8,people tested,36802355.0,22022098.0,19050087.0,3451773.0,21892.0,18948.0,61.29,36.68,31.73,5.75,316.0,6524.0,0.011000000000000001,11.11,60041996.0,46.754,27.3,5.343999999999999,3.053,12294.876,18.9,200.38,5.52,8.1,33.2,43.993,2.32,64.13,0.7090000000000001,272670.6,21.46,10.13,4541.331371
461,1729,OWID_AFR,Asia,Africa,2022-06-29,12053596.0,12261.0,7346.0,255010.0,50.0,27.0,8775.912,8.927,5.348,185.666,0.036000000000000004,0.02,1.12,,,,,,,,,994894.0,,24.975,,435.0,0.011000000000000001,0.222,4.5,tests performed,562439394.0,345737949.0,271560942.0,30941915.0,636173.0,331460.0,40.95,25.17,19.77,2.25,241.0,215737.0,0.016,11.11,1373486472.0,54.422,18.6,2.5810000000000004,1.337,1803.987,,597.029,9.59,,,37.746,0.5,64.83,0.511,,,,
462,154165,WSM,Oceania,Samoa,2022-06-29,14906.0,0.0,19.143,29.0,0.0,0.14300000000000002,74476.37700000001,0.0,95.645,144.89600000000002,0.0,0.7140000000000001,0.84,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,108388.0,59.0,974.1080000000001,0.53,50.0,0.449,0.2257,4.4,tests performed,494684.0,229291.0,198149.0,67244.0,20.0,851.0,247.16,114.56,99.0,33.6,4252.0,45.0,0.022000000000000002,66.67,200144.0,69.413,22.0,5.606,3.5639999999999996,6021.557,56.0,348.977,9.21,16.7,38.1,87.20200000000001,2.6,73.32,0.715,12.2,3.33,8.11,227.8414821
463,184716,UGA,Africa,Uganda,2022-06-29,167646.0,135.0,74.857,3621.0,0.0,0.429,3557.586,2.865,1.589,76.84100000000001,0.0,0.009000000000000001,0.88,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,2749166.0,10103.0,58.34,0.214,1382.0,0.028999999999999998,0.0646,15.5,tests performed,21756456.0,16226827.0,11144005.0,82919.0,134275.0,37972.0,46.17,34.43,23.65,0.18,806.0,27737.0,0.059000000000000004,28.7,47123533.0,213.75900000000001,16.4,2.168,1.308,1697.707,41.6,213.333,2.5,3.4,16.7,21.221999999999998,0.5,63.37,0.544,20481.6,16.84,40.84,1715.9856710000001
464,149566,RWA,Africa,Rwanda,2022-06-29,130952.0,50.0,38.143,1459.0,0.0,0.0,9863.43,3.766,2.873,109.89299999999999,0.0,0.0,1.36,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,5534918.0,3839.0,416.895,0.289,4661.0,0.35100000000000003,0.008,125.7,samples tested,22715578.0,9112973.0,8657341.0,4945264.0,211071.0,49126.0,171.1,68.64,65.21,37.25,3700.0,5206.0,0.039,66.67,13276517.0,494.869,20.3,2.9739999999999998,1.642,1854.211,56.0,191.375,4.28,4.7,21.0,4.617,8.05,69.02,0.5429999999999999,1217716.1,29.72,2.89,8345.55017
465,111270,MDV,Asia,Maldives,2022-06-29,181586.0,0.0,171.71400000000003,305.0,0.0,0.7140000000000001,334031.125,0.0,315.872,561.054,0.0,1.314,0.45,45.0,1.3730000000000002,746.0,22.76,10.0,5.282,1351.0,41.218999999999994,2211113.0,2103.0,4067.387,3.8689999999999998,57.0,0.105,0.0,13.9,samples tested,945036.0,398751.0,384347.0,161938.0,1683.0,68.0,173.84,73.35,70.7,29.79,125.0,3.0,0.001,47.22,543620.0,1454.433,30.6,4.12,2.875,15183.616000000002,0.1,164.905,9.19,2.1,55.0,95.803,1.9,78.92,0.74,160.6,14.41,3.78,295.42695269999996
466,198840,ZWE,Africa,Zimbabwe,2022-06-29,255520.0,137.0,67.286,5553.0,4.0,1.714,16930.631999999998,9.078,4.458,367.939,0.265,0.114,0.66,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,2379907.0,3537.0,157.691,0.23399999999999999,2246.0,0.149,0.0421,23.7,tests performed,11958771.0,6299348.0,4605821.0,1053602.0,8778.0,5295.0,79.24,41.74,30.52,6.98,351.0,1362.0,0.009000000000000001,38.89,15092171.0,42.729,19.6,2.822,1.882,1899.775,21.4,307.846,1.82,1.6,30.7,36.791,1.7,61.49,0.5710000000000001,38486.9,10.93,1.96,1134.110282
467,121103,MSR,North America,Montserrat,2022-06-29,1018.0,2.0,0.28600000000000003,8.0,0.0,0.0,204376.63100000002,401.526,57.361000000000004,1606.1029999999998,0.0,0.0,1.62,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,7408778.0,4118.0,2225.3379999999997,1.237,487.0,0.146,0.4242,2.4,samples tested,4422.0,2044.0,1868.0,510.0,13.0,3.0,88.78,41.04,37.5,10.24,602.0,3.0,0.06,11.11,4981.0,46.28,39.1,14.762,9.395,16409.288,1.0,387.305,10.08,44.0,47.9,71.18,3.861,74.16,0.8290000000000001,2633.7,21.49,55.05,4193.449258
468,90752,JAM,North America,Jamaica,2022-06-29,142683.0,57.0,115.714,3124.0,3.0,2.571,47985.48,19.17,38.916,1050.627,1.0090000000000001,0.865,0.9,291.0,4.82,7503.0,124.289,259.0,4.29,2964.0,49.099,1124299.0,2223.0,378.111,0.748,678.0,0.228,0.2164,4.6,samples tested,1457615.0,812833.0,709543.0,42162.0,558.0,466.0,49.02,27.34,23.86,1.42,157.0,260.0,0.009000000000000001,11.11,2973462.0,266.879,31.4,9.684,6.39,8193.571,2.0,206.537,11.28,5.3,28.6,66.425,1.7,74.47,0.7340000000000001,5134.8,14.0,1.16,1726.875945
469,138044,PAK,Asia,Pakistan,2022-06-29,1535785.0,641.0,435.286,30395.0,2.0,1.429,6819.651,2.846,1.933,134.969,0.009000000000000001,0.006,1.97,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,28889568.0,31201.0,128.284,0.139,11780.0,0.052000000000000005,0.0142,70.5,tests performed,269192190.0,137038813.0,126553053.0,23292541.0,985480.0,1028987.0,119.53,60.85,56.2,10.34,4569.0,88014.0,0.039,77.78,225199929.0,255.57299999999998,23.5,4.495,2.78,5034.708,4.0,423.031,8.35,2.8,36.7,59.607,0.6,67.27,0.557,4286.8,18.62,-6.95,820.6952745
470,185570,UKR,Europe,Ukraine,2022-06-29,5040518.0,0.0,0.0,112459.0,0.0,0.0,115962.42300000001,0.0,0.0,2587.238,0.0,0.0,-0.0,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,19288823.0,96361.0,443.76,2.217,52561.0,1.209,0.6027,1.7,tests performed,31668577.0,15774300.0,15153577.0,741197.0,62935.0,24457.0,72.86,36.29,34.86,1.71,563.0,13420.0,0.031,75.0,43466822.0,77.39,41.4,16.462,11.133,7894.393,0.1,539.849,7.11,13.5,47.4,21.221999999999998,8.8,72.06,0.779,179972.2,14.89,1.92,4140.449928
471,34182,CYM,North America,Cayman Islands,2022-06-29,27171.0,0.0,53.428999999999995,28.0,0.0,0.0,408598.755,0.0,803.461,421.065,0.0,0.0,1.38,220.0,5.779,3505.0,92.072,,,760.0,65.335,9358.0,2691.0,140.726,40.467,384.0,5.775,0.0,3.0,tests performed,145906.0,61307.0,59547.0,23536.0,226.0,58.0,219.41,92.19,89.55,35.39,872.0,10.0,0.015,19.44,66498.0,256.496,25.7,4.46,3.437,49903.029,0.5,182.21900000000002,13.22,2.1,16.5,2.735,2.1,83.92,0.665,188.6,6.81,13.94,335.6463149
472,133641,MKD,Europe,North Macedonia,2022-06-29,313856.0,148.0,99.429,9323.0,1.0,0.14300000000000002,150699.514,71.063,47.74100000000001,4476.485,0.48,0.069,1.54,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,2074132.0,1124.0,995.905,0.54,792.0,0.38,0.0743,13.5,tests performed,1850145.0,853927.0,837453.0,158765.0,3869.0,21.0,88.84,41.0,40.21,7.62,10.0,4.0,0.0,40.74,2082661.0,82.6,39.1,13.26,8.16,13111.214,5.0,322.688,10.08,0.6,10.8,41.949,4.28,75.8,0.774,16133.6,35.44,22.15,7746.627992000001
473,158415,SRB,Europe,Serbia,2022-06-29,2028482.0,876.0,656.143,16125.0,0.0,1.0,295200.193,127.48200000000001,95.48700000000001,2346.633,0.0,0.146,1.48,7.0,1.0190000000000001,97.0,14.116,9.0,1.669,7292.0,49.975,9852899.0,7466.0,1433.869,1.087,6317.0,0.919,0.0594,16.8,people tested,8534688.0,3354075.0,3278198.0,1902412.0,221.0,175.0,124.2,48.81,47.71,27.69,25.0,47.0,0.001,11.11,6871547.0,80.291,41.2,17.366,1.796,14048.881000000001,38.0,439.415,10.08,37.7,40.2,97.719,5.609,76.0,0.8059999999999999,58394.0,24.45,1.98,8497.940857
474,60185,FRO,Europe,Faeroe Islands,2022-06-29,34658.0,0.0,0.0,28.0,0.0,0.0,706541.9040000001,0.0,0.0,570.811,0.0,0.0,0.55,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,777845.0,391.0,15857.236,7.971,539.0,10.988,0.6621,1.5,people tested,103894.0,41715.0,40895.0,21284.0,42.0,26.0,211.8,85.04,83.37,43.39,530.0,2.0,0.004,11.11,49053.0,35.308,19.8,3.5260000000000002,2.063,1729.9270000000001,26.7,182.63400000000001,7.47,0.4,8.5,7.96,0.3,80.67,0.485,-38.6,-3.8,10.79,-786.903961
475,107863,MAC,Asia,Macao,2022-06-29,205.0,16.0,14.0,1094.0,0.0,0.857,311.365,24.302,21.264,1723.339,0.0,1.35,1.56,3.0,4.726,15.0,23.629,10.0,5.282,1.0,1.575,4299901.0,2293.0,6773.482,3.612,1630.0,2.568,0.376,2.7,tests performed,1439533.0,613594.0,585848.0,279362.0,580.0,484.0,218.64,93.2,88.98,42.43,735.0,137.0,0.021,73.15,658391.0,20546.766,39.2,9.798,4.9910000000000005,104861.851,0.2,128.275,4.42,20.9,26.0,1.188,4.51,84.24,0.9159999999999999,413.4,8.35,22.9,627.8943667000001
476,100964,LSO,Africa,Lesotho,2022-06-29,33938.0,0.0,0.0,699.0,0.0,0.0,15718.827,0.0,0.0,323.751,0.0,0.0,0.18,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,459732.0,553.0,212.93099999999998,0.256,234.0,0.10800000000000001,0.1172,8.5,tests performed,933825.0,933825.0,735610.0,600115.0,292132.0,811.0,43.25,43.25,34.07,8.87,376.0,4333.0,0.201,32.41,2159067.0,73.562,22.2,4.506,2.647,2851.153,59.6,405.126,3.94,0.4,53.9,2.117,2.9,54.33,0.527,15149.6,30.18,57.47,2238.035464
477,17212,BLR,Europe,Belarus,2022-06-29,982867.0,0.0,0.0,6978.0,0.0,0.0,104085.655,0.0,0.0,738.97,0.0,0.0,-0.0,50.0,5.529,874.0,96.649,,,,,13220483.0,9650.0,1400.05,1.022,7068.0,0.7490000000000001,0.0404,24.8,tests performed,13206203.0,6425755.0,6325490.0,756085.0,31.0,7151.0,139.85,68.05,66.99,8.01,757.0,1628.0,0.017,20.37,9442867.0,46.858000000000004,40.3,14.799000000000001,9.788,17167.967,14.8,443.129,5.18,10.5,46.1,88.469,11.0,74.79,0.823,31222.4,20.4,1.61,3306.4534320000002
478,51586,ECU,South America,Ecuador,2022-06-29,909882.0,8143.0,1602.1429999999998,35725.0,20.0,4.2860000000000005,50864.149000000005,455.209,89.56299999999999,1997.096,1.1179999999999999,0.24,0.91,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,2870685.0,2817.0,160.477,0.157,4020.0,0.225,0.271,3.7,people tested,35827364.0,15189092.0,14015575.0,7186610.0,19351.0,14068.0,200.28,84.91,78.35,40.17,786.0,691.0,0.004,75.0,17888474.0,66.939,28.1,7.104,4.458,10581.936000000002,3.6,140.44799999999998,5.55,2.0,12.3,80.635,1.5,77.01,0.759,70967.5,42.39,-4.36,3967.219339
479,137183,OMN,Asia,Oman,2022-06-29,390244.0,0.0,0.0,4628.0,0.0,0.0,74711.068,0.0,0.0,886.0169999999999,0.0,0.0,0.01,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,2031675.0,1943.0,388.958,0.355,622.0,0.11900000000000001,0.006,167.5,tests performed,7068002.0,3266729.0,3039478.0,761795.0,3650.0,475.0,135.31,62.54,58.19,14.58,91.0,92.0,0.002,14.81,5223376.0,14.98,30.7,2.355,1.53,37960.709,0.2,266.342,12.61,0.5,15.6,97.4,1.6,77.86,0.813,4286.8,18.62,-6.95,820.6952745
480,85598,IRN,Asia,Iran,2022-06-29,7237597.0,441.0,308.143,141386.0,0.0,1.857,85119.4,5.186,3.6239999999999997,1662.8020000000001,0.0,0.022000000000000002,1.61,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,52269202.0,76234.0,614.724,0.897,25540.0,0.3,0.0078,129.0,tests performed,149957751.0,64545209.0,57860379.0,27552163.0,31765.0,22970.0,176.36,75.91,68.05,32.4,270.0,5082.0,0.006,58.33,85028760.0,49.831,32.4,5.44,3.182,19082.62,0.2,270.308,9.59,0.8,21.1,64.204,1.5,76.68,0.7829999999999999,261045.6,29.95,27.79,3070.085933
481,63675,FRA,Europe,France,2022-06-29,31011133.0,124724.0,85145.286,149560.0,48.0,37.571,459955.69700000004,1849.901,1262.871,2218.2670000000003,0.7120000000000001,0.557,1.45,914.0,13.556,15690.0,232.713,539.0,7.994,6021.0,89.303,278234000.0,179427.0,4126.754,2.661,201691.0,2.991,0.22699999999999998,4.4,people tested,145899125.0,54461723.0,52910059.0,39607579.0,86654.0,63213.0,216.4,80.78,78.48,58.75,938.0,1113.0,0.002,23.15,67422000.0,122.57799999999999,42.0,19.718,13.079,38605.671,1.4,86.06,4.77,30.1,35.6,7.96,5.98,82.66,0.9009999999999999,88431.4,5.98,-7.05,1311.610454
482,148723,RUS,Europe,Russia,2022-06-29,18158163.0,2998.0,2914.857,373349.0,52.0,58.0,124445.969,20.546999999999997,19.977,2558.7270000000003,0.35600000000000004,0.397,0.97,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7460.0,51.126999999999995,295244836.0,331438.0,2023.444,2.271,139842.0,0.958,0.0283,35.3,tests performed,168942751.0,81792489.0,74673362.0,14715637.0,4116.0,99154.0,115.78,56.06,51.18,10.09,680.0,30336.0,0.021,25.93,145912022.0,8.823,39.6,14.177999999999999,9.392999999999999,24765.953999999998,0.1,431.29699999999997,6.18,23.4,58.3,78.46300000000001,8.05,72.58,0.8240000000000001,1217716.1,29.72,2.89,8345.55017
483,175001,TWN,Asia,Taiwan,2022-06-29,3728363.0,42025.0,41297.714,6533.0,85.0,126.0,156292.674,1761.685,1731.1970000000001,273.863,3.563,5.282,0.84,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,13021521.0,64492.0,545.861,2.7030000000000003,66864.0,2.803,0.7838,1.3,people tested,57857021.0,21175625.0,19369247.0,17312149.0,112328.0,94993.0,242.54,88.77,81.2,72.57,3982.0,2552.0,0.011000000000000001,26.85,23855008.0,214.243,42.2,18.436,8.353,57410.166,0.5,103.95700000000001,5.59,22.6,28.9,70.598,1.5,80.46,0.5670000000000001,-1625.5,-0.37,15.75,-68.14082812
484,132781,PRK,Asia,North Korea,2022-06-29,1.0,0.0,0.0,6.0,0.0,0.0,0.039,0.0,0.0,0.23199999999999998,0.0,0.0,1.44,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,182968.0,1558.0,7.068,0.06,554.0,0.021,0.0056,180.0,samples tested,1026446944.0,435186771.0,381228305.0,221110296.0,112472.0,271181.0,172.05,72.95,63.9,37.06,455.0,51378.0,0.009000000000000001,40.74,25887045.0,211.701,35.3,9.491,6.138999999999999,5338.454000000001,44.5,321.681,4.0,0.6,10.8,41.949,13.2,72.27,0.539,8148.4,31.97,5.18,1215.747423
485,162242,SVK,Europe,Slovakia,2022-06-29,2550368.0,676.0,448.42900000000003,20146.0,2.0,0.857,468020.12,124.053,82.291,3697.009,0.36700000000000005,0.157,1.19,8.0,1.4680000000000002,235.0,43.125,21.0,3.8510000000000004,976.0,178.96400000000003,51238482.0,2231.0,9402.815999999999,0.409,2123.0,0.39,0.133,7.5,tests performed,7076057.0,2822419.0,2768349.0,1653395.0,2675.0,71.0,129.85,51.79,50.8,30.34,13.0,11.0,0.0,11.11,5449270.0,113.12799999999999,41.2,15.07,9.167,30155.152000000002,0.7,287.959,7.29,23.1,37.7,19.275,5.82,77.54,0.86,26567.1,20.98,1.28,4875.350276
486,138361,PLW,Oceania,Palau,2022-06-29,5220.0,0.0,3.8569999999999998,6.0,0.0,0.0,287223.506,0.0,212.234,330.142,0.0,0.0,0.98,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,59627.0,31201.0,3280.8959999999997,0.139,116.0,6.382999999999999,0.0345,29.0,tests performed,273365003.0,137369525.0,127262916.0,26505821.0,943523.0,880651.0,121.39,61.0,56.51,11.77,3911.0,71679.0,0.032,77.78,18174.0,47.236999999999995,23.5,4.495,2.78,13240.405,4.0,423.031,15.89,7.7,22.7,59.607,4.8,73.7,0.826,4286.8,18.62,-6.95,820.6952745
487,157555,SEN,Africa,Senegal,2022-06-29,86305.0,16.0,8.857000000000001,1968.0,0.0,0.0,5018.81,0.93,0.515,114.443,0.0,0.0,1.33,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,1102099.0,814.0,64.089,0.047,752.0,0.044000000000000004,0.0034,292.5,tests performed,2523856.0,2300648.0,1070503.0,7027.0,7129.0,0.0,14.68,13.38,6.23,0.04,0.0,59633.0,0.34700000000000003,26.85,17196308.0,82.32799999999999,18.7,3.008,1.796,2470.58,38.0,241.21900000000002,2.42,0.4,16.6,20.859,2.7,67.94,0.512,133.0,21.63,-19.49,3910.614525
488,91647,JPN,Asia,Japan,2022-06-29,9293629.0,23324.0,16518.0,31263.0,17.0,27.0,73729.23700000001,185.037,131.042,248.019,0.135,0.214,1.26,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,53504941.0,138240.0,424.471,1.097,94925.0,0.753,0.1483,6.7,people tested,285034124.0,103736962.0,102352830.0,78944332.0,109770.0,136335.0,226.13,82.3,81.2,62.63,1082.0,4172.0,0.003,39.81,126050796.0,347.778,48.2,27.049,18.493,39002.223,2.0,79.37,5.72,11.2,33.7,66.425,13.05,84.63,0.919,9539.4,0.29,8.92,75.67901436
489,117720,MDA,Europe,Moldova,2022-06-29,520321.0,153.0,88.286,11567.0,0.0,0.5710000000000001,129303.62,38.022,21.94,2874.485,0.0,0.142,0.56,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,15569464.0,2711.0,119.524,0.674,12754.0,3.1689999999999996,0.2407,4.2,tests performed,2165600.0,1083286.0,1063425.0,82869.0,1079.0,583.0,53.82,26.92,26.43,2.06,145.0,316.0,0.008,0.0,4024025.0,123.655,37.6,10.864,6.955,5189.972,0.2,408.50199999999995,5.72,5.9,44.6,86.979,5.8,71.9,0.75,15702.0,22.3,14.29,3902.063233
490,194828,VNM,Asia,Vietnam,2022-06-29,10745631.0,777.0,825.143,43087.0,0.0,0.429,109460.72300000001,7.915,8.405,438.907,0.0,0.004,0.91,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,85824349.0,56715.0,874.253,0.578,620.0,0.006,0.9523,1.1,people tested,232125960.0,86384303.0,81100223.0,63903866.0,1078735.0,609663.0,236.46,88.0,82.61,65.1,6210.0,75685.0,0.077,25.93,98168829.0,308.127,32.6,7.15,4.718,6171.884,2.0,245.465,6.0,1.0,45.9,85.84700000000001,2.6,75.4,0.7040000000000001,38486.9,10.93,1.96,1134.110282
491,20607,BMU,North America,Bermuda,2022-06-29,16162.0,205.0,29.285999999999998,140.0,2.0,0.28600000000000003,260291.181,3301.553,471.65,2254.719,32.21,4.601,0.04,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,41927.0,4992.0,675.24,80.39699999999999,867.0,13.963,0.0872,11.5,samples tested,131612.0,48554.0,47657.0,35401.0,5470.0,6.0,211.96,78.2,76.75,57.01,97.0,5.0,0.008,22.22,62092.0,1308.82,18.8,3.2439999999999998,1.942,50669.315,49.6,139.547,13.0,0.6,12.3,11.035,0.5,82.59,0.545,15.4,2.8,-1.1,248.0190685
492,64519,PYF,Oceania,French Polynesia,2022-06-29,73268.0,0.0,11.714,649.0,0.0,0.0,259324.54100000003,0.0,41.461999999999996,2297.069,0.0,0.0,1.42,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,278234000.0,179427.0,4126.754,2.661,201691.0,2.991,0.22699999999999998,4.4,people tested,453259.0,188352.0,180807.0,84100.0,405.0,125.0,160.43,66.67,63.99,29.77,442.0,125.0,0.044000000000000004,23.15,282534.0,77.324,32.7,7.775,4.593,38605.671,1.4,86.06,22.63,30.1,35.6,7.96,5.98,77.66,0.9009999999999999,546.2,16.03,-9.97,1933.2186570000001
493,72187,GRD,North America,Grenada,2022-06-29,18270.0,0.0,9.286,232.0,0.0,0.0,161659.957,0.0,82.164,2052.825,0.0,0.0,1.24,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,169195.0,527.0,1497.102,4.663,206.0,1.8230000000000002,0.1172,8.5,tests performed,89070.0,43743.0,38547.0,6780.0,694.0,7.0,78.81,38.71,34.11,6.0,62.0,2.0,0.002,31.48,113015.0,317.132,29.4,7.303999999999999,5.021,13593.877,1.5,243.96400000000003,10.71,35.3,52.0,41.047,3.7,72.4,0.779,-82.9,-6.6,-55.8,-1457.761834
494,9459,ABW,North America,Aruba,2022-06-29,40718.0,123.0,77.0,221.0,0.0,0.0,379849.80600000004,1147.442,718.317,2061.663,0.0,0.0,-0.01,372.0,8.157,,,,,,,793.0,428.0,7.398,3.9930000000000003,1467.0,0.494,0.003,333.3,tests performed,172014.0,89179.0,82835.0,40725.0,29.0,21.0,160.47,83.19,77.28,1.37,196.0,8.0,0.006999999999999999,25.93,107195.0,584.8,41.2,13.085,7.452000000000001,35973.781,1.8,341.01,11.62,1.5,52.1,94.04299999999999,4.2,76.29,0.7759999999999999,352.2,26.0,11.85,3285.6010079999996
495,188239,USA,North America,United States,2022-06-29,87490815.0,194488.0,110142.85699999999,1017478.0,710.0,360.286,262802.203,584.197,330.844,3056.2690000000002,2.133,1.082,1.11,3382.0,10.158999999999999,29886.0,89.771,241.0,5.156000000000001,35967.0,108.037,912521698.0,406474.0,2741.0040000000004,1.2209999999999999,502550.0,1.51,0.138,7.2,tests performed,596233489.0,259957415.0,222271398.0,123531432.0,19802.0,163157.0,179.58,78.3,66.95,37.21,491.0,41714.0,0.013000000000000001,38.89,332915074.0,35.608000000000004,38.3,15.413,9.732000000000001,54225.445999999996,1.2,151.089,10.79,19.1,24.6,21.221999999999998,2.77,78.86,0.9259999999999999,1105051.9,16.45,-3.34,3319.320711
496,197164,YEM,Asia,Yemen,2022-06-29,11824.0,0.0,0.0,2149.0,0.0,0.0,387.791,0.0,0.0,70.48100000000001,0.0,0.0,0.01,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,336937.0,56715.0,11.050999999999998,0.578,84.0,0.003,0.0,587.4,tests performed,864544.0,697956.0,446120.0,80.0,7669290.0,442.0,2.84,2.29,1.46,0.0,14.0,416.0,0.001,25.93,30490639.0,53.508,20.3,2.9219999999999997,1.5830000000000002,1479.1470000000002,18.8,495.00300000000004,5.35,7.6,29.2,49.542,0.7,66.12,0.47,38486.9,10.93,1.96,1134.110282
497,106106,OWID_LMC,Europe,Lower middle income,2022-06-29,91353613.0,41603.0,28670.857000000004,1311071.0,88.0,52.714,27428.142999999996,12.491,8.607999999999999,393.63800000000003,0.026000000000000002,0.016,1.54,1.0,0.536,58.0,21.561999999999998,10.0,5.282,1.0,25.605,8718186.0,136.0,3241.1279999999997,0.051,751.0,0.27899999999999997,0.212,4.7,tests performed,4182999198.0,2070483868.0,1829841636.0,318685582.0,4496005.0,3749092.0,125.59,62.16,54.94,9.57,1126.0,589362.0,0.018000000000000002,11.11,3330652550.0,45.135,43.5,19.002,13.777999999999999,29524.265,0.7,342.98900000000003,3.67,21.3,38.0,1.188,6.56,75.93,0.882,19277.5,21.09,-6.35,7166.7245379999995
498,23980,BIH,Europe,Bosnia and Herzegovina,2022-06-29,378630.0,53.0,43.143,15805.0,0.0,1.0,116021.06800000001,16.24,13.22,4843.021,0.0,0.306,1.56,22.0,1.859,143.0,12.085,,,760.0,65.335,1499302.0,4188.0,459.421,1.2830000000000001,3502.0,1.073,0.22699999999999998,4.4,tests performed,1924950.0,943394.0,846080.0,120530.0,66884.0,4315.0,58.98,28.91,25.93,3.69,1322.0,954.0,0.028999999999999998,25.93,3263459.0,68.49600000000001,42.5,16.569000000000003,10.710999999999999,11713.895,0.2,329.635,10.08,30.2,47.7,97.164,3.5,77.4,0.78,22134.5,26.94,18.13,6782.527373999999
499,12106,AUT,Europe,Austria,2022-06-29,4447278.0,14356.0,9642.857,20037.0,8.0,3.8569999999999998,491788.41,1587.514,1066.325,2215.729,0.885,0.42700000000000005,1.52,47.0,5.197,856.0,94.65799999999999,,,,,189791719.0,97659.0,20987.527000000002,10.799000000000001,86208.0,9.533,0.0752,13.3,tests performed,18416362.0,6831443.0,6625071.0,5311138.0,4140.0,857.0,203.65,75.54,73.26,58.73,95.0,38.0,0.0,35.19,9043072.0,106.749,44.4,19.202,13.748,45436.685999999994,0.7,145.183,6.35,28.4,30.9,94.04299999999999,7.37,81.54,0.922,17273.6,8.5,6.4,1910.147348
500,73885,GTM,North America,Guatemala,2022-06-29,905642.0,4342.0,2699.2859999999996,18535.0,19.0,14.286,49624.578,237.92,147.907,1015.6239999999999,1.041,0.7829999999999999,1.5,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,4067775.0,10381.0,222.893,0.569,10008.0,0.5479999999999999,0.1911,5.2,people tested,17860168.0,8294525.0,6323041.0,3242602.0,48046.0,15495.0,97.86,45.45,34.65,17.77,849.0,2141.0,0.012,37.5,18249868.0,157.834,22.9,4.694,3.016,7423.808000000001,8.7,155.898,10.18,35.3,52.0,76.665,0.6,74.3,0.6629999999999999,43113.3,25.35,10.04,2362.38969
501,62782,FIN,Europe,Finland,2022-06-29,1133597.0,0.0,1179.286,4832.0,0.0,8.714,204312.048,0.0,212.547,870.888,0.0,1.571,1.26,15.0,2.7039999999999997,464.0,83.62799999999999,3.0,2.256,79.0,59.395,11038890.0,4591.0,1989.5770000000002,0.8270000000000001,4001.0,0.721,0.331,3.0,tests performed,12168388.0,4517181.0,4334110.0,3317097.0,5922.0,2044.0,219.32,81.41,78.12,59.79,368.0,82.0,0.001,26.85,5548361.0,18.136,42.8,21.228,13.264000000000001,40585.721,1.4,153.507,5.76,18.3,22.6,7.96,3.28,81.91,0.938,4932.8,3.79,7.25,889.0553445
502,47316,COD,Africa,Democratic Republic of Congo,2022-06-29,91082.0,0.0,74.429,1371.0,0.0,2.571,985.971,0.0,0.8059999999999999,14.841,0.0,0.027999999999999997,0.54,8.0,0.746,191.0,17.81,10.0,0.932,238.0,22.191999999999997,1045120.0,4000.0,11.314,0.373,928.0,0.01,0.1168,8.6,tests performed,3514480.0,2979005.0,2272532.0,4240912.0,42303.0,40168.0,3.8,3.22,2.46,39.54,435.0,40168.0,0.043,31.48,92377986.0,35.879,17.0,3.02,1.745,808.133,77.1,318.949,6.1,30.5,38.3,4.4719999999999995,6.63,60.68,0.48,42100.6,15.74,5.93,3925.6274829999998
503,136321,OWID_OCE,Europe,Oceania,2022-06-29,9792065.0,57226.0,36672.571,14087.0,101.0,60.714,226563.522,1324.0639999999999,848.51,325.937,2.3369999999999997,1.405,1.06,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,11154564.0,1943.0,2040.856,0.355,1723.0,0.315,0.322,3.1,people tested,73926746.0,28978174.0,27756152.0,17065623.0,17603.0,10559.0,171.05,67.05,64.22,39.49,244.0,1169.0,0.003,11.11,43219954.0,14.462,39.7,16.820999999999998,10.812999999999999,64800.057,0.2,114.316,5.31,19.6,20.7,41.949,3.6,82.4,0.9570000000000001,2521.4,2.52,5.9,461.31927360000003
504,15514,BGD,Asia,Bangladesh,2022-06-29,1971602.0,2241.0,1770.4289999999999,29145.0,0.0,1.571,11855.445,13.475,10.645999999999999,175.252,0.0,0.009000000000000001,1.65,50.0,5.529,874.0,96.649,,,,,13820904.0,8536.0,83.10700000000001,0.051,2366.0,0.013999999999999999,0.2761,3.6,tests performed,277499188.0,129343045.0,119422697.0,29061179.0,252703.0,220147.0,166.86,77.78,71.81,17.47,1324.0,23082.0,0.013999999999999999,34.26,166303494.0,1265.036,27.5,5.098,3.262,3523.9840000000004,14.8,298.003,8.38,1.0,44.7,34.808,0.8,72.59,0.632,43744.8,33.01,2.0,4278.913044
505,61007,FLK,South America,Falkland Islands,2022-06-29,1815.0,8.0,1.143,28.0,0.0,0.0,514455.782,2267.574,323.939,570.811,0.0,0.0,0.55,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,777845.0,391.0,15857.236,7.971,539.0,10.988,0.6621,1.5,people tested,4407.0,2632.0,1775.0,21284.0,42.0,12.0,124.91,74.6,50.31,43.39,3401.0,4.0,0.113,11.11,3528.0,35.308,19.8,3.5260000000000002,2.063,1729.9270000000001,26.7,182.63400000000001,7.47,0.4,8.5,7.96,0.3,81.44,0.485,-38.6,-3.8,10.79,-786.903961
506,18094,BEL,Europe,Belgium,2022-06-29,4225222.0,0.0,3982.429,31903.0,0.0,5.0,363230.80100000004,0.0,342.35900000000004,2742.614,0.0,0.43,1.74,76.0,6.534,1359.0,116.83,,,737.0,63.358000000000004,34315605.0,4743.0,2950.0190000000002,0.408,11433.0,0.983,0.26,3.8,tests performed,25664619.0,9248338.0,9151297.0,7694498.0,5575.0,4152.0,220.63,79.51,78.67,66.15,357.0,82.0,0.001,23.15,11632334.0,375.564,41.8,18.570999999999998,12.849,42658.575999999994,0.2,114.898,4.29,25.1,31.4,88.469,5.64,81.63,0.9309999999999999,21907.9,8.31,-0.77,1883.362359
507,33338,CPV,Africa,Cape Verde,2022-06-29,60227.0,694.0,208.143,404.0,1.0,0.14300000000000002,107184.362,1235.093,370.426,718.988,1.78,0.254,1.49,220.0,5.779,3505.0,92.072,,,760.0,65.335,62177630.0,904.0,1633.3339999999998,1.609,324.0,0.5770000000000001,0.1168,8.6,tests performed,773810.0,355377.0,307526.0,183.0,4461.0,404.0,137.71,63.25,54.73,0.03,719.0,5.0,0.001,19.44,561901.0,135.58,25.7,4.46,3.437,6222.554,0.5,182.21900000000002,2.42,2.1,16.5,2.735,2.1,72.98,0.665,188.6,6.81,13.94,335.6463149
508,61894,FJI,Oceania,Fiji,2022-06-29,65558.0,0.0,28.143,865.0,0.0,0.0,72608.343,0.0,31.169,958.025,0.0,0.0,1.68,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,558519.0,567.0,618.5840000000001,0.628,765.0,0.847,0.6621,1.5,tests performed,1609748.0,706496.0,635168.0,141572.0,28295.0,62.0,178.29,78.25,70.35,15.68,69.0,26.0,0.003,57.41,902899.0,49.562,28.6,6.224,3.284,8702.975,1.4,412.82,14.49,10.2,34.8,7.96,2.3,67.44,0.743,-38.6,-3.8,10.79,-786.903961
509,4306,AND,Europe,Andorra,2022-06-29,43774.0,0.0,0.0,153.0,0.0,0.0,565891.874,0.0,0.0,1977.92,0.0,0.0,0.39,0.0,0.0,,,,,,,300307.0,957.0,3882.243,0.33299999999999996,91.0,1.176,0.7049,1.4,tests performed,153383.0,57886.0,53456.0,42041.0,1973.0,15.0,198.29,74.83,69.11,54.35,194.0,0.0,0.0,8.33,77354.0,163.755,29.1,6.211,3.8569999999999998,13913.839,0.5,109.135,7.97,29.0,37.8,83.741,1.9,83.73,0.868,89.6,27.2,31.41,1158.311141
510,46470,CZE,Europe,Czechia,2022-06-29,3932745.0,1160.0,782.571,40316.0,0.0,0.857,366704.794,108.163,72.97,3759.224,0.0,0.08,1.52,9.0,0.8390000000000001,211.0,19.674,10.0,0.932,233.0,21.726,54587458.0,4000.0,5089.952,0.373,3708.0,0.34600000000000003,0.111,9.0,tests performed,17671441.0,6965424.0,6879783.0,4236825.0,1598.0,1095.0,164.78,64.95,64.15,39.51,102.0,71.0,0.001,14.81,10724553.0,137.17600000000002,43.3,19.027,11.58,32605.906000000003,0.7,227.485,6.82,30.5,38.3,85.198,6.63,79.38,0.9,42100.6,15.74,5.93,3925.6274829999998
511,87317,IRL,Europe,Ireland,2022-06-29,1600614.0,13229.0,1889.8570000000002,7499.0,30.0,4.2860000000000005,321221.119,2654.8779999999997,379.26800000000003,1504.9460000000001,6.021,0.86,0.89,31.0,6.221,746.0,149.71200000000002,17.0,3.3960000000000004,708.0,142.02,12347313.0,5553.0,2477.935,1.114,5178.0,1.0390000000000001,0.32,3.1,tests performed,10979855.0,4090759.0,4042890.0,3086975.0,1165.0,1400.0,220.35,82.1,81.14,61.95,281.0,87.0,0.002,11.11,4982904.0,69.874,38.7,13.927999999999999,8.677999999999999,67335.293,0.2,126.459,3.28,23.0,25.7,94.57600000000001,2.96,82.3,0.955,3219.2,4.29,15.34,646.0489706000001
512,169832,LKA,Asia,Sri Lanka,2022-06-29,664110.0,12.0,10.571,16521.0,0.0,0.14300000000000002,30892.708,0.5579999999999999,0.49200000000000005,768.515,0.0,0.006999999999999999,1.14,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,7691045.0,1111.0,357.76800000000003,0.052000000000000005,1204.0,0.055999999999999994,0.0083,120.4,tests performed,39586599.0,17073712.0,14523208.0,7989679.0,14667.0,1436.0,184.15,79.42,67.56,37.17,67.0,108.0,0.001,28.7,21497306.0,341.955,34.1,10.068999999999999,5.331,11669.077,0.7,197.093,10.68,0.3,27.0,43.993,3.6,76.98,0.782,104463.1,10.09,5.53,2234.733736
513,135429,NOR,Europe,Norway,2022-06-29,1446564.0,740.0,641.857,3337.0,57.0,8.142999999999999,264665.604,135.392,117.435,610.543,10.429,1.49,1.11,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,11154564.0,1943.0,2040.856,0.355,1723.0,0.315,0.322,3.1,people tested,11409111.0,4341816.0,4047204.0,3020091.0,2464.0,1379.0,208.74,79.44,74.05,55.26,252.0,74.0,0.001,11.11,5465629.0,14.462,39.7,16.820999999999998,10.812999999999999,64800.057,0.2,114.316,5.31,19.6,20.7,41.949,3.6,82.4,0.9570000000000001,2521.4,2.52,5.9,461.31927360000003
514,174100,SYR,Asia,Syria,2022-06-29,55926.0,1.0,1.143,3150.0,0.0,0.0,3060.1279999999997,0.055,0.063,172.36,0.0,0.0,1.1,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,175957.0,9789.0,9.628,1.123,221.0,0.012,0.0052,193.4,tests performed,4232490.0,2748571.0,1831005.0,28686.0,72289.0,11862.0,23.16,15.04,10.02,0.16,649.0,5373.0,0.028999999999999998,26.85,18275704.0,214.243,21.7,18.436,2.577,57410.166,0.5,376.264,5.59,22.6,28.9,70.598,1.5,72.7,0.5670000000000001,11808.7,7.09,-9.86,1354.9088550000001
515,193934,VEN,South America,Venezuela,2022-06-29,526022.0,195.0,131.0,5732.0,2.0,1.0,18325.134,6.792999999999999,4.564,199.687,0.07,0.035,1.42,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,11989.0,2072.0,38.125,0.595,76.0,0.242,0.0132,76.0,people tested,37860994.0,22157232.0,14287370.0,651502.0,145313.0,0.0,131.9,77.19,49.77,2.27,0.0,0.0,0.0,13.89,28704947.0,36.253,29.0,6.614,3.915,16745.022,13.2,204.85,6.47,2.8,34.5,25.209,0.8,72.06,0.711,38486.9,10.93,1.96,1134.110282
516,160083,SLE,Africa,Sierra Leone,2022-06-29,7695.0,0.0,0.28600000000000003,125.0,0.0,0.0,945.176,0.0,0.035,15.354000000000001,0.0,0.0,0.75,7.0,1.0190000000000001,118.0,17.172,9.0,1.669,7292.0,49.975,428517.0,7466.0,52.635,1.087,251.0,0.031,0.0011,877.6,tests performed,3493386.0,2621469.0,1893466.0,12864.0,1928.0,52708.0,42.91,32.2,23.26,0.16,6474.0,33976.0,0.41700000000000004,48.15,8141343.0,104.7,19.1,2.5380000000000003,1.285,1390.3,52.2,325.721,2.42,8.8,41.3,19.275,3.6,54.7,0.452,-110.2,-6.47,3.73,-1114.1441710000001
517,88154,IMN,Europe,Isle of Man,2022-06-29,36463.0,2642.0,377.42900000000003,108.0,0.0,0.0,426917.223,30933.146,4419.021,1264.489,0.0,0.0,0.89,31.0,6.221,746.0,149.71200000000002,17.0,3.3960000000000004,708.0,142.02,12347313.0,5553.0,2477.935,1.114,5178.0,1.0390000000000001,0.32,3.1,tests performed,189994.0,69560.0,67106.0,53328.0,1.0,4.0,222.45,81.44,78.57,62.44,47.0,0.0,0.0,11.11,85410.0,147.872,38.7,13.927999999999999,8.677999999999999,67335.293,0.2,126.459,3.28,23.0,25.7,94.57600000000001,2.96,81.4,0.955,3219.2,4.29,15.34,646.0489706000001
518,103510,LIE,Europe,Liechtenstein,2022-06-29,17897.0,37.0,17.570999999999998,85.0,0.0,0.0,467846.5,967.2189999999999,459.336,2221.99,0.0,0.0,1.38,1.0,0.536,294.0,157.477,10.0,5.282,1.0,25.605,90632.0,248.0,2369.216,6.483,220.0,5.751,0.344,2.9,tests performed,70780.0,26744.0,26429.0,18624.0,0.0,7.0,185.03,69.91,69.09,48.69,183.0,0.0,0.0,14.81,38254.0,237.012,29.0,4.4239999999999995,2.8160000000000003,17881.509,38.6,341.86199999999997,7.77,1.5,18.1,1.188,2.397,82.49,0.919,46.6,8.62,10.62,1218.1732630000001
519,179793,TON,Oceania,Tonga,2022-06-29,12301.0,0.0,31.714000000000002,12.0,0.0,0.0,115222.136,0.0,297.064,112.40299999999999,0.0,0.0,0.19,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,749695.0,877.0,88.426,0.10300000000000001,377.0,0.044000000000000004,0.0235,42.6,tests performed,242634.0,108263.0,97151.0,37220.0,7881.0,151.0,227.27,101.41,91.0,34.86,1414.0,0.0,0.0,44.44,106759.0,150.028,22.3,5.82,4.032,5425.621,49.2,227.49,15.42,11.8,44.4,10.475,2.6,70.91,0.725,97687.9,8.02,19.55,1396.5221060000001
520,89020,ISR,Asia,Israel,2022-06-29,4338698.0,9966.0,10404.143,10958.0,12.0,6.7139999999999995,466978.581,1072.651,1119.809,1179.421,1.2919999999999998,0.723,1.22,66.0,7.104,1428.0,153.697,41.0,4.413,1406.0,151.329,51780014.0,30887.0,5573.137,3.324,26227.0,2.823,0.33299999999999996,3.0,people tested,18186522.0,6712389.0,6145184.0,5328949.0,1253.0,1203.0,195.74,72.25,66.14,57.36,129.0,73.0,0.001,14.81,9291000.0,402.606,30.6,11.732999999999999,7.359,33132.32,0.5,93.32,6.74,15.4,35.4,94.57600000000001,2.99,82.97,0.919,10022.5,8.92,-9.47,1078.7321060000002
521,50730,DOM,North America,Dominican Republic,2022-06-29,605784.0,2528.0,902.143,4383.0,0.0,0.0,55303.982,230.78900000000002,82.36,400.13800000000003,0.0,0.0,1.4,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,3444251.0,3731.0,314.437,0.341,4839.0,0.442,0.1524,6.6,samples tested,15772822.0,7236727.0,5998771.0,2380312.0,4643.0,3670.0,144.0,66.07,54.76,21.73,335.0,524.0,0.005,5.56,10953714.0,222.873,27.6,6.981,4.419,14600.861,1.6,266.653,8.2,8.5,19.1,55.181999999999995,1.6,74.08,0.7559999999999999,5419.2,6.66,10.66,494.73630589999993
522,45614,CYP,Europe,Cyprus,2022-06-29,504717.0,0.0,1037.5710000000001,1072.0,0.0,0.28600000000000003,563297.08,0.0,1157.997,1196.422,0.0,0.319,0.92,1.0,1.1159999999999999,47.0,52.455,1.0,1.1159999999999999,26.0,29.018,29501771.0,67206.0,32925.9,75.006,67201.0,75.001,0.0256,39.1,tests performed,1788761.0,668493.0,645099.0,475169.0,1437.0,82.0,199.64,74.61,72.0,53.03,92.0,18.0,0.002,14.81,896005.0,127.65700000000001,37.3,13.415999999999999,8.562999999999999,32415.132,0.7,141.171,9.24,19.6,52.7,85.198,3.4,80.98,0.887,1154.2,7.83,-0.57,1288.1624539999998
523,89906,ITA,Europe,Italy,2022-06-29,18438877.0,95455.0,60667.857,168294.0,60.0,57.428999999999995,305443.92,1581.2320000000002,1004.9760000000001,2787.8259999999996,0.9940000000000001,0.951,1.47,248.0,4.1080000000000005,6502.0,107.70700000000001,205.0,3.3960000000000004,2964.0,49.099,224876148.0,246512.0,3725.1209999999996,4.084,193140.0,3.199,0.2053,4.9,tests performed,138255511.0,50803122.0,47948298.0,41011911.0,19490.0,15607.0,229.02,84.16,79.43,67.94,259.0,451.0,0.001,22.22,60367471.0,205.859,47.9,23.021,16.24,35220.084,2.0,113.15100000000001,4.78,19.8,27.8,94.57600000000001,3.18,83.51,0.892,180753.4,11.84,-8.54,2994.218525
524,159257,SYC,Africa,Seychelles,2022-06-29,44669.0,0.0,0.0,167.0,0.0,0.0,451612.57700000005,0.0,0.0,1688.404,0.0,0.0,0.9,7.0,1.0190000000000001,118.0,17.172,9.0,1.669,7292.0,49.975,9852899.0,7466.0,1433.869,1.087,6317.0,0.919,0.0594,16.8,people tested,221597.0,84943.0,80726.0,41022.0,1315.0,0.0,224.04,85.88,81.62,41.47,0.0,4.0,0.004,37.04,98910.0,208.354,36.2,8.606,5.586,26382.287,1.1,242.648,10.55,7.1,35.7,97.719,3.6,73.4,0.7959999999999999,-110.2,-6.47,3.73,-1114.1441710000001
525,160977,SGP,Asia,Singapore,2022-06-29,1434563.0,9392.0,7230.143,1411.0,1.0,0.857,263048.812,1722.165,1325.756,258.728,0.183,0.157,1.38,7.0,1.0190000000000001,118.0,17.172,14.0,2.5669999999999997,738.0,135.32299999999998,428517.0,24000.0,52.635,4.401,24000.0,4.401,0.1627,6.1,samples tested,14225122.0,5019556.0,4997156.0,4208410.0,2675.0,2928.0,260.84,92.04,91.63,77.17,537.0,177.0,0.003,41.67,5453600.0,7915.731,42.4,12.922,7.0489999999999995,85535.383,52.2,92.243,10.99,5.2,28.3,19.275,2.4,83.62,0.938,2868.1,5.71,34.08,525.909491
526,32501,CAN,North America,Canada,2022-06-29,3948112.0,2619.0,2221.143,41911.0,23.0,16.285999999999998,103712.33099999999,68.798,58.347,1100.953,0.604,0.428,1.13,206.0,5.4110000000000005,3440.0,90.365,,,760.0,65.335,62177630.0,75648.0,1633.3339999999998,1.9869999999999999,27030.0,0.71,0.0874,11.4,tests performed,86240020.0,32776276.0,31445679.0,22018065.0,14000.0,21143.0,226.54,86.1,82.6,57.84,555.0,1148.0,0.003,25.93,38067913.0,4.037,41.4,16.984,10.797,44017.59099999999,0.5,105.59899999999999,7.37,12.0,16.6,2.735,2.5,82.43,0.929,15846.7,2.65,-9.19,416.2744619
527,122817,MOZ,Africa,Mozambique,2022-06-29,227819.0,94.0,66.857,2212.0,0.0,0.0,7083.253000000001,2.923,2.079,68.775,0.0,0.0,1.02,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1341769.0,939.0,41.718,0.028999999999999998,870.0,0.027000000000000003,0.0989,10.1,tests performed,31616078.0,14978771.0,14098645.0,425736.0,295812.0,0.0,98.3,46.57,43.83,1.32,0.0,0.0,0.0,28.7,32163045.0,37.728,17.7,3.158,1.87,1136.103,62.9,329.94199999999995,3.3,5.1,29.1,12.227,0.7,60.85,0.456,2633.7,21.49,55.05,4193.449258
528,86460,IRQ,Asia,Iraq,2022-06-29,2345893.0,2628.0,1645.4289999999999,25239.0,2.0,1.429,56967.702000000005,63.818000000000005,39.958,612.904,0.049,0.035,2.0,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,19002710.0,20703.0,461.462,0.503,11852.0,0.28800000000000003,0.0092,109.2,tests performed,18636865.0,10833447.0,7609777.0,193641.0,16843.0,6803.0,45.26,26.31,18.48,0.47,165.0,3625.0,0.009000000000000001,35.19,41179351.0,88.125,20.0,3.1860000000000004,1.9569999999999999,15663.986,2.5,218.612,8.83,0.8,21.1,94.57600000000001,1.4,70.6,0.674,261045.6,29.95,27.79,3070.085933
529,150232,SHN,Africa,Saint Helena,2022-06-29,4.0,0.0,0.0,1460.0,0.0,0.14300000000000002,656.2760000000001,0.0,0.0,109.969,0.0,0.011000000000000001,1.44,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,5534918.0,3839.0,416.895,0.289,4661.0,0.35100000000000003,0.008,125.7,samples tested,7892.0,4361.0,3531.0,4945264.0,211071.0,97.0,129.48,71.55,57.93,37.25,15915.0,0.0,0.0,66.67,6095.0,494.869,20.3,2.9739999999999998,1.642,1854.211,56.0,191.375,4.28,4.7,21.0,4.617,8.05,80.56,0.5429999999999999,1217716.1,29.72,2.89,8345.55017
530,112102,MLI,Africa,Mali,2022-06-29,31163.0,3.0,2.286,737.0,0.0,0.14300000000000002,1494.2179999999998,0.14400000000000002,0.11,35.338,0.0,0.006999999999999999,1.02,45.0,1.3730000000000002,746.0,22.76,10.0,5.282,1351.0,41.218999999999994,708110.0,605.0,33.953,0.028999999999999998,536.0,0.026000000000000002,0.0035,288.6,tests performed,2406986.0,1781525.0,1304066.0,161938.0,1683.0,7053.0,11.54,8.54,6.25,29.79,338.0,6112.0,0.028999999999999998,40.74,20855724.0,15.196,16.4,2.519,1.486,2014.306,0.1,268.024,2.42,1.6,23.0,52.232,0.1,59.31,0.434,160.6,14.41,3.78,295.42695269999996
531,186458,ARE,Asia,United Arab Emirates,2022-06-29,944022.0,1769.0,1707.8570000000002,2315.0,2.0,0.857,94486.454,177.058,170.938,231.707,0.2,0.086,1.14,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,168522672.0,325016.0,16867.308,32.531,313964.0,31.424,0.0048,208.0,tests performed,24922054.0,9991089.0,9792266.0,5138699.0,6152.0,795.0,249.44,100.0,98.01,51.43,80.0,0.0,0.0,35.19,9991083.0,112.44200000000001,34.0,1.1440000000000001,0.526,67293.483,0.1,317.84,17.26,1.2,37.4,21.221999999999998,1.2,77.97,0.89,179972.2,14.89,1.92,4140.449928
532,40519,COK,Oceania,Cook Islands,2022-06-29,5774.0,0.0,1.429,1.0,0.0,0.0,328590.94,0.0,81.298,56.909,0.0,0.0,0.06,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,395040.0,9497.0,69.832,0.185,639.0,0.113,0.0,4566.4,tests performed,39780.0,15033.0,14685.0,10062.0,1486.0,3.0,226.38,85.55,83.57,57.26,171.0,0.0,0.0,32.41,17572.0,15.405,19.0,3.4019999999999997,2.063,4881.406,37.0,344.094,7.2,1.7,52.3,47.964,2.2,76.25,0.574,180760.5,29.56,2.99,3525.944303
533,187344,GBR,Europe,United Kingdom,2022-06-29,22777114.0,37239.0,20099.429,180424.0,118.0,66.143,333940.445,545.969,294.682,2645.237,1.73,0.97,1.39,175.0,2.5660000000000003,10081.0,147.8,241.0,5.156000000000001,9146.0,134.092,503270347.0,245960.0,7378.561,3.6060000000000003,259329.0,3.802,0.0326,30.6,tests performed,149397250.0,53577314.0,50126662.0,39931494.0,38209.0,45267.0,219.03,78.55,73.49,58.54,664.0,4223.0,0.006,11.11,68207114.0,272.89799999999997,40.8,18.517,12.527000000000001,39753.244,0.2,122.137,4.28,20.0,24.7,21.221999999999998,2.54,81.32,0.932,137803.3,9.16,-17.4,2020.3655
534,2590,ALB,Europe,Albania,2022-06-29,280298.0,1131.0,336.85699999999997,3499.0,1.0,0.28600000000000003,97565.06800000001,393.67400000000004,117.25200000000001,1217.9189999999999,0.348,0.099,2.06,,,,,,,,,1613870.0,957.0,561.75,0.33299999999999996,375.0,0.131,0.4263,2.3,tests performed,2906126.0,1326545.0,1248781.0,324545.0,2541.0,1035.0,101.16,46.17,43.47,11.3,360.0,154.0,0.005,11.11,2872934.0,104.87100000000001,38.0,13.187999999999999,8.642999999999999,11803.431,1.1,304.195,10.08,7.1,51.2,37.746,2.89,78.57,0.795,16257.3,32.6,-3.38,5658.779492000001
535,6816,ATG,North America,Antigua and Barbuda,2022-06-29,8625.0,0.0,5.0,141.0,0.0,0.0,87361.235,0.0,50.644,1428.1660000000002,0.0,0.0,0.83,0.0,0.0,,,,,,,16700.0,1459.0,169.15200000000002,0.043,26.0,0.263,0.0055,181.8,tests performed,126122.0,64091.0,62031.0,2930.0,305.0,14.0,127.75,64.92,62.83,19.37,142.0,5.0,0.005,22.22,98728.0,231.845,32.1,6.933,4.631,21490.943,0.5,191.511,13.17,29.0,37.8,26.664,3.8,77.02,0.778,-61.0,-4.75,-24.71,-617.8591686000001
536,21458,BTN,Asia,Bhutan,2022-06-29,59729.0,0.0,7.857,21.0,0.0,0.0,76585.46,0.0,10.075,26.927,0.0,0.0,0.29,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,1711669.0,13010.0,2194.729,16.682000000000002,8392.0,10.76,0.036000000000000004,27.8,samples tested,1910077.0,692909.0,672575.0,544593.0,414.0,45.0,244.91,88.85,86.24,69.83,58.0,5.0,0.001,22.22,779900.0,21.188000000000002,28.6,4.885,2.977,8708.597,1.5,217.06599999999997,9.75,0.6,12.3,79.807,1.7,71.78,0.654,15.4,2.8,-1.1,248.0190685
537,26496,VGB,North America,British Virgin Islands,2022-06-29,6941.0,0.0,0.0,63.0,0.0,0.0,228149.755,0.0,0.0,2070.802,0.0,0.0,1.41,22.0,1.859,143.0,12.085,,,760.0,65.335,96630.0,126242.0,3176.215,0.59,121418.0,0.5670000000000001,0.0483,20.7,people tested,41198.0,19389.0,18083.0,3726.0,802024.0,8.0,135.42,63.73,59.44,12.25,263.0,3.0,0.01,39.81,30423.0,207.97299999999998,33.5,8.552,5.06,14103.452,3.4,177.96099999999998,13.67,10.1,17.9,97.164,2.2,79.07,0.765,781197.4,23.53,5.87,3650.567028
538,104348,LTU,Europe,Lithuania,2022-06-29,1160680.0,491.0,279.0,9173.0,3.0,1.571,431501.69,182.537,103.723,3410.212,1.115,0.584,1.5,1.0,0.536,58.0,21.561999999999998,10.0,5.282,1.0,25.605,8718186.0,136.0,3241.1279999999997,0.051,751.0,0.27899999999999997,0.212,4.7,tests performed,4488814.0,1952368.0,1876636.0,934307.0,100.0,65.0,166.88,72.58,69.77,34.73,24.0,12.0,0.0,11.11,2689862.0,45.135,43.5,19.002,13.777999999999999,29524.265,0.7,342.98900000000003,3.67,21.3,38.0,1.188,6.56,75.93,0.882,19277.5,21.09,-6.35,7166.7245379999995
539,93815,KAZ,Asia,Kazakhstan,2022-06-29,1395849.0,255.0,87.571,19018.0,0.0,0.14300000000000002,73485.238,13.425,4.61,1001.2130000000001,0.0,0.008,1.9,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,11965068.0,52729.0,629.908,2.7760000000000002,39955.0,2.103,0.03,33.4,tests performed,20918681.0,9523631.0,9306077.0,2514071.0,12492.0,10734.0,110.13,50.14,48.99,13.24,565.0,560.0,0.003,11.11,18994958.0,6.681,30.6,6.9910000000000005,4.625,24055.588,0.1,466.792,7.11,7.0,43.1,98.999,6.7,73.6,0.825,83124.6,26.77,-14.32,4376.140237
540,173265,CHE,Europe,Switzerland,2022-06-29,3759730.0,33115.0,4730.714,13828.0,4.0,0.857,431384.612,3799.555,542.794,1586.6,0.45899999999999996,0.098,1.17,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,21277734.0,9789.0,2441.369,1.123,9093.0,1.043,0.40700000000000003,2.5,tests performed,15759752.0,6087852.0,6002672.0,3781389.0,1091.0,1605.0,180.82,69.85,68.87,43.39,184.0,82.0,0.001,11.11,8715494.0,214.243,43.1,18.436,12.644,57410.166,0.5,99.73899999999999,5.59,22.6,28.9,67.779,4.53,83.78,0.955,11808.7,7.09,-9.86,1354.9088550000001
541,84731,OWID_INT,Asia,International,2022-06-29,721.0,0.0,0.0,15.0,0.0,0.0,22055.694,5.189,6.955,567.22,0.033,0.017,1.22,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,59503735.0,103179.0,215.31099999999998,0.373,114413.0,0.414,0.0837,11.9,people tested,417522347.0,201000560.0,168251795.0,48269992.0,0.0,267095.0,151.08,72.73,60.88,17.47,966.0,43565.0,0.016,52.78,276361788.0,145.725,29.3,5.319,3.053,11188.743999999999,5.7,342.86400000000003,6.32,2.8,76.1,64.204,1.04,71.72,0.718,213.9,4.1,13.64,580.0017353999999
542,147837,ROU,Europe,Romania,2022-06-29,2919461.0,0.0,567.714,65739.0,0.0,1.857,152629.43300000002,0.0,29.68,3436.835,0.0,0.09699999999999999,-0.02,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,234.0,42.846000000000004,21260367.0,14144.0,1111.492,4.8260000000000005,75700.0,3.958,0.0565,17.7,tests performed,16827486.0,8175541.0,8114769.0,1688620.0,1208.0,1208.0,87.97,42.74,42.42,57.62,63.0,9930.0,0.052000000000000005,11.11,19127772.0,85.12899999999999,43.0,17.85,11.69,23313.199,5.7,370.94599999999997,9.74,22.9,37.1,78.46300000000001,6.892,76.05,0.828,117243.5,19.06,-5.09,6129.490669
543,59332,OWID_EUN,Africa,European Union,2022-06-29,148615391.0,423617.0,302790.0,1103251.0,334.0,303.0,332331.714,947.2869999999999,677.095,2467.075,0.747,0.6779999999999999,0.55,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,5024643.0,4118.0,42.626000000000005,0.035,4906.0,0.042,0.1325,7.5,tests performed,883424889.0,337607376.0,327475257.0,241209768.0,214301.0,142546.0,197.55,75.5,73.23,53.94,319.0,4536.0,0.001,25.0,447189915.0,104.95700000000001,19.8,3.5260000000000002,2.063,1729.9270000000001,26.7,182.63400000000001,7.47,0.4,8.5,7.96,0.3,66.6,0.485,3805.5,9.78,12.82,2871.66802
544,18928,BLZ,North America,Belize,2022-06-29,63795.0,223.0,161.143,679.0,0.0,0.0,157551.585,550.7330000000001,397.967,1676.895,0.0,0.0,1.2,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,572900.0,1351.0,1414.865,3.3369999999999997,1012.0,2.499,0.1451,6.9,tests performed,489508.0,247975.0,213197.0,49729.0,5470.0,346.0,120.89,61.24,52.65,12.28,855.0,207.0,0.051,42.59,404915.0,16.426,25.0,3.853,2.279,7824.361999999999,0.2,176.957,17.11,25.1,31.4,90.083,1.3,74.62,0.716,127.6,6.28,51.1,315.1278663
545,110421,MYS,Asia,Malaysia,2022-06-29,4563188.0,2605.0,2305.286,35763.0,5.0,3.1430000000000002,139222.628,79.47800000000001,70.334,1091.127,0.153,0.096,1.1,40.0,1.22,646.0,19.709,10.0,5.282,1136.0,34.659,60647556.0,29997.0,1850.354,0.915,36861.0,1.125,0.0555,18.0,people tested,71243182.0,28040619.0,27274547.0,16143025.0,3254.0,7971.0,217.36,85.55,83.21,49.25,243.0,1000.0,0.003,47.22,32776195.0,96.25399999999999,29.9,6.292999999999999,3.407,26808.164,0.1,260.942,16.74,1.0,42.4,8.704,1.9,76.16,0.81,1429.6,0.45,30.64,43.61702144
546,132000,OWID_NAM,Oceania,North America,2022-06-29,103259849.0,207484.0,132262.143,1460411.0,778.0,428.85699999999997,173085.968,347.788,221.7,2447.967,1.304,0.7190000000000001,1.44,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,5279608.0,11989.0,24.974,0.057,8950.0,0.042,0.0056,180.0,tests performed,1026074501.0,435138984.0,381108749.0,220995454.0,112472.0,271181.0,171.99,72.94,63.88,37.04,455.0,51378.0,0.009000000000000001,40.74,596581283.0,209.588,18.1,2.7510000000000003,1.4469999999999998,5338.454000000001,44.5,181.013,2.42,0.6,10.8,41.949,0.3,73.71,0.539,8148.4,31.97,5.18,1215.747423
547,139213,PSE,Asia,Palestine,2022-06-29,659853.0,0.0,192.857,5660.0,0.0,0.0,126341.916,0.0,36.926,1083.719,0.0,0.0,0.14,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,59627.0,3267.0,3280.8959999999997,0.626,1289.0,0.247,0.1962,5.1,tests performed,3734270.0,2008544.0,1772479.0,331383.0,0.0,182.0,71.5,38.46,33.94,6.34,35.0,77.0,0.001,16.67,5222756.0,778.202,20.4,3.043,1.726,4449.898,1.0,265.91,10.59,7.7,22.7,59.607,4.8,74.05,0.708,1197.4,9.28,58.86,229.2659278
548,31607,CMR,Africa,Cameroon,2022-06-29,120068.0,0.0,17.285999999999998,1931.0,0.0,0.14300000000000002,4410.331,0.0,0.635,70.929,0.0,0.005,0.03,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,2731181.0,3334.0,100.322,0.19699999999999998,608.0,0.022000000000000002,0.0,33.7,tests performed,1838907.0,1559801.0,1216589.0,52011.0,9890.0,92.0,6.75,5.73,4.47,0.19,3.0,76.0,0.0,22.22,27224262.0,50.885,18.8,3.165,1.919,3364.926,23.8,244.66099999999997,7.2,2.0,33.7,2.735,1.3,59.29,0.563,66889.5,26.21,-5.49,9698.83226
549,35024,CAF,Africa,Central African Republic,2022-06-29,14649.0,0.0,0.0,113.0,0.0,0.0,2977.447,0.0,0.0,22.968000000000004,0.0,0.0,0.0,220.0,5.779,3505.0,92.072,,,760.0,65.335,94759.0,2691.0,19.26,40.467,142.0,0.028999999999999998,0.0,1.8,tests performed,1217399.0,1124848.0,1068464.0,23536.0,12887.0,1694.0,24.74,22.86,21.72,35.39,344.0,1694.0,0.034,18.52,4919987.0,7.479,18.3,3.655,2.251,661.24,0.5,435.727,6.1,2.1,16.5,16.602999999999998,1.0,53.28,0.397,188.6,6.81,13.94,335.6463149
550,71352,GRL,North America,Greenland,2022-06-29,11971.0,0.0,0.0,21.0,0.0,0.0,210505.02899999998,0.0,0.0,369.276,0.0,0.0,1.4,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,84483362.0,73217.0,8146.314,7.06,95227.0,9.182,0.0827,12.1,samples tested,79745.0,41243.0,38502.0,6138379.0,15.0,2.0,140.23,72.52,67.7,59.19,35.0,1.0,0.002,11.11,56868.0,0.13699999999999998,45.3,20.396,14.524000000000001,24574.382,1.5,199.94099999999997,2.16,35.3,52.0,41.047,4.21,71.7,0.888,-82.9,-6.6,-55.8,-1457.761834
551,193091,VAT,Europe,Vatican,2022-06-29,29.0,0.0,0.0,14.0,0.0,0.0,35714.286,0.0,0.0,44.52,0.0,0.0,0.69,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,11989.0,2072.0,38.125,0.595,76.0,0.242,0.0132,76.0,people tested,309433.0,172232.0,126591.0,10610.0,145313.0,151.0,98.4,54.77,40.26,3.37,480.0,0.0,0.0,68.06,812.0,22.662,23.1,4.394,2.62,2921.909,13.2,546.3,12.02,2.8,34.5,25.209,4.0,75.12,0.609,38486.9,10.93,1.96,1134.110282
552,180636,TTO,North America,Trinidad and Tobago,2022-06-29,166979.0,79.0,98.429,4009.0,4.0,2.714,118983.963,56.293,70.137,2856.687,2.85,1.9340000000000002,0.81,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,768404.0,1900.0,547.54,1.354,739.0,0.527,0.222,4.5,people tested,1573294.0,751219.0,714003.0,165525.0,489.0,465.0,112.11,53.53,50.88,11.79,331.0,44.0,0.003,13.89,1403374.0,266.88599999999997,36.2,10.014,5.819,28763.071,49.2,228.467,10.97,11.8,44.4,89.443,3.0,73.51,0.7959999999999999,97687.9,8.02,19.55,1396.5221060000001
553,112954,MLT,Europe,Malta,2022-06-29,102593.0,570.0,496.714,740.0,0.0,0.5710000000000001,198785.11899999998,1104.437,962.438,1433.8310000000001,0.0,1.107,1.33,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1950858.0,1892.0,3780.0,3.6660000000000004,1440.0,2.79,0.2334,4.3,tests performed,1317072.0,476860.0,469780.0,404795.0,182.0,473.0,255.2,92.4,91.02,78.43,916.0,13.0,0.003,13.89,516100.0,1454.037,42.4,19.426,11.324000000000002,36513.323,0.2,168.71099999999998,8.83,20.9,30.2,52.232,4.485,82.53,0.895,539.8,5.7,-1.02,1045.921333
554,168942,ESP,Europe,Spain,2022-06-29,12734038.0,0.0,17200.571,107906.0,0.0,43.143,272413.745,0.0,367.964,2308.386,0.0,0.9229999999999999,1.5,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,93162168.0,29943.0,1992.9779999999998,0.6409999999999999,43694.0,0.935,0.31,3.2,tests performed,95153556.0,41259173.0,40562786.0,25436397.0,47657.0,11716.0,203.56,88.26,86.77,54.41,251.0,695.0,0.001,29.17,46745211.0,93.105,45.5,19.436,13.799000000000001,34272.36,1.0,99.40299999999999,7.17,27.4,31.4,43.993,2.97,83.56,0.904,104463.1,10.09,5.53,2234.733736
555,116871,FSM,Oceania,Micronesia (country),2022-06-29,38.0,0.0,0.0,325793.0,5.0,28.143,326.868,0.0,0.0,2501.055,0.038,0.21600000000000003,1.51,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,15569464.0,1462.0,119.524,0.011000000000000001,12427.0,0.095,0.488,2.0,people tested,209179257.0,88336802.0,79947470.0,53157386.0,157958.0,21292.0,160.58,67.81,61.37,40.81,163.0,4943.0,0.004,17.59,116255.0,150.77700000000002,23.0,4.81,2.392,3299.4640000000004,16.0,454.343,12.02,6.9,21.4,87.84700000000001,1.38,67.88,0.62,663318.5,37.67,-8.77,5092.178684
556,151064,KNA,North America,Saint Kitts and Nevis,2022-06-29,6022.0,30.0,14.0,43.0,0.0,0.0,112464.05,560.266,261.457,803.048,0.0,0.0,2.15,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,94440.0,87.0,1763.717,1.625,609.0,11.373,0.0119,84.1,people tested,60467.0,31162.0,26294.0,3011.0,626.0,18.0,112.93,58.2,49.11,5.62,336.0,9.0,0.017,66.67,53546.0,212.865,20.3,2.9739999999999998,1.642,24654.385,56.0,191.375,12.84,4.7,21.0,4.617,2.3,76.23,0.779,12.2,3.33,8.11,227.8414821
557,37621,CHN,Asia,China,2022-06-30,888657.0,111.0,115.571,5226.0,0.0,0.0,615.321,0.077,0.08,3.6189999999999998,0.0,0.0,1.33,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,9214000000.0,58711.0,6379.932,3.056,14769984.0,10.227,0.0016,637.8,tests performed,3402622000.0,1294045000.0,1260501000.0,790025000.0,765000.0,661286.0,235.6,89.6,87.28,54.7,458.0,153571.0,0.011000000000000001,79.17,1444216102.0,147.674,38.7,10.640999999999998,5.928999999999999,15308.712,0.7,261.899,9.74,1.9,48.4,5.818,4.34,76.91,0.7609999999999999,51537.3,19.01,15.69,2682.507232
558,118578,MCO,Europe,Monaco,2022-06-30,13006.0,61.0,37.143,58.0,0.0,0.14300000000000002,329099.19,1543.5220000000002,939.85,1467.611,0.0,3.615,1.31,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,15569464.0,2711.0,119.524,0.674,12754.0,3.1689999999999996,0.2407,4.2,tests performed,65140.0,28875.0,25667.0,10598.0,1079.0,158.0,164.83,73.06,64.95,26.82,3998.0,23.0,0.057999999999999996,17.59,39520.0,19347.5,37.6,10.864,6.955,5189.972,0.2,408.50199999999995,5.46,5.9,44.6,86.979,13.8,86.75,0.75,142.0,12.37,10.24,3593.1174090000004
559,10355,OWID_ASI,North America,Asia,2022-06-30,156902491.0,138243.0,128061.429,1444274.0,217.0,238.857,33537.317,29.549,27.373,308.70799999999997,0.046,0.051,-0.01,372.0,8.157,,,,,,,793.0,428.0,7.398,3.9930000000000003,1467.0,0.494,0.003,333.3,tests performed,8256356348.0,3559110927.0,3313055513.0,1345116116.0,5045909.0,4524916.0,176.48,76.07,70.82,28.75,967.0,453485.0,0.01,25.93,4678444992.0,584.8,41.2,13.085,7.452000000000001,35973.781,1.8,341.01,11.62,1.5,52.1,94.04299999999999,4.2,76.29,0.7759999999999999,352.2,26.0,11.85,3285.6010079999996
560,78659,OWID_HIC,North America,High income,2022-06-30,322455865.0,743382.0,596115.0,2448344.0,721.0,949.143,265411.015,611.872,490.658,2015.214,0.593,0.7809999999999999,1.32,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,206594.0,263.0,17.9,0.023,197.0,0.017,0.0363,27.6,tests performed,2504877518.0,971668728.0,910546955.0,647562560.0,659718.0,722028.0,206.17,79.98,74.95,53.3,594.0,65354.0,0.005,34.26,1214930230.0,398.44800000000004,24.3,4.8,2.9539999999999997,1653.1729999999998,23.5,430.548,6.65,2.9,23.1,22.863000000000003,0.7,64.0,0.51,43113.3,25.35,10.04,2362.38969
561,112103,MLI,Africa,Mali,2022-06-30,31165.0,2.0,2.286,737.0,0.0,0.14300000000000002,1494.3139999999999,0.096,0.11,35.338,0.0,0.006999999999999999,1.03,45.0,1.3730000000000002,746.0,22.76,10.0,5.282,1351.0,41.218999999999994,708110.0,605.0,33.953,0.028999999999999998,536.0,0.026000000000000002,0.0035,288.6,tests performed,2406986.0,1781525.0,1304066.0,161938.0,1683.0,7053.0,11.54,8.54,6.25,29.79,338.0,6112.0,0.028999999999999998,40.74,20855724.0,15.196,16.4,2.519,1.486,2014.306,0.1,268.024,2.42,1.6,23.0,52.232,0.1,59.31,0.434,160.6,14.41,3.78,295.42695269999996
562,106107,OWID_LMC,Europe,Lower middle income,2022-06-30,91386771.0,33158.0,29323.429,1311132.0,61.0,55.857,27438.097999999998,9.955,8.804,393.656,0.018000000000000002,0.017,1.54,1.0,0.536,58.0,21.561999999999998,10.0,5.282,1.0,25.605,8718186.0,136.0,3241.1279999999997,0.051,751.0,0.27899999999999997,0.212,4.7,tests performed,4186258423.0,2070832062.0,1831115905.0,320247022.0,4496005.0,3749092.0,125.69,62.17,54.98,9.62,1126.0,589362.0,0.018000000000000002,11.11,3330652550.0,45.135,43.5,19.002,13.777999999999999,29524.265,0.7,342.98900000000003,3.67,21.3,38.0,1.188,6.56,75.93,0.882,19277.5,21.09,-6.35,7166.7245379999995
563,12107,AUT,Europe,Austria,2022-06-30,4459767.0,12489.0,9802.429,20048.0,11.0,5.2860000000000005,493169.467,1381.057,1083.971,2216.946,1.216,0.585,1.45,41.0,4.534,854.0,94.43700000000001,,,,,189791719.0,97659.0,20987.527000000002,10.799000000000001,86208.0,9.533,0.0752,13.3,tests performed,18416362.0,6831443.0,6625071.0,5311138.0,4140.0,546.0,203.65,75.54,73.26,58.73,60.0,27.0,0.0,35.19,9043072.0,106.749,44.4,19.202,13.748,45436.685999999994,0.7,145.183,6.35,28.4,30.9,94.04299999999999,7.37,81.54,0.922,17273.6,8.5,6.4,1910.147348
564,5144,AGO,Africa,Angola,2022-06-30,101320.0,1559.0,222.71400000000003,1900.0,0.0,0.0,2985.83,45.943000000000005,6.563,55.992,0.0,0.0,0.0,0.0,0.0,,,,,,,1618566.0,1459.0,47.698,0.043,1013.0,0.03,0.033,30.3,tests performed,20397115.0,13153694.0,7127231.0,737233.0,1973.0,43342.0,60.11,38.76,21.0,2.17,1277.0,21560.0,0.064,22.22,33933611.0,23.89,16.8,2.405,1.3619999999999999,5819.495,0.5,276.045,3.94,29.0,37.8,26.664,1.9,61.15,0.581,89.6,27.2,31.41,1158.311141
565,120265,MNE,Europe,Montenegro,2022-06-30,240222.0,233.0,185.28599999999997,2729.0,0.0,0.857,382488.04600000003,370.98900000000003,295.017,4345.189,0.0,1.365,1.68,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,7408778.0,4118.0,2225.3379999999997,1.237,487.0,0.146,0.4242,2.4,samples tested,675154.0,291544.0,283697.0,99913.0,64.0,35.0,107.5,46.42,45.17,15.91,56.0,10.0,0.002,11.11,628051.0,46.28,39.1,14.762,9.395,16409.288,1.0,387.305,10.08,44.0,47.9,71.18,3.861,76.88,0.8290000000000001,2633.7,21.49,55.05,4193.449258
566,130840,NGA,Africa,Nigeria,2022-06-30,257290.0,332.0,82.714,3144.0,0.0,0.0,1217.073,1.57,0.391,14.872,0.0,0.0,1.43,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,5279608.0,11989.0,24.974,0.057,8950.0,0.042,0.0056,180.0,tests performed,50619238.0,28340766.0,20986761.0,1171892.0,186047.0,301975.0,23.94,13.41,9.93,0.55,1428.0,67082.0,0.032,40.74,211400704.0,209.588,18.1,2.7510000000000003,1.4469999999999998,5338.454000000001,44.5,181.013,2.42,0.6,10.8,41.949,0.3,54.69,0.539,8148.4,31.97,5.18,1215.747423
567,16355,BRB,North America,Barbados,2022-06-30,84421.0,326.0,147.286,477.0,1.0,0.7140000000000001,293425.974,1133.093,511.92800000000005,1657.931,3.4760000000000004,2.483,1.04,50.0,5.529,874.0,96.649,,,,,697476.0,734.0,2424.25,2.551,507.0,1.7619999999999998,0.1812,5.5,tests performed,316139.0,162619.0,153520.0,29645608.0,13.0,33.0,109.88,56.52,53.36,17.83,115.0,14.0,0.005,40.74,287708.0,664.4630000000001,39.8,14.952,9.472999999999999,16978.068,14.8,170.05,13.57,1.9,14.5,88.469,5.8,79.19,0.8140000000000001,-270.0,-5.42,-3.28,-938.4514855
568,187345,GBR,Europe,United Kingdom,2022-06-30,22800022.0,22908.0,20762.143,180509.0,85.0,67.429,334276.304,335.85900000000004,304.39799999999997,2646.4829999999997,1.246,0.9890000000000001,1.39,175.0,2.5660000000000003,10081.0,147.8,241.0,5.156000000000001,9146.0,134.092,503270347.0,245960.0,7378.561,3.6060000000000003,259329.0,3.802,0.0326,30.6,tests performed,149397250.0,53577314.0,50126662.0,39931494.0,38209.0,45267.0,219.03,78.55,73.49,58.54,664.0,4223.0,0.006,11.11,68207114.0,272.89799999999997,40.8,18.517,12.527000000000001,39753.244,0.2,122.137,4.28,20.0,24.7,21.221999999999998,2.54,81.32,0.932,137803.3,9.16,-17.4,2020.3655
569,62783,FIN,Europe,Finland,2022-06-30,1145610.0,12013.0,1716.1429999999998,4875.0,43.0,6.143,206477.19199999998,2165.144,309.306,878.638,7.75,1.107,1.26,15.0,2.7039999999999997,464.0,83.62799999999999,3.0,2.256,79.0,59.395,11038890.0,4591.0,1989.5770000000002,0.8270000000000001,4001.0,0.721,0.331,3.0,tests performed,12168388.0,4517181.0,4334110.0,3317097.0,5922.0,2044.0,219.32,81.41,78.12,59.79,368.0,82.0,0.001,26.85,5548361.0,18.136,42.8,21.228,13.264000000000001,40585.721,1.4,153.507,5.76,18.3,22.6,7.96,3.28,81.91,0.938,4932.8,3.79,7.25,889.0553445
570,84732,OWID_INT,Asia,International,2022-06-30,721.0,0.0,0.0,15.0,0.0,0.0,22055.694,5.189,6.955,567.22,0.033,0.017,1.22,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,59503735.0,103179.0,215.31099999999998,0.373,114413.0,0.414,0.0837,11.9,people tested,417522347.0,201000560.0,168251795.0,48269992.0,0.0,267095.0,151.08,72.73,60.88,17.47,966.0,43565.0,0.016,52.78,276361788.0,145.725,29.3,5.319,3.053,11188.743999999999,5.7,342.86400000000003,6.32,2.8,76.1,64.204,1.04,71.72,0.718,213.9,4.1,13.64,580.0017353999999
571,153572,VCT,North America,Saint Vincent and the Grenadines,2022-06-30,9051.0,6.0,6.143,112.0,0.0,0.14300000000000002,81343.411,53.923,55.207,1006.57,0.0,1.284,0.95,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,108388.0,59.0,974.1080000000001,0.53,50.0,0.449,0.2257,4.4,tests performed,71501.0,36742.0,30855.0,3904.0,20.0,28.0,64.26,33.02,27.73,3.51,252.0,9.0,0.008,66.67,111269.0,281.78700000000003,31.8,7.724,4.832,10727.146,56.0,252.675,11.62,4.7,21.0,87.20200000000001,2.6,72.53,0.738,12.2,3.33,8.11,227.8414821
572,186459,ARE,Asia,United Arab Emirates,2022-06-30,945800.0,1778.0,1730.286,2316.0,1.0,1.0,94664.412,177.959,173.183,231.80700000000002,0.1,0.1,1.12,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,168522672.0,325016.0,16867.308,32.531,313964.0,31.424,0.0048,208.0,tests performed,24922054.0,9991089.0,9792266.0,5138699.0,6152.0,795.0,249.44,100.0,98.01,51.43,80.0,0.0,0.0,35.19,9991083.0,112.44200000000001,34.0,1.1440000000000001,0.526,67293.483,0.1,317.84,17.26,1.2,37.4,21.221999999999998,1.2,77.97,0.89,179972.2,14.89,1.92,4140.449928
573,40520,COK,Oceania,Cook Islands,2022-06-30,5774.0,0.0,0.857,1.0,0.0,0.0,328590.94,0.0,48.778999999999996,56.909,0.0,0.0,0.06,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,395040.0,9497.0,69.832,0.185,639.0,0.113,0.0,4566.4,tests performed,39780.0,15033.0,14685.0,10062.0,1486.0,3.0,226.38,85.55,83.57,57.26,171.0,0.0,0.0,32.41,17572.0,15.405,19.0,3.4019999999999997,2.063,4881.406,37.0,344.094,7.2,1.7,52.3,47.964,2.2,76.25,0.574,180760.5,29.56,2.99,3525.944303
574,65363,GAB,Africa,Gabon,2022-06-30,47939.0,115.0,16.429000000000002,305.0,0.0,0.0,21036.682,50.465,7.209,133.841,0.0,0.0,0.1,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,1599902.0,2256.0,702.072,0.99,114.0,0.05,0.0389,25.7,tests performed,567575.0,308857.0,256337.0,2381.0,1486.0,34.0,24.91,13.55,11.25,0.1,15.0,16.0,0.001,11.11,2278829.0,7.859,23.1,4.45,2.9760000000000004,16562.413,3.4,259.967,7.2,30.1,35.6,7.96,6.3,66.47,0.703,546.2,16.03,-9.97,1933.2186570000001
575,108701,MDG,Africa,Madagascar,2022-06-30,65381.0,0.0,53.143,1398.0,0.0,0.0,2299.9339999999997,0.0,1.869,49.178000000000004,0.0,0.0,0.44,3.0,4.726,15.0,23.629,10.0,5.282,1.0,1.575,451753.0,693.0,15.892000000000001,0.024,541.0,0.019,0.0547,18.3,tests performed,2369775.0,1290584.0,1199011.0,43528.0,13544.0,0.0,8.34,4.54,4.22,0.15,0.0,0.0,0.0,17.59,28427333.0,43.951,19.6,2.929,1.686,1416.44,77.6,405.994,3.94,20.9,26.0,50.54,0.2,67.04,0.528,413.4,8.35,22.9,627.8943667000001
576,193092,VAT,Europe,Vatican,2022-06-30,29.0,0.0,0.0,14.0,0.0,0.0,35714.286,0.0,0.0,44.52,0.0,0.0,0.69,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,11989.0,2072.0,38.125,0.595,76.0,0.242,0.0132,76.0,people tested,309433.0,172232.0,126591.0,10610.0,145313.0,151.0,98.4,54.77,40.26,3.37,480.0,0.0,0.0,68.06,812.0,22.662,23.1,4.394,2.62,2921.909,13.2,546.3,12.02,2.8,34.5,25.209,4.0,75.12,0.609,38486.9,10.93,1.96,1134.110282
577,192241,VUT,Oceania,Vanuatu,2022-06-30,11266.0,0.0,33.286,14.0,0.0,0.0,35826.041,0.0,105.84899999999999,44.52,0.0,0.0,0.69,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,11989.0,2072.0,38.125,0.595,76.0,0.242,0.0132,76.0,people tested,309433.0,172232.0,126591.0,10610.0,145313.0,151.0,98.4,54.77,40.26,3.37,480.0,0.0,0.0,68.06,314464.0,22.662,23.1,4.394,2.62,2921.909,13.2,546.3,12.02,2.8,34.5,25.209,4.0,70.47,0.609,38486.9,10.93,1.96,1134.110282
578,2591,ALB,Europe,Albania,2022-06-30,280851.0,553.0,377.14300000000003,3500.0,1.0,0.429,97757.554,192.486,131.274,1218.267,0.348,0.149,2.05,,,,,,,,,1613870.0,957.0,561.75,0.33299999999999996,375.0,0.131,0.4263,2.3,tests performed,2906126.0,1326545.0,1248781.0,324545.0,2541.0,1035.0,101.16,46.17,43.47,11.3,360.0,154.0,0.005,11.11,2872934.0,104.87100000000001,38.0,13.187999999999999,8.642999999999999,11803.431,1.1,304.195,10.08,7.1,51.2,37.746,2.89,78.57,0.795,16257.3,32.6,-3.38,5658.779492000001
579,137184,OMN,Asia,Oman,2022-06-30,390244.0,0.0,0.0,4628.0,0.0,0.0,74711.068,0.0,0.0,886.0169999999999,0.0,0.0,0.01,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,2031675.0,1943.0,388.958,0.355,622.0,0.11900000000000001,0.006,167.5,tests performed,7068002.0,3266729.0,3039478.0,761795.0,3650.0,475.0,135.31,62.54,58.19,14.58,91.0,92.0,0.002,14.81,5223376.0,14.98,30.7,2.355,1.53,37960.709,0.2,266.342,12.61,0.5,15.6,97.4,1.6,77.86,0.813,4286.8,18.62,-6.95,820.6952745
580,76927,GUY,South America,Guyana,2022-06-30,67395.0,70.0,80.0,1254.0,1.0,0.7140000000000001,85274.61300000001,88.571,101.22399999999999,1586.681,1.265,0.904,1.01,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,442695.0,390.0,560.14,0.19399999999999998,2771.0,3.5060000000000002,0.3388,3.0,tests performed,1010245.0,481810.0,460005.0,68430.0,58394.0,12034.0,127.83,60.96,58.2,8.66,15227.0,475.0,0.06,29.63,790329.0,3.952,26.3,5.305,2.8369999999999997,7435.047,67.1,373.159,11.62,35.3,52.0,77.15899999999999,1.6,69.91,0.682,43113.3,25.35,10.04,2362.38969
581,6817,ATG,North America,Antigua and Barbuda,2022-06-30,8641.0,16.0,7.2860000000000005,141.0,0.0,0.0,87523.296,162.061,73.796,1428.1660000000002,0.0,0.0,0.84,0.0,0.0,,,,,,,16700.0,1459.0,169.15200000000002,0.043,26.0,0.263,0.0055,181.8,tests performed,126122.0,64091.0,62031.0,2930.0,305.0,14.0,127.75,64.92,62.83,19.37,142.0,5.0,0.005,22.22,98728.0,231.845,32.1,6.933,4.631,21490.943,0.5,191.511,13.17,29.0,37.8,26.664,3.8,77.02,0.778,-61.0,-4.75,-24.71,-617.8591686000001
582,144425,POL,Europe,Poland,2022-06-30,6014992.0,588.0,386.14300000000003,116424.0,0.0,2.714,159139.40300000002,15.557,10.216000000000001,3080.244,0.0,0.07200000000000001,1.63,41.0,2.387,287.0,7.593,9.0,1.669,234.0,42.846000000000004,36962382.0,21192.0,977.918,0.191,3366.0,0.08900000000000001,0.0591,16.9,tests performed,54600779.0,22735503.0,22515872.0,12162210.0,6174.0,2638.0,144.46,60.15,59.57,32.18,70.0,362.0,0.001,14.81,37797000.0,124.027,41.8,16.762999999999998,10.202,27216.445,3.5,227.331,5.91,23.3,33.1,78.46300000000001,6.62,78.73,0.88,169651.0,16.76,-7.57,4488.477922
583,86461,IRQ,Asia,Iraq,2022-06-30,2348662.0,2769.0,1889.4289999999999,25241.0,2.0,1.714,57034.945,67.242,45.883,612.953,0.049,0.042,1.94,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,19002710.0,20703.0,461.462,0.503,11852.0,0.28800000000000003,0.0092,109.2,tests performed,18636865.0,10833447.0,7609777.0,193641.0,16843.0,6803.0,45.26,26.31,18.48,0.47,165.0,3625.0,0.009000000000000001,35.19,41179351.0,88.125,20.0,3.1860000000000004,1.9569999999999999,15663.986,2.5,218.612,8.83,0.8,21.1,94.57600000000001,1.4,70.6,0.674,261045.6,29.95,27.79,3070.085933
584,95923,OWID_KOS,Europe,Kosovo,2022-06-30,229199.0,149.0,80.571,3140.0,0.0,0.0,128610.668,83.609,45.211000000000006,1761.951,0.0,0.0,2.51,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,1846365.0,1719.0,1036.053,0.965,214.0,0.12,0.0754,13.3,tests performed,1830622.0,903637.0,823746.0,103239.0,30.0,39.0,102.72,50.71,46.22,5.79,22.0,9.0,0.001,37.04,1782115.0,168.155,23.2,3.895,2.21,9795.834,0.6,434.657,22.66,35.9,58.9,24.651,1.9,68.37,0.63,5869.8,25.36,-11.76,3293.726836
585,83853,IDN,Asia,Indonesia,2022-06-30,6088460.0,2248.0,1947.8570000000002,156737.0,6.0,4.428999999999999,22030.759,8.134,7.047999999999999,567.144,0.022000000000000002,0.016,1.24,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,59503735.0,103179.0,215.31099999999998,0.373,114413.0,0.414,0.0837,11.9,people tested,417522347.0,201000560.0,168251795.0,48269992.0,0.0,267095.0,151.08,72.73,60.88,17.47,966.0,43565.0,0.016,52.78,276361788.0,145.725,29.3,5.319,3.053,11188.743999999999,5.7,342.86400000000003,6.32,2.8,76.1,64.204,1.04,71.72,0.718,213.9,4.1,13.64,580.0017353999999
586,101805,LBR,Africa,Liberia,2022-06-30,7497.0,4.0,0.5710000000000001,294.0,0.0,0.0,1447.239,0.772,0.11,56.754,0.0,0.0,0.16,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,139824.0,553.0,26.991999999999997,0.256,234.0,0.10800000000000001,0.1172,8.5,tests performed,2716330.0,2458813.0,2129565.0,1912.0,8242.0,89696.0,52.44,47.47,41.11,0.04,17315.0,101042.0,1.9509999999999998,48.15,5180208.0,49.126999999999995,19.2,3.057,1.756,752.788,38.6,272.509,2.42,1.5,18.1,1.188,0.8,64.1,0.48,15149.6,30.18,57.47,2238.035464
587,79505,HND,North America,Honduras,2022-06-30,427355.0,0.0,180.0,10906.0,0.0,0.28600000000000003,42467.977,0.0,17.887,1083.7730000000001,0.0,0.027999999999999997,1.0,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,206594.0,263.0,17.9,0.023,197.0,0.017,0.0363,27.6,tests performed,14404631.0,6293459.0,5368598.0,2742949.0,81065.0,5568.0,143.14,62.54,53.35,27.26,553.0,967.0,0.01,34.26,10062994.0,82.805,24.9,4.652,2.883,4541.795,16.0,240.208,7.21,2.0,23.1,84.169,0.7,75.27,0.634,43113.3,25.35,10.04,2362.38969
588,89907,ITA,Europe,Italy,2022-06-30,18523111.0,84234.0,64496.71400000001,168353.0,59.0,55.143,306839.274,1395.354,1068.402,2788.803,0.977,0.9129999999999999,1.47,261.0,4.324,6853.0,113.521,217.0,3.595,2964.0,49.099,224876148.0,246512.0,3725.1209999999996,4.084,193140.0,3.199,0.2053,4.9,tests performed,138276448.0,50803710.0,47948809.0,41031749.0,20937.0,15865.0,229.06,84.16,79.43,67.97,263.0,469.0,0.001,22.22,60367471.0,205.859,47.9,23.021,16.24,35220.084,2.0,113.15100000000001,4.78,19.8,27.8,94.57600000000001,3.18,83.51,0.892,180753.4,11.84,-8.54,2994.218525
589,45615,CYP,Europe,Cyprus,2022-06-30,504717.0,0.0,1037.5710000000001,1072.0,0.0,0.28600000000000003,563297.08,0.0,1157.997,1196.422,0.0,0.319,0.92,1.0,1.1159999999999999,47.0,52.455,1.0,1.1159999999999999,26.0,29.018,29501771.0,67206.0,32925.9,75.006,67201.0,75.001,0.0256,39.1,tests performed,1788761.0,668493.0,645099.0,475169.0,1437.0,82.0,199.64,74.61,72.0,53.03,92.0,18.0,0.002,14.81,896005.0,127.65700000000001,37.3,13.415999999999999,8.562999999999999,32415.132,0.7,141.171,9.24,19.6,52.7,85.198,3.4,80.98,0.887,1154.2,7.83,-0.57,1288.1624539999998
590,12963,AZE,Asia,Azerbaijan,2022-06-30,793176.0,0.0,12.429,9717.0,0.0,0.14300000000000002,77584.79,0.0,1.216,950.472,0.0,0.013999999999999999,1.61,50.0,5.529,874.0,96.649,,,,,6947820.0,6872.0,679.6030000000001,0.672,2341.0,0.22899999999999998,0.017,58.9,tests performed,13762091.0,5353536.0,4853215.0,3306428.0,1475.0,1339.0,134.61,52.37,47.47,32.34,131.0,273.0,0.003,36.11,10223344.0,119.309,32.4,6.018,3.8710000000000004,15847.419,0.7,559.812,7.11,0.3,42.5,83.241,4.7,73.0,0.7559999999999999,43744.8,33.01,2.0,4278.913044
591,151908,LCA,North America,Saint Lucia,2022-06-30,27022.0,0.0,29.429000000000002,383.0,0.0,1.0,146539.335,0.0,159.59,2076.995,0.0,5.422999999999999,0.85,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,208560.0,117.0,1131.013,0.634,145.0,0.7859999999999999,0.1488,6.7,tests performed,121464.0,59583.0,54283.0,7598.0,71.0,20.0,65.87,32.31,29.44,4.12,108.0,7.0,0.004,66.67,184401.0,293.187,34.9,9.721,6.405,12951.839,56.0,204.62,11.62,4.7,21.0,87.20200000000001,1.3,76.2,0.759,12.2,3.33,8.11,227.8414821
592,123648,MMR,Asia,Myanmar,2022-06-30,613596.0,13.0,9.142999999999999,19434.0,0.0,0.0,11195.778999999999,0.237,0.16699999999999998,354.596,0.0,0.0,1.3,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,8332037.0,16383.0,152.028,0.299,5100.0,0.09300000000000001,0.0016,626.3,samples tested,62259560.0,33004742.0,27027467.0,2227351.0,3800.0,187094.0,113.6,60.22,49.31,4.06,3414.0,110614.0,0.20199999999999999,51.85,54806014.0,81.721,29.1,5.732,3.12,5591.597,6.4,202.104,4.61,6.3,35.2,79.28699999999999,0.9,67.13,0.583,2633.7,21.49,55.05,4193.449258
593,68796,GHA,Africa,Ghana,2022-06-30,166133.0,0.0,217.28599999999997,1450.0,0.0,0.28600000000000003,5235.482,0.0,6.847,45.695,0.0,0.009000000000000001,1.0,1000.0,11.919,16108.0,238.91299999999998,945.0,11.263,4313.0,51.406000000000006,2465238.0,2208.0,77.689,0.07,1210.0,0.038,0.2632,3.8,tests performed,18643437.0,10443364.0,7193153.0,1006920.0,60270.0,27848.0,58.75,32.91,22.67,3.17,878.0,13052.0,0.040999999999999995,51.85,31732128.0,126.719,21.1,3.385,1.9480000000000002,4227.63,12.0,298.245,4.97,0.3,7.7,41.047,0.9,64.07,0.611,90163.5,3.81,-1.17,1074.648318
594,159258,SYC,Africa,Seychelles,2022-06-30,44669.0,0.0,0.0,167.0,0.0,0.0,451612.57700000005,0.0,0.0,1688.404,0.0,0.0,0.9,7.0,1.0190000000000001,118.0,17.172,9.0,1.669,7292.0,49.975,9852899.0,7466.0,1433.869,1.087,6317.0,0.919,0.0594,16.8,people tested,221597.0,84943.0,80726.0,41022.0,1315.0,0.0,224.04,85.88,81.62,41.47,0.0,4.0,0.004,37.04,98910.0,208.354,36.2,8.606,5.586,26382.287,1.1,242.648,10.55,7.1,35.7,97.719,3.6,73.4,0.7959999999999999,-110.2,-6.47,3.73,-1114.1441710000001
595,14666,BHR,Asia,Bahrain,2022-06-30,625856.0,1587.0,1781.4289999999999,1492.0,0.0,0.0,357980.776,907.742,1018.952,853.403,0.0,0.0,1.09,50.0,5.529,874.0,96.649,,,,,9969082.0,7215.0,5702.174,4.127,6220.0,3.5580000000000003,0.2814,3.6,units unclear,3453636.0,1238324.0,1222999.0,992313.0,222.0,269.0,197.54,70.83,69.95,56.76,154.0,48.0,0.003,17.59,1748295.0,1935.9070000000002,32.4,2.372,1.3869999999999998,43290.705,0.7,151.689,16.52,5.8,37.6,83.241,2.0,77.29,0.852,43744.8,33.01,2.0,4278.913044
596,105212,OWID_LIC,Europe,Low income,2022-06-30,1861314.0,833.0,736.143,43274.0,2.0,3.429,2798.341,1.252,1.107,65.059,0.003,0.005,1.54,1.0,0.536,58.0,21.561999999999998,10.0,5.282,1.0,25.605,8718186.0,136.0,3241.1279999999997,0.051,751.0,0.27899999999999997,0.212,4.7,tests performed,187609152.0,134244480.0,109066718.0,7525232.0,110861.0,53135.0,28.21,20.18,16.4,1.13,80.0,51996.0,0.008,11.11,665149040.0,45.135,43.5,19.002,13.777999999999999,29524.265,0.7,342.98900000000003,3.67,21.3,38.0,1.188,6.56,75.93,0.882,19277.5,21.09,-6.35,7166.7245379999995
597,160978,SGP,Asia,Singapore,2022-06-30,1444068.0,9505.0,7644.286,1413.0,2.0,0.7140000000000001,264791.697,1742.885,1401.695,259.095,0.36700000000000005,0.131,1.37,7.0,1.0190000000000001,118.0,17.172,19.0,3.484,808.0,148.159,428517.0,24000.0,52.635,4.401,24000.0,4.401,0.1627,6.1,samples tested,14225122.0,5019556.0,4997156.0,4208410.0,2675.0,2928.0,260.84,92.04,91.63,77.17,537.0,177.0,0.003,41.67,5453600.0,7915.731,42.4,12.922,7.0489999999999995,85535.383,52.2,92.243,10.99,5.2,28.3,19.275,2.4,83.62,0.938,2868.1,5.71,34.08,525.909491
598,96785,KWT,Asia,Kuwait,2022-06-30,643004.0,0.0,306.714,2555.0,0.0,0.0,148549.411,0.0,70.858,590.2669999999999,0.0,0.0,1.2,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,8208880.0,8163.0,1896.4489999999998,1.886,6104.0,1.41,0.0165,60.4,tests performed,8120613.0,3433696.0,3322065.0,1364852.0,4709.0,2504.0,187.61,79.33,76.75,31.53,578.0,243.0,0.006,11.11,4328553.0,232.128,33.7,2.345,1.114,65530.537000000004,0.6,132.235,15.84,2.7,37.0,24.651,2.0,75.49,0.8059999999999999,3210.8,43.64,14.51,741.7721349
599,168058,SSD,Africa,South Sudan,2022-06-30,17722.0,0.0,3.571,138.0,0.0,0.0,1557.105,0.0,0.314,12.125,0.0,0.0,0.46,59.0,1.15,1725.0,28.73,42.0,0.8190000000000001,413.0,8.05,410280.0,798.0,36.048,0.07,578.0,0.051,0.0131,76.3,tests performed,1226772.0,1164135.0,1122087.0,37830478.0,4158.0,1774.0,10.78,10.23,9.86,73.74,156.0,0.0,0.0,16.67,11381377.0,527.967,19.2,3.4410000000000003,2.032,1569.888,0.2,280.775,10.43,6.2,40.9,43.993,12.27,57.85,0.433,38323.1,5.28,18.0,746.9635037
600,31608,CMR,Africa,Cameroon,2022-06-30,120068.0,0.0,9.429,1931.0,0.0,0.14300000000000002,4410.331,0.0,0.34600000000000003,70.929,0.0,0.005,0.03,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,2731181.0,3334.0,100.322,0.19699999999999998,608.0,0.022000000000000002,0.0,33.7,tests performed,1838907.0,1559801.0,1216589.0,52011.0,9890.0,92.0,6.75,5.73,4.47,0.19,3.0,76.0,0.0,22.22,27224262.0,50.885,18.8,3.165,1.919,3364.926,23.8,244.66099999999997,7.2,2.0,33.7,2.735,1.3,59.29,0.563,66889.5,26.21,-5.49,9698.83226
601,122818,MOZ,Africa,Mozambique,2022-06-30,227919.0,100.0,69.143,2212.0,0.0,0.0,7086.363,3.109,2.15,68.775,0.0,0.0,1.04,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1341769.0,939.0,41.718,0.028999999999999998,870.0,0.027000000000000003,0.0989,10.1,tests performed,31616078.0,14978771.0,14098645.0,425736.0,295812.0,0.0,98.3,46.57,43.83,1.32,0.0,0.0,0.0,28.7,32163045.0,37.728,17.7,3.158,1.87,1136.103,62.9,329.94199999999995,3.3,5.1,29.1,12.227,0.7,60.85,0.456,2633.7,21.49,55.05,4193.449258
602,5973,AIA,North America,Anguilla,2022-06-30,3456.0,0.0,6.428999999999999,9.0,0.0,0.0,228495.86800000002,0.0,425.03,595.0409999999999,0.0,0.0,0.01,0.0,0.0,,,,,,,51382.0,1459.0,3397.157,0.043,169.0,11.174000000000001,0.0803,12.5,tests performed,23926.0,10813.0,10183.0,2930.0,1421.0,19.0,158.19,71.49,67.33,19.37,1256.0,3.0,0.02,22.22,15125.0,23.89,16.8,2.405,1.3619999999999999,5819.495,0.5,276.045,3.94,29.0,37.8,26.664,1.9,81.88,0.581,89.6,27.2,31.41,1158.311141
603,58439,OWID_EUR,Africa,Europe,2022-06-30,205598094.0,450101.0,348914.714,1857120.0,502.0,438.85699999999997,274510.355,600.966,465.86400000000003,2479.589,0.67,0.586,0.55,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,5024643.0,4118.0,42.626000000000005,0.035,4906.0,0.042,0.1325,7.5,tests performed,1295883266.0,515108920.0,492894310.0,307714698.0,248750.0,239134.0,173.02,68.78,65.81,41.09,319.0,33442.0,0.004,25.0,748962983.0,104.95700000000001,19.8,3.5260000000000002,2.063,1729.9270000000001,26.7,182.63400000000001,7.47,0.4,8.5,7.96,0.3,66.6,0.485,3805.5,9.78,12.82,2871.66802
604,166342,OWID_SAM,Africa,South America,2022-06-30,59643723.0,193480.0,79698.571,1304871.0,707.0,283.42900000000003,137345.609,445.539,183.52700000000002,3004.8140000000003,1.6280000000000001,0.653,0.44,202.0,3.364,1725.0,28.73,7.0,3.319,470.0,7.827999999999999,25637671.0,19244.0,426.996,0.321,14296.0,0.23800000000000002,0.0726,13.8,people tested,890596701.0,368062457.0,329259273.0,206129166.0,1608383.0,703712.0,205.08,84.76,75.82,47.47,1620.0,28141.0,0.006,11.11,434260137.0,46.754,27.3,5.343999999999999,3.053,12294.876,18.9,200.38,5.52,8.1,33.2,43.993,2.32,64.13,0.7090000000000001,272670.6,21.46,10.13,4541.331371
605,41371,CRI,North America,Costa Rica,2022-06-30,904934.0,0.0,0.0,8525.0,0.0,0.0,176089.641,0.0,0.0,1658.866,0.0,0.0,0.01,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,3677525.0,8616.0,715.6039999999999,1.6769999999999998,11820.0,2.3,0.17600000000000002,5.7,people tested,11017624.0,4437629.0,4143017.0,2299181.0,1486.0,17890.0,214.39,86.35,80.62,44.74,3481.0,1031.0,0.02,11.11,5139053.0,96.079,33.6,9.468,5.694,15524.995,1.3,137.97299999999998,8.78,6.4,17.4,83.84100000000001,1.13,80.28,0.81,5946.8,11.58,-1.44,1157.17818
606,21459,BTN,Asia,Bhutan,2022-06-30,59729.0,0.0,7.857,21.0,0.0,0.0,76585.46,0.0,10.075,26.927,0.0,0.0,0.28,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,1711669.0,13010.0,2194.729,16.682000000000002,8392.0,10.76,0.036000000000000004,27.8,samples tested,1910077.0,692909.0,672575.0,544593.0,414.0,45.0,244.91,88.85,86.24,69.83,58.0,5.0,0.001,22.22,779900.0,21.188000000000002,28.6,4.885,2.977,8708.597,1.5,217.06599999999997,9.75,0.6,12.3,79.807,1.7,71.78,0.654,15.4,2.8,-1.1,248.0190685
607,127449,NCL,Oceania,New Caledonia,2022-06-30,64337.0,136.0,117.429,313.0,0.0,0.0,223224.168,471.86699999999996,407.431,1085.987,0.0,0.0,1.21,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,30687346.0,6207.0,1786.943,0.361,4928.0,0.287,0.685,1.5,tests performed,461709.0,188411.0,180351.0,92947.0,144666.0,29.0,160.19,65.37,62.57,32.25,101.0,4.0,0.001,19.44,288217.0,15.342,33.4,9.954,6.489,48472.545,15.0,109.361,23.36,24.4,27.3,47.782,3.32,77.55,0.9440000000000001,-89.2,-5.43,-4.34,-309.4890308
608,32502,CAN,North America,Canada,2022-06-30,3954275.0,6163.0,2420.429,41993.0,82.0,18.0,103874.226,161.895,63.582,1103.107,2.154,0.473,1.13,220.0,5.779,3505.0,92.072,,,760.0,65.335,62177630.0,75648.0,1633.3339999999998,1.9869999999999999,27030.0,0.71,0.0874,11.4,tests performed,86256122.0,32777269.0,31448069.0,22030784.0,16102.0,11814.0,226.58,86.1,82.61,57.87,310.0,565.0,0.001,25.93,38067913.0,4.037,41.4,16.984,10.797,44017.59099999999,0.5,105.59899999999999,7.37,12.0,16.6,2.735,2.5,82.43,0.929,15846.7,2.65,-9.19,416.2744619
609,132001,OWID_NAM,Oceania,North America,2022-06-30,103458059.0,198210.0,135535.857,1460411.0,201.0,384.14300000000003,173418.211,332.24300000000005,227.188,2447.967,0.337,0.644,1.44,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,5279608.0,11989.0,24.974,0.057,8950.0,0.042,0.0056,180.0,tests performed,1026298035.0,435170899.0,381205236.0,221053367.0,112472.0,271181.0,172.03,72.94,63.9,37.05,455.0,51378.0,0.009000000000000001,40.74,596581283.0,209.588,18.1,2.7510000000000003,1.4469999999999998,5338.454000000001,44.5,181.013,2.42,0.6,10.8,41.949,0.3,73.71,0.539,8148.4,31.97,5.18,1215.747423
610,106969,LUX,Europe,Luxembourg,2022-06-30,263387.0,220.0,702.857,1094.0,0.0,0.857,414904.208,346.55800000000005,1107.1860000000001,1723.339,0.0,1.35,1.58,3.0,4.726,15.0,23.629,10.0,5.282,1.0,1.575,4299901.0,2293.0,6773.482,3.612,1630.0,2.568,0.376,2.7,tests performed,1304249.0,481331.0,462338.0,390451.0,375.0,214.0,205.45,75.82,72.83,61.51,337.0,11.0,0.002,19.44,634814.0,231.447,39.7,14.312000000000001,9.842,94277.965,0.2,128.275,4.42,20.9,26.0,1.188,4.51,82.25,0.9159999999999999,-48.9,-0.46,7.27,-77.03043726
611,150233,SHN,Africa,Saint Helena,2022-06-30,4.0,0.0,0.0,1460.0,0.0,0.14300000000000002,656.2760000000001,0.0,0.0,109.969,0.0,0.011000000000000001,1.44,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,5534918.0,3839.0,416.895,0.289,4661.0,0.35100000000000003,0.008,125.7,samples tested,7892.0,4361.0,3531.0,4945264.0,211071.0,97.0,129.48,71.55,57.93,37.25,15915.0,0.0,0.0,66.67,6095.0,494.869,20.3,2.9739999999999998,1.642,1854.211,56.0,191.375,4.28,4.7,21.0,4.617,8.05,80.56,0.5429999999999999,1217716.1,29.72,2.89,8345.55017
612,99317,LVA,Europe,Latvia,2022-06-30,835797.0,645.0,416.14300000000003,5860.0,0.0,0.7140000000000001,447684.278,345.486,222.90200000000002,3138.836,0.0,0.38299999999999995,1.68,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,7263566.0,2035.0,3890.639,1.09,1888.0,1.011,0.1238,8.1,tests performed,2893861.0,1345920.0,1305625.0,528276.0,75.0,45.0,155.01,72.09,69.93,28.3,24.0,4.0,0.0,11.11,1866934.0,31.212,43.9,19.754,14.136,25063.846,0.7,350.06,4.91,25.6,51.0,49.839,5.57,75.29,0.866,8297.0,12.2,2.87,4444.184958
613,116872,FSM,Oceania,Micronesia (country),2022-06-30,38.0,0.0,0.0,325793.0,5.0,28.143,326.868,0.0,0.0,2501.055,0.038,0.21600000000000003,1.51,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,15569464.0,1462.0,119.524,0.011000000000000001,12427.0,0.095,0.488,2.0,people tested,209179257.0,88336802.0,79947470.0,53157386.0,157958.0,21292.0,160.58,67.81,61.37,40.81,163.0,4943.0,0.004,17.59,116255.0,150.77700000000002,23.0,4.81,2.392,3299.4640000000004,16.0,454.343,12.02,6.9,21.4,87.84700000000001,1.38,67.88,0.62,663318.5,37.67,-8.77,5092.178684
614,50731,DOM,North America,Dominican Republic,2022-06-30,605784.0,0.0,767.7139999999999,4383.0,0.0,0.0,55303.982,0.0,70.087,400.13800000000003,0.0,0.0,1.4,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,3444251.0,3731.0,314.437,0.341,4839.0,0.442,0.1524,6.6,samples tested,15777351.0,7237525.0,5999469.0,2381643.0,4529.0,3734.0,144.04,66.07,54.77,21.74,341.0,588.0,0.005,5.56,10953714.0,222.873,27.6,6.981,4.419,14600.861,1.6,266.653,8.2,8.5,19.1,55.181999999999995,1.6,74.08,0.7559999999999999,5419.2,6.66,10.66,494.73630589999993
615,190797,URY,South America,Uruguay,2022-06-30,957629.0,0.0,811.571,7331.0,0.0,2.714,274773.955,0.0,232.865,2103.495,0.0,0.779,1.1,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,6086835.0,2072.0,1746.505,0.595,3188.0,0.915,0.0836,12.0,people tested,8679584.0,2997337.0,2887525.0,2794722.0,7410.0,7523.0,249.04,86.0,82.85,80.19,2159.0,158.0,0.005,13.89,3485152.0,19.750999999999998,35.6,14.655,10.360999999999999,20551.409,0.1,160.708,6.93,14.0,19.9,21.221999999999998,2.8,77.91,0.8170000000000001,6095.1,7.28,8.55,1748.8763760000002
616,53297,SLV,North America,El Salvador,2022-06-30,169646.0,0.0,0.0,4144.0,2.0,0.7140000000000001,26025.313,0.0,0.0,635.729,0.307,0.11,0.08,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,1921625.0,4675.0,294.796,0.7170000000000001,4668.0,0.716,0.106,9.4,tests performed,10958940.0,4615720.0,4319779.0,2023441.0,46995.0,8256.0,168.12,70.81,66.27,31.04,1267.0,592.0,0.009000000000000001,37.96,6518500.0,307.811,27.6,8.273,5.417000000000001,7292.4580000000005,2.2,167.295,8.87,2.5,18.8,90.65,1.3,73.32,0.6729999999999999,4739.0,16.28,49.24,727.0077472
617,119425,MNG,Asia,Mongolia,2022-06-30,928586.0,0.0,329.14300000000003,2179.0,0.0,0.0,278914.793,0.0,98.863,654.495,0.0,0.0,0.24,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,7408778.0,4118.0,2225.3379999999997,1.237,487.0,0.146,0.4242,2.4,samples tested,5492919.0,2272965.0,2175617.0,1044337.0,1100.0,143.0,164.99,68.27,65.35,31.37,43.0,0.0,0.0,11.11,3329282.0,1.98,28.6,4.031000000000001,2.421,11840.846000000001,0.5,460.043,4.82,5.5,46.5,71.18,7.0,69.87,0.737,609.0,1.43,-2.07,182.92232380000002
618,149567,RWA,Africa,Rwanda,2022-06-30,131021.0,69.0,42.571000000000005,1460.0,1.0,0.14300000000000002,9868.627,5.197,3.207,109.969,0.075,0.011000000000000001,1.38,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,5534918.0,3839.0,416.895,0.289,4661.0,0.35100000000000003,0.008,125.7,samples tested,22715578.0,9112973.0,8657341.0,4945264.0,211071.0,49126.0,171.1,68.64,65.21,37.25,3700.0,5206.0,0.039,66.67,13276517.0,494.869,20.3,2.9739999999999998,1.642,1854.211,56.0,191.375,4.28,4.7,21.0,4.617,8.05,69.02,0.5429999999999999,1217716.1,29.72,2.89,8345.55017
619,98457,LAO,Asia,Laos,2022-06-30,210292.0,14.0,10.0,757.0,0.0,0.0,28497.33,1.8969999999999998,1.355,102.583,0.0,0.0,1.13,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,1030237.0,671.0,139.611,0.091,113.0,0.015,0.1062,9.4,tests performed,10894482.0,5817695.0,5076787.0,1364852.0,11603.0,2560.0,147.63,78.84,68.8,31.53,347.0,599.0,0.008,57.87,7379358.0,29.715,24.4,4.029,2.322,6397.36,22.7,368.111,4.0,7.3,51.2,49.839,1.5,67.92,0.613,15644.0,20.79,13.42,2360.166117
620,77764,HTI,North America,Haiti,2022-06-30,31550.0,0.0,46.286,837.0,0.0,0.0,2733.57,0.0,4.01,72.52,0.0,0.0,1.32,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,206594.0,263.0,17.9,0.023,197.0,0.017,0.0363,27.6,tests performed,342724.0,241385.0,157276.0,68657.0,4278.0,3249.0,2.97,2.09,1.36,8.69,282.0,3090.0,0.027000000000000003,34.26,11541683.0,398.44800000000004,24.3,4.8,2.9539999999999997,1653.1729999999998,23.5,430.548,6.65,2.9,23.1,22.863000000000003,0.7,64.0,0.51,43113.3,25.35,10.04,2362.38969
621,4307,AND,Europe,Andorra,2022-06-30,43774.0,0.0,0.0,153.0,0.0,0.0,565891.874,0.0,0.0,1977.92,0.0,0.0,0.39,0.0,0.0,,,,,,,300307.0,957.0,3882.243,0.33299999999999996,91.0,1.176,0.7049,1.4,tests performed,153383.0,57886.0,53456.0,42041.0,1973.0,15.0,198.29,74.83,69.11,54.35,194.0,0.0,0.0,8.33,77354.0,163.755,29.1,6.211,3.8569999999999998,13913.839,0.5,109.135,7.97,29.0,37.8,83.741,1.9,83.73,0.868,89.6,27.2,31.41,1158.311141
622,11246,AUS,Oceania,Australia,2022-06-30,8164673.0,33746.0,31278.142999999996,9930.0,33.0,46.714,316604.789,1308.5819999999999,1212.885,385.06,1.28,1.811,1.11,106.0,4.11,3273.0,126.91799999999999,,,,,73370295.0,82399.0,2845.1090000000004,3.195,67114.0,2.603,0.149,6.7,tests performed,57914239.0,22352755.0,21671067.0,13890417.0,10375.0,8426.0,224.58,86.68,84.03,53.86,327.0,1118.0,0.004,13.89,25788217.0,3.202,37.9,15.504000000000001,10.129,44648.71,0.5,107.791,5.07,13.0,16.5,94.04299999999999,3.84,83.44,0.9440000000000001,4853.0,1.35,8.37,188.1867211
623,169833,LKA,Asia,Sri Lanka,2022-06-30,664123.0,13.0,10.857000000000001,16521.0,0.0,0.14300000000000002,30893.313,0.605,0.505,768.515,0.0,0.006999999999999999,1.14,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,7691045.0,1111.0,357.76800000000003,0.052000000000000005,1204.0,0.055999999999999994,0.0083,120.4,tests performed,39586599.0,17073712.0,14523208.0,7989679.0,14667.0,1436.0,184.15,79.42,67.56,37.17,67.0,108.0,0.001,28.7,21497306.0,341.955,34.1,10.068999999999999,5.331,11669.077,0.7,197.093,10.68,0.3,27.0,43.993,3.6,76.98,0.782,104463.1,10.09,5.53,2234.733736
624,69649,GIB,Europe,Gibraltar,2022-06-30,19633.0,327.0,46.714,104.0,0.0,0.0,582737.23,9705.856,1386.5510000000002,3086.8779999999997,0.0,0.0,1.0,1000.0,11.919,16108.0,238.91299999999998,945.0,11.263,4313.0,51.406000000000006,533268.0,514.0,15828.203000000001,15.255999999999998,553.0,16.414,0.0858,11.7,tests performed,119855.0,42074.0,41421.0,36360.0,202.0,40.0,355.75,124.88,122.94,107.92,1187.0,1.0,0.003,51.85,33691.0,3457.1,21.1,3.385,1.9480000000000002,4227.63,12.0,298.245,4.97,0.3,7.7,41.047,0.9,79.93,0.611,19.6,5.77,157.23,581.7577395
625,181490,TUN,Africa,Tunisia,2022-06-30,1052180.0,5477.0,782.429,28691.0,21.0,3.0,88153.55300000001,458.87300000000005,65.553,2403.784,1.7590000000000001,0.251,0.33,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,4647813.0,1722.0,389.402,0.14400000000000002,996.0,0.083,0.0958,10.4,people tested,13192714.0,7234385.0,6376006.0,1272091.0,1662.0,775.0,110.53,60.61,53.42,10.66,65.0,233.0,0.002,47.22,11935764.0,74.22800000000001,32.7,8.001,5.075,10849.296999999999,2.0,318.991,8.52,1.1,65.8,78.687,2.3,76.7,0.74,20481.6,16.84,40.84,1715.9856710000001
626,111271,MDV,Asia,Maldives,2022-06-30,181586.0,0.0,171.71400000000003,305.0,0.0,0.7140000000000001,334031.125,0.0,315.872,561.054,0.0,1.314,0.45,45.0,1.3730000000000002,746.0,22.76,10.0,5.282,1351.0,41.218999999999994,2211113.0,2103.0,4067.387,3.8689999999999998,57.0,0.105,0.0,13.9,samples tested,945036.0,398751.0,384347.0,161938.0,1683.0,68.0,173.84,73.35,70.7,29.79,125.0,3.0,0.001,47.22,543620.0,1454.433,30.6,4.12,2.875,15183.616000000002,0.1,164.905,9.19,2.1,55.0,95.803,1.9,78.92,0.74,160.6,14.41,3.78,295.42695269999996
627,87318,IRL,Europe,Ireland,2022-06-30,1600614.0,13229.0,1889.8570000000002,7499.0,30.0,4.2860000000000005,321221.119,2654.8779999999997,379.26800000000003,1504.9460000000001,6.021,0.86,0.89,31.0,6.221,746.0,149.71200000000002,17.0,3.3960000000000004,708.0,142.02,12347313.0,5553.0,2477.935,1.114,5178.0,1.0390000000000001,0.32,3.1,tests performed,10981146.0,4090805.0,4042945.0,3088165.0,1291.0,1355.0,220.38,82.1,81.14,61.98,272.0,85.0,0.002,11.11,4982904.0,69.874,38.7,13.927999999999999,8.677999999999999,67335.293,0.2,126.459,3.28,23.0,25.7,94.57600000000001,2.96,82.3,0.955,3219.2,4.29,15.34,646.0489706000001
628,163127,SVN,Europe,Slovenia,2022-06-30,1038716.0,1002.0,741.7139999999999,6651.0,0.0,0.5710000000000001,499689.473,482.027,356.81199999999995,3199.56,0.0,0.275,1.4,11.0,5.292000000000001,62.0,29.826,7.0,3.319,43.0,20.863000000000003,5336373.0,3998.0,2567.14,1.923,3172.0,1.526,0.128,7.8,tests performed,2996376.0,1265784.0,1222182.0,657749.0,216.0,94.0,144.15,60.89,58.79,31.64,45.0,6.0,0.0,11.11,2078723.0,102.619,44.5,19.062,12.93,31400.84,0.7,153.493,7.25,20.1,25.0,19.275,4.5,81.32,0.917,5202.5,10.13,-6.54,2502.73846
629,61895,FJI,Oceania,Fiji,2022-06-30,65713.0,155.0,35.429,866.0,1.0,0.14300000000000002,72780.012,171.669,39.239000000000004,959.133,1.1079999999999999,0.158,1.69,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,558519.0,567.0,618.5840000000001,0.628,765.0,0.847,0.6621,1.5,tests performed,1609748.0,706496.0,635168.0,141572.0,28295.0,62.0,178.29,78.25,70.35,15.68,69.0,26.0,0.003,57.41,902899.0,49.562,28.6,6.224,3.284,8702.975,1.4,412.82,14.49,10.2,34.8,7.96,2.3,67.44,0.743,-38.6,-3.8,10.79,-786.903961
630,167237,KOR,Asia,South Korea,2022-06-30,18368857.0,9516.0,7980.571,24555.0,8.0,8.142999999999999,358031.208,185.47799999999998,155.55100000000002,478.60699999999997,0.156,0.159,1.2,59.0,1.15,1725.0,28.73,42.0,0.8190000000000001,413.0,8.05,100269452.0,145445.0,1954.3729999999998,2.835,116619.0,2.273,0.0687,14.5,people tested,125977576.0,45068682.0,44628678.0,37796868.0,12408.0,11428.0,245.55,87.84,86.99,73.67,223.0,278.0,0.001,13.89,51305184.0,527.967,43.4,13.914000000000001,8.622,35938.373999999996,0.2,85.99799999999999,6.8,6.2,40.9,43.993,12.27,83.03,0.9159999999999999,38323.1,5.28,18.0,746.9635037
631,152729,SPM,North America,Saint Pierre and Miquelon,2022-06-30,2779.0,0.0,1.714,1.0,0.0,0.0,481545.659,0.0,297.052,173.28,0.0,0.0,0.86,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,208560.0,117.0,1131.013,0.634,145.0,0.7859999999999999,0.1488,6.7,tests performed,121513.0,59602.0,54309.0,7602.0,49.0,17.0,65.9,32.32,29.45,4.12,92.0,6.0,0.003,66.67,5771.0,293.187,34.9,9.721,6.405,12951.839,56.0,204.62,11.62,4.7,21.0,87.20200000000001,1.3,81.07,0.759,12.2,3.33,8.11,227.8414821
632,135430,NOR,Europe,Norway,2022-06-30,1447270.0,706.0,625.571,3337.0,57.0,8.142999999999999,264794.775,129.171,114.456,610.543,10.429,1.49,1.08,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,11154564.0,1943.0,2040.856,0.355,1723.0,0.315,0.322,3.1,people tested,11411944.0,4341961.0,4047501.0,3022482.0,2833.0,1404.0,208.79,79.44,74.05,55.3,257.0,71.0,0.001,11.11,5465629.0,14.462,39.7,16.820999999999998,10.812999999999999,64800.057,0.2,114.316,5.31,19.6,20.7,41.949,3.6,82.4,0.9570000000000001,2521.4,2.52,5.9,461.31927360000003
633,191639,UZB,Asia,Uzbekistan,2022-06-30,240764.0,97.0,110.14299999999999,1637.0,0.0,0.0,7094.698,2.858,3.2460000000000004,48.238,0.0,0.0,1.33,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,6086835.0,2072.0,1746.505,0.595,3188.0,0.915,0.0836,12.0,people tested,55782994.0,19699111.0,15571588.0,10296725.0,145313.0,130190.0,164.38,58.05,45.89,30.34,3836.0,12536.0,0.037000000000000005,11.11,33935765.0,76.134,28.2,4.468999999999999,2.873,6253.104,0.1,724.4169999999999,7.57,1.3,24.7,21.221999999999998,4.0,71.72,0.72,38486.9,10.93,1.96,1134.110282
634,174101,SYR,Asia,Syria,2022-06-30,55927.0,1.0,1.143,3150.0,0.0,0.0,3060.183,0.055,0.063,172.36,0.0,0.0,1.1,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,175957.0,9789.0,9.628,1.123,221.0,0.012,0.0052,193.4,tests performed,4232490.0,2748571.0,1831005.0,28686.0,72289.0,11862.0,23.16,15.04,10.02,0.16,649.0,5373.0,0.028999999999999998,26.85,18275704.0,214.243,21.7,18.436,2.577,57410.166,0.5,376.264,5.59,22.6,28.9,70.598,1.5,72.7,0.5670000000000001,11808.7,7.09,-9.86,1354.9088550000001
635,180637,TTO,North America,Trinidad and Tobago,2022-06-30,167097.0,118.0,96.714,4011.0,2.0,2.4290000000000003,119068.046,84.083,68.916,2858.112,1.425,1.7309999999999999,0.82,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,768404.0,1900.0,547.54,1.354,739.0,0.527,0.222,4.5,people tested,1573535.0,751247.0,714047.0,165709.0,241.0,440.0,112.13,53.53,50.88,11.81,314.0,39.0,0.003,13.89,1403374.0,266.88599999999997,36.2,10.014,5.819,28763.071,49.2,228.467,10.97,11.8,44.4,89.443,3.0,73.51,0.7959999999999999,97687.9,8.02,19.55,1396.5221060000001
636,54139,GNQ,Africa,Equatorial Guinea,2022-06-30,16034.0,0.0,10.286,183.0,0.0,0.0,11058.761999999999,0.0,7.093999999999999,126.21600000000001,0.0,0.0,1.43,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,484554.0,501.0,334.2,0.34600000000000003,109.0,0.075,0.0157,63.6,tests performed,484554.0,267610.0,208104.0,4420.0,639.0,0.0,33.42,18.46,14.35,0.3,0.0,0.0,0.0,37.96,1449891.0,45.193999999999996,22.4,2.846,1.7519999999999998,22604.873,2.2,202.812,7.78,2.5,18.8,24.64,2.1,58.74,0.5920000000000001,4739.0,16.28,49.24,727.0077472
637,193935,VEN,South America,Venezuela,2022-06-30,526022.0,0.0,97.429,5732.0,0.0,1.0,18325.134,0.0,3.3939999999999997,199.687,0.0,0.035,1.43,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,11989.0,2072.0,38.125,0.595,76.0,0.242,0.0132,76.0,people tested,37860994.0,22157232.0,14287370.0,651502.0,145313.0,0.0,131.9,77.19,49.77,2.27,0.0,0.0,0.0,13.89,28704947.0,36.253,29.0,6.614,3.915,16745.022,13.2,204.85,6.47,2.8,34.5,25.209,0.8,72.06,0.711,38486.9,10.93,1.96,1134.110282
638,38472,COL,South America,Colombia,2022-06-30,6175181.0,23827.0,3403.857,140070.0,100.0,14.286,120454.105,464.773,66.396,2732.2290000000003,1.9509999999999998,0.27899999999999997,0.6,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,35241195.0,9497.0,687.421,0.185,18395.0,0.359,0.085,11.8,tests performed,85767160.0,42418509.0,36180137.0,12964054.0,18933.0,43920.0,167.3,82.74,70.57,25.29,857.0,3796.0,0.006999999999999999,25.93,51265841.0,44.223,32.2,7.646,4.312,13254.948999999999,4.5,124.24,7.44,4.7,13.5,65.38600000000001,1.71,77.29,0.767,180760.5,29.56,2.99,3525.944303
639,125752,NPL,Asia,Nepal,2022-06-30,979694.0,36.0,33.857,11952.0,0.0,0.0,33014.209,1.213,1.141,402.764,0.0,0.0,1.38,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,6969050.0,5062.0,234.84599999999998,0.171,2745.0,0.09300000000000001,0.006999999999999999,142.9,samples tested,46113867.0,22995709.0,20267818.0,6300646.0,136996.0,111583.0,155.4,77.49,68.3,21.23,3760.0,69759.0,0.235,46.3,29674920.0,204.43,25.0,5.809,3.2119999999999997,2442.804,15.0,260.797,7.26,9.5,37.8,47.782,0.3,70.78,0.602,2633.7,21.49,55.05,4193.449258
640,160084,SLE,Africa,Sierra Leone,2022-06-30,7695.0,0.0,0.28600000000000003,125.0,0.0,0.0,945.176,0.0,0.035,15.354000000000001,0.0,0.0,0.8,7.0,1.0190000000000001,118.0,17.172,9.0,1.669,7292.0,49.975,428517.0,7466.0,52.635,1.087,251.0,0.031,0.0011,877.6,tests performed,3493386.0,2621469.0,1893466.0,12864.0,1928.0,52708.0,42.91,32.2,23.26,0.16,6474.0,33976.0,0.41700000000000004,48.15,8141343.0,104.7,19.1,2.5380000000000003,1.285,1390.3,52.2,325.721,2.42,8.8,41.3,19.275,3.6,54.7,0.452,-110.2,-6.47,3.73,-1114.1441710000001
641,44766,CUW,North America,Curacao,2022-06-30,44545.0,105.0,15.0,278.0,0.0,0.0,270303.891,637.151,91.022,1686.934,0.0,0.0,1.2,177.0,9.213,190.0,46.55,82.0,4.268,121.0,29.73,22100.0,2303.0,134.105,13.975,329.0,1.996,0.2193,4.6,tests performed,254188.0,108280.0,99589.0,46319.0,30.0,26.0,154.24,65.71,60.43,28.11,158.0,3.0,0.002,18.52,164796.0,362.644,41.7,16.367,10.068,22669.797000000002,0.7,190.968,11.62,17.1,53.3,85.198,5.2,78.88,0.7829999999999999,53645.6,23.69,2.89,4740.058271
642,22305,BOL,South America,Bolivia,2022-06-30,926718.0,1622.0,1166.714,21953.0,0.0,0.14300000000000002,78316.827,137.075,98.59899999999999,1855.245,0.0,0.012,1.51,22.0,1.859,143.0,12.085,,,760.0,65.335,4440371.0,6982.0,375.255,0.59,6277.0,0.53,0.0726,13.8,tests performed,13892966.0,7229825.0,6003856.0,1657937.0,9396.0,7883.0,117.41,61.1,50.74,14.01,666.0,1303.0,0.011000000000000001,23.15,11832936.0,10.202,25.4,6.704,4.393,6885.829000000001,7.1,204.299,6.89,0.6,12.3,25.383000000000003,1.1,71.51,0.718,57352.5,51.82,43.99,4846.852886
643,88155,IMN,Europe,Isle of Man,2022-06-30,36463.0,2642.0,377.42900000000003,108.0,0.0,0.0,426917.223,30933.146,4419.021,1264.489,0.0,0.0,0.89,31.0,6.221,746.0,149.71200000000002,17.0,3.3960000000000004,708.0,142.02,12347313.0,5553.0,2477.935,1.114,5178.0,1.0390000000000001,0.32,3.1,tests performed,189994.0,69560.0,67106.0,53328.0,1.0,4.0,222.45,81.44,78.57,62.44,47.0,0.0,0.0,11.11,85410.0,147.872,38.7,13.927999999999999,8.677999999999999,67335.293,0.2,126.459,3.28,23.0,25.7,94.57600000000001,2.96,81.4,0.955,3219.2,4.29,15.34,646.0489706000001
644,116342,MEX,North America,Mexico,2022-06-30,6034602.0,47685.0,18235.571,325716.0,78.0,32.714,46326.570999999996,366.069,139.991,2500.464,0.599,0.251,1.55,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,15569464.0,1462.0,119.524,0.011000000000000001,12427.0,0.095,0.488,2.0,people tested,209179257.0,88336802.0,79947470.0,53157386.0,157958.0,21292.0,160.58,67.81,61.37,40.81,163.0,4943.0,0.004,17.59,130262220.0,66.444,29.3,6.857,4.321000000000001,17336.468999999997,2.5,152.783,13.06,6.9,21.4,87.84700000000001,1.38,75.05,0.779,663318.5,37.67,-8.77,5092.178684
645,70512,GRC,Europe,Greece,2022-06-30,3676502.0,15498.0,13282.286,30232.0,14.0,13.0,354506.961,1494.396,1280.745,2915.123,1.35,1.254,1.4,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,84483362.0,73217.0,8146.314,7.06,95227.0,9.182,0.0827,12.1,samples tested,21097421.0,7919273.0,7629235.0,6125168.0,6268.0,3827.0,203.43,76.36,73.56,59.06,369.0,121.0,0.001,24.07,10370747.0,83.479,45.3,20.396,14.524000000000001,24574.382,1.5,175.695,4.55,35.3,52.0,41.047,4.21,82.24,0.888,31443.0,10.58,12.88,3031.8934600000002
646,145281,PRT,Europe,Portugal,2022-06-30,5171236.0,10375.0,8832.0,24149.0,28.0,22.0,508583.316,1020.3660000000001,868.6139999999999,2375.018,2.7539999999999996,2.164,0.66,85.0,8.36,1743.0,171.421,9.0,1.669,234.0,42.846000000000004,42825431.0,52990.0,4211.817,5.211,48792.0,4.7989999999999995,0.5063,2.0,tests performed,24616852.0,9729123.0,8884776.0,6731760.0,79.0,12306.0,242.1,95.68,87.38,66.21,1210.0,299.0,0.003,13.89,10167923.0,112.37100000000001,46.2,21.502,14.924000000000001,27936.896,0.5,127.84200000000001,9.85,16.3,30.0,78.46300000000001,3.39,82.05,0.8640000000000001,22143.4,7.83,10.95,2177.7702289999997
647,140062,PAN,North America,Panama,2022-06-30,921364.0,1624.0,1548.8570000000002,8364.0,5.0,4.143,210281.079,370.642,353.49300000000005,1908.899,1.141,0.946,0.8,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,6499239.0,7609.0,1483.308,1.7369999999999999,8930.0,2.0380000000000003,0.1835,5.5,tests performed,8358729.0,3482802.0,3114030.0,1761897.0,5925.0,3130.0,190.77,79.49,71.07,40.21,714.0,218.0,0.005,28.7,4381583.0,55.133,29.7,7.917999999999999,5.03,22267.037,2.2,128.346,8.33,2.4,9.9,59.607,2.3,78.51,0.815,7503.4,19.42,-1.22,1712.4861039999998
648,28194,BGR,Europe,Bulgaria,2022-06-30,1172239.0,472.0,395.0,37255.0,4.0,2.4290000000000003,169972.11,68.439,57.273999999999994,5401.894,0.58,0.35200000000000004,1.46,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,10080207.0,4881.0,1461.608,0.708,3104.0,0.45,0.0777,12.9,tests performed,4411377.0,2092116.0,2061806.0,767329.0,1436.0,722.0,63.96,30.34,29.9,11.13,105.0,63.0,0.001,11.11,6896655.0,65.18,44.7,20.801,13.272,18563.307,1.5,424.68800000000005,5.81,30.1,44.4,97.164,7.454,75.05,0.816,66889.5,26.21,-5.49,9698.83226
649,8616,ARM,Asia,Armenia,2022-06-30,423243.0,0.0,19.857,8629.0,0.0,0.0,142595.939,0.0,6.69,2907.22,0.0,0.0,-0.01,372.0,8.157,,,,,,,3102267.0,1467.0,1045.193,0.494,1467.0,0.494,0.003,333.3,tests performed,2150112.0,1129669.0,985807.0,40725.0,13751.0,126.0,72.44,38.06,33.21,1.37,42.0,24.0,0.001,39.81,2968128.0,102.931,35.7,11.232000000000001,7.571000000000001,8787.58,1.8,341.01,7.11,1.5,52.1,94.04299999999999,4.2,75.09,0.7759999999999999,21748.4,36.89,0.44,7327.31203
650,43078,HRV,Europe,Croatia,2022-06-30,1148528.0,1148.0,739.143,16065.0,5.0,3.1430000000000002,281387.682,281.258,181.08900000000003,3935.902,1.225,0.77,1.62,177.0,9.213,190.0,46.55,82.0,4.268,121.0,29.73,4922712.0,5587.0,1206.057,1.369,1521.0,0.373,0.2363,4.2,people tested,5258460.0,2315512.0,2245193.0,594785.0,169.0,189.0,128.83,56.73,55.01,14.57,46.0,28.0,0.001,14.81,4081657.0,73.726,44.0,19.724,13.052999999999999,22669.797000000002,0.7,253.782,5.59,34.3,39.9,19.351,5.54,78.49,0.851,19749.3,16.18,-5.95,4838.549638
651,26497,VGB,North America,British Virgin Islands,2022-06-30,6941.0,0.0,0.0,63.0,0.0,0.0,228149.755,0.0,0.0,2070.802,0.0,0.0,1.41,22.0,1.859,143.0,12.085,,,760.0,65.335,96630.0,126242.0,3176.215,0.59,121418.0,0.5670000000000001,0.0483,20.7,people tested,41198.0,19389.0,18083.0,3726.0,802024.0,8.0,135.42,63.73,59.44,12.25,263.0,3.0,0.01,39.81,30423.0,207.97299999999998,33.5,8.552,5.06,14103.452,3.4,177.96099999999998,13.67,10.1,17.9,97.164,2.2,79.07,0.765,781197.4,23.53,5.87,3650.567028
652,40110,COG,Africa,Congo,2022-06-30,24128.0,0.0,0.0,385.0,0.0,0.0,4265.145,0.0,0.0,68.057,0.0,0.0,0.06,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,395040.0,9497.0,69.832,0.185,639.0,0.113,0.0,4566.4,tests performed,831318.0,693902.0,652422.0,12964054.0,1486.0,0.0,14.7,12.27,11.53,25.29,0.0,0.0,0.0,32.41,5657017.0,15.405,19.0,3.4019999999999997,2.063,4881.406,37.0,344.094,7.2,1.7,52.3,47.964,2.2,64.57,0.574,180760.5,29.56,2.99,3525.944303
653,13804,BHS,North America,Bahamas,2022-06-30,35975.0,73.0,31.429000000000002,817.0,0.0,0.14300000000000002,90636.763,183.919,79.182,2058.38,0.0,0.36,0.9,50.0,5.529,874.0,96.649,,,,,241200.0,567.0,607.688,1.429,134.0,0.33799999999999997,0.3486,2.9,tests performed,340866.0,166471.0,157964.0,27866.0,6771.0,189.0,85.88,41.94,39.8,7.02,476.0,34.0,0.009000000000000001,44.44,396914.0,39.497,34.3,8.996,5.2,27717.847,0.7,235.954,13.17,3.1,20.4,83.241,2.9,73.92,0.8140000000000001,43744.8,33.01,2.0,4278.913044
654,126611,NLD,Europe,Netherlands,2022-06-30,8194662.0,6512.0,5229.429,22464.0,8.0,4.0,477180.291,379.19800000000004,304.513,1308.093,0.466,0.233,1.27,36.0,2.096,694.0,40.412,31.0,1.805,646.0,37.617,30687346.0,6207.0,1786.943,0.361,4928.0,0.287,0.685,1.5,tests performed,33326378.0,12804977.0,11980109.0,9295105.0,144666.0,1769.0,194.06,74.56,69.76,54.13,103.0,194.0,0.001,19.44,17173094.0,508.54400000000004,43.2,18.779,11.880999999999998,48472.545,15.0,109.361,5.29,24.4,27.3,47.782,3.32,82.28,0.9440000000000001,30266.9,7.84,1.12,1762.460509
655,89021,ISR,Asia,Israel,2022-06-30,4353033.0,14335.0,11035.286,10958.0,0.0,6.7139999999999995,468521.472,1542.891,1187.739,1179.421,0.0,0.723,1.22,61.0,6.565,1404.0,151.114,43.0,4.628,1408.0,151.545,51780014.0,30887.0,5573.137,3.324,26227.0,2.823,0.33299999999999996,3.0,people tested,18188171.0,6712475.0,6145344.0,5330352.0,1649.0,1152.0,195.76,72.25,66.14,57.37,124.0,66.0,0.001,14.81,9291000.0,402.606,30.6,11.732999999999999,7.359,33132.32,0.5,93.32,6.74,15.4,35.4,94.57600000000001,2.99,82.97,0.919,10022.5,8.92,-9.47,1078.7321060000002
656,177551,THA,Asia,Thailand,2022-06-30,4525269.0,2354.0,2246.857,30664.0,16.0,15.0,64692.129,33.652,32.121,438.365,0.22899999999999998,0.214,1.08,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,24733803.0,7706.0,353.588,0.11,11151.0,0.159,0.3093,3.2,tests performed,138972974.0,56710897.0,52895464.0,29366613.0,93224.0,68711.0,198.67,81.07,75.62,41.98,982.0,5552.0,0.008,30.09,69950844.0,135.132,40.1,11.373,6.89,16277.671,0.1,109.861,7.04,1.9,38.8,90.67,2.1,77.15,0.777,97687.9,8.02,19.55,1396.5221060000001
657,103511,LIE,Europe,Liechtenstein,2022-06-30,17903.0,6.0,17.714000000000002,85.0,0.0,0.0,468003.346,156.846,463.07,2221.99,0.0,0.0,1.37,1.0,0.536,294.0,157.477,10.0,5.282,1.0,25.605,90632.0,248.0,2369.216,6.483,220.0,5.751,0.344,2.9,tests performed,70780.0,26744.0,26429.0,18624.0,0.0,7.0,185.03,69.91,69.09,48.69,183.0,0.0,0.0,14.81,38254.0,237.012,29.0,4.4239999999999995,2.8160000000000003,17881.509,38.6,341.86199999999997,7.77,1.5,18.1,1.188,2.397,82.49,0.919,46.6,8.62,10.62,1218.1732630000001
658,182336,TUR,Asia,Turkey,2022-06-30,15123331.0,0.0,5369.857,99032.0,0.0,5.143,177832.13100000002,0.0,63.143,1164.497,0.0,0.06,0.05,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,163164533.0,128854.0,1918.618,1.515,134604.0,1.5830000000000002,0.0077,130.4,tests performed,147828801.0,57858728.0,53088281.0,36881792.0,3362.0,2619.0,173.83,68.03,62.43,43.37,31.0,405.0,0.0,13.89,85042736.0,104.914,31.6,8.152999999999999,5.061,25129.341,0.2,171.285,12.13,14.1,41.1,78.687,2.81,77.69,0.82,20481.6,16.84,40.84,1715.9856710000001
659,54975,ERI,Africa,Eritrea,2022-06-30,9799.0,3.0,2.0,103.0,0.0,0.0,2720.8390000000004,0.833,0.555,28.599,0.0,0.0,0.94,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,23693.0,501.0,6.579,0.34600000000000003,109.0,0.075,0.0157,63.6,tests performed,484554.0,267610.0,208104.0,4420.0,639.0,0.0,33.42,18.46,14.35,0.3,0.0,0.0,0.0,50.93,3601462.0,44.303999999999995,19.3,3.6069999999999998,2.171,1510.4589999999998,2.2,311.11,6.05,0.2,11.4,24.64,0.7,66.32,0.45899999999999996,4739.0,16.28,49.24,727.0077472
660,52459,EGY,Africa,Egypt,2022-06-30,515645.0,0.0,0.0,24723.0,0.0,0.14300000000000002,4945.84,0.0,0.0,237.132,0.0,0.001,0.0,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,11954884.0,2817.0,114.666,0.157,194420.0,1.865,0.0,371.0,tests performed,91447330.0,50399016.0,37289388.0,5584684.0,78722.0,277114.0,87.71,48.34,35.77,5.36,2658.0,316258.0,0.303,40.74,104258327.0,97.999,25.3,5.159,2.891,10550.206,1.3,525.432,17.31,0.2,50.1,89.82700000000001,1.6,71.99,0.7070000000000001,307916.8,25.09,41.63,2953.4024649999997
661,18095,BEL,Europe,Belgium,2022-06-30,4246078.0,20856.0,4938.143,31918.0,15.0,5.0,365023.735,1792.933,424.519,2743.903,1.29,0.43,1.75,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,34315605.0,4743.0,2950.0190000000002,0.408,11433.0,0.983,0.26,3.8,tests performed,25668011.0,9248402.0,9151385.0,7697738.0,3392.0,3272.0,220.66,79.51,78.67,66.18,281.0,81.0,0.001,23.15,11632334.0,375.564,41.8,18.570999999999998,12.849,42658.575999999994,0.2,114.898,4.29,25.1,31.4,88.469,5.64,81.63,0.9309999999999999,21907.9,8.31,-0.77,1883.362359
662,46471,CZE,Europe,Czechia,2022-06-30,3933758.0,1013.0,819.0,40318.0,2.0,0.857,366799.25,94.456,76.367,3759.4109999999996,0.18600000000000003,0.08,1.5,9.0,0.8390000000000001,204.0,19.022000000000002,10.0,0.932,243.0,22.658,54587458.0,4000.0,5089.952,0.373,3708.0,0.34600000000000003,0.111,9.0,tests performed,17672832.0,6965506.0,6879928.0,4237992.0,1391.0,1121.0,164.79,64.95,64.15,39.52,105.0,74.0,0.001,14.81,10724553.0,137.17600000000002,43.3,19.027,11.58,32605.906000000003,0.7,227.485,6.82,30.5,38.3,85.198,6.63,79.38,0.9,42100.6,15.74,5.93,3925.6274829999998
663,42217,CIV,Africa,Cote d'Ivoire,2022-06-30,83463.0,154.0,79.714,805.0,0.0,0.14300000000000002,3085.094,5.692,2.947,29.756,0.0,0.005,1.82,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,1540831.0,635.0,56.955,0.023,1206.0,0.045,0.031,32.2,tests performed,12753769.0,8026397.0,5540193.0,87290.0,20396.0,0.0,47.14,29.67,20.48,0.32,0.0,5281.0,0.02,15.74,27053629.0,76.399,18.7,2.9330000000000003,1.5819999999999999,3601.006,28.2,303.74,2.42,6.4,17.4,19.351,1.13,57.78,0.5379999999999999,5946.8,11.58,-1.44,1157.17818
664,136322,OWID_OCE,Europe,Oceania,2022-06-30,9833261.0,41196.0,38838.0,14128.0,41.0,60.143,227516.693,953.171,898.613,326.88599999999997,0.9490000000000001,1.392,1.06,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,11154564.0,1943.0,2040.856,0.355,1723.0,0.315,0.322,3.1,people tested,73937121.0,28979518.0,27758386.0,17072420.0,17603.0,10559.0,171.07,67.05,64.23,39.5,244.0,1169.0,0.003,11.11,43219954.0,14.462,39.7,16.820999999999998,10.812999999999999,64800.057,0.2,114.316,5.31,19.6,20.7,41.949,3.6,82.4,0.9570000000000001,2521.4,2.52,5.9,461.31927360000003
665,92972,JOR,Asia,Jordan,2022-06-30,1699197.0,0.0,125.85700000000001,14068.0,0.0,0.0,165468.24,0.0,12.255999999999998,1369.945,0.0,0.0,0.04,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,16803235.0,42668.0,1636.3029999999999,4.155,2541.0,0.247,0.0171,58.3,tests performed,10007983.0,4805507.0,4538702.0,667902.0,16423.0,2346.0,97.46,46.8,44.2,6.5,228.0,1556.0,0.015,20.37,10269022.0,109.285,23.2,3.81,2.3609999999999998,8337.49,0.1,208.257,11.75,11.2,33.7,66.425,1.4,74.53,0.7290000000000001,4569.1,16.03,25.33,444.94013160000003
666,15515,BGD,Asia,Bangladesh,2022-06-30,1973789.0,2187.0,1894.4289999999999,29149.0,4.0,2.0,11868.596000000001,13.151,11.390999999999998,175.27599999999998,0.024,0.012,1.52,50.0,5.529,874.0,96.649,,,,,13820904.0,8536.0,83.10700000000001,0.051,2366.0,0.013999999999999999,0.2761,3.6,tests performed,277499188.0,129343045.0,119422697.0,29061179.0,252703.0,213977.0,166.86,77.78,71.81,17.47,1287.0,35123.0,0.021,34.26,166303494.0,1265.036,27.5,5.098,3.262,3523.9840000000004,14.8,298.003,8.38,1.0,44.7,34.808,0.8,72.59,0.632,43744.8,33.01,2.0,4278.913044
667,49040,DJI,Africa,Djibouti,2022-06-30,15690.0,0.0,0.0,189.0,0.0,0.0,15655.605,0.0,0.0,188.58599999999998,0.0,0.0,0.04,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,309732.0,912.0,309.053,0.91,196.0,0.196,0.0,31.2,tests performed,222387.0,201787.0,161003.0,3650643.0,12179.0,1785.0,22.19,20.13,16.07,62.8,1781.0,860.0,0.086,49.07,1002197.0,41.285,25.4,4.213,2.38,2705.406,22.5,258.03700000000003,6.05,1.7,24.5,4.4719999999999995,1.4,67.11,0.524,1780.7,1.29,0.54,306.3147244
668,198004,ZMB,Africa,Zambia,2022-06-30,325857.0,359.0,133.571,4006.0,3.0,0.857,17222.288,18.974,7.06,211.726,0.159,0.045,1.01,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,3514038.0,2352.0,185.725,0.124,2122.0,0.11199999999999999,0.0582,17.2,tests performed,7199179.0,3240892.0,4528604.0,33684.0,96082.0,40267.0,38.05,17.13,23.93,0.18,2128.0,8387.0,0.044000000000000004,12.04,18920657.0,22.995,17.7,2.48,1.5419999999999998,3689.2509999999997,57.5,234.49900000000002,3.94,3.1,24.7,13.937999999999999,2.0,63.89,0.584,38486.9,10.93,1.96,1134.110282
669,71353,GRL,North America,Greenland,2022-06-30,11971.0,0.0,0.0,21.0,0.0,0.0,210505.02899999998,0.0,0.0,369.276,0.0,0.0,1.4,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,84483362.0,73217.0,8146.314,7.06,95227.0,9.182,0.0827,12.1,samples tested,79745.0,41243.0,38502.0,6138379.0,15.0,2.0,140.23,72.52,67.7,59.19,35.0,1.0,0.002,11.11,56868.0,0.13699999999999998,45.3,20.396,14.524000000000001,24574.382,1.5,199.94099999999997,2.16,35.3,52.0,41.047,4.21,71.7,0.888,-82.9,-6.6,-55.8,-1457.761834
670,178386,TLS,Asia,Timor,2022-06-30,22957.0,0.0,1.429,133.0,0.0,0.0,17082.69,0.0,1.063,98.96799999999999,0.0,0.0,0.92,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,264839.0,504.0,197.071,0.375,145.0,0.10800000000000001,0.0039,253.9,tests performed,1638158.0,822666.0,694694.0,120798.0,7881.0,4883.0,121.9,61.22,51.69,8.99,3634.0,1291.0,0.096,16.67,1343875.0,87.176,18.0,3.556,1.8969999999999998,6570.102,30.3,335.346,6.86,6.3,78.1,28.178,5.9,69.5,0.606,97687.9,8.02,19.55,1396.5221060000001
671,61008,FLK,South America,Falkland Islands,2022-06-30,1815.0,0.0,1.143,28.0,0.0,0.0,514455.782,0.0,323.939,570.811,0.0,0.0,0.55,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,777845.0,391.0,15857.236,7.971,539.0,10.988,0.6621,1.5,people tested,4407.0,2632.0,1775.0,21284.0,42.0,12.0,124.91,74.6,50.31,43.39,3401.0,4.0,0.113,11.11,3528.0,35.308,19.8,3.5260000000000002,2.063,1729.9270000000001,26.7,182.63400000000001,7.47,0.4,8.5,7.96,0.3,81.44,0.485,-38.6,-3.8,10.79,-786.903961
672,173266,CHE,Europe,Switzerland,2022-06-30,3759730.0,33115.0,4730.714,13831.0,3.0,1.286,431384.612,3799.555,542.794,1586.944,0.344,0.14800000000000002,1.17,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,21277734.0,9789.0,2441.369,1.123,9093.0,1.043,0.40700000000000003,2.5,tests performed,15759752.0,6087852.0,6002672.0,3781389.0,1091.0,1605.0,180.82,69.85,68.87,43.39,184.0,82.0,0.001,11.11,8715494.0,214.243,43.1,18.436,12.644,57410.166,0.5,99.73899999999999,5.59,22.6,28.9,67.779,4.53,83.78,0.955,11808.7,7.09,-9.86,1354.9088550000001
673,109529,MWI,Africa,Malawi,2022-06-30,86506.0,28.0,26.570999999999998,2645.0,0.0,0.0,4402.861,1.425,1.3519999999999999,134.621,0.0,0.0,1.33,3.0,4.726,15.0,23.629,10.0,5.282,1.0,1.575,589303.0,490.0,29.994,0.025,307.0,0.016,0.0656,15.2,tests performed,2166402.0,2047317.0,1590299.0,740.0,14163.0,0.0,11.03,10.42,8.09,0.0,0.0,64387.0,0.32799999999999996,47.22,19647681.0,197.519,18.1,2.9789999999999996,1.7830000000000001,1095.042,71.4,227.34900000000002,3.94,4.4,24.7,8.704,1.3,64.26,0.483,413.4,8.35,22.9,627.8943667000001
674,179794,TON,Oceania,Tonga,2022-06-30,12301.0,0.0,31.714000000000002,12.0,0.0,0.0,115222.136,0.0,297.064,112.40299999999999,0.0,0.0,0.19,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,749695.0,877.0,88.426,0.10300000000000001,377.0,0.044000000000000004,0.0235,42.6,tests performed,242634.0,108263.0,97151.0,37220.0,7881.0,151.0,227.27,101.41,91.0,34.86,1414.0,0.0,0.0,44.44,106759.0,150.028,22.3,5.82,4.032,5425.621,49.2,227.49,15.42,11.8,44.4,10.475,2.6,70.91,0.725,97687.9,8.02,19.55,1396.5221060000001
675,171520,SUR,South America,Suriname,2022-06-30,80864.0,0.0,6.7139999999999995,1369.0,10.0,1.429,136641.219,0.0,11.345999999999998,2313.2889999999998,16.898,2.414,1.04,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,84184.0,165.0,142.251,0.27899999999999997,24.0,0.040999999999999995,0.491,2.0,tests performed,505699.0,267820.0,237879.0,48889.0,398.0,14.0,85.45,45.26,40.2,8.26,24.0,6.0,0.001,44.44,591798.0,3.612,29.6,6.933,4.229,13767.118999999999,0.7,258.314,12.54,7.4,42.9,67.779,3.1,71.68,0.738,48.2,1.23,14.57,81.44670986
676,33339,CPV,Africa,Cape Verde,2022-06-30,60542.0,315.0,221.0,405.0,1.0,0.28600000000000003,107744.959,560.597,393.30800000000005,720.768,1.78,0.508,1.45,220.0,5.779,3505.0,92.072,,,760.0,65.335,62177630.0,904.0,1633.3339999999998,1.609,324.0,0.5770000000000001,0.1168,8.6,tests performed,773810.0,355377.0,307526.0,183.0,4461.0,404.0,137.71,63.25,54.73,0.03,719.0,5.0,0.001,19.44,561901.0,135.58,25.7,4.46,3.437,6222.554,0.5,182.21900000000002,2.42,2.1,16.5,2.735,2.1,72.98,0.665,188.6,6.81,13.94,335.6463149
677,97624,KGZ,Asia,Kyrgyzstan,2022-06-30,201053.0,0.0,4.143,2991.0,0.0,0.0,30332.299,0.0,0.625,451.244,0.0,0.0,-0.0,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,8208880.0,8163.0,1896.4489999999998,1.886,6104.0,1.41,0.0165,60.4,tests performed,3153186.0,1571358.0,1321404.0,1364852.0,862.0,1079.0,47.57,23.71,19.94,31.53,163.0,219.0,0.003,33.33,6628347.0,32.333,26.3,4.489,2.8819999999999997,3393.474,1.4,436.36199999999997,7.11,3.6,50.5,89.22,4.5,71.45,0.6970000000000001,15644.0,20.79,13.42,2360.166117
678,113744,MHL,Oceania,Marshall Islands,2022-06-30,18.0,0.0,0.0,748.0,0.0,1.143,301.922,0.0,0.0,1449.332,0.0,2.214,1.34,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,3184.0,392.0,53.407,6.575,14.0,0.235,0.0,30.3,tests performed,1317628.0,476936.0,469857.0,405198.0,28.0,277.0,255.3,92.41,91.04,78.51,537.0,17.0,0.003,13.89,59618.0,295.15,42.4,19.426,11.324000000000002,3819.202,0.2,557.793,30.53,20.9,30.2,82.50200000000001,2.7,73.7,0.7040000000000001,539.8,5.7,-1.02,1045.921333
679,143487,PHL,Asia,Philippines,2022-06-30,3704407.0,1307.0,842.571,60555.0,13.0,8.571,33358.937999999995,11.77,7.587999999999999,545.31,0.11699999999999999,0.077,1.54,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,28472887.0,21192.0,256.404,0.191,19245.0,0.17300000000000001,0.0093,107.8,people tested,153852751.0,75654809.0,70845546.0,14880868.0,227791.0,140975.0,138.55,68.13,63.8,13.4,1270.0,52634.0,0.047,37.96,111046910.0,351.87300000000005,25.2,4.803,2.661,7599.188,3.5,370.43699999999995,7.07,7.8,40.8,78.46300000000001,1.0,71.23,0.718,204049.6,16.16,-9.94,1837.5081309999998
680,55858,EST,Europe,Estonia,2022-06-30,580114.0,0.0,114.0,2591.0,0.0,0.429,437759.774,0.0,86.02600000000001,1955.194,0.0,0.32299999999999995,1.15,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,3425068.0,1246.0,2584.59,0.94,993.0,0.7490000000000001,0.1183,8.5,tests performed,1993944.0,863093.0,847710.0,476572.0,144.0,76.0,150.46,65.13,63.97,35.96,57.0,19.0,0.001,11.11,1325188.0,31.033,42.7,19.452,13.491,29481.252,0.5,255.56900000000002,4.02,24.5,39.3,24.64,4.69,78.74,0.892,3805.5,9.78,12.82,2871.66802
681,93816,KAZ,Asia,Kazakhstan,2022-06-30,1395849.0,0.0,81.143,19018.0,0.0,0.0,73485.238,0.0,4.272,1001.2130000000001,0.0,0.0,1.86,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,11965068.0,52729.0,629.908,2.7760000000000002,39955.0,2.103,0.03,33.4,tests performed,20918681.0,9523631.0,9306077.0,2514071.0,12492.0,10734.0,110.13,50.14,48.99,13.24,565.0,542.0,0.003,11.11,18994958.0,6.681,30.6,6.9910000000000005,4.625,24055.588,0.1,466.792,7.11,7.0,43.1,98.999,6.7,73.6,0.825,83124.6,26.77,-14.32,4376.140237
682,164599,SOM,Africa,Somalia,2022-06-30,26803.0,0.0,7.857,1361.0,0.0,0.0,1638.375,0.0,0.48,83.193,0.0,0.0,0.5,11.0,5.292000000000001,62.0,29.826,7.0,3.319,43.0,20.863000000000003,501224.0,3998.0,30.638,1.923,252.0,0.015,0.0414,24.2,tests performed,3143630.0,2645189.0,1641835.0,2343.0,0.0,5733.0,19.22,16.17,10.04,0.33,350.0,5946.0,0.036000000000000004,40.74,16359500.0,23.5,16.8,2.7310000000000003,1.496,2205.923,25.1,365.769,6.05,20.1,25.0,9.831,0.9,57.4,0.5670000000000001,5202.5,10.13,-6.54,2502.73846
683,72188,GRD,North America,Grenada,2022-06-30,18357.0,87.0,16.285999999999998,232.0,0.0,0.0,162429.766,769.809,144.102,2052.825,0.0,0.0,1.32,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,169195.0,527.0,1497.102,4.663,206.0,1.8230000000000002,0.1172,8.5,tests performed,89080.0,43745.0,38549.0,6786.0,694.0,4.0,78.82,38.71,34.11,6.0,35.0,1.0,0.001,31.48,113015.0,317.132,29.4,7.303999999999999,5.021,13593.877,1.5,243.96400000000003,10.71,35.3,52.0,41.047,3.7,72.4,0.779,-82.9,-6.6,-55.8,-1457.761834
684,188240,USA,North America,United States,2022-06-30,87627486.0,136671.0,108502.0,1017277.0,710.0,360.286,263212.732,410.528,325.915,3055.665,2.133,1.082,1.12,3386.0,10.171,29882.0,89.759,241.0,5.156000000000001,36358.0,109.211,912521698.0,406474.0,2741.0040000000004,1.2209999999999999,502550.0,1.51,0.138,7.2,tests performed,596233489.0,259957415.0,222271398.0,123531432.0,19802.0,163157.0,179.58,78.3,66.95,37.21,491.0,41714.0,0.013000000000000001,38.89,332915074.0,35.608000000000004,38.3,15.413,9.732000000000001,54225.445999999996,1.2,151.089,10.79,19.1,24.6,21.221999999999998,2.77,78.86,0.9259999999999999,1105051.9,16.45,-3.34,3319.320711
685,18929,BLZ,North America,Belize,2022-06-30,63966.0,171.0,155.857,680.0,1.0,0.14300000000000002,157973.896,422.311,384.913,1679.365,2.47,0.353,1.2,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,572900.0,1351.0,1414.865,3.3369999999999997,1012.0,2.499,0.1451,6.9,tests performed,489508.0,247975.0,213197.0,49729.0,5470.0,346.0,120.89,61.24,52.65,12.28,855.0,207.0,0.051,42.59,404915.0,16.426,25.0,3.853,2.279,7824.361999999999,0.2,176.957,17.11,25.1,31.4,90.083,1.3,74.62,0.716,127.6,6.28,51.1,315.1278663
686,141749,PRY,South America,Paraguay,2022-06-30,655532.0,0.0,300.57099999999997,18963.0,0.0,2.286,90798.421,0.0,41.632,2626.585,0.0,0.317,0.07,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,2609819.0,1757.0,361.48900000000003,0.243,1763.0,0.244,0.0654,15.3,tests performed,8918755.0,3944590.0,3451096.0,1523069.0,10430.0,4047.0,123.53,54.64,47.8,21.1,561.0,559.0,0.008,13.89,7219641.0,17.144000000000002,26.5,6.377999999999999,3.833,8827.01,1.7,199.128,8.27,5.0,21.6,79.602,1.3,74.25,0.728,24508.4,31.67,-9.8,3394.684029
687,151065,KNA,North America,Saint Kitts and Nevis,2022-06-30,6065.0,43.0,17.714000000000002,43.0,0.0,0.0,113267.097,803.048,330.824,803.048,0.0,0.0,2.21,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,94440.0,87.0,1763.717,1.625,609.0,11.373,0.0119,84.1,people tested,60467.0,31162.0,26294.0,3011.0,626.0,18.0,112.93,58.2,49.11,5.62,336.0,9.0,0.017,66.67,53546.0,212.865,20.3,2.9739999999999998,1.642,24654.385,56.0,191.375,12.84,4.7,21.0,4.617,2.3,76.23,0.779,12.2,3.33,8.11,227.8414821
688,7733,ARG,South America,Argentina,2022-06-30,9367172.0,0.0,3668.571,129070.0,0.0,7.7139999999999995,205394.21,0.0,80.441,2830.1209999999996,0.0,0.16899999999999998,1.01,372.0,8.157,,,,,,,36663990.0,6236.0,803.932,0.13699999999999998,36366.0,0.797,0.287,3.5,tests performed,105953444.0,41162133.0,37582807.0,27525971.0,86914.0,69581.0,232.32,90.26,82.41,60.36,1526.0,1020.0,0.002,39.81,45605823.0,16.177,31.9,11.198,7.441,18933.907,0.6,191.032,5.5,16.2,27.7,26.664,5.0,76.67,0.845,41948.2,12.45,28.58,919.7992107000001
689,197165,YEM,Asia,Yemen,2022-06-30,11824.0,0.0,0.0,2149.0,0.0,0.0,387.791,0.0,0.0,70.48100000000001,0.0,0.0,0.01,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,336937.0,56715.0,11.050999999999998,0.578,84.0,0.003,0.0,587.4,tests performed,864544.0,697956.0,446120.0,80.0,7669290.0,442.0,2.84,2.29,1.46,0.0,14.0,416.0,0.001,25.93,30490639.0,53.508,20.3,2.9219999999999997,1.5830000000000002,1479.1470000000002,18.8,495.00300000000004,5.35,7.6,29.2,49.542,0.7,66.12,0.47,38486.9,10.93,1.96,1134.110282
690,183537,TCA,North America,Turks and Caicos Islands,2022-06-30,6219.0,0.0,1.143,36.0,0.0,0.0,158542.803,0.0,29.135,917.7589999999999,0.0,0.0,0.06,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,163164533.0,128854.0,1918.618,1.515,134604.0,1.5830000000000002,0.0077,130.4,tests performed,69803.0,31989.0,29963.0,7851.0,5279.0,16.0,177.95,81.55,76.39,20.01,408.0,9.0,0.023,66.67,39226.0,37.312,26.9,4.277,2.541,16389.023,0.2,536.783,7.11,14.1,41.1,100.0,7.4,80.22,0.715,20481.6,16.84,40.84,1715.9856710000001
691,168943,ESP,Europe,Spain,2022-06-30,12734038.0,0.0,17200.571,107906.0,0.0,43.143,272413.745,0.0,367.964,2308.386,0.0,0.9229999999999999,1.51,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,93162168.0,29943.0,1992.9779999999998,0.6409999999999999,43694.0,0.935,0.31,3.2,tests performed,95153556.0,41259173.0,40562786.0,25436397.0,47657.0,11716.0,203.56,88.26,86.77,54.41,251.0,695.0,0.001,29.17,46745211.0,93.105,45.5,19.436,13.799000000000001,34272.36,1.0,99.40299999999999,7.17,27.4,31.4,43.993,2.97,83.56,0.904,104463.1,10.09,5.53,2234.733736
692,56701,SWZ,Africa,Eswatini,2022-06-30,73109.0,11.0,7.0,1416.0,0.0,0.14300000000000002,62360.059,9.383,5.971,1207.8110000000001,0.0,0.122,0.82,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,549656.0,333.0,468.842,0.284,303.0,0.258,0.0434,23.1,tests performed,535393.0,387468.0,336066.0,66331.0,7504.0,0.0,45.67,33.05,28.67,5.66,0.0,0.0,0.0,23.15,1172369.0,79.492,21.5,3.1630000000000003,1.845,7738.975,0.5,333.436,3.94,1.7,16.5,24.096999999999998,2.1,60.19,0.611,3805.5,9.78,12.82,2871.66802
693,27345,BRN,Asia,Brunei,2022-06-30,163900.0,845.0,767.571,225.0,0.0,0.0,371207.523,1913.7910000000002,1738.4279999999999,509.589,0.0,0.0,1.27,22.0,1.859,143.0,12.085,,,760.0,65.335,93192.0,297.0,211.065,0.6729999999999999,121418.0,0.5670000000000001,0.0483,20.7,samples tested,1173118.0,444293.0,426764.0,301719.0,3827.0,1493.0,265.69,100.63,96.66,68.33,3381.0,169.0,0.038,16.67,441532.0,81.347,32.4,4.591,2.3819999999999997,71809.25099999999,3.4,201.285,12.79,2.0,30.9,97.164,2.7,75.86,0.838,-16.8,-0.95,-7.41,-38.04933731
694,179239,TGO,Africa,Togo,2022-06-30,37403.0,21.0,14.857000000000001,275.0,0.0,0.14300000000000002,4411.646,2.477,1.7519999999999998,32.436,0.0,0.017,1.4,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,749695.0,877.0,88.426,0.10300000000000001,377.0,0.044000000000000004,0.0235,42.6,tests performed,3290821.0,2092750.0,1557538.0,87104.0,7881.0,0.0,38.81,24.68,18.37,1.03,0.0,428.0,0.005,37.96,8478242.0,143.366,19.4,2.839,1.525,1429.8129999999999,49.2,280.033,6.15,0.9,14.2,10.475,0.7,61.04,0.515,97687.9,8.02,19.55,1396.5221060000001
695,129145,NIC,North America,Nicaragua,2022-06-30,14690.0,0.0,10.142999999999999,242.0,0.0,0.14300000000000002,2191.759,0.0,1.5130000000000001,36.107,0.0,0.021,0.06,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,196380.0,1761.0,29.3,0.344,205.0,0.031,0.0174,57.4,tests performed,11441278.0,5938231.0,5503047.0,2756062.0,7377.0,14308.0,170.7,88.6,82.11,53.76,2135.0,2983.0,0.045,13.89,6702379.0,51.667,27.3,5.445,3.5189999999999997,5321.444,3.2,137.016,11.47,14.8,17.2,47.782,0.9,74.48,0.66,8148.4,31.97,5.18,1215.747423
696,140899,PNG,Oceania,Papua New Guinea,2022-06-30,44717.0,0.0,3.571,662.0,0.0,0.0,4903.715,0.0,0.392,72.596,0.0,0.0,0.76,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,249149.0,7609.0,27.322,1.7369999999999999,8930.0,2.0380000000000003,0.1835,5.5,people tested,615156.0,337243.0,277913.0,1764414.0,5925.0,618.0,6.75,3.7,3.05,40.27,68.0,306.0,0.003,34.26,9119005.0,18.22,22.6,3.8080000000000003,2.142,3823.1940000000004,2.2,561.494,17.65,23.5,48.8,59.607,2.3,64.5,0.555,7503.4,19.42,-1.22,1712.4861039999998
697,175002,TWN,Asia,Taiwan,2022-06-30,3767283.0,38920.0,39954.857,6651.0,118.0,119.14299999999999,157924.198,1631.523,1674.904,278.809,4.947,4.994,0.84,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,13021521.0,64492.0,545.861,2.7030000000000003,66864.0,2.803,0.7838,1.3,people tested,57970591.0,21178300.0,19423800.0,17368491.0,113570.0,90147.0,243.01,88.78,81.42,72.81,3779.0,2536.0,0.011000000000000001,26.85,23855008.0,214.243,42.2,18.436,8.353,57410.166,0.5,103.95700000000001,5.59,22.6,28.9,70.598,1.5,80.46,0.5670000000000001,-1625.5,-0.37,15.75,-68.14082812
698,81253,HUN,Europe,Hungary,2022-06-30,1928125.0,3042.0,434.57099999999997,46647.0,21.0,3.0,200134.168,315.751,45.107,4841.833,2.18,0.311,1.2,1000.0,11.919,1499.0,155.592,21.0,2.06,1323.0,127.544,10943720.0,39094.0,1135.9289999999999,4.058,4344.0,0.451,0.2219,4.5,tests performed,16530488.0,6411804.0,6198798.0,4189321.0,93527.0,938.0,171.58,66.55,64.34,43.48,97.0,60.0,0.001,11.11,9634162.0,108.04299999999999,43.4,18.577,11.975999999999999,26777.561,0.5,278.296,7.55,26.8,34.8,84.169,7.02,76.88,0.8540000000000001,37165.7,11.92,-2.81,3857.6993
699,147838,ROU,Europe,Romania,2022-06-30,2919461.0,0.0,567.714,65739.0,0.0,1.857,152629.43300000002,0.0,29.68,3436.835,0.0,0.09699999999999999,-0.02,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,234.0,42.846000000000004,21260367.0,14144.0,1111.492,4.8260000000000005,75700.0,3.958,0.0565,17.7,tests performed,16827486.0,8175541.0,8114769.0,1688620.0,1208.0,1208.0,87.97,42.74,42.42,57.62,63.0,9930.0,0.052000000000000005,11.11,19127772.0,85.12899999999999,43.0,17.85,11.69,23313.199,5.7,370.94599999999997,9.74,22.9,37.1,78.46300000000001,6.892,76.05,0.828,117243.5,19.06,-5.09,6129.490669
700,63676,FRA,Europe,France,2022-06-30,31144479.0,133346.0,92787.286,149602.0,42.0,37.857,461933.479,1977.7820000000002,1376.217,2218.89,0.623,0.561,1.44,931.0,13.809000000000001,15836.0,234.87900000000002,584.0,8.662,6185.0,91.736,278234000.0,179427.0,4126.754,2.661,201691.0,2.991,0.22699999999999998,4.4,people tested,146010160.0,54463151.0,52912524.0,39714724.0,111035.0,69376.0,216.56,80.78,78.48,58.9,1029.0,1149.0,0.002,23.15,67422000.0,122.57799999999999,42.0,19.718,13.079,38605.671,1.4,86.06,4.77,30.1,35.6,7.96,5.98,82.66,0.9009999999999999,88431.4,5.98,-7.05,1311.610454
701,30757,KHM,Asia,Cambodia,2022-06-30,136279.0,7.0,2.4290000000000003,3056.0,0.0,0.0,8041.745,0.413,0.14300000000000002,180.333,0.0,0.0,1.1,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,2977609.0,3334.0,175.707,0.19699999999999998,566.0,0.033,0.0,1772.7,tests performed,40956960.0,15078410.0,14377340.0,9435373.0,61376.0,35026.0,241.68,88.98,84.84,55.68,2067.0,1468.0,0.009000000000000001,16.67,16946446.0,90.67200000000001,25.6,4.412,2.385,3645.07,71.7,270.892,4.0,2.0,33.7,66.229,0.8,69.82,0.594,66889.5,26.21,-5.49,9698.83226
702,112955,MLT,Europe,Malta,2022-06-30,103132.0,539.0,496.14300000000003,741.0,1.0,0.429,199829.49,1044.371,961.331,1435.7679999999998,1.9380000000000002,0.83,1.32,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1950858.0,1892.0,3780.0,3.6660000000000004,1440.0,2.79,0.2334,4.3,tests performed,1317273.0,476888.0,469802.0,404946.0,201.0,385.0,255.24,92.4,91.03,78.46,746.0,16.0,0.003,13.89,516100.0,1454.037,42.4,19.426,11.324000000000002,36513.323,0.2,168.71099999999998,8.83,20.9,30.2,52.232,4.485,82.53,0.895,539.8,5.7,-1.02,1045.921333
703,67063,GEO,Asia,Georgia,2022-06-30,1660429.0,1058.0,151.143,16841.0,0.0,0.28600000000000003,417217.01200000005,265.844,37.978,4231.648,0.0,0.07200000000000001,0.01,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,13652505.0,20318.0,3430.473,5.105,3491.0,0.877,0.0706,14.2,tests performed,2902085.0,1631237.0,1270848.0,80818.0,758.0,266.0,72.92,40.99,31.93,2.03,67.0,159.0,0.004,13.89,3979773.0,65.032,38.7,14.864,10.244000000000002,9745.079,4.2,496.218,7.11,5.3,55.5,7.876,2.6,73.77,0.812,20504.2,22.8,46.06,5152.102896
704,3452,DZA,Africa,Algeria,2022-06-30,266087.0,14.0,10.286,6875.0,0.0,0.0,5963.853,0.314,0.231,154.091,0.0,0.0,1.4,0.0,0.0,,,,,,,230553.0,957.0,5.167000000000001,0.33299999999999996,375.0,0.131,0.4263,2.3,tests performed,15205854.0,8210605.0,6851660.0,514063.0,147230.0,0.0,34.08,18.4,15.36,1.15,0.0,13231.0,0.03,47.22,44616626.0,17.348,29.1,6.211,3.8569999999999998,13913.839,0.5,278.36400000000003,6.73,0.7,30.4,83.741,1.9,76.88,0.748,49888.7,26.86,29.47,1118.163888
705,155023,SMR,Europe,San Marino,2022-06-30,18016.0,55.0,55.0,115.0,0.0,0.0,529726.551,1617.171,1617.171,3381.3579999999997,0.0,0.0,1.16,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,108388.0,59.0,974.1080000000001,0.53,50.0,0.449,0.2257,4.4,tests performed,69338.0,26357.0,23633.0,19348.0,9.0,4.0,203.88,77.5,69.49,56.89,118.0,0.0,0.0,13.89,34010.0,556.6669999999999,22.0,5.606,3.5639999999999996,56861.47,56.0,348.977,5.64,16.7,38.1,87.20200000000001,3.8,84.97,0.715,133.0,21.63,-19.49,3910.614525
706,133642,MKD,Europe,North Macedonia,2022-06-30,314018.0,162.0,109.429,9325.0,2.0,0.429,150777.299,77.785,52.543,4477.445,0.96,0.20600000000000002,1.53,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,2074132.0,1124.0,995.905,0.54,792.0,0.38,0.0743,13.5,tests performed,1850145.0,853927.0,837453.0,158765.0,3869.0,21.0,88.84,41.0,40.21,7.62,10.0,4.0,0.0,40.74,2082661.0,82.6,39.1,13.26,8.16,13111.214,5.0,322.688,10.08,0.6,10.8,41.949,4.28,75.8,0.774,16133.6,35.44,22.15,7746.627992000001
707,148724,RUS,Europe,Russia,2022-06-30,18161238.0,3075.0,2906.429,373404.0,55.0,56.286,124467.04400000001,21.074,19.919,2559.104,0.377,0.386,0.98,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7453.0,51.07899999999999,295244836.0,331438.0,2023.444,2.271,139842.0,0.958,0.0283,35.3,tests performed,168942751.0,81792489.0,74673362.0,14715637.0,4116.0,97843.0,115.78,56.06,51.18,10.09,671.0,29571.0,0.02,25.93,145912022.0,8.823,39.6,14.177999999999999,9.392999999999999,24765.953999999998,0.1,431.29699999999997,6.18,23.4,58.3,78.46300000000001,8.05,72.58,0.8240000000000001,1217716.1,29.72,2.89,8345.55017
708,189953,OWID_UMC,North America,Upper middle income,2022-06-30,131769134.0,253451.0,112237.14300000001,2533026.0,909.0,422.57099999999997,52420.957,100.829,44.651,1007.699,0.36200000000000004,0.168,1.13,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,115079.0,14.0,1104.214,0.134,54.0,0.518,0.192,5.2,tests performed,5226824473.0,2075403013.0,1965057508.0,1152706918.0,2402706.0,1556707.0,207.94,82.56,78.17,45.86,619.0,76640.0,0.003,43.52,2513672790.0,306.48,42.2,18.601,10.799000000000001,54225.445999999996,1.2,273.67,12.26,19.1,24.6,21.221999999999998,2.77,80.58,0.9259999999999999,1105051.9,16.45,-3.34,3319.320711
709,23981,BIH,Europe,Bosnia and Herzegovina,2022-06-30,378716.0,86.0,49.428999999999995,15806.0,1.0,1.0,116047.421,26.351999999999997,15.145999999999999,4843.327,0.306,0.306,1.56,22.0,1.859,143.0,12.085,,,760.0,65.335,1499302.0,4188.0,459.421,1.2830000000000001,3502.0,1.073,0.22699999999999998,4.4,tests performed,1924950.0,943394.0,846080.0,120530.0,66884.0,4315.0,58.98,28.91,25.93,3.69,1322.0,954.0,0.028999999999999998,25.93,3263459.0,68.49600000000001,42.5,16.569000000000003,10.710999999999999,11713.895,0.2,329.635,10.08,30.2,47.7,97.164,3.5,77.4,0.78,22134.5,26.94,18.13,6782.527373999999
710,9460,ABW,North America,Aruba,2022-06-30,40718.0,0.0,77.0,221.0,0.0,0.0,379849.80600000004,0.0,718.317,2061.663,0.0,0.0,-0.01,372.0,8.157,,,,,,,793.0,428.0,7.398,3.9930000000000003,1467.0,0.494,0.003,333.3,tests performed,172014.0,89179.0,82835.0,40725.0,29.0,19.0,160.47,83.19,77.28,1.37,177.0,8.0,0.006999999999999999,25.93,107195.0,584.8,41.2,13.085,7.452000000000001,35973.781,1.8,341.01,11.62,1.5,52.1,94.04299999999999,4.2,76.29,0.7759999999999999,352.2,26.0,11.85,3285.6010079999996
711,43923,CUB,North America,Cuba,2022-06-30,1106023.0,34.0,25.285999999999998,8529.0,0.0,0.0,97726.81199999999,3.0039999999999996,2.234,753.612,0.0,0.0,1.11,177.0,9.213,190.0,46.55,82.0,4.268,121.0,29.73,5296762.0,38826.0,468.015,3.431,35601.0,3.1460000000000004,0.0879,11.4,tests performed,38670436.0,10680013.0,9974692.0,7402393.0,40585.0,29300.0,341.69,94.37,88.14,65.41,2589.0,273.0,0.002,18.52,11317498.0,110.40799999999999,43.1,14.738,9.719,22669.797000000002,0.7,190.968,8.27,17.1,53.3,85.198,5.2,78.8,0.7829999999999999,53645.6,23.69,2.89,4740.058271
712,39268,COM,Africa,Comoros,2022-06-30,8139.0,0.0,0.429,160.0,0.0,0.0,9160.836,0.0,0.48200000000000004,180.088,0.0,0.0,0.08,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,100289.0,9497.0,112.88,0.185,1306.0,1.47,0.0002,4566.4,tests performed,642320.0,341302.0,301218.0,12964054.0,18933.0,0.0,72.3,38.42,33.9,25.29,0.0,0.0,0.0,25.93,888456.0,437.352,20.4,2.963,1.726,1413.89,18.1,261.51599999999996,11.88,4.4,23.6,15.574000000000002,2.2,64.32,0.5539999999999999,180760.5,29.56,2.99,3525.944303
713,162243,SVK,Europe,Slovakia,2022-06-30,2551116.0,748.0,495.85699999999997,20147.0,1.0,0.7140000000000001,468157.386,137.266,90.995,3697.192,0.184,0.131,1.15,8.0,1.4680000000000002,235.0,43.125,21.0,3.8510000000000004,976.0,178.96400000000003,51238482.0,2231.0,9402.815999999999,0.409,2123.0,0.39,0.133,7.5,tests performed,7076057.0,2822419.0,2768349.0,1653395.0,2675.0,71.0,129.85,51.79,50.8,30.34,13.0,11.0,0.0,11.11,5449270.0,113.12799999999999,41.2,15.07,9.167,30155.152000000002,0.7,287.959,7.29,23.1,37.7,19.275,5.82,77.54,0.86,26567.1,20.98,1.28,4875.350276
714,19770,BEN,Africa,Benin,2022-06-30,27216.0,94.0,13.429,163.0,0.0,0.0,2185.843,7.55,1.079,13.091,0.0,0.0,0.04,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,604310.0,1351.0,48.535,3.3369999999999997,1012.0,2.499,0.1451,6.9,tests performed,3681560.0,3174135.0,2690085.0,200.0,5470.0,2213.0,29.57,25.49,21.61,0.0,178.0,481.0,0.004,13.89,12451031.0,99.11,18.8,3.2439999999999998,1.942,2064.236,49.6,235.84799999999998,0.99,0.6,12.3,11.035,0.5,61.77,0.545,127.6,6.28,51.1,315.1278663
715,170677,SDN,Africa,Sudan,2022-06-30,62624.0,0.0,10.429,4951.0,0.0,0.0,1394.453,0.0,0.23199999999999998,110.244,0.0,0.0,0.74,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,562941.0,1111.0,12.535,0.052000000000000005,1204.0,0.055999999999999994,0.0083,120.4,tests performed,8179010.0,6651268.0,4536964.0,50234.0,6534.0,26277.0,18.21,14.81,10.1,0.11,585.0,31370.0,0.07,13.89,44909351.0,23.258000000000003,19.7,3.548,2.0340000000000003,4466.5070000000005,0.7,431.38800000000003,15.67,0.3,27.0,23.436999999999998,0.8,65.31,0.51,104463.1,10.09,5.53,2234.733736
716,57545,ETH,Africa,Ethiopia,2022-06-30,488724.0,291.0,335.85699999999997,7536.0,0.0,1.429,4146.0779999999995,2.469,2.8489999999999998,63.931000000000004,0.0,0.012,0.56,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,5024643.0,4118.0,42.626000000000005,0.035,4906.0,0.042,0.1325,7.5,tests performed,49687694.0,44365594.0,37906419.0,1836576.0,159930.0,2808915.0,42.15,37.64,32.16,1.56,23829.0,2140688.0,1.8159999999999998,25.0,117876226.0,104.95700000000001,19.8,3.5260000000000002,2.063,1729.9270000000001,26.7,182.63400000000001,7.47,0.4,8.5,7.96,0.3,66.6,0.485,3805.5,9.78,12.82,2871.66802
717,104349,LTU,Europe,Lithuania,2022-06-30,1161146.0,466.0,294.857,9173.0,0.0,1.286,431674.934,173.243,109.618,3410.212,0.0,0.478,1.51,1.0,0.536,58.0,21.561999999999998,10.0,5.282,1.0,25.605,8718186.0,136.0,3241.1279999999997,0.051,751.0,0.27899999999999997,0.212,4.7,tests performed,4488937.0,1952393.0,1876660.0,934377.0,123.0,60.0,166.88,72.58,69.77,34.74,22.0,11.0,0.0,11.11,2689862.0,45.135,43.5,19.002,13.777999999999999,29524.265,0.7,342.98900000000003,3.67,21.3,38.0,1.188,6.56,75.93,0.882,19277.5,21.09,-6.35,7166.7245379999995
718,82998,IND,Asia,India,2022-06-30,43469234.0,17070.0,15277.143,525139.0,23.0,26.429000000000002,31196.32,12.251,10.964,376.874,0.017,0.019,1.18,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,858526354.0,388641.0,616.134,0.27899999999999997,442229.0,0.317,0.0278,35.9,samples tested,1975334761.0,1016506282.0,914479703.0,44348776.0,1512729.0,1414474.0,141.76,72.95,65.63,3.18,1015.0,178313.0,0.013000000000000001,37.04,1393409033.0,450.41900000000004,28.2,5.989,3.4139999999999997,6426.674,21.2,282.28,10.39,1.9,20.6,59.55,0.53,69.66,0.645,213.9,4.1,13.64,580.0017353999999
719,132782,PRK,Asia,North Korea,2022-06-30,1.0,0.0,0.0,6.0,0.0,0.0,0.039,0.0,0.0,0.23199999999999998,0.0,0.0,1.44,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,182968.0,1558.0,7.068,0.06,554.0,0.021,0.0056,180.0,samples tested,1026446944.0,435186771.0,381228305.0,221110296.0,112472.0,271181.0,172.05,72.95,63.9,37.06,455.0,51378.0,0.009000000000000001,40.74,25887045.0,211.701,35.3,9.491,6.138999999999999,5338.454000000001,44.5,321.681,4.0,0.6,10.8,41.949,13.2,72.27,0.539,8148.4,31.97,5.18,1215.747423
720,129982,NER,Africa,Niger,2022-06-30,9031.0,0.0,0.0,310.0,0.0,0.0,359.36,0.0,0.0,12.335,0.0,0.0,0.05,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,254538.0,374.0,10.129,0.015,260.0,0.01,0.0115,86.7,tests performed,3530154.0,3330202.0,2603341.0,2756062.0,7377.0,118094.0,14.05,13.25,10.36,53.76,4699.0,161635.0,0.643,5.56,25130810.0,16.955,15.1,2.553,1.3780000000000001,926.0,44.5,238.33900000000003,2.42,0.1,15.4,8.978,0.3,62.42,0.39399999999999996,8148.4,31.97,5.18,1215.747423
721,75250,GIN,Africa,Guinea,2022-06-30,36817.0,0.0,0.0,442.0,0.0,0.0,2727.743,0.0,0.0,32.747,0.0,0.0,0.0,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,708410.0,10381.0,52.486000000000004,0.569,1193.0,0.08800000000000001,0.0,72.1,tests performed,6329141.0,4550563.0,2639658.0,273.0,522.0,4216.0,46.89,33.71,19.56,0.0,312.0,1925.0,0.013999999999999999,49.07,13497237.0,51.755,19.0,3.135,1.733,1998.9260000000002,35.3,336.717,2.42,35.3,52.0,17.45,0.3,61.6,0.47700000000000004,43113.3,25.35,10.04,2362.38969
722,29867,BDI,Africa,Burundi,2022-06-30,42658.0,116.0,16.570999999999998,38.0,0.0,0.0,3480.743,9.465,1.3519999999999999,3.1010000000000004,0.0,0.0,0.87,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,1611285.0,3281.0,131.475,0.268,1061.0,0.087,0.0236,42.4,tests performed,17139.0,15287.0,14707.0,5.0,93.0,51.0,0.14,0.12,0.12,0.0,4.0,51.0,0.0,13.89,12255429.0,423.06199999999995,17.5,2.562,1.504,702.225,71.7,293.068,6.05,1.6,23.9,6.144,0.8,61.58,0.433,66889.5,26.21,-5.49,9698.83226
723,138362,PLW,Oceania,Palau,2022-06-30,5220.0,0.0,3.8569999999999998,6.0,0.0,0.0,287223.506,0.0,212.234,330.142,0.0,0.0,1.0,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,59627.0,31201.0,3280.8959999999997,0.139,116.0,6.382999999999999,0.0345,29.0,tests performed,273365003.0,137369525.0,127262916.0,26505821.0,943523.0,880651.0,121.39,61.0,56.51,11.77,3911.0,71679.0,0.032,77.78,18174.0,47.236999999999995,23.5,4.495,2.78,13240.405,4.0,423.031,15.89,7.7,22.7,59.607,4.8,73.7,0.826,4286.8,18.62,-6.95,820.6952745
724,66203,GMB,Africa,Gambia,2022-06-30,12002.0,0.0,0.0,365.0,0.0,0.0,4826.017,0.0,0.0,146.767,0.0,0.0,0.03,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,155686.0,2256.0,62.602,0.99,68.0,0.027000000000000003,0.0105,95.2,tests performed,812811.0,449464.0,354340.0,9007.0,429.0,3315.0,32.68,18.07,14.25,0.36,1333.0,0.0,0.0,13.89,2486937.0,207.56599999999997,17.5,2.339,1.4169999999999998,1561.767,10.1,331.43,1.91,0.7,31.2,7.876,1.1,62.05,0.496,546.2,16.03,-9.97,1933.2186570000001
725,155843,STP,Africa,Sao Tome and Principe,2022-06-30,6043.0,0.0,2.8569999999999998,73.0,0.0,0.0,27054.494,0.0,12.790999999999999,326.82099999999997,0.0,0.0,-0.04,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,4694.0,767.0,21.015,3.4339999999999997,110.0,0.49200000000000005,0.0091,110.0,tests performed,218850.0,124684.0,97402.0,22342.0,9.0,204.0,97.98,55.82,43.61,10.0,913.0,76.0,0.034,13.89,223364.0,212.84099999999998,18.7,2.886,2.162,3052.7140000000004,32.3,270.113,2.42,16.7,38.1,41.34,2.9,70.39,0.625,133.0,21.63,-19.49,3910.614525
726,196349,OWID_WRL,Africa,World,2022-06-30,547499539.0,1030824.0,738434.286,6335854.0,1693.0,1431.0,69524.054,130.899,93.77,804.556,0.215,0.182,1.21,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,3943.0,56715.0,6.444,0.578,620.0,0.006,0.9523,1.1,tests performed,12105651382.0,5252185090.0,4815820939.0,2128052888.0,7669290.0,6080962.0,153.72,66.69,61.15,27.02,772.0,783352.0,0.01,25.93,7874965730.0,58.045,30.9,8.696,5.355,15469.207,10.0,233.07,8.51,6.434,34.635,60.13,2.705,72.58,0.737,38486.9,10.93,1.96,1134.110282
727,24808,BWA,Africa,Botswana,2022-06-30,322769.0,801.0,605.857,2750.0,11.0,4.428999999999999,134641.922,334.134,252.731,1147.153,4.5889999999999995,1.847,0.58,22.0,1.859,143.0,12.085,,,760.0,65.335,2285160.0,2647.0,953.2460000000001,1.104,857.0,0.35700000000000004,0.0483,20.7,tests performed,2730607.0,1696430.0,1512567.0,391031.0,10435.0,197.0,113.91,70.77,63.1,16.31,82.0,81.0,0.003,13.89,2397240.0,4.044,25.8,3.9410000000000003,2.242,15807.374,0.2,237.372,4.81,5.7,34.4,97.164,1.8,69.59,0.735,22134.5,26.94,18.13,6782.527373999999
728,157556,SEN,Africa,Senegal,2022-06-30,86325.0,20.0,10.142999999999999,1968.0,0.0,0.0,5019.973,1.163,0.59,114.443,0.0,0.0,1.37,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,1102099.0,814.0,64.089,0.047,752.0,0.044000000000000004,0.0034,292.5,tests performed,2523856.0,2300648.0,1070503.0,7027.0,7129.0,0.0,14.68,13.38,6.23,0.04,0.0,59633.0,0.34700000000000003,26.85,17196308.0,82.32799999999999,18.7,3.008,1.796,2470.58,38.0,241.21900000000002,2.42,0.4,16.6,20.859,2.7,67.94,0.512,133.0,21.63,-19.49,3910.614525
729,35863,TCD,Africa,Chad,2022-06-30,7425.0,0.0,0.14300000000000002,193.0,0.0,0.0,438.96,0.0,0.008,11.41,0.0,0.0,0.38,220.0,5.779,3505.0,92.072,,,760.0,65.335,218873.0,2691.0,12.94,40.467,129.0,0.008,0.0044,225.9,tests performed,2356138.0,2218493.0,2093522.0,23536.0,12887.0,72.0,13.93,13.12,12.38,35.39,4.0,147.0,0.001,15.74,16914985.0,11.833,16.7,2.4859999999999998,1.446,1768.1529999999998,38.4,280.995,6.1,2.1,16.5,5.818,1.0,54.24,0.39799999999999996,188.6,6.81,13.94,335.6463149
730,91648,JPN,Asia,Japan,2022-06-30,9316954.0,23325.0,17470.571,31277.0,14.0,26.857,73914.281,185.044,138.599,248.13,0.111,0.213,1.29,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,53504941.0,138240.0,424.471,1.097,94925.0,0.753,0.1483,6.7,people tested,285136044.0,103738635.0,102356032.0,79041377.0,101920.0,138708.0,226.21,82.3,81.2,62.71,1100.0,4084.0,0.003,39.81,126050796.0,347.778,48.2,27.049,18.493,39002.223,2.0,79.37,5.72,11.2,33.7,66.425,13.05,84.63,0.919,9539.4,0.29,8.92,75.67901436
731,163758,SLB,Oceania,Solomon Islands,2022-06-30,21544.0,0.0,0.0,153.0,0.0,0.0,30602.49,0.0,0.0,217.331,0.0,0.0,0.16,11.0,5.292000000000001,62.0,29.826,7.0,3.319,43.0,20.863000000000003,5336373.0,3998.0,2567.14,1.923,3172.0,1.526,0.128,7.8,tests performed,463637.0,283298.0,177996.0,2343.0,108.0,738.0,65.86,40.24,25.28,0.33,1048.0,0.0,0.0,42.59,703995.0,21.840999999999998,20.8,3.5069999999999997,2.043,2205.923,25.1,459.78,18.68,20.1,25.0,35.89,1.4,73.0,0.5670000000000001,5202.5,10.13,-6.54,2502.73846
732,82111,ISL,Europe,Iceland,2022-06-30,193987.0,0.0,279.42900000000003,153.0,0.0,0.0,526006.529,0.0,757.686,414.86800000000005,0.0,0.0,1.69,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,1373785.0,632.0,3725.094,1.714,460.0,1.247,0.2219,4.5,tests performed,805469.0,309770.0,290193.0,250542.0,1925.0,61.0,218.41,84.0,78.69,67.94,165.0,10.0,0.003,11.11,368792.0,3.404,37.3,14.431,9.207,46482.958,0.2,117.992,5.31,14.3,15.2,84.169,2.91,82.99,0.9490000000000001,213.9,4.1,13.64,580.0017353999999
733,20608,BMU,North America,Bermuda,2022-06-30,16162.0,205.0,29.285999999999998,140.0,0.0,0.28600000000000003,260291.181,3301.553,471.65,2254.719,0.0,4.601,0.04,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,41927.0,4992.0,675.24,80.39699999999999,867.0,13.963,0.0872,11.5,samples tested,131612.0,48554.0,47657.0,35401.0,5470.0,6.0,211.96,78.2,76.75,57.01,97.0,5.0,0.008,22.22,62092.0,1308.82,18.8,3.2439999999999998,1.942,50669.315,49.6,139.547,13.0,0.6,12.3,11.035,0.5,82.59,0.545,15.4,2.8,-1.1,248.0190685
734,94667,KEN,Africa,Kenya,2022-06-30,333694.0,404.0,379.57099999999997,5652.0,0.0,0.14300000000000002,6068.741,7.347,6.903,102.79,0.0,0.003,0.91,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,3728165.0,2868.0,67.80199999999999,0.052000000000000005,3338.0,0.061,0.1107,9.0,tests performed,18535975.0,12641679.0,9326814.0,376018.0,13702.0,12048.0,33.71,22.99,16.96,0.68,219.0,4649.0,0.008,37.04,54985702.0,87.324,20.0,2.6860000000000004,1.528,2993.028,36.8,218.637,2.92,1.2,20.4,24.651,1.4,66.7,0.601,83124.6,26.77,-14.32,4376.140237
735,117721,MDA,Europe,Moldova,2022-06-30,520321.0,153.0,88.286,11567.0,0.0,0.5710000000000001,129303.62,38.022,21.94,2874.485,0.0,0.142,0.57,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,15569464.0,2711.0,119.524,0.674,12754.0,3.1689999999999996,0.2407,4.2,tests performed,2165600.0,1083286.0,1063425.0,82869.0,1079.0,583.0,53.82,26.92,26.43,2.06,145.0,316.0,0.008,0.0,4024025.0,123.655,37.6,10.864,6.955,5189.972,0.2,408.50199999999995,5.72,5.9,44.6,86.979,5.8,71.9,0.75,15702.0,22.3,14.29,3902.063233
736,35025,CAF,Africa,Central African Republic,2022-06-30,14649.0,0.0,0.0,113.0,0.0,0.0,2977.447,0.0,0.0,22.968000000000004,0.0,0.0,0.0,220.0,5.779,3505.0,92.072,,,760.0,65.335,94759.0,2691.0,19.26,40.467,142.0,0.028999999999999998,0.0,1.8,tests performed,1217399.0,1124848.0,1068464.0,23536.0,12887.0,1694.0,24.74,22.86,21.72,35.39,344.0,1694.0,0.034,18.52,4919987.0,7.479,18.3,3.655,2.251,661.24,0.5,435.727,6.1,2.1,16.5,16.602999999999998,1.0,53.28,0.397,188.6,6.81,13.94,335.6463149
737,195453,WLF,Oceania,Wallis and Futuna,2022-06-30,454.0,0.0,0.0,7.0,0.0,0.0,40923.021,0.0,0.0,630.972,0.0,0.0,0.91,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,85824349.0,56715.0,874.253,0.578,620.0,0.006,0.9523,1.1,people tested,16426.0,6483.0,6457.0,3201.0,66330.0,7.0,148.06,58.44,58.2,28.85,631.0,2.0,0.018000000000000002,25.93,11094.0,308.127,32.6,7.15,4.718,6171.884,2.0,245.465,6.0,1.0,45.9,85.84700000000001,2.6,79.94,0.7040000000000001,38486.9,10.93,1.96,1134.110282
738,194829,VNM,Asia,Vietnam,2022-06-30,10746470.0,839.0,839.2860000000001,43087.0,0.0,0.429,109469.27,8.547,8.549,438.907,0.0,0.004,0.91,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,85824349.0,56715.0,874.253,0.578,620.0,0.006,0.9523,1.1,people tested,232676319.0,86438964.0,81213942.0,64212970.0,550359.0,592009.0,237.02,88.05,82.73,65.41,6031.0,68759.0,0.07,25.93,98168829.0,308.127,32.6,7.15,4.718,6171.884,2.0,245.465,6.0,1.0,45.9,85.84700000000001,2.6,75.4,0.7040000000000001,38486.9,10.93,1.96,1134.110282
739,114587,MRT,Africa,Mauritania,2022-06-30,59814.0,137.0,62.571000000000005,983.0,1.0,0.14300000000000002,12526.204,28.69,13.104000000000001,205.859,0.209,0.03,2.86,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,998154.0,1362.0,209.033,0.285,735.0,0.154,0.0142,70.5,tests performed,2872677.0,1927038.0,1334032.0,216491.0,3777.0,3183.0,60.16,40.36,27.94,4.53,667.0,167.0,0.003,43.52,4775110.0,4.289,20.3,3.138,1.7919999999999998,3597.633,6.0,232.347,2.42,20.9,30.2,15.95,2.7,64.92,0.546,539.8,5.7,-1.02,1045.921333
740,175797,TJK,Asia,Tajikistan,2022-06-30,17786.0,0.0,0.0,125.0,0.0,0.0,1824.275,0.0,0.0,12.821,0.0,0.0,-0.0,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,13021521.0,64492.0,545.861,2.7030000000000003,66864.0,2.803,0.7838,1.3,people tested,13782905.0,5220731.0,5034819.0,3527355.0,113265.0,36536.0,141.37,53.55,51.64,36.18,3747.0,882.0,0.009000000000000001,8.33,9749625.0,64.281,23.3,3.466,2.155,2896.913,4.8,427.69800000000004,7.11,22.6,28.9,72.704,4.8,71.1,0.6679999999999999,9879.4,30.17,0.38,1013.3107679999999
741,64520,PYF,Oceania,French Polynesia,2022-06-30,73268.0,0.0,11.714,649.0,0.0,0.0,259324.54100000003,0.0,41.461999999999996,2297.069,0.0,0.0,1.42,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,278234000.0,179427.0,4126.754,2.661,201691.0,2.991,0.22699999999999998,4.4,people tested,453259.0,188352.0,180807.0,84100.0,405.0,125.0,160.43,66.67,63.99,29.77,442.0,125.0,0.044000000000000004,23.15,282534.0,77.324,32.7,7.775,4.593,38605.671,1.4,86.06,22.63,30.1,35.6,7.96,5.98,77.66,0.9009999999999999,546.2,16.03,-9.97,1933.2186570000001
742,198841,ZWE,Africa,Zimbabwe,2022-06-30,255586.0,66.0,64.286,5555.0,2.0,1.857,16935.006,4.373,4.26,368.07199999999995,0.133,0.12300000000000001,0.64,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,2379907.0,3537.0,157.691,0.23399999999999999,2246.0,0.149,0.0421,23.7,tests performed,11958771.0,6299348.0,4605821.0,1053602.0,8778.0,5316.0,79.24,41.74,30.52,6.98,352.0,1483.0,0.01,38.89,15092171.0,42.729,19.6,2.822,1.882,1899.775,21.4,307.846,1.82,1.6,30.7,36.791,1.7,61.49,0.5710000000000001,38486.9,10.93,1.96,1134.110282
743,121104,MSR,North America,Montserrat,2022-06-30,1018.0,0.0,0.28600000000000003,8.0,0.0,0.0,204376.63100000002,0.0,57.361000000000004,1606.1029999999998,0.0,0.0,1.62,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,7408778.0,4118.0,2225.3379999999997,1.237,487.0,0.146,0.4242,2.4,samples tested,4422.0,2044.0,1868.0,510.0,13.0,3.0,88.78,41.04,37.5,10.24,602.0,3.0,0.06,11.11,4981.0,46.28,39.1,14.762,9.395,16409.288,1.0,387.305,10.08,44.0,47.9,71.18,3.861,74.16,0.8290000000000001,2633.7,21.49,55.05,4193.449258
744,80399,HKG,Asia,Hong Kong,2022-06-30,1245797.0,2358.0,1927.286,9401.0,2.0,0.429,164945.053,312.202,255.175,1244.704,0.265,0.057,1.0,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,49426686.0,263.0,6544.154,0.023,72419.0,9.588,0.0038,262.5,tests performed,17713390.0,6744442.0,6454865.0,4514083.0,19844.0,15650.0,234.53,89.3,85.46,59.77,2072.0,1042.0,0.013999999999999999,52.78,7552800.0,7039.714,44.8,16.303,10.158,56054.92,16.0,240.208,8.33,2.0,23.1,84.169,0.7,84.86,0.9490000000000001,10531.0,9.01,66.75,1394.317339
745,138045,PAK,Asia,Pakistan,2022-06-30,1536479.0,694.0,490.286,30395.0,0.0,1.429,6822.733,3.082,2.177,134.969,0.0,0.006,1.99,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,28889568.0,31201.0,128.284,0.139,11780.0,0.052000000000000005,0.0142,70.5,tests performed,270168135.0,137108516.0,126718132.0,24048052.0,975945.0,1000293.0,119.97,60.88,56.27,10.68,4442.0,84717.0,0.038,77.78,225199929.0,255.57299999999998,23.5,4.495,2.78,5034.708,4.0,423.031,8.35,2.8,36.7,59.607,0.6,67.27,0.557,4286.8,18.62,-6.95,820.6952745
746,124491,NAM,Africa,Namibia,2022-06-30,169179.0,103.0,24.570999999999998,4064.0,3.0,0.857,65387.130999999994,39.809,9.497,1570.723,1.159,0.331,0.55,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1056045.0,778.0,408.158,0.301,772.0,0.298,0.0579,17.3,tests performed,825518.0,496475.0,426681.0,64392.0,3837.0,127.0,31.91,19.19,16.49,2.49,49.0,1243.0,0.048,23.15,2587344.0,3.0780000000000003,22.0,3.552,2.085,9541.808,13.4,243.81099999999998,3.94,9.7,34.2,44.6,0.9,63.71,0.6459999999999999,2633.7,21.49,55.05,4193.449258
747,154166,WSM,Oceania,Samoa,2022-06-30,14906.0,0.0,13.429,29.0,0.0,0.0,74476.37700000001,0.0,67.095,144.89600000000002,0.0,0.0,0.84,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,108388.0,59.0,974.1080000000001,0.53,50.0,0.449,0.2257,4.4,tests performed,494684.0,229291.0,198149.0,67244.0,20.0,851.0,247.16,114.56,99.0,33.6,4252.0,45.0,0.022000000000000002,66.67,200144.0,69.413,22.0,5.606,3.5639999999999996,6021.557,56.0,348.977,9.21,16.7,38.1,87.20200000000001,2.6,73.32,0.715,12.2,3.33,8.11,227.8414821
748,128307,NZL,Oceania,New Zealand,2022-06-30,1345796.0,7295.0,7305.571,1473.0,7.0,13.286,262527.749,1423.0539999999999,1425.116,287.342,1.3659999999999999,2.592,1.12,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,7264156.0,1761.0,1417.037,0.344,3141.0,0.613,0.685,1.5,tests performed,11127224.0,4292598.0,4114204.0,2720422.0,7377.0,3510.0,217.06,83.74,80.26,53.07,685.0,68.0,0.001,26.85,5126300.0,18.206,37.9,15.322000000000001,9.72,36085.843,15.0,128.797,8.08,14.8,17.2,47.782,2.61,82.29,0.9309999999999999,-1746.4,-2.07,9.86,-340.6745606
749,139214,PSE,Asia,Palestine,2022-06-30,659853.0,0.0,192.857,5660.0,0.0,0.0,126341.916,0.0,36.926,1083.719,0.0,0.0,0.15,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,59627.0,3267.0,3280.8959999999997,0.626,1289.0,0.247,0.1962,5.1,tests performed,3734270.0,2008544.0,1772479.0,331383.0,0.0,182.0,71.5,38.46,33.94,6.34,35.0,77.0,0.001,16.67,5222756.0,778.202,20.4,3.043,1.726,4449.898,1.0,265.91,10.59,7.7,22.7,59.607,4.8,74.05,0.708,1197.4,9.28,58.86,229.2659278
750,121983,MAR,Africa,Morocco,2022-06-30,1216909.0,4003.0,3003.7140000000004,16109.0,2.0,2.1430000000000002,32585.78,107.19,80.432,431.35900000000004,0.054000000000000006,0.057,1.3,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,11738659.0,4632.0,314.332,0.124,6983.0,0.187,0.1107,9.0,people tested,54846507.0,24953895.0,23439316.0,6551009.0,51870.0,6378.0,146.87,66.82,62.76,17.54,171.0,836.0,0.002,58.33,37344787.0,80.08,29.6,6.769,4.209,7485.013000000001,1.0,419.14599999999996,7.14,0.8,47.1,71.18,1.1,76.68,0.6859999999999999,2633.7,21.49,55.05,4193.449258
751,184717,UGA,Africa,Uganda,2022-06-30,167719.0,73.0,71.714,3621.0,0.0,0.429,3559.135,1.5490000000000002,1.5219999999999998,76.84100000000001,0.0,0.009000000000000001,0.88,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,2749166.0,10103.0,58.34,0.214,1382.0,0.028999999999999998,0.0646,15.5,tests performed,21756456.0,16226827.0,11144005.0,82919.0,134275.0,37972.0,46.17,34.43,23.65,0.18,806.0,27737.0,0.059000000000000004,28.7,47123533.0,213.75900000000001,16.4,2.168,1.308,1697.707,41.6,213.333,2.5,3.4,16.7,21.221999999999998,0.5,63.37,0.544,20481.6,16.84,40.84,1715.9856710000001
752,158416,SRB,Europe,Serbia,2022-06-30,2029403.0,921.0,706.857,16126.0,1.0,1.0,295334.224,134.031,102.867,2346.779,0.146,0.146,1.48,10.0,1.455,102.0,14.844000000000001,9.0,1.669,7292.0,49.975,9852899.0,7466.0,1433.869,1.087,6317.0,0.919,0.0594,16.8,people tested,8534688.0,3354075.0,3278198.0,1902412.0,221.0,175.0,124.2,48.81,47.71,27.69,25.0,47.0,0.001,11.11,6871547.0,80.291,41.2,17.366,1.796,14048.881000000001,38.0,439.415,10.08,37.7,40.2,97.719,5.609,76.0,0.8059999999999999,58394.0,24.45,1.98,8497.940857
753,25668,BRA,South America,Brazil,2022-06-30,32358018.0,151064.0,56462.28599999999,671416.0,568.0,217.28599999999997,151210.326,705.928,263.851,3137.554,2.654,1.015,1.41,22.0,1.859,143.0,12.085,,,760.0,65.335,70923215.0,126242.0,331.42699999999996,0.59,121418.0,0.5670000000000001,0.0483,20.7,tests performed,454854179.0,184682893.0,168924041.0,106567152.0,83420.0,511139.0,212.56,86.3,78.94,49.8,2389.0,20703.0,0.01,39.81,213993441.0,25.04,33.5,8.552,5.06,14103.452,3.4,177.96099999999998,8.11,10.1,17.9,97.164,2.2,75.88,0.765,781197.4,23.53,5.87,3650.567028
754,23129,BES,North America,Bonaire Sint Eustatius and Saba,2022-06-30,10405.0,0.0,12.142999999999999,37.0,0.0,0.0,393458.12100000004,0.0,459.17400000000004,1399.13,0.0,0.0,1.5,22.0,1.859,143.0,12.085,,,760.0,65.335,4440371.0,6982.0,375.255,0.59,6277.0,0.53,0.0726,13.8,tests performed,35845.0,19109.0,16736.0,1657937.0,9396.0,196.0,135.55,72.26,63.29,14.01,7412.0,92.0,0.348,23.15,26445.0,10.202,25.4,6.704,4.393,6885.829000000001,7.1,204.299,6.89,0.6,12.3,25.383000000000003,1.1,77.79,0.718,57352.5,51.82,43.99,4846.852886
755,115426,MUS,Africa,Mauritius,2022-06-30,231036.0,1557.0,222.429,1003.0,1.0,0.14300000000000002,181428.396,1222.684,174.669,787.638,0.785,0.11199999999999999,0.26,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1282782.0,1362.0,1007.346,0.285,12.0,0.009000000000000001,0.0,11.3,tests performed,2559789.0,978297.0,945621.0,626856.0,35153.0,734.0,201.02,76.82,74.26,49.23,576.0,99.0,0.008,37.96,1273428.0,622.962,37.4,10.945,5.8839999999999995,20292.745,0.5,224.644,22.02,3.2,40.7,15.95,3.4,74.99,0.804,1097.6,4.72,46.05,861.9254484999999
756,60186,FRO,Europe,Faeroe Islands,2022-06-30,34658.0,0.0,0.0,28.0,0.0,0.0,706541.9040000001,0.0,0.0,570.811,0.0,0.0,0.55,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,777845.0,391.0,15857.236,7.971,539.0,10.988,0.6621,1.5,people tested,103894.0,41715.0,40895.0,21284.0,42.0,26.0,211.8,85.04,83.37,43.39,530.0,2.0,0.004,11.11,49053.0,35.308,19.8,3.5260000000000002,2.063,1729.9270000000001,26.7,182.63400000000001,7.47,0.4,8.5,7.96,0.3,80.67,0.485,-38.6,-3.8,10.79,-786.903961
757,172405,SWE,Europe,Sweden,2022-06-30,2519199.0,3430.0,490.0,19124.0,31.0,4.428999999999999,247948.777,337.593,48.228,1882.254,3.051,0.436,0.49,46.0,4.527,1148.0,112.99,241.0,5.156000000000001,5307.0,113.53,18407585.0,2417.0,1811.7420000000002,0.23800000000000002,2417.0,0.23800000000000002,0.1183,8.5,tests performed,22674504.0,7838695.0,7651988.0,5439028.0,398.0,6212.0,223.17,77.15,75.31,53.53,611.0,153.0,0.002,11.11,10160159.0,24.718000000000004,41.0,19.985,13.433,46949.282999999996,0.5,133.982,4.79,18.8,18.9,67.779,2.22,82.8,0.945,10434.7,4.75,0.41,1027.021329
758,107864,MAC,Asia,Macao,2022-06-30,264.0,59.0,21.285999999999998,1094.0,0.0,0.857,400.978,89.61200000000001,32.33,1723.339,0.0,1.35,1.56,3.0,4.726,15.0,23.629,10.0,5.282,1.0,1.575,4299901.0,2293.0,6773.482,3.612,1630.0,2.568,0.376,2.7,tests performed,1440097.0,613720.0,586020.0,279667.0,564.0,511.0,218.73,93.22,89.01,42.48,776.0,141.0,0.021,73.15,658391.0,20546.766,39.2,9.798,4.9910000000000005,104861.851,0.2,128.275,4.42,20.9,26.0,1.188,4.51,84.24,0.9159999999999999,413.4,8.35,22.9,627.8943667000001
759,156698,SAU,Asia,Saudi Arabia,2022-06-30,795186.0,698.0,984.571,9208.0,1.0,2.0,22500.586,19.750999999999998,27.859,260.55,0.027999999999999997,0.057,1.14,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,43251385.0,28668.0,1223.8410000000001,0.8109999999999999,29372.0,0.831,0.0347,28.9,tests performed,66700629.0,26713922.0,25082132.0,10793985.0,113359.0,47889.0,188.74,75.59,70.97,30.54,1355.0,6276.0,0.018000000000000002,11.11,35340680.0,15.322000000000001,31.9,3.295,1.845,49045.41099999999,32.3,259.538,17.72,1.8,25.4,41.34,2.7,75.13,0.8540000000000001,133.0,21.63,-19.49,3910.614525
760,85599,IRN,Asia,Iran,2022-06-30,7238126.0,529.0,347.14300000000003,141389.0,3.0,1.714,85125.621,6.221,4.083,1662.8370000000002,0.035,0.02,1.61,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,52269202.0,76234.0,614.724,0.897,25540.0,0.3,0.0078,129.0,tests performed,149957751.0,64545209.0,57860379.0,27552163.0,31765.0,22970.0,176.36,75.91,68.05,32.4,270.0,5082.0,0.006,58.33,85028760.0,49.831,32.4,5.44,3.182,19082.62,0.2,270.308,9.59,0.8,21.1,64.204,1.5,76.68,0.7829999999999999,261045.6,29.95,27.79,3070.085933
761,36726,CHL,South America,Chile,2022-06-30,3990693.0,10896.0,9492.286,58479.0,12.0,20.570999999999998,207714.85600000003,567.135,494.07199999999995,3043.821,0.625,1.071,0.98,179.0,9.317,3505.0,92.072,82.0,4.268,857.0,44.607,39773213.0,58711.0,2070.189,3.056,67521.0,3.514,0.1502,6.7,tests performed,59447324.0,18002864.0,17579946.0,24439231.0,92496.0,57704.0,309.42,93.7,91.5,127.21,3003.0,900.0,0.005,27.31,19212362.0,24.281999999999996,35.4,11.087,6.938,22767.037,1.3,127.993,8.46,34.2,41.5,5.818,2.11,80.18,0.851,51537.3,19.01,15.69,2682.507232
762,100965,LSO,Africa,Lesotho,2022-06-30,33938.0,0.0,0.0,699.0,0.0,0.0,15718.827,0.0,0.0,323.751,0.0,0.0,0.18,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,459732.0,553.0,212.93099999999998,0.256,234.0,0.10800000000000001,0.1172,8.5,tests performed,933825.0,933825.0,735610.0,600115.0,292132.0,811.0,43.25,43.25,34.07,8.87,376.0,4333.0,0.201,32.41,2159067.0,73.562,22.2,4.506,2.647,2851.153,59.6,405.126,3.94,0.4,53.9,2.117,2.9,54.33,0.527,15149.6,30.18,57.47,2238.035464
763,165478,ZAF,Africa,South Africa,2022-06-30,3993444.0,0.0,483.85699999999997,101764.0,0.0,8.571,66510.84700000001,0.0,8.059,1694.88,0.0,0.14300000000000002,0.41,202.0,3.364,1725.0,28.73,7.0,3.319,470.0,7.827999999999999,25637671.0,19244.0,426.996,0.321,14296.0,0.23800000000000002,0.0726,13.8,people tested,36823695.0,22028992.0,19058285.0,3460795.0,21340.0,17170.0,61.33,36.69,31.74,5.76,286.0,5762.0,0.01,11.11,60041996.0,46.754,27.3,5.343999999999999,3.053,12294.876,18.9,200.38,5.52,8.1,33.2,43.993,2.32,64.13,0.7090000000000001,272670.6,21.46,10.13,4541.331371
764,146978,QAT,Asia,Qatar,2022-06-30,382635.0,659.0,637.0,679.0,0.0,0.14300000000000002,130568.799,224.87400000000002,217.36700000000002,231.699,0.0,0.049,1.15,85.0,8.36,1743.0,171.421,9.0,1.669,234.0,42.846000000000004,7574423.0,14144.0,2584.665,4.8260000000000005,14321.0,4.887,0.23800000000000002,4.2,tests performed,6981756.0,2646568.0,2646568.0,1688620.0,4802.0,2638.0,238.24,90.31,90.31,57.62,900.0,313.0,0.011000000000000001,40.74,2930524.0,227.322,31.9,1.307,0.617,116935.6,0.5,176.69,16.52,0.8,26.9,78.46300000000001,1.2,80.23,0.848,1147.4,22.0,20.31,391.5340738
765,1730,OWID_AFR,Asia,Africa,2022-06-30,12063190.0,9594.0,7385.714,255035.0,25.0,25.570999999999998,8782.896999999999,6.985,5.377000000000001,185.68400000000003,0.018000000000000002,0.019,1.12,,,,,,,,,994894.0,,24.975,,435.0,0.011000000000000001,0.222,4.5,tests performed,562579911.0,345752369.0,271648221.0,30967121.0,636173.0,331460.0,40.96,25.17,19.78,2.25,241.0,215737.0,0.016,11.11,1373486472.0,54.422,18.6,2.5810000000000004,1.337,1803.987,,597.029,9.59,,,37.746,0.5,64.83,0.511,,,,
766,29041,BFA,Africa,Burkina Faso,2022-06-30,21044.0,0.0,0.0,387.0,0.0,0.0,978.923,0.0,0.0,18.002,0.0,0.0,0.0,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,324773.0,41.0,15.107999999999999,0.002,291.0,0.013999999999999999,0.0,624.3,tests performed,2947625.0,2449809.0,1555140.0,768430.0,1242.0,9.0,13.71,11.4,7.23,11.14,0.0,9.0,0.0,8.33,21497097.0,70.15100000000001,17.6,2.4090000000000003,1.358,1703.102,43.7,269.048,2.42,1.6,23.9,11.877,0.4,61.58,0.452,66889.5,26.21,-5.49,9698.83226
767,17213,BLR,Europe,Belarus,2022-06-30,982867.0,0.0,0.0,6978.0,0.0,0.0,104085.655,0.0,0.0,738.97,0.0,0.0,0.0,50.0,5.529,874.0,96.649,,,,,13220483.0,9650.0,1400.05,1.022,7068.0,0.7490000000000001,0.0404,24.8,tests performed,13206203.0,6425755.0,6325490.0,756085.0,31.0,7151.0,139.85,68.05,66.99,8.01,757.0,1628.0,0.017,20.37,9442867.0,46.858000000000004,40.3,14.799000000000001,9.788,17167.967,14.8,443.129,5.18,10.5,46.1,88.469,11.0,74.79,0.823,31222.4,20.4,1.61,3306.4534320000002
768,73886,GTM,North America,Guatemala,2022-06-30,910714.0,5072.0,2971.571,18561.0,26.0,15.0,49902.498,277.92,162.827,1017.048,1.425,0.8220000000000001,1.5,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,4067775.0,10381.0,222.893,0.569,10008.0,0.5479999999999999,0.1911,5.2,people tested,17921400.0,8302756.0,6335969.0,3282675.0,48046.0,12850.0,98.2,45.49,34.72,17.99,704.0,1756.0,0.01,37.5,18249868.0,157.834,22.9,4.694,3.016,7423.808000000001,8.7,155.898,10.18,35.3,52.0,76.665,0.6,74.3,0.6629999999999999,43113.3,25.35,10.04,2362.38969
769,51587,ECU,South America,Ecuador,2022-06-30,909882.0,0.0,1602.1429999999998,35725.0,0.0,4.2860000000000005,50864.149000000005,0.0,89.56299999999999,1997.096,0.0,0.24,0.91,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,2870685.0,2817.0,160.477,0.157,4020.0,0.225,0.271,3.7,people tested,35827364.0,15189092.0,14015575.0,7186610.0,19351.0,14068.0,200.28,84.91,78.35,40.17,786.0,691.0,0.004,75.0,17888474.0,66.939,28.1,7.104,4.458,10581.936000000002,3.6,140.44799999999998,5.55,2.0,12.3,80.635,1.5,77.01,0.759,70967.5,42.39,-4.36,3967.219339
770,47317,COD,Africa,Democratic Republic of Congo,2022-06-30,91082.0,0.0,0.0,1371.0,0.0,0.0,985.971,0.0,0.0,14.841,0.0,0.0,0.54,8.0,0.746,191.0,17.81,10.0,0.932,238.0,22.191999999999997,1045120.0,4000.0,11.314,0.373,928.0,0.01,0.1168,8.6,tests performed,3514480.0,2979005.0,2272532.0,4240912.0,42303.0,40168.0,3.8,3.22,2.46,39.54,435.0,40168.0,0.043,31.48,92377986.0,35.879,17.0,3.02,1.745,808.133,77.1,318.949,6.1,30.5,38.3,4.4719999999999995,6.63,60.68,0.48,42100.6,15.74,5.93,3925.6274829999998
771,102658,LBY,Africa,Libya,2022-06-30,502138.0,0.0,4.0,6430.0,0.0,0.0,72161.422,0.0,0.575,924.045,0.0,0.0,1.15,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,139824.0,1351.0,26.991999999999997,0.19399999999999998,3669.0,0.527,0.2478,4.0,samples tested,3579762.0,2269135.0,1183940.0,126687.0,602.0,1793.0,51.44,32.61,17.01,1.82,258.0,630.0,0.009000000000000001,50.0,6958538.0,3.623,29.0,4.4239999999999995,2.8160000000000003,17881.509,38.6,341.86199999999997,10.43,1.5,18.1,1.188,3.7,72.91,0.7240000000000001,15149.6,30.18,57.47,2238.035464
772,34183,CYM,North America,Cayman Islands,2022-06-30,27171.0,0.0,53.428999999999995,28.0,0.0,0.0,408598.755,0.0,803.461,421.065,0.0,0.0,1.38,220.0,5.779,3505.0,92.072,,,760.0,65.335,9358.0,2691.0,140.726,40.467,384.0,5.775,0.0,3.0,tests performed,145906.0,61307.0,59547.0,23536.0,226.0,58.0,219.41,92.19,89.55,35.39,872.0,10.0,0.015,19.44,66498.0,256.496,25.7,4.46,3.437,49903.029,0.5,182.21900000000002,13.22,2.1,16.5,2.735,2.1,83.92,0.665,188.6,6.81,13.94,335.6463149
773,100182,LBN,Asia,Lebanon,2022-06-30,1112199.0,1377.0,891.429,10465.0,1.0,1.143,164304.061,203.423,131.69,1545.984,0.14800000000000002,0.16899999999999998,1.64,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,4731376.0,14038.0,698.962,2.074,14688.0,2.17,0.1238,8.1,tests performed,5673326.0,2698736.0,2374475.0,600115.0,292132.0,1238.0,83.81,39.87,35.08,8.87,183.0,348.0,0.005,17.59,6769151.0,594.561,31.1,8.514,5.43,13367.565,0.7,266.591,12.71,26.9,40.7,49.839,2.9,78.93,0.7440000000000001,15149.6,30.18,57.47,2238.035464
774,48201,DNK,Europe,Denmark,2022-06-30,3171766.0,2166.0,1724.286,6469.0,6.0,4.7139999999999995,545604.89,372.594,296.61,1112.7930000000001,1.032,0.8109999999999999,1.33,12.0,2.064,307.0,52.81,10.0,0.932,483.0,83.085,64649913.0,7934.0,11121.031,1.365,7179.0,1.235,0.19399999999999998,5.2,tests performed,13226720.0,4829934.0,4793704.0,3649810.0,541.0,620.0,227.53,83.08,82.46,62.78,107.0,32.0,0.001,11.11,5813302.0,136.52,42.3,19.677,12.325,46682.515,0.2,114.76700000000001,6.41,19.3,18.8,4.4719999999999995,2.5,80.9,0.94,1780.7,1.29,0.54,306.3147244
775,90753,JAM,North America,Jamaica,2022-06-30,142804.0,121.0,113.286,3128.0,4.0,3.0,48026.172999999995,40.693000000000005,38.099000000000004,1051.972,1.345,1.0090000000000001,0.92,291.0,4.82,7503.0,124.289,259.0,4.29,2964.0,49.099,1124299.0,2223.0,378.111,0.748,678.0,0.228,0.2164,4.6,samples tested,1458169.0,813122.0,709895.0,42219.0,554.0,487.0,49.04,27.35,23.87,1.42,164.0,266.0,0.009000000000000001,11.11,2973462.0,266.879,31.4,9.684,6.39,8193.571,2.0,206.537,11.28,5.3,28.6,66.425,1.7,74.47,0.7340000000000001,5134.8,14.0,1.16,1726.875945
776,59333,OWID_EUN,Africa,European Union,2022-06-30,149036250.0,420859.0,317484.857,1103605.0,354.0,301.286,333272.833,941.1189999999999,709.955,2467.866,0.792,0.674,0.55,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,5024643.0,4118.0,42.626000000000005,0.035,4906.0,0.042,0.1325,7.5,tests performed,883638464.0,337612119.0,327482760.0,241411062.0,214301.0,142546.0,197.6,75.5,73.23,53.98,319.0,4536.0,0.001,25.0,447189915.0,104.95700000000001,19.8,3.5260000000000002,2.063,1729.9270000000001,26.7,182.63400000000001,7.47,0.4,8.5,7.96,0.3,66.6,0.485,3805.5,9.78,12.82,2871.66802
777,142600,PER,South America,Peru,2022-06-30,3626802.0,6001.0,2605.286,213509.0,26.0,11.0,108718.993,179.889,78.097,6400.262,0.779,0.33,1.41,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,28971116.0,1757.0,868.454,0.243,49170.0,1.474,0.009000000000000001,111.1,tests performed,77874580.0,29525720.0,27647261.0,20701599.0,70061.0,81830.0,233.44,88.51,82.88,62.06,2453.0,3525.0,0.011000000000000001,50.93,33359415.0,25.129,29.1,7.151,4.455,12236.706,3.5,85.755,5.95,4.8,21.6,79.602,1.6,76.74,0.777,231903.0,72.67,1.94,6951.650681
778,76082,GNB,Africa,Guinea-Bissau,2022-06-30,8348.0,0.0,0.14300000000000002,171.0,0.0,0.0,4141.920999999999,0.0,0.071,84.84299999999999,0.0,0.0,0.25,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,142948.0,390.0,70.925,0.19399999999999998,231.0,0.115,0.0247,40.4,tests performed,572954.0,529783.0,342218.0,304.0,1658.0,26.0,28.43,26.29,16.98,0.02,13.0,26.0,0.001,49.07,2015490.0,66.191,19.4,3.002,1.565,1548.675,67.1,382.474,2.42,35.3,52.0,6.403,0.3,58.32,0.48,43113.3,25.35,10.04,2362.38969
779,176638,TZA,Africa,Tanzania,2022-06-30,35768.0,402.0,57.428999999999995,841.0,0.0,0.0,581.6080000000001,6.537000000000001,0.934,13.675,0.0,0.0,0.02,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,455776.0,64492.0,7.4110000000000005,2.7030000000000003,1004.0,0.016,0.0161,62.2,tests performed,8837371.0,7588592.0,4079863.0,3527355.0,113265.0,31068.0,14.37,12.34,6.63,36.18,505.0,39453.0,0.064,8.33,61498438.0,64.699,17.7,3.108,1.874,2683.304,49.1,217.28799999999998,5.75,3.3,26.7,47.953,0.7,65.46,0.529,9879.4,30.17,0.38,1013.3107679999999
780,185571,UKR,Europe,Ukraine,2022-06-30,5040518.0,0.0,0.0,112459.0,0.0,0.0,115962.42300000001,0.0,0.0,2587.238,0.0,0.0,-0.0,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,19288823.0,96361.0,443.76,2.217,52561.0,1.209,0.6027,1.7,tests performed,31668577.0,15774300.0,15153577.0,741197.0,62935.0,24457.0,72.86,36.29,34.86,1.71,563.0,13420.0,0.031,75.0,43466822.0,77.39,41.4,16.462,11.133,7894.393,0.1,539.849,7.11,13.5,47.4,21.221999999999998,8.8,72.06,0.779,179972.2,14.89,1.92,4140.449928
781,110422,MYS,Asia,Malaysia,2022-06-30,4566055.0,2867.0,2315.429,35765.0,2.0,3.286,139310.1,87.47200000000001,70.64399999999999,1091.188,0.061,0.1,1.1,43.0,1.3119999999999998,666.0,20.32,10.0,5.282,1168.0,35.635999999999996,60647556.0,29997.0,1850.354,0.915,36861.0,1.125,0.0555,18.0,people tested,71248584.0,28041252.0,27277820.0,16144593.0,5402.0,7098.0,217.38,85.55,83.22,49.26,217.0,799.0,0.002,47.22,32776195.0,96.25399999999999,29.9,6.292999999999999,3.407,26808.164,0.1,260.942,16.74,1.0,42.4,8.704,1.9,76.16,0.81,1429.6,0.45,30.64,43.61702144
782,857,AFG,Asia,Afghanistan,2022-06-30,182528.0,125.0,77.286,7723.0,1.0,1.143,4582.052,3.138,1.94,193.873,0.025,0.028999999999999998,1.12,,,,,,,,,994894.0,,24.975,,435.0,0.011000000000000001,0.222,4.5,tests performed,6445359.0,5713284.0,5064430.0,,383.0,10273.0,16.18,14.34,12.71,,258.0,9307.0,0.023,11.11,39835428.0,54.422,18.6,2.5810000000000004,1.337,1803.987,,597.029,9.59,,,37.746,0.5,64.83,0.511,,,,
783,95080,KIR,Oceania,Kiribati,2022-06-30,3236.0,0.0,3.0,13.0,0.0,0.0,26658.319,0.0,24.714000000000002,107.095,0.0,0.0,0.03,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,3728165.0,2868.0,67.80199999999999,0.052000000000000005,3338.0,0.061,0.1107,9.0,tests performed,147497.0,80566.0,60670.0,6261.0,13702.0,156.0,121.51,66.37,49.98,5.16,1285.0,38.0,0.031,34.26,121388.0,143.701,23.2,3.895,2.21,1981.132,36.8,434.657,22.66,35.9,58.9,24.651,1.9,68.37,0.63,83124.6,26.77,-14.32,4376.140237
784,49875,DMA,North America,Dominica,2022-06-30,14852.0,0.0,10.142999999999999,68.0,0.0,0.14300000000000002,205786.177,0.0,140.537,942.194,0.0,1.979,0.42,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,205366.0,341.0,2845.508,4.725,356.0,4.933,0.0,6.0,tests performed,66992.0,32872.0,30474.0,3646.0,270.0,4.0,92.82,45.55,42.22,5.05,55.0,1.0,0.001,32.41,72172.0,98.56700000000001,25.4,4.213,2.38,9673.367,22.5,227.37599999999998,11.62,1.7,24.5,4.4719999999999995,3.8,75.0,0.742,1780.7,1.29,0.54,306.3147244
785,67953,DEU,Europe,Germany,2022-06-30,28293960.0,113099.0,87455.0,141189.0,84.0,77.0,337232.43299999996,1348.014,1042.366,1682.815,1.001,0.9179999999999999,1.22,932.0,11.107999999999999,16108.0,238.91299999999998,933.0,11.12,5589.0,66.615,131286804.0,20318.0,1564.7920000000001,5.105,88471.0,1.054,0.418,2.4,tests performed,182861638.0,64703949.0,63351187.0,57100611.0,60026.0,36569.0,217.95,77.12,75.51,68.06,436.0,1244.0,0.001,17.59,83900471.0,237.016,46.6,21.453000000000003,15.957,45229.245,4.2,156.139,8.31,28.2,33.1,7.876,8.0,81.33,0.9470000000000001,90163.5,3.81,-1.17,1074.648318
786,52460,EGY,Africa,Egypt,2022-07-01,515645.0,0.0,0.0,24723.0,0.0,0.14300000000000002,4945.84,0.0,0.0,237.132,0.0,0.001,0.0,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,11954884.0,2817.0,114.666,0.157,194420.0,1.865,0.0,371.0,tests performed,91447330.0,50399016.0,37289388.0,5584684.0,78722.0,277114.0,87.71,48.34,35.77,5.36,2658.0,316258.0,0.303,40.74,104258327.0,97.999,25.3,5.159,2.891,10550.206,1.3,525.432,17.31,0.2,50.1,89.82700000000001,1.6,71.99,0.7070000000000001,307916.8,25.09,41.63,2953.4024649999997
787,100183,LBN,Asia,Lebanon,2022-07-01,1113519.0,1320.0,964.7139999999999,10466.0,1.0,1.143,164499.063,195.002,142.516,1546.132,0.14800000000000002,0.16899999999999998,1.62,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,4731376.0,14038.0,698.962,2.074,14688.0,2.17,0.1238,8.1,tests performed,5673326.0,2698736.0,2374475.0,600115.0,292132.0,1238.0,83.81,39.87,35.08,8.87,183.0,348.0,0.005,17.59,6769151.0,594.561,31.1,8.514,5.43,13367.565,0.7,266.591,12.71,26.9,40.7,49.839,2.9,78.93,0.7440000000000001,15149.6,30.18,57.47,2238.035464
788,75251,GIN,Africa,Guinea,2022-07-01,37123.0,306.0,43.714,443.0,1.0,0.14300000000000002,2750.415,22.671,3.239,32.821999999999996,0.07400000000000001,0.011000000000000001,0.0,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,708410.0,10381.0,52.486000000000004,0.569,1193.0,0.08800000000000001,0.0,72.1,tests performed,6329141.0,4550563.0,2639658.0,273.0,522.0,4216.0,46.89,33.71,19.56,0.0,312.0,1925.0,0.013999999999999999,49.07,13497237.0,51.755,19.0,3.135,1.733,1998.9260000000002,35.3,336.717,2.42,35.3,52.0,17.45,0.3,61.6,0.47700000000000004,43113.3,25.35,10.04,2362.38969
789,181491,TUN,Africa,Tunisia,2022-07-01,1052180.0,5477.0,782.429,28691.0,21.0,3.0,88153.55300000001,458.87300000000005,65.553,2403.784,1.7590000000000001,0.251,0.33,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,4647813.0,1722.0,389.402,0.14400000000000002,996.0,0.083,0.0958,10.4,people tested,13192714.0,7234385.0,6376006.0,1272091.0,1662.0,775.0,110.53,60.61,53.42,10.66,65.0,233.0,0.002,47.22,11935764.0,74.22800000000001,32.7,8.001,5.075,10849.296999999999,2.0,318.991,8.52,1.1,65.8,78.687,2.3,76.7,0.74,20481.6,16.84,40.84,1715.9856710000001
790,100966,LSO,Africa,Lesotho,2022-07-01,33938.0,0.0,0.0,699.0,0.0,0.0,15718.827,0.0,0.0,323.751,0.0,0.0,0.18,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,459732.0,553.0,212.93099999999998,0.256,234.0,0.10800000000000001,0.1172,8.5,tests performed,933825.0,933825.0,735610.0,600115.0,292132.0,811.0,43.25,43.25,34.07,8.87,376.0,4333.0,0.201,32.41,2159067.0,73.562,22.2,4.506,2.647,2851.153,59.6,405.126,3.94,0.4,53.9,2.117,2.9,54.33,0.527,15149.6,30.18,57.47,2238.035464
791,146979,QAT,Asia,Qatar,2022-07-01,383292.0,657.0,639.143,679.0,0.0,0.14300000000000002,130792.991,224.192,218.09799999999998,231.699,0.0,0.049,1.17,85.0,8.36,1743.0,171.421,9.0,1.669,234.0,42.846000000000004,7574423.0,14144.0,2584.665,4.8260000000000005,14321.0,4.887,0.23800000000000002,4.2,tests performed,6981756.0,2646568.0,2646568.0,1688620.0,4802.0,2638.0,238.24,90.31,90.31,57.62,900.0,313.0,0.011000000000000001,40.74,2930524.0,227.322,31.9,1.307,0.617,116935.6,0.5,176.69,16.52,0.8,26.9,78.46300000000001,1.2,80.23,0.848,1147.4,22.0,20.31,391.5340738
792,179795,TON,Oceania,Tonga,2022-07-01,12301.0,0.0,31.714000000000002,12.0,0.0,0.0,115222.136,0.0,297.064,112.40299999999999,0.0,0.0,0.19,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,749695.0,877.0,88.426,0.10300000000000001,377.0,0.044000000000000004,0.0235,42.6,tests performed,242634.0,108263.0,97151.0,37220.0,7881.0,151.0,227.27,101.41,91.0,34.86,1414.0,0.0,0.0,44.44,106759.0,150.028,22.3,5.82,4.032,5425.621,49.2,227.49,15.42,11.8,44.4,10.475,2.6,70.91,0.725,97687.9,8.02,19.55,1396.5221060000001
793,196350,OWID_WRL,Africa,World,2022-07-01,548473478.0,973939.0,769688.571,6337805.0,1951.0,1451.1429999999998,69647.729,123.675,97.73899999999999,804.804,0.248,0.184,1.21,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,3943.0,56715.0,6.444,0.578,620.0,0.006,0.9523,1.1,tests performed,12109787142.0,5252547332.0,4816976348.0,2130078059.0,7669290.0,6080962.0,153.78,66.7,61.17,27.05,772.0,783352.0,0.01,25.93,7874965730.0,58.045,30.9,8.696,5.355,15469.207,10.0,233.07,8.51,6.434,34.635,60.13,2.705,72.58,0.737,38486.9,10.93,1.96,1134.110282
794,123649,MMR,Asia,Myanmar,2022-07-01,613628.0,32.0,12.857000000000001,19434.0,0.0,0.0,11196.363000000001,0.584,0.235,354.596,0.0,0.0,1.33,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,8332037.0,16383.0,152.028,0.299,5100.0,0.09300000000000001,0.0016,626.3,samples tested,62259560.0,33004742.0,27027467.0,2227351.0,3800.0,187094.0,113.6,60.22,49.31,4.06,3414.0,110614.0,0.20199999999999999,51.85,54806014.0,81.721,29.1,5.732,3.12,5591.597,6.4,202.104,4.61,6.3,35.2,79.28699999999999,0.9,67.13,0.583,2633.7,21.49,55.05,4193.449258
795,76928,GUY,South America,Guyana,2022-07-01,67472.0,77.0,75.0,1255.0,1.0,0.857,85372.041,97.428,94.897,1587.9460000000001,1.265,1.085,1.02,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,442695.0,390.0,560.14,0.19399999999999998,2771.0,3.5060000000000002,0.3388,3.0,tests performed,1011150.0,482339.0,460154.0,68657.0,905.0,10444.0,127.94,61.03,58.22,8.69,13215.0,483.0,0.061,29.63,790329.0,3.952,26.3,5.305,2.8369999999999997,7435.047,67.1,373.159,11.62,35.3,52.0,77.15899999999999,1.6,69.91,0.682,43113.3,25.35,10.04,2362.38969
796,26498,VGB,North America,British Virgin Islands,2022-07-01,6941.0,0.0,0.0,63.0,0.0,0.0,228149.755,0.0,0.0,2070.802,0.0,0.0,1.41,22.0,1.859,143.0,12.085,,,760.0,65.335,96630.0,126242.0,3176.215,0.59,121418.0,0.5670000000000001,0.0483,20.7,people tested,41198.0,19389.0,18083.0,3726.0,802024.0,8.0,135.42,63.73,59.44,12.25,263.0,3.0,0.01,39.81,30423.0,207.97299999999998,33.5,8.552,5.06,14103.452,3.4,177.96099999999998,13.67,10.1,17.9,97.164,2.2,79.07,0.765,781197.4,23.53,5.87,3650.567028
797,49876,DMA,North America,Dominica,2022-07-01,14852.0,0.0,4.428999999999999,68.0,0.0,0.14300000000000002,205786.177,0.0,61.361000000000004,942.194,0.0,1.979,0.42,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,205366.0,341.0,2845.508,4.725,356.0,4.933,0.0,6.0,tests performed,66992.0,32872.0,30474.0,3646.0,270.0,4.0,92.82,45.55,42.22,5.05,55.0,1.0,0.001,32.41,72172.0,98.56700000000001,25.4,4.213,2.38,9673.367,22.5,227.37599999999998,11.62,1.7,24.5,4.4719999999999995,3.8,75.0,0.742,1780.7,1.29,0.54,306.3147244
798,106108,OWID_LMC,Europe,Lower middle income,2022-07-01,91417183.0,30412.0,29452.286,1311189.0,57.0,56.286,27447.229,9.131,8.843,393.673,0.017,0.017,1.54,1.0,0.536,58.0,21.561999999999998,10.0,5.282,1.0,25.605,8718186.0,136.0,3241.1279999999997,0.051,751.0,0.27899999999999997,0.212,4.7,tests performed,4188182962.0,2071089877.0,1831987372.0,321058498.0,4496005.0,3749092.0,125.75,62.18,55.0,9.64,1126.0,589362.0,0.018000000000000002,11.11,3330652550.0,45.135,43.5,19.002,13.777999999999999,29524.265,0.7,342.98900000000003,3.67,21.3,38.0,1.188,6.56,75.93,0.882,19277.5,21.09,-6.35,7166.7245379999995
799,198842,ZWE,Africa,Zimbabwe,2022-07-01,255586.0,0.0,39.571,5555.0,0.0,0.857,16935.006,0.0,2.622,368.07199999999995,0.0,0.057,0.61,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,2379907.0,3537.0,157.691,0.23399999999999999,2246.0,0.149,0.0421,23.7,tests performed,11974313.0,6305470.0,4611113.0,1057730.0,8778.0,5358.0,79.34,41.78,30.55,7.01,355.0,1633.0,0.011000000000000001,38.89,15092171.0,42.729,19.6,2.822,1.882,1899.775,21.4,307.846,1.82,1.6,30.7,36.791,1.7,61.49,0.5710000000000001,38486.9,10.93,1.96,1134.110282
800,193093,VAT,Europe,Vatican,2022-07-01,29.0,0.0,0.0,14.0,0.0,0.0,35714.286,0.0,0.0,44.52,0.0,0.0,0.69,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,11989.0,2072.0,38.125,0.595,76.0,0.242,0.0132,76.0,people tested,309433.0,172232.0,126591.0,10610.0,145313.0,151.0,98.4,54.77,40.26,3.37,480.0,0.0,0.0,68.06,812.0,22.662,23.1,4.394,2.62,2921.909,13.2,546.3,12.02,2.8,34.5,25.209,4.0,75.12,0.609,38486.9,10.93,1.96,1134.110282
801,38473,COL,South America,Colombia,2022-07-01,6175181.0,23827.0,3403.857,140070.0,100.0,14.286,120454.105,464.773,66.396,2732.2290000000003,1.9509999999999998,0.27899999999999997,0.6,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,35241195.0,9497.0,687.421,0.185,18395.0,0.359,0.085,11.8,tests performed,85767160.0,42418509.0,36180137.0,12964054.0,18933.0,43920.0,167.3,82.74,70.57,25.29,857.0,3796.0,0.006999999999999999,25.93,51265841.0,44.223,32.2,7.646,4.312,13254.948999999999,4.5,124.24,7.44,4.7,13.5,65.38600000000001,1.71,77.29,0.767,180760.5,29.56,2.99,3525.944303
802,51588,ECU,South America,Ecuador,2022-07-01,909882.0,0.0,1602.1429999999998,35725.0,0.0,4.2860000000000005,50864.149000000005,0.0,89.56299999999999,1997.096,0.0,0.24,0.91,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,2870685.0,2817.0,160.477,0.157,4020.0,0.225,0.271,3.7,people tested,35827364.0,15189092.0,14015575.0,7186610.0,19351.0,14068.0,200.28,84.91,78.35,40.17,786.0,691.0,0.004,65.74,17888474.0,66.939,28.1,7.104,4.458,10581.936000000002,3.6,140.44799999999998,5.55,2.0,12.3,80.635,1.5,77.01,0.759,70967.5,42.39,-4.36,3967.219339
803,192242,VUT,Oceania,Vanuatu,2022-07-01,11273.0,7.0,32.714,14.0,0.0,0.0,35848.301,22.26,104.03200000000001,44.52,0.0,0.0,0.69,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,11989.0,2072.0,38.125,0.595,76.0,0.242,0.0132,76.0,people tested,309433.0,172232.0,126591.0,10610.0,145313.0,151.0,98.4,54.77,40.26,3.37,480.0,0.0,0.0,68.06,314464.0,22.662,23.1,4.394,2.62,2921.909,13.2,546.3,12.02,2.8,34.5,25.209,4.0,70.47,0.609,38486.9,10.93,1.96,1134.110282
804,40521,COK,Oceania,Cook Islands,2022-07-01,5774.0,0.0,0.857,1.0,0.0,0.0,328590.94,0.0,48.778999999999996,56.909,0.0,0.0,0.06,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,395040.0,9497.0,69.832,0.185,639.0,0.113,0.0,4566.4,tests performed,39780.0,15033.0,14685.0,10062.0,1486.0,3.0,226.38,85.55,83.57,57.26,171.0,0.0,0.0,32.41,17572.0,15.405,19.0,3.4019999999999997,2.063,4881.406,37.0,344.094,7.2,1.7,52.3,47.964,2.2,76.25,0.574,180760.5,29.56,2.99,3525.944303
805,121984,MAR,Africa,Morocco,2022-07-01,1220279.0,3370.0,3007.571,16113.0,4.0,2.286,32676.02,90.24,80.535,431.466,0.107,0.061,1.28,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,11738659.0,4632.0,314.332,0.124,6983.0,0.187,0.1107,9.0,people tested,54846507.0,24953895.0,23439316.0,6551009.0,51870.0,6378.0,146.87,66.82,62.76,17.54,171.0,836.0,0.002,58.33,37344787.0,80.08,29.6,6.769,4.209,7485.013000000001,1.0,419.14599999999996,7.14,0.8,47.1,71.18,1.1,76.68,0.6859999999999999,2633.7,21.49,55.05,4193.449258
806,170678,SDN,Africa,Sudan,2022-07-01,62624.0,0.0,10.429,4951.0,0.0,0.0,1394.453,0.0,0.23199999999999998,110.244,0.0,0.0,0.74,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,562941.0,1111.0,12.535,0.052000000000000005,1204.0,0.055999999999999994,0.0083,120.4,tests performed,8179010.0,6651268.0,4536964.0,50234.0,6534.0,26277.0,18.21,14.81,10.1,0.11,585.0,31370.0,0.07,13.89,44909351.0,23.258000000000003,19.7,3.548,2.0340000000000003,4466.5070000000005,0.7,431.38800000000003,15.67,0.3,27.0,23.436999999999998,0.8,65.31,0.51,104463.1,10.09,5.53,2234.733736
807,3453,DZA,Africa,Algeria,2022-07-01,266105.0,18.0,11.429,6875.0,0.0,0.0,5964.255999999999,0.40299999999999997,0.256,154.091,0.0,0.0,1.45,0.0,0.0,,,,,,,230553.0,957.0,5.167000000000001,0.33299999999999996,375.0,0.131,0.4263,2.3,tests performed,15205854.0,8210605.0,6851660.0,514063.0,147230.0,0.0,34.08,18.4,15.36,1.15,0.0,13231.0,0.03,47.22,44616626.0,17.348,29.1,6.211,3.8569999999999998,13913.839,0.5,278.36400000000003,6.73,0.7,30.4,83.741,1.9,76.88,0.748,49888.7,26.86,29.47,1118.163888
808,99318,LVA,Europe,Latvia,2022-07-01,836259.0,462.0,482.14300000000003,5860.0,0.0,0.7140000000000001,447931.74299999996,247.465,258.254,3138.836,0.0,0.38299999999999995,1.66,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,7263566.0,2035.0,3890.639,1.09,1888.0,1.011,0.1238,8.1,tests performed,2893861.0,1345920.0,1305625.0,528276.0,75.0,45.0,155.01,72.09,69.93,28.3,24.0,4.0,0.0,11.11,1866934.0,31.212,43.9,19.754,14.136,25063.846,0.7,350.06,4.91,25.6,51.0,49.839,5.57,75.29,0.866,8297.0,12.2,2.87,4444.184958
809,180638,TTO,North America,Trinidad and Tobago,2022-07-01,167300.0,203.0,103.429,4012.0,1.0,2.1430000000000002,119212.69699999999,144.651,73.7,2858.825,0.713,1.527,0.84,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,768404.0,1900.0,547.54,1.354,739.0,0.527,0.222,4.5,people tested,1574287.0,751282.0,714123.0,166363.0,752.0,473.0,112.18,53.53,50.89,11.85,337.0,37.0,0.003,11.11,1403374.0,266.88599999999997,36.2,10.014,5.819,28763.071,49.2,228.467,10.97,11.8,44.4,89.443,3.0,73.51,0.7959999999999999,97687.9,8.02,19.55,1396.5221060000001
810,101806,LBR,Africa,Liberia,2022-07-01,7497.0,0.0,0.5710000000000001,294.0,0.0,0.0,1447.239,0.0,0.11,56.754,0.0,0.0,0.16,1.0,0.536,294.0,157.477,10.0,5.282,90.0,48.066,139824.0,553.0,26.991999999999997,0.256,234.0,0.10800000000000001,0.1172,8.5,tests performed,2716330.0,2458813.0,2129565.0,1912.0,8242.0,89696.0,52.44,47.47,41.11,0.04,17315.0,101042.0,1.9509999999999998,48.15,5180208.0,49.126999999999995,19.2,3.057,1.756,752.788,38.6,272.509,2.42,1.5,18.1,1.188,0.8,64.1,0.48,15149.6,30.18,57.47,2238.035464
811,149568,RWA,Africa,Rwanda,2022-07-01,131084.0,63.0,47.857,1460.0,0.0,0.14300000000000002,9873.373,4.745,3.605,109.969,0.0,0.011000000000000001,1.41,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,5534918.0,3839.0,416.895,0.289,4661.0,0.35100000000000003,0.008,125.7,samples tested,22715578.0,9112973.0,8657341.0,4945264.0,211071.0,49126.0,171.1,68.64,65.21,37.25,3700.0,5206.0,0.039,66.67,13276517.0,494.869,20.3,2.9739999999999998,1.642,1854.211,56.0,191.375,4.28,4.7,21.0,4.617,8.05,69.02,0.5429999999999999,1217716.1,29.72,2.89,8345.55017
812,41372,CRI,North America,Costa Rica,2022-07-01,904934.0,0.0,0.0,8525.0,0.0,0.0,176089.641,0.0,0.0,1658.866,0.0,0.0,0.0,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,3677525.0,8616.0,715.6039999999999,1.6769999999999998,11820.0,2.3,0.17600000000000002,5.7,people tested,11017624.0,4437629.0,4143017.0,2299181.0,1486.0,17890.0,214.39,86.35,80.62,44.74,3481.0,1031.0,0.02,11.11,5139053.0,96.079,33.6,9.468,5.694,15524.995,1.3,137.97299999999998,8.78,6.4,17.4,83.84100000000001,1.13,80.28,0.81,5946.8,11.58,-1.44,1157.17818
813,150234,SHN,Africa,Saint Helena,2022-07-01,4.0,0.0,0.0,1460.0,0.0,0.14300000000000002,656.2760000000001,0.0,0.0,109.969,0.0,0.011000000000000001,1.44,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,5534918.0,3839.0,416.895,0.289,4661.0,0.35100000000000003,0.008,125.7,samples tested,7892.0,4361.0,3531.0,4945264.0,211071.0,97.0,129.48,71.55,57.93,37.25,15915.0,0.0,0.0,66.67,6095.0,494.869,20.3,2.9739999999999998,1.642,1854.211,56.0,191.375,4.28,4.7,21.0,4.617,8.05,80.56,0.5429999999999999,1217716.1,29.72,2.89,8345.55017
814,148725,RUS,Europe,Russia,2022-07-01,18164348.0,3110.0,2905.857,373456.0,52.0,54.428999999999995,124488.35800000001,21.314,19.915,2559.46,0.35600000000000004,0.373,0.98,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7499.0,51.394,295244836.0,331438.0,2023.444,2.271,139842.0,0.958,0.0283,35.3,tests performed,168942751.0,81792489.0,74673362.0,14715637.0,4116.0,96532.0,115.78,56.06,51.18,10.09,662.0,28807.0,0.02,25.93,145912022.0,8.823,39.6,14.177999999999999,9.392999999999999,24765.953999999998,0.1,431.29699999999997,6.18,23.4,58.3,78.46300000000001,8.05,72.58,0.8240000000000001,1217716.1,29.72,2.89,8345.55017
815,151066,KNA,North America,Saint Kitts and Nevis,2022-07-01,6102.0,37.0,23.0,43.0,0.0,0.0,113958.09199999999,690.995,429.537,803.048,0.0,0.0,2.25,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,94440.0,87.0,1763.717,1.625,609.0,11.373,0.0119,84.1,people tested,60467.0,31162.0,26294.0,3011.0,626.0,18.0,112.93,58.2,49.11,5.62,336.0,9.0,0.017,66.67,53546.0,212.865,20.3,2.9739999999999998,1.642,24654.385,56.0,191.375,12.84,4.7,21.0,4.617,2.3,76.23,0.779,12.2,3.33,8.11,227.8414821
816,72189,GRD,North America,Grenada,2022-07-01,18376.0,19.0,19.0,232.0,0.0,0.0,162597.885,168.11900000000003,168.11900000000003,2052.825,0.0,0.0,1.31,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,169195.0,527.0,1497.102,4.663,206.0,1.8230000000000002,0.1172,8.5,tests performed,89147.0,43772.0,38565.0,6810.0,67.0,11.0,78.88,38.73,34.12,6.03,97.0,4.0,0.004,31.48,113015.0,317.132,29.4,7.303999999999999,5.021,13593.877,1.5,243.96400000000003,10.71,35.3,52.0,41.047,3.7,72.4,0.779,-82.9,-6.6,-55.8,-1457.761834
817,198005,ZMB,Africa,Zambia,2022-07-01,325857.0,0.0,106.714,4006.0,0.0,0.429,17222.288,0.0,5.64,211.726,0.0,0.023,0.99,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,3514038.0,2352.0,185.725,0.124,2122.0,0.11199999999999999,0.0582,17.2,tests performed,7199179.0,3240892.0,4528604.0,33684.0,96082.0,40267.0,38.05,17.13,23.93,0.18,2128.0,8387.0,0.044000000000000004,12.04,18920657.0,22.995,17.7,2.48,1.5419999999999998,3689.2509999999997,57.5,234.49900000000002,3.94,3.1,24.7,13.937999999999999,2.0,63.89,0.584,38486.9,10.93,1.96,1134.110282
818,168944,ESP,Europe,Spain,2022-07-01,12818184.0,84146.0,19480.571,108111.0,205.0,44.571000000000005,274213.844,1800.099,416.73900000000003,2312.772,4.385,0.953,1.51,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,93162168.0,29943.0,1992.9779999999998,0.6409999999999999,43694.0,0.935,0.31,3.2,tests performed,95153556.0,41259173.0,40562786.0,25436397.0,47657.0,11716.0,203.56,88.26,86.77,54.41,251.0,695.0,0.001,29.17,46745211.0,93.105,45.5,19.436,13.799000000000001,34272.36,1.0,99.40299999999999,7.17,27.4,31.4,43.993,2.97,83.56,0.904,104463.1,10.09,5.53,2234.733736
819,40111,COG,Africa,Congo,2022-07-01,24128.0,0.0,0.0,385.0,0.0,0.0,4265.145,0.0,0.0,68.057,0.0,0.0,0.06,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,395040.0,9497.0,69.832,0.185,639.0,0.113,0.0,4566.4,tests performed,831318.0,693902.0,652422.0,12964054.0,1486.0,0.0,14.7,12.27,11.53,25.29,0.0,0.0,0.0,32.41,5657017.0,15.405,19.0,3.4019999999999997,2.063,4881.406,37.0,344.094,7.2,1.7,52.3,47.964,2.2,64.57,0.574,180760.5,29.56,2.99,3525.944303
820,71354,GRL,North America,Greenland,2022-07-01,11971.0,0.0,0.0,21.0,0.0,0.0,210505.02899999998,0.0,0.0,369.276,0.0,0.0,1.4,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,84483362.0,73217.0,8146.314,7.06,95227.0,9.182,0.0827,12.1,samples tested,79745.0,41243.0,38502.0,6138379.0,15.0,2.0,140.23,72.52,67.7,59.19,35.0,1.0,0.002,11.11,56868.0,0.13699999999999998,45.3,20.396,14.524000000000001,24574.382,1.5,199.94099999999997,2.16,35.3,52.0,41.047,4.21,71.7,0.888,-82.9,-6.6,-55.8,-1457.761834
821,118579,MCO,Europe,Monaco,2022-07-01,13047.0,41.0,39.714,58.0,0.0,0.14300000000000002,330136.64,1037.4489999999998,1004.916,1467.611,0.0,3.615,1.31,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,15569464.0,2711.0,119.524,0.674,12754.0,3.1689999999999996,0.2407,4.2,tests performed,65140.0,28875.0,25667.0,10598.0,1079.0,158.0,164.83,73.06,64.95,26.82,3998.0,23.0,0.057999999999999996,17.59,39520.0,19347.5,37.6,10.864,6.955,5189.972,0.2,408.50199999999995,5.46,5.9,44.6,86.979,13.8,86.75,0.75,142.0,12.37,10.24,3593.1174090000004
822,27346,BRN,Asia,Brunei,2022-07-01,164727.0,827.0,733.7139999999999,225.0,0.0,0.0,373080.547,1873.024,1661.747,509.589,0.0,0.0,1.26,22.0,1.859,143.0,12.085,,,760.0,65.335,93192.0,297.0,211.065,0.6729999999999999,121418.0,0.5670000000000001,0.0483,20.7,samples tested,1173118.0,444293.0,426764.0,301719.0,3827.0,1493.0,265.69,100.63,96.66,68.33,3381.0,169.0,0.038,16.67,441532.0,81.347,32.4,4.591,2.3819999999999997,71809.25099999999,3.4,201.285,12.79,2.0,30.9,97.164,2.7,75.86,0.838,-16.8,-0.95,-7.41,-38.04933731
823,124492,NAM,Africa,Namibia,2022-07-01,169203.0,24.0,28.0,4064.0,0.0,0.857,65396.407,9.276,10.822000000000001,1570.723,0.0,0.331,0.55,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1056045.0,778.0,408.158,0.301,772.0,0.298,0.0579,17.3,tests performed,825518.0,496475.0,426681.0,64392.0,3837.0,127.0,31.91,19.19,16.49,2.49,49.0,1243.0,0.048,23.15,2587344.0,3.0780000000000003,22.0,3.552,2.085,9541.808,13.4,243.81099999999998,3.94,9.7,34.2,44.6,0.9,63.71,0.6459999999999999,2633.7,21.49,55.05,4193.449258
824,76083,GNB,Africa,Guinea-Bissau,2022-07-01,8369.0,21.0,3.0,171.0,0.0,0.0,4152.34,10.419,1.4880000000000002,84.84299999999999,0.0,0.0,0.25,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,142948.0,390.0,70.925,0.19399999999999998,231.0,0.115,0.0247,40.4,tests performed,572954.0,529783.0,342218.0,304.0,1658.0,26.0,28.43,26.29,16.98,0.02,13.0,26.0,0.001,49.07,2015490.0,66.191,19.4,3.002,1.565,1548.675,67.1,382.474,2.42,35.3,52.0,6.403,0.3,58.32,0.48,43113.3,25.35,10.04,2362.38969
825,5145,AGO,Africa,Angola,2022-07-01,101320.0,1559.0,222.71400000000003,1900.0,0.0,0.0,2985.83,45.943000000000005,6.563,55.992,0.0,0.0,0.0,0.0,0.0,,,,,,,1618566.0,1459.0,47.698,0.043,1013.0,0.03,0.033,30.3,tests performed,20397115.0,13153694.0,7127231.0,737233.0,1973.0,43342.0,60.11,38.76,21.0,2.17,1277.0,21560.0,0.064,22.22,33933611.0,23.89,16.8,2.405,1.3619999999999999,5819.495,0.5,276.045,3.94,29.0,37.8,26.664,1.9,61.15,0.581,89.6,27.2,31.41,1158.311141
826,20609,BMU,North America,Bermuda,2022-07-01,16162.0,205.0,29.285999999999998,140.0,0.0,0.28600000000000003,260291.181,3301.553,471.65,2254.719,0.0,4.601,0.04,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,41927.0,4992.0,675.24,80.39699999999999,867.0,13.963,0.0872,11.5,samples tested,131612.0,48554.0,47657.0,35401.0,5470.0,6.0,211.96,78.2,76.75,57.01,97.0,5.0,0.008,22.22,62092.0,1308.82,18.8,3.2439999999999998,1.942,50669.315,49.6,139.547,13.0,0.6,12.3,11.035,0.5,82.59,0.545,15.4,2.8,-1.1,248.0190685
827,147839,ROU,Europe,Romania,2022-07-01,2919461.0,0.0,567.714,65739.0,0.0,1.857,152629.43300000002,0.0,29.68,3436.835,0.0,0.09699999999999999,-0.02,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,234.0,42.846000000000004,21260367.0,14144.0,1111.492,4.8260000000000005,75700.0,3.958,0.0565,17.7,tests performed,16827486.0,8175541.0,8114769.0,1688620.0,1208.0,1208.0,87.97,42.74,42.42,57.62,63.0,9930.0,0.052000000000000005,11.11,19127772.0,85.12899999999999,43.0,17.85,11.69,23313.199,5.7,370.94599999999997,9.74,22.9,37.1,78.46300000000001,6.892,76.05,0.828,117243.5,19.06,-5.09,6129.490669
828,18096,BEL,Europe,Belgium,2022-07-01,4246078.0,0.0,4938.143,31918.0,0.0,5.0,365023.735,0.0,424.519,2743.903,0.0,0.43,1.75,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,34315605.0,4743.0,2950.0190000000002,0.408,11433.0,0.983,0.26,3.8,tests performed,25670748.0,9248494.0,9151477.0,7700291.0,2737.0,2809.0,220.68,79.51,78.67,66.2,241.0,78.0,0.001,23.15,11632334.0,375.564,41.8,18.570999999999998,12.849,42658.575999999994,0.2,114.898,4.29,25.1,31.4,88.469,5.64,81.63,0.9309999999999999,21907.9,8.31,-0.77,1883.362359
829,50732,DOM,North America,Dominican Republic,2022-07-01,608176.0,2392.0,1109.4289999999999,4383.0,0.0,0.0,55522.355,218.373,101.28299999999999,400.13800000000003,0.0,0.0,1.41,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,3444251.0,3731.0,314.437,0.341,4839.0,0.442,0.1524,6.6,samples tested,15781887.0,7238300.0,6000224.0,2383017.0,4536.0,3742.0,144.08,66.08,54.78,21.76,342.0,607.0,0.006,5.56,10953714.0,222.873,27.6,6.981,4.419,14600.861,1.6,266.653,8.2,8.5,19.1,55.181999999999995,1.6,74.08,0.7559999999999999,5419.2,6.66,10.66,494.73630589999993
830,168059,SSD,Africa,South Sudan,2022-07-01,17722.0,0.0,3.571,138.0,0.0,0.0,1557.105,0.0,0.314,12.125,0.0,0.0,0.46,59.0,1.15,1725.0,28.73,42.0,0.8190000000000001,413.0,8.05,410280.0,798.0,36.048,0.07,578.0,0.051,0.0131,76.3,tests performed,1226772.0,1164135.0,1122087.0,37830478.0,4158.0,1774.0,10.78,10.23,9.86,73.74,156.0,0.0,0.0,16.67,11381377.0,527.967,19.2,3.4410000000000003,2.032,1569.888,0.2,280.775,10.43,6.2,40.9,43.993,12.27,57.85,0.433,38323.1,5.28,18.0,746.9635037
831,179240,TGO,Africa,Togo,2022-07-01,37448.0,45.0,21.285999999999998,275.0,0.0,0.14300000000000002,4416.9529999999995,5.308,2.511,32.436,0.0,0.017,1.41,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,749695.0,877.0,88.426,0.10300000000000001,377.0,0.044000000000000004,0.0235,42.6,tests performed,3290821.0,2092750.0,1557538.0,87104.0,7881.0,0.0,38.81,24.68,18.37,1.03,0.0,428.0,0.005,37.96,8478242.0,143.366,19.4,2.839,1.525,1429.8129999999999,49.2,280.033,6.15,0.9,14.2,10.475,0.7,61.04,0.515,97687.9,8.02,19.55,1396.5221060000001
832,122819,MOZ,Africa,Mozambique,2022-07-01,228022.0,103.0,70.714,2212.0,0.0,0.0,7089.565,3.202,2.199,68.775,0.0,0.0,1.04,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1341769.0,939.0,41.718,0.028999999999999998,870.0,0.027000000000000003,0.0989,10.1,tests performed,31616078.0,14978771.0,14098645.0,425736.0,295812.0,0.0,98.3,46.57,43.83,1.32,0.0,0.0,0.0,28.7,32163045.0,37.728,17.7,3.158,1.87,1136.103,62.9,329.94199999999995,3.3,5.1,29.1,12.227,0.7,60.85,0.456,2633.7,21.49,55.05,4193.449258
833,178387,TLS,Asia,Timor,2022-07-01,22958.0,1.0,1.286,133.0,0.0,0.0,17083.433999999997,0.7440000000000001,0.9570000000000001,98.96799999999999,0.0,0.0,0.9,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,264839.0,504.0,197.071,0.375,145.0,0.10800000000000001,0.0039,253.9,tests performed,1638158.0,822666.0,694694.0,120798.0,7881.0,4883.0,121.9,61.22,51.69,8.99,3634.0,1291.0,0.096,16.67,1343875.0,87.176,18.0,3.556,1.8969999999999998,6570.102,30.3,335.346,6.86,6.3,78.1,28.178,5.9,69.5,0.606,97687.9,8.02,19.55,1396.5221060000001
834,39269,COM,Africa,Comoros,2022-07-01,8139.0,0.0,0.429,160.0,0.0,0.0,9160.836,0.0,0.48200000000000004,180.088,0.0,0.0,0.08,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,100289.0,9497.0,112.88,0.185,1306.0,1.47,0.0002,4566.4,tests performed,642320.0,341302.0,301218.0,12964054.0,18933.0,0.0,72.3,38.42,33.9,25.29,0.0,0.0,0.0,25.93,888456.0,437.352,20.4,2.963,1.726,1413.89,18.1,261.51599999999996,11.88,4.4,23.6,15.574000000000002,2.2,64.32,0.5539999999999999,180760.5,29.56,2.99,3525.944303
835,73887,GTM,North America,Guatemala,2022-07-01,915321.0,4607.0,3178.571,18572.0,11.0,14.714,50154.937999999995,252.44,174.17,1017.6510000000001,0.603,0.8059999999999999,1.49,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,4067775.0,10381.0,222.893,0.569,10008.0,0.5479999999999999,0.1911,5.2,people tested,17957760.0,8307547.0,6344047.0,3306166.0,36360.0,13942.0,98.4,45.52,34.76,18.12,764.0,1860.0,0.01,37.5,18249868.0,157.834,22.9,4.694,3.016,7423.808000000001,8.7,155.898,10.18,35.3,52.0,76.665,0.6,74.3,0.6629999999999999,43113.3,25.35,10.04,2362.38969
836,53298,SLV,North America,El Salvador,2022-07-01,169646.0,0.0,0.0,4146.0,2.0,1.0,26025.313,0.0,0.0,636.036,0.307,0.153,0.08,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,1921625.0,4675.0,294.796,0.7170000000000001,4668.0,0.716,0.106,9.4,tests performed,10958940.0,4615720.0,4319779.0,2023441.0,46995.0,8256.0,168.12,70.81,66.27,31.04,1267.0,592.0,0.009000000000000001,37.96,6518500.0,307.811,27.6,8.273,5.417000000000001,7292.4580000000005,2.2,167.295,8.87,2.5,18.8,90.65,1.3,73.32,0.6729999999999999,4739.0,16.28,49.24,727.0077472
837,151909,LCA,North America,Saint Lucia,2022-07-01,27049.0,27.0,23.429000000000002,383.0,0.0,0.429,146685.756,146.42,127.052,2076.995,0.0,2.324,0.86,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,208560.0,117.0,1131.013,0.634,145.0,0.7859999999999999,0.1488,6.7,tests performed,121513.0,59602.0,54309.0,7602.0,49.0,17.0,65.9,32.32,29.45,4.12,92.0,6.0,0.003,66.67,184401.0,293.187,34.9,9.721,6.405,12951.839,56.0,204.62,11.62,4.7,21.0,87.20200000000001,1.3,76.2,0.759,12.2,3.33,8.11,227.8414821
838,111272,MDV,Asia,Maldives,2022-07-01,181586.0,0.0,171.71400000000003,305.0,0.0,0.7140000000000001,334031.125,0.0,315.872,561.054,0.0,1.314,0.45,45.0,1.3730000000000002,746.0,22.76,10.0,5.282,1351.0,41.218999999999994,2211113.0,2103.0,4067.387,3.8689999999999998,57.0,0.105,0.0,13.9,samples tested,945036.0,398751.0,384347.0,161938.0,1683.0,68.0,173.84,73.35,70.7,29.79,125.0,3.0,0.001,47.22,543620.0,1454.433,30.6,4.12,2.875,15183.616000000002,0.1,164.905,9.19,2.1,55.0,95.803,1.9,78.92,0.74,160.6,14.41,3.78,295.42695269999996
839,169834,LKA,Asia,Sri Lanka,2022-07-01,664138.0,15.0,12.286,16521.0,0.0,0.0,30894.011000000002,0.698,0.5720000000000001,768.515,0.0,0.0,1.15,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,7691045.0,1111.0,357.76800000000003,0.052000000000000005,1204.0,0.055999999999999994,0.0083,120.4,tests performed,39586599.0,17073712.0,14523208.0,7989679.0,14667.0,1436.0,184.15,79.42,67.56,37.17,67.0,108.0,0.001,28.7,21497306.0,341.955,34.1,10.068999999999999,5.331,11669.077,0.7,197.093,10.68,0.3,27.0,43.993,3.6,76.98,0.782,104463.1,10.09,5.53,2234.733736
840,70513,GRC,Europe,Greece,2022-07-01,3692371.0,15869.0,13839.0,30250.0,18.0,13.714,356037.13,1530.1689999999999,1334.4270000000001,2916.8579999999997,1.736,1.3219999999999998,1.4,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,84483362.0,73217.0,8146.314,7.06,95227.0,9.182,0.0827,12.1,samples tested,21102439.0,7919400.0,7629409.0,6129900.0,5018.0,4005.0,203.48,76.36,73.57,59.11,386.0,119.0,0.001,24.07,10370747.0,83.479,45.3,20.396,14.524000000000001,24574.382,1.5,175.695,4.55,35.3,52.0,41.047,4.21,82.24,0.888,31443.0,10.58,12.88,3031.8934600000002
841,13805,BHS,North America,Bahamas,2022-07-01,35975.0,0.0,23.570999999999998,817.0,0.0,0.14300000000000002,90636.763,0.0,59.387,2058.38,0.0,0.36,0.89,50.0,5.529,874.0,96.649,,,,,241200.0,567.0,607.688,1.429,134.0,0.33799999999999997,0.3486,2.9,tests performed,340866.0,166471.0,157964.0,27866.0,6771.0,189.0,85.88,41.94,39.8,7.02,476.0,34.0,0.009000000000000001,44.44,396914.0,39.497,34.3,8.996,5.2,27717.847,0.7,235.954,13.17,3.1,20.4,83.241,2.9,73.92,0.8140000000000001,43744.8,33.01,2.0,4278.913044
842,193936,VEN,South America,Venezuela,2022-07-01,526454.0,432.0,130.714,5734.0,2.0,1.143,18340.183999999997,15.05,4.553999999999999,199.757,0.07,0.04,1.45,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,11989.0,2072.0,38.125,0.595,76.0,0.242,0.0132,76.0,people tested,37860994.0,22157232.0,14287370.0,651502.0,145313.0,0.0,131.9,77.19,49.77,2.27,0.0,0.0,0.0,13.89,28704947.0,36.253,29.0,6.614,3.915,16745.022,13.2,204.85,6.47,2.8,34.5,25.209,0.8,72.06,0.711,38486.9,10.93,1.96,1134.110282
843,125753,NPL,Asia,Nepal,2022-07-01,979729.0,35.0,34.286,11952.0,0.0,0.0,33015.388,1.179,1.155,402.764,0.0,0.0,1.34,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,6969050.0,5062.0,234.84599999999998,0.171,2745.0,0.09300000000000001,0.006999999999999999,142.9,samples tested,46113867.0,22995709.0,20267818.0,6300646.0,136996.0,108132.0,155.4,77.49,68.3,21.23,3644.0,71173.0,0.24,46.3,29674920.0,204.43,25.0,5.809,3.2119999999999997,2442.804,15.0,260.797,7.26,9.5,37.8,47.782,0.3,70.78,0.602,2633.7,21.49,55.05,4193.449258
844,194830,VNM,Asia,Vietnam,2022-07-01,10747397.0,927.0,737.571,43087.0,0.0,0.429,109478.712,9.443,7.513,438.907,0.0,0.004,0.91,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,85824349.0,56715.0,874.253,0.578,620.0,0.006,0.9523,1.1,people tested,232676319.0,86438964.0,81213942.0,64212970.0,550359.0,552293.0,237.02,88.05,82.73,65.41,5626.0,58527.0,0.06,25.93,98168829.0,308.127,32.6,7.15,4.718,6171.884,2.0,245.465,6.0,1.0,45.9,85.84700000000001,2.6,75.4,0.7040000000000001,38486.9,10.93,1.96,1134.110282
845,110423,MYS,Asia,Malaysia,2022-07-01,4568828.0,2773.0,2352.714,35771.0,6.0,3.714,139394.704,84.604,71.781,1091.371,0.183,0.113,1.1,47.0,1.4340000000000002,699.0,21.326,10.0,5.282,1269.0,38.717,60647556.0,29997.0,1850.354,0.915,36861.0,1.125,0.0555,18.0,people tested,71255559.0,28042033.0,27283010.0,16145598.0,6975.0,5598.0,217.4,85.56,83.24,49.26,171.0,534.0,0.002,47.22,32776195.0,96.25399999999999,29.9,6.292999999999999,3.407,26808.164,0.1,260.942,16.74,1.0,42.4,8.704,1.9,76.16,0.81,1429.6,0.45,30.64,43.61702144
846,120266,MNE,Europe,Montenegro,2022-07-01,240472.0,250.0,195.0,2729.0,0.0,0.7140000000000001,382886.10299999994,398.05699999999996,310.48400000000004,4345.189,0.0,1.137,1.64,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,7408778.0,4118.0,2225.3379999999997,1.237,487.0,0.146,0.4242,2.4,samples tested,675154.0,291544.0,283697.0,99913.0,64.0,39.0,107.5,46.42,45.17,15.91,62.0,10.0,0.002,11.11,628051.0,46.28,39.1,14.762,9.395,16409.288,1.0,387.305,10.08,44.0,47.9,71.18,3.861,76.88,0.8290000000000001,2633.7,21.49,55.05,4193.449258
847,132002,OWID_NAM,Oceania,North America,2022-07-01,103688275.0,230216.0,148260.0,1461010.0,599.0,396.85699999999997,173804.103,385.892,248.516,2448.971,1.004,0.665,1.44,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,5279608.0,11989.0,24.974,0.057,8950.0,0.042,0.0056,180.0,tests performed,1026430490.0,435185808.0,381227124.0,221108532.0,112472.0,271181.0,172.05,72.95,63.9,37.06,455.0,51378.0,0.009000000000000001,40.74,596581283.0,209.588,18.1,2.7510000000000003,1.4469999999999998,5338.454000000001,44.5,181.013,2.42,0.6,10.8,41.949,0.3,73.71,0.539,8148.4,31.97,5.18,1215.747423
848,31609,CMR,Africa,Cameroon,2022-07-01,120068.0,0.0,9.429,1931.0,0.0,0.14300000000000002,4410.331,0.0,0.34600000000000003,70.929,0.0,0.005,0.03,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,2731181.0,3334.0,100.322,0.19699999999999998,608.0,0.022000000000000002,0.0,33.7,tests performed,1838907.0,1559801.0,1216589.0,52011.0,9890.0,92.0,6.75,5.73,4.47,0.19,3.0,76.0,0.0,22.22,27224262.0,50.885,18.8,3.165,1.919,3364.926,23.8,244.66099999999997,7.2,2.0,33.7,2.735,1.3,59.29,0.563,66889.5,26.21,-5.49,9698.83226
849,139215,PSE,Asia,Palestine,2022-07-01,659853.0,0.0,192.857,5660.0,0.0,0.0,126341.916,0.0,36.926,1083.719,0.0,0.0,0.16,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,59627.0,3267.0,3280.8959999999997,0.626,1289.0,0.247,0.1962,5.1,tests performed,3734270.0,2008544.0,1772479.0,331383.0,0.0,182.0,71.5,38.46,33.94,6.34,35.0,77.0,0.001,16.67,5222756.0,778.202,20.4,3.043,1.726,4449.898,1.0,265.91,10.59,7.7,22.7,59.607,4.8,74.05,0.708,1197.4,9.28,58.86,229.2659278
850,59334,OWID_EUN,Africa,European Union,2022-07-01,149484245.0,447995.0,332357.429,1104092.0,487.0,307.286,334274.63399999996,1001.8,743.2130000000001,2468.955,1.089,0.687,0.55,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,5024643.0,4118.0,42.626000000000005,0.035,4906.0,0.042,0.1325,7.5,tests performed,883842276.0,337616734.0,327489949.0,241603129.0,214301.0,142546.0,197.64,75.5,73.23,54.03,319.0,4536.0,0.001,25.0,447189915.0,104.95700000000001,19.8,3.5260000000000002,2.063,1729.9270000000001,26.7,182.63400000000001,7.47,0.4,8.5,7.96,0.3,66.6,0.485,3805.5,9.78,12.82,2871.66802
851,112956,MLT,Europe,Malta,2022-07-01,103836.0,704.0,528.286,744.0,3.0,0.5710000000000001,201193.56699999998,1364.0770000000002,1023.6110000000001,1441.5810000000001,5.813,1.107,1.33,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1950858.0,1892.0,3780.0,3.6660000000000004,1440.0,2.79,0.2334,4.3,tests performed,1317526.0,476921.0,469834.0,405134.0,253.0,323.0,255.29,92.41,91.04,78.5,626.0,17.0,0.003,13.89,516100.0,1454.037,42.4,19.426,11.324000000000002,36513.323,0.2,168.71099999999998,8.83,20.9,30.2,52.232,4.485,82.53,0.895,539.8,5.7,-1.02,1045.921333
852,18930,BLZ,North America,Belize,2022-07-01,64138.0,172.0,157.286,680.0,0.0,0.14300000000000002,158398.676,424.781,388.441,1679.365,0.0,0.353,1.19,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,572900.0,1351.0,1414.865,3.3369999999999997,1012.0,2.499,0.1451,6.9,tests performed,489508.0,247975.0,213197.0,49729.0,5470.0,346.0,120.89,61.24,52.65,12.28,855.0,207.0,0.051,42.59,404915.0,16.426,25.0,3.853,2.279,7824.361999999999,0.2,176.957,17.11,25.1,31.4,90.083,1.3,74.62,0.716,127.6,6.28,51.1,315.1278663
853,84733,OWID_INT,Asia,International,2022-07-01,721.0,0.0,0.0,15.0,0.0,0.0,22055.694,5.189,6.955,567.22,0.033,0.017,1.22,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,59503735.0,103179.0,215.31099999999998,0.373,114413.0,0.414,0.0837,11.9,people tested,417522347.0,201000560.0,168251795.0,48269992.0,0.0,267095.0,151.08,72.73,60.88,17.47,966.0,43565.0,0.016,52.78,276361788.0,145.725,29.3,5.319,3.053,11188.743999999999,5.7,342.86400000000003,6.32,2.8,76.1,64.204,1.04,71.72,0.718,213.9,4.1,13.64,580.0017353999999
854,104350,LTU,Europe,Lithuania,2022-07-01,1161568.0,422.0,307.857,9174.0,1.0,1.429,431831.81899999996,156.885,114.45100000000001,3410.5840000000003,0.37200000000000005,0.531,1.52,1.0,0.536,58.0,21.561999999999998,10.0,5.282,1.0,25.605,8718186.0,136.0,3241.1279999999997,0.051,751.0,0.27899999999999997,0.212,4.7,tests performed,4489082.0,1952421.0,1876697.0,934454.0,145.0,81.0,166.89,72.58,69.77,34.74,30.0,15.0,0.001,11.11,2689862.0,45.135,43.5,19.002,13.777999999999999,29524.265,0.7,342.98900000000003,3.67,21.3,38.0,1.188,6.56,75.93,0.882,19277.5,21.09,-6.35,7166.7245379999995
855,162244,SVK,Europe,Slovakia,2022-07-01,2551116.0,748.0,495.85699999999997,20147.0,0.0,0.7140000000000001,468157.386,137.266,90.995,3697.192,0.0,0.131,1.11,8.0,1.4680000000000002,235.0,43.125,21.0,3.8510000000000004,976.0,178.96400000000003,51238482.0,2231.0,9402.815999999999,0.409,2123.0,0.39,0.133,7.5,tests performed,7076057.0,2822419.0,2768349.0,1653395.0,2675.0,71.0,129.85,51.79,50.8,30.34,13.0,11.0,0.0,11.11,5449270.0,113.12799999999999,41.2,15.07,9.167,30155.152000000002,0.7,287.959,7.29,23.1,37.7,19.275,5.82,77.54,0.86,26567.1,20.98,1.28,4875.350276
856,138363,PLW,Oceania,Palau,2022-07-01,5237.0,17.0,5.143,6.0,0.0,0.0,288158.908,935.4019999999999,282.97900000000004,330.142,0.0,0.0,1.03,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,59627.0,31201.0,3280.8959999999997,0.139,116.0,6.382999999999999,0.0345,29.0,tests performed,273365003.0,137369525.0,127262916.0,26505821.0,943523.0,880651.0,121.39,61.0,56.51,11.77,3911.0,71679.0,0.032,77.78,18174.0,47.236999999999995,23.5,4.495,2.78,13240.405,4.0,423.031,15.89,7.7,22.7,59.607,4.8,73.7,0.826,4286.8,18.62,-6.95,820.6952745
857,132783,PRK,Asia,North Korea,2022-07-01,1.0,0.0,0.0,6.0,0.0,0.0,0.039,0.0,0.0,0.23199999999999998,0.0,0.0,1.44,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,182968.0,1558.0,7.068,0.06,554.0,0.021,0.0056,180.0,samples tested,1026446944.0,435186771.0,381228305.0,221110296.0,112472.0,271181.0,172.05,72.95,63.9,37.06,455.0,51378.0,0.009000000000000001,40.74,25887045.0,211.701,35.3,9.491,6.138999999999999,5338.454000000001,44.5,321.681,4.0,0.6,10.8,41.949,13.2,72.27,0.539,8148.4,31.97,5.18,1215.747423
858,91649,JPN,Asia,Japan,2022-07-01,9340079.0,23125.0,18496.0,31298.0,21.0,27.714000000000002,74097.739,183.458,146.734,248.297,0.16699999999999998,0.22,1.3,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,53504941.0,138240.0,424.471,1.097,94925.0,0.753,0.1483,6.7,people tested,285339585.0,103743241.0,102362240.0,79234104.0,203541.0,137224.0,226.37,82.3,81.21,62.86,1089.0,3693.0,0.003,39.81,126050796.0,347.778,48.2,27.049,18.493,39002.223,2.0,79.37,5.72,11.2,33.7,66.425,13.05,84.63,0.919,9539.4,0.29,8.92,75.67901436
859,157557,SEN,Africa,Senegal,2022-07-01,86335.0,10.0,9.857000000000001,1968.0,0.0,0.0,5020.554,0.5820000000000001,0.573,114.443,0.0,0.0,1.38,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,1102099.0,814.0,64.089,0.047,752.0,0.044000000000000004,0.0034,292.5,tests performed,2523856.0,2300648.0,1070503.0,7027.0,7129.0,0.0,14.68,13.38,6.23,0.04,0.0,59633.0,0.34700000000000003,26.85,17196308.0,82.32799999999999,18.7,3.008,1.796,2470.58,38.0,241.21900000000002,2.42,0.4,16.6,20.859,2.7,67.94,0.512,133.0,21.63,-19.49,3910.614525
860,64521,PYF,Oceania,French Polynesia,2022-07-01,73268.0,0.0,4.857,649.0,0.0,0.0,259324.54100000003,0.0,17.191,2297.069,0.0,0.0,1.42,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,278234000.0,179427.0,4126.754,2.661,201691.0,2.991,0.22699999999999998,4.4,people tested,453259.0,188352.0,180807.0,84100.0,405.0,125.0,160.43,66.67,63.99,29.77,442.0,125.0,0.044000000000000004,23.15,282534.0,77.324,32.7,7.775,4.593,38605.671,1.4,86.06,22.63,30.1,35.6,7.96,5.98,77.66,0.9009999999999999,546.2,16.03,-9.97,1933.2186570000001
861,9461,ABW,North America,Aruba,2022-07-01,40718.0,0.0,77.0,221.0,0.0,0.0,379849.80600000004,0.0,718.317,2061.663,0.0,0.0,-0.01,372.0,8.157,,,,,,,793.0,428.0,7.398,3.9930000000000003,1467.0,0.494,0.003,333.3,tests performed,172049.0,89190.0,82859.0,40725.0,29.0,14.0,160.5,83.2,77.3,1.37,131.0,5.0,0.005,25.93,107195.0,584.8,41.2,13.085,7.452000000000001,35973.781,1.8,341.01,11.62,1.5,52.1,94.04299999999999,4.2,76.29,0.7759999999999999,352.2,26.0,11.85,3285.6010079999996
862,188241,USA,North America,United States,2022-07-01,87821971.0,194485.0,119644.14300000001,1017817.0,540.0,318.42900000000003,263796.92,584.188,359.38300000000004,3057.2870000000003,1.6219999999999999,0.956,1.13,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,912521698.0,406474.0,2741.0040000000004,1.2209999999999999,502550.0,1.51,0.138,7.2,tests performed,596233489.0,259957415.0,222271398.0,123531432.0,19802.0,163157.0,179.58,78.3,66.95,37.21,491.0,41714.0,0.013000000000000001,38.89,332915074.0,35.608000000000004,38.3,15.413,9.732000000000001,54225.445999999996,1.2,151.089,10.79,19.1,24.6,21.221999999999998,2.77,78.86,0.9259999999999999,1105051.9,16.45,-3.34,3319.320711
863,173267,CHE,Europe,Switzerland,2022-07-01,3759730.0,33115.0,4730.714,13832.0,1.0,1.429,431384.612,3799.555,542.794,1587.059,0.115,0.16399999999999998,1.16,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,21277734.0,9789.0,2441.369,1.123,9093.0,1.043,0.40700000000000003,2.5,tests performed,15759752.0,6087852.0,6002672.0,3781389.0,1091.0,1605.0,180.82,69.85,68.87,43.39,184.0,82.0,0.001,11.11,8715494.0,214.243,43.1,18.436,12.644,57410.166,0.5,99.73899999999999,5.59,22.6,28.9,67.779,4.53,83.78,0.955,11808.7,7.09,-9.86,1354.9088550000001
864,197166,YEM,Asia,Yemen,2022-07-01,11824.0,0.0,0.0,2149.0,0.0,0.0,387.791,0.0,0.0,70.48100000000001,0.0,0.0,0.01,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,336937.0,56715.0,11.050999999999998,0.578,84.0,0.003,0.0,587.4,tests performed,864544.0,697956.0,446120.0,80.0,7669290.0,442.0,2.84,2.29,1.46,0.0,14.0,416.0,0.001,25.93,30490639.0,53.508,20.3,2.9219999999999997,1.5830000000000002,1479.1470000000002,18.8,495.00300000000004,5.35,7.6,29.2,49.542,0.7,66.12,0.47,38486.9,10.93,1.96,1134.110282
865,114588,MRT,Africa,Mauritania,2022-07-01,59970.0,156.0,81.286,983.0,0.0,0.14300000000000002,12558.873,32.669000000000004,17.023,205.859,0.0,0.03,2.86,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,998154.0,1362.0,209.033,0.285,735.0,0.154,0.0142,70.5,tests performed,2872677.0,1927038.0,1334032.0,216491.0,3777.0,3183.0,60.16,40.36,27.94,4.53,667.0,167.0,0.003,43.52,4775110.0,4.289,20.3,3.138,1.7919999999999998,3597.633,6.0,232.347,2.42,20.9,30.2,15.95,2.7,64.92,0.546,539.8,5.7,-1.02,1045.921333
866,35026,CAF,Africa,Central African Republic,2022-07-01,14649.0,0.0,0.0,113.0,0.0,0.0,2977.447,0.0,0.0,22.968000000000004,0.0,0.0,0.0,220.0,5.779,3505.0,92.072,,,760.0,65.335,94759.0,2691.0,19.26,40.467,142.0,0.028999999999999998,0.0,1.8,tests performed,1217399.0,1124848.0,1068464.0,23536.0,12887.0,1694.0,24.74,22.86,21.72,35.39,344.0,1694.0,0.034,18.52,4919987.0,7.479,18.3,3.655,2.251,661.24,0.5,435.727,6.1,2.1,16.5,16.602999999999998,1.0,53.28,0.397,188.6,6.81,13.94,335.6463149
867,175798,TJK,Asia,Tajikistan,2022-07-01,17786.0,0.0,0.0,125.0,0.0,0.0,1824.275,0.0,0.0,12.821,0.0,0.0,-0.0,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,13021521.0,64492.0,545.861,2.7030000000000003,66864.0,2.803,0.7838,1.3,people tested,13782905.0,5220731.0,5034819.0,3527355.0,113265.0,36536.0,141.37,53.55,51.64,36.18,3747.0,882.0,0.009000000000000001,8.33,9749625.0,64.281,23.3,3.466,2.155,2896.913,4.8,427.69800000000004,7.11,22.6,28.9,72.704,4.8,71.1,0.6679999999999999,9879.4,30.17,0.38,1013.3107679999999
868,93817,KAZ,Asia,Kazakhstan,2022-07-01,1396044.0,195.0,101.0,19018.0,0.0,0.0,73495.503,10.265999999999998,5.317,1001.2130000000001,0.0,0.0,1.84,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,11965068.0,52729.0,629.908,2.7760000000000002,39955.0,2.103,0.03,33.4,tests performed,20918681.0,9524896.0,9308744.0,2514071.0,12492.0,10734.0,110.13,50.14,49.01,13.24,565.0,524.0,0.003,11.11,18994958.0,6.681,30.6,6.9910000000000005,4.625,24055.588,0.1,466.792,7.11,7.0,43.1,98.999,6.7,73.6,0.825,83124.6,26.77,-14.32,4376.140237
869,140900,PNG,Oceania,Papua New Guinea,2022-07-01,44725.0,8.0,3.286,662.0,0.0,0.0,4904.592000000001,0.877,0.36,72.596,0.0,0.0,0.76,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,249149.0,7609.0,27.322,1.7369999999999999,8930.0,2.0380000000000003,0.1835,5.5,people tested,615156.0,337243.0,277913.0,1764414.0,5925.0,618.0,6.75,3.7,3.05,40.27,68.0,306.0,0.003,34.26,9119005.0,18.22,22.6,3.8080000000000003,2.142,3823.1940000000004,2.2,561.494,17.65,23.5,48.8,59.607,2.3,64.5,0.555,7503.4,19.42,-1.22,1712.4861039999998
870,23130,BES,North America,Bonaire Sint Eustatius and Saba,2022-07-01,10405.0,0.0,12.142999999999999,37.0,0.0,0.0,393458.12100000004,0.0,459.17400000000004,1399.13,0.0,0.0,1.5,22.0,1.859,143.0,12.085,,,760.0,65.335,4440371.0,6982.0,375.255,0.59,6277.0,0.53,0.0726,13.8,tests performed,35845.0,19109.0,16736.0,1657937.0,9396.0,196.0,135.55,72.26,63.29,14.01,7412.0,92.0,0.348,23.15,26445.0,10.202,25.4,6.704,4.393,6885.829000000001,7.1,204.299,6.89,0.6,12.3,25.383000000000003,1.1,77.79,0.718,57352.5,51.82,43.99,4846.852886
871,25669,BRA,South America,Brazil,2022-07-01,32434063.0,76045.0,58699.570999999996,671700.0,284.0,210.143,151565.687,355.361,274.305,3138.881,1.327,0.982,1.41,22.0,1.859,143.0,12.085,,,760.0,65.335,70923215.0,126242.0,331.42699999999996,0.59,121418.0,0.5670000000000001,0.0483,20.7,tests performed,455499598.0,184737131.0,169070566.0,107015873.0,645419.0,551171.0,212.86,86.33,79.01,50.01,2576.0,26314.0,0.012,39.81,213993441.0,25.04,33.5,8.552,5.06,14103.452,3.4,177.96099999999998,8.11,10.1,17.9,97.164,2.2,75.88,0.765,781197.4,23.53,5.87,3650.567028
872,156699,SAU,Asia,Saudi Arabia,2022-07-01,795811.0,625.0,1073.857,9209.0,1.0,2.1430000000000002,22518.271,17.685,30.386,260.578,0.027999999999999997,0.061,1.14,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,43251385.0,28668.0,1223.8410000000001,0.8109999999999999,29372.0,0.831,0.0347,28.9,tests performed,66700629.0,26713922.0,25082132.0,10793985.0,113359.0,47889.0,188.74,75.59,70.97,30.54,1355.0,6276.0,0.018000000000000002,11.11,35340680.0,15.322000000000001,31.9,3.295,1.845,49045.41099999999,32.3,259.538,17.72,1.8,25.4,41.34,2.7,75.13,0.8540000000000001,133.0,21.63,-19.49,3910.614525
873,30758,KHM,Asia,Cambodia,2022-07-01,136282.0,3.0,2.8569999999999998,3056.0,0.0,0.0,8041.922,0.177,0.16899999999999998,180.333,0.0,0.0,1.17,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,2977609.0,3334.0,175.707,0.19699999999999998,566.0,0.033,0.0,1772.7,tests performed,40956960.0,15078410.0,14377340.0,9435373.0,61376.0,35026.0,241.68,88.98,84.84,55.68,2067.0,1468.0,0.009000000000000001,16.67,16946446.0,90.67200000000001,25.6,4.412,2.385,3645.07,71.7,270.892,4.0,2.0,33.7,66.229,0.8,69.82,0.594,66889.5,26.21,-5.49,9698.83226
874,22306,BOL,South America,Bolivia,2022-07-01,928450.0,1732.0,1244.714,21955.0,2.0,0.429,78463.198,146.371,105.191,1855.414,0.16899999999999998,0.036000000000000004,1.51,22.0,1.859,143.0,12.085,,,760.0,65.335,4440371.0,6982.0,375.255,0.59,6277.0,0.53,0.0726,13.8,tests performed,13892966.0,7229825.0,6003856.0,1657937.0,9396.0,7883.0,117.41,61.1,50.74,14.01,666.0,1303.0,0.011000000000000001,23.15,11832936.0,10.202,25.4,6.704,4.393,6885.829000000001,7.1,204.299,6.89,0.6,12.3,25.383000000000003,1.1,71.51,0.718,57352.5,51.82,43.99,4846.852886
875,106970,LUX,Europe,Luxembourg,2022-07-01,264571.0,1184.0,872.0,1094.0,0.0,0.857,416769.321,1865.1129999999998,1373.631,1723.339,0.0,1.35,1.57,3.0,4.726,15.0,23.629,10.0,5.282,1.0,1.575,4299901.0,2293.0,6773.482,3.612,1630.0,2.568,0.376,2.7,tests performed,1304627.0,481347.0,462338.0,390786.0,378.0,242.0,205.51,75.82,72.83,61.56,381.0,12.0,0.002,19.44,634814.0,231.447,39.7,14.312000000000001,9.842,94277.965,0.2,128.275,4.42,20.9,26.0,1.188,4.51,82.25,0.9159999999999999,-48.9,-0.46,7.27,-77.03043726
876,117722,MDA,Europe,Moldova,2022-07-01,520321.0,153.0,88.286,11567.0,0.0,0.5710000000000001,129303.62,38.022,21.94,2874.485,0.0,0.142,0.57,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,15569464.0,2711.0,119.524,0.674,12754.0,3.1689999999999996,0.2407,4.2,tests performed,2165600.0,1083286.0,1063425.0,82869.0,1079.0,583.0,53.82,26.92,26.43,2.06,145.0,316.0,0.008,0.0,4024025.0,123.655,37.6,10.864,6.955,5189.972,0.2,408.50199999999995,5.72,5.9,44.6,86.979,5.8,71.9,0.75,15702.0,22.3,14.29,3902.063233
877,65364,GAB,Africa,Gabon,2022-07-01,47939.0,115.0,16.429000000000002,305.0,0.0,0.0,21036.682,50.465,7.209,133.841,0.0,0.0,0.1,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,1599902.0,2256.0,702.072,0.99,114.0,0.05,0.0389,25.7,tests performed,567575.0,308857.0,256337.0,2381.0,1486.0,34.0,24.91,13.55,11.25,0.1,15.0,16.0,0.001,11.11,2278829.0,7.859,23.1,4.45,2.9760000000000004,16562.413,3.4,259.967,7.2,30.1,35.6,7.96,6.3,66.47,0.703,546.2,16.03,-9.97,1933.2186570000001
878,83854,IDN,Asia,Indonesia,2022-07-01,6090509.0,2049.0,1945.0,156740.0,3.0,4.143,22038.173,7.414,7.037999999999999,567.155,0.011000000000000001,0.015,1.22,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,59503735.0,103179.0,215.31099999999998,0.373,114413.0,0.414,0.0837,11.9,people tested,417522347.0,201000560.0,168251795.0,48269992.0,0.0,267095.0,151.08,72.73,60.88,17.47,966.0,43565.0,0.016,52.78,276361788.0,145.725,29.3,5.319,3.053,11188.743999999999,5.7,342.86400000000003,6.32,2.8,76.1,64.204,1.04,71.72,0.718,213.9,4.1,13.64,580.0017353999999
879,130841,NGA,Africa,Nigeria,2022-07-01,257290.0,0.0,82.714,3144.0,0.0,0.0,1217.073,0.0,0.391,14.872,0.0,0.0,1.43,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,5279608.0,11989.0,24.974,0.057,8950.0,0.042,0.0056,180.0,tests performed,50619238.0,28340766.0,20986761.0,1171892.0,186047.0,301975.0,23.94,13.41,9.93,0.55,1428.0,67082.0,0.032,40.74,211400704.0,209.588,18.1,2.7510000000000003,1.4469999999999998,5338.454000000001,44.5,181.013,2.42,0.6,10.8,41.949,0.3,54.69,0.539,8148.4,31.97,5.18,1215.747423
880,8617,ARM,Asia,Armenia,2022-07-01,423243.0,0.0,19.857,8629.0,0.0,0.0,142595.939,0.0,6.69,2907.22,0.0,0.0,-0.01,372.0,8.157,,,,,,,3102267.0,1467.0,1045.193,0.494,1467.0,0.494,0.003,333.3,tests performed,2150112.0,1129669.0,985807.0,40725.0,13751.0,126.0,72.44,38.06,33.21,1.37,42.0,24.0,0.001,39.81,2968128.0,102.931,35.7,11.232000000000001,7.571000000000001,8787.58,1.8,341.01,7.11,1.5,52.1,94.04299999999999,4.2,75.09,0.7759999999999999,21748.4,36.89,0.44,7327.31203
881,92973,JOR,Asia,Jordan,2022-07-01,1699197.0,0.0,125.85700000000001,14068.0,0.0,0.0,165468.24,0.0,12.255999999999998,1369.945,0.0,0.0,0.04,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,16803235.0,42668.0,1636.3029999999999,4.155,2541.0,0.247,0.0171,58.3,tests performed,10007983.0,4805507.0,4538702.0,667902.0,16423.0,2346.0,97.46,46.8,44.2,6.5,228.0,1556.0,0.015,20.37,10269022.0,109.285,23.2,3.81,2.3609999999999998,8337.49,0.1,208.257,11.75,11.2,33.7,66.425,1.4,74.53,0.7290000000000001,4569.1,16.03,25.33,444.94013160000003
882,140063,PAN,North America,Panama,2022-07-01,922990.0,1626.0,1520.286,8368.0,4.0,4.0,210652.178,371.099,346.972,1909.8120000000001,0.9129999999999999,0.9129999999999999,0.79,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,6499239.0,7609.0,1483.308,1.7369999999999999,8930.0,2.0380000000000003,0.1835,5.5,tests performed,8366229.0,3484500.0,3117315.0,1764414.0,5925.0,1071.0,190.94,79.53,71.15,40.27,244.0,243.0,0.006,28.7,4381583.0,55.133,29.7,7.917999999999999,5.03,22267.037,2.2,128.346,8.33,2.4,9.9,59.607,2.3,78.51,0.815,7503.4,19.42,-1.22,1712.4861039999998
883,58440,OWID_EUR,Africa,Europe,2022-07-01,206075941.0,477847.0,364810.429,1857776.0,656.0,449.714,275148.36600000004,638.012,487.087,2480.464,0.8759999999999999,0.6,0.55,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,5024643.0,4118.0,42.626000000000005,0.035,4906.0,0.042,0.1325,7.5,tests performed,1296089013.0,515113616.0,492901639.0,307908479.0,248750.0,239134.0,173.05,68.78,65.81,41.11,319.0,33442.0,0.004,25.0,748962983.0,104.95700000000001,19.8,3.5260000000000002,2.063,1729.9270000000001,26.7,182.63400000000001,7.47,0.4,8.5,7.96,0.3,66.6,0.485,3805.5,9.78,12.82,2871.66802
884,163128,SVN,Europe,Slovenia,2022-07-01,1039632.0,916.0,780.0,6652.0,1.0,0.5710000000000001,500130.12799999997,440.655,375.23,3200.042,0.48100000000000004,0.275,1.38,11.0,5.292000000000001,62.0,29.826,7.0,3.319,43.0,20.863000000000003,5336373.0,3998.0,2567.14,1.923,3172.0,1.526,0.128,7.8,tests performed,2996484.0,1265791.0,1222201.0,657833.0,108.0,88.0,144.15,60.89,58.8,31.65,42.0,5.0,0.0,11.11,2078723.0,102.619,44.5,19.062,12.93,31400.84,0.7,153.493,7.25,20.1,25.0,19.275,4.5,81.32,0.917,5202.5,10.13,-6.54,2502.73846
885,184718,UGA,Africa,Uganda,2022-07-01,167806.0,87.0,72.143,3621.0,0.0,0.429,3560.9809999999998,1.8459999999999999,1.531,76.84100000000001,0.0,0.009000000000000001,0.89,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,2749166.0,10103.0,58.34,0.214,1382.0,0.028999999999999998,0.0646,15.5,tests performed,21756456.0,16226827.0,11144005.0,82919.0,134275.0,37972.0,46.17,34.43,23.65,0.18,806.0,27737.0,0.059000000000000004,28.7,47123533.0,213.75900000000001,16.4,2.168,1.308,1697.707,41.6,213.333,2.5,3.4,16.7,21.221999999999998,0.5,63.37,0.544,20481.6,16.84,40.84,1715.9856710000001
886,44767,CUW,North America,Curacao,2022-07-01,44545.0,105.0,15.0,278.0,0.0,0.0,270303.891,637.151,91.022,1686.934,0.0,0.0,1.2,177.0,9.213,190.0,46.55,82.0,4.268,121.0,29.73,22100.0,2303.0,134.105,13.975,329.0,1.996,0.2193,4.6,tests performed,254202.0,108280.0,99593.0,46329.0,14.0,22.0,154.25,65.71,60.43,28.11,133.0,3.0,0.002,18.52,164796.0,362.644,41.7,16.367,10.068,22669.797000000002,0.7,190.968,11.62,17.1,53.3,85.198,5.2,78.88,0.7829999999999999,53645.6,23.69,2.89,4740.058271
887,163759,SLB,Oceania,Solomon Islands,2022-07-01,21544.0,0.0,0.0,153.0,0.0,0.0,30602.49,0.0,0.0,217.331,0.0,0.0,0.15,11.0,5.292000000000001,62.0,29.826,7.0,3.319,43.0,20.863000000000003,5336373.0,3998.0,2567.14,1.923,3172.0,1.526,0.128,7.8,tests performed,463637.0,283298.0,177996.0,2343.0,108.0,738.0,65.86,40.24,25.28,0.33,1048.0,0.0,0.0,42.59,703995.0,21.840999999999998,20.8,3.5069999999999997,2.043,2205.923,25.1,459.78,18.68,20.1,25.0,35.89,1.4,73.0,0.5670000000000001,5202.5,10.13,-6.54,2502.73846
888,175003,TWN,Asia,Taiwan,2022-07-01,3803049.0,35766.0,38530.571,6772.0,121.0,114.714,159423.506,1499.308,1615.1979999999999,283.882,5.072,4.809,0.84,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,13021521.0,64492.0,545.861,2.7030000000000003,66864.0,2.803,0.7838,1.3,people tested,58075099.0,21183085.0,19476719.0,17415295.0,104508.0,87179.0,243.45,88.8,81.65,73.0,3655.0,2749.0,0.012,26.85,23855008.0,214.243,42.2,18.436,8.353,57410.166,0.5,103.95700000000001,5.59,22.6,28.9,70.598,1.5,80.46,0.5670000000000001,-1625.5,-0.37,15.75,-68.14082812
889,23982,BIH,Europe,Bosnia and Herzegovina,2022-07-01,378797.0,81.0,54.857,15806.0,0.0,1.0,116072.241,24.82,16.81,4843.327,0.0,0.306,1.56,22.0,1.859,143.0,12.085,,,760.0,65.335,1499302.0,4188.0,459.421,1.2830000000000001,3502.0,1.073,0.22699999999999998,4.4,tests performed,1924950.0,943394.0,846080.0,120530.0,66884.0,4315.0,58.98,28.91,25.93,3.69,1322.0,954.0,0.028999999999999998,25.93,3263459.0,68.49600000000001,42.5,16.569000000000003,10.710999999999999,11713.895,0.2,329.635,10.08,30.2,47.7,97.164,3.5,77.4,0.78,22134.5,26.94,18.13,6782.527373999999
890,187346,GBR,Europe,United Kingdom,2022-07-01,22822055.0,22033.0,21556.429,180596.0,87.0,70.143,334599.335,323.031,316.04400000000004,2647.759,1.276,1.028,1.39,175.0,2.5660000000000003,10081.0,147.8,241.0,5.156000000000001,9146.0,134.092,503270347.0,245960.0,7378.561,3.6060000000000003,259329.0,3.802,0.0326,30.6,tests performed,149397250.0,53577314.0,50126662.0,39931494.0,38209.0,45267.0,219.03,78.55,73.49,58.54,664.0,4223.0,0.006,11.11,68207114.0,272.89799999999997,40.8,18.517,12.527000000000001,39753.244,0.2,122.137,4.28,20.0,24.7,21.221999999999998,2.54,81.32,0.932,137803.3,9.16,-17.4,2020.3655
891,186460,ARE,Asia,United Arab Emirates,2022-07-01,947588.0,1788.0,1749.0,2317.0,1.0,1.0,94843.37199999999,178.96,175.05599999999998,231.907,0.1,0.1,1.11,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,168522672.0,325016.0,16867.308,32.531,313964.0,31.424,0.0048,208.0,tests performed,24922054.0,9991089.0,9792266.0,5138699.0,6152.0,795.0,249.44,100.0,98.01,51.43,80.0,0.0,0.0,35.19,9991083.0,112.44200000000001,34.0,1.1440000000000001,0.526,67293.483,0.1,317.84,17.26,1.2,37.4,21.221999999999998,1.2,77.97,0.89,179972.2,14.89,1.92,4140.449928
892,46472,CZE,Europe,Czechia,2022-07-01,3935058.0,1300.0,894.429,40321.0,3.0,1.143,366920.467,121.21700000000001,83.4,3759.69,0.28,0.107,1.49,7.0,0.653,208.0,19.395,10.0,0.932,249.0,23.218000000000004,54587458.0,4000.0,5089.952,0.373,3708.0,0.34600000000000003,0.111,9.0,tests performed,17675248.0,6965670.0,6880171.0,4240028.0,2416.0,1126.0,164.81,64.95,64.15,39.54,105.0,75.0,0.001,14.81,10724553.0,137.17600000000002,43.3,19.027,11.58,32605.906000000003,0.7,227.485,6.82,30.5,38.3,85.198,6.63,79.38,0.9,42100.6,15.74,5.93,3925.6274829999998
893,2592,ALB,Europe,Albania,2022-07-01,281470.0,619.0,423.714,3501.0,1.0,0.5710000000000001,97973.013,215.459,147.485,1218.615,0.348,0.19899999999999998,2.03,,,,,,,,,1613870.0,957.0,561.75,0.33299999999999996,375.0,0.131,0.4263,2.3,tests performed,2906126.0,1326545.0,1248781.0,324545.0,2541.0,1035.0,101.16,46.17,43.47,11.3,360.0,154.0,0.005,11.11,2872934.0,104.87100000000001,38.0,13.187999999999999,8.642999999999999,11803.431,1.1,304.195,10.08,7.1,51.2,37.746,2.89,78.57,0.795,16257.3,32.6,-3.38,5658.779492000001
894,21460,BTN,Asia,Bhutan,2022-07-01,59729.0,0.0,7.857,21.0,0.0,0.0,76585.46,0.0,10.075,26.927,0.0,0.0,0.28,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,1711669.0,13010.0,2194.729,16.682000000000002,8392.0,10.76,0.036000000000000004,27.8,samples tested,1910077.0,692909.0,672575.0,544593.0,414.0,45.0,244.91,88.85,86.24,69.83,58.0,5.0,0.001,22.22,779900.0,21.188000000000002,28.6,4.885,2.977,8708.597,1.5,217.06599999999997,9.75,0.6,12.3,79.807,1.7,71.78,0.654,15.4,2.8,-1.1,248.0190685
895,6818,ATG,North America,Antigua and Barbuda,2022-07-01,8656.0,15.0,4.428999999999999,141.0,0.0,0.0,87675.229,151.933,44.856,1428.1660000000002,0.0,0.0,0.84,0.0,0.0,,,,,,,16700.0,1459.0,169.15200000000002,0.043,26.0,0.263,0.0055,181.8,tests performed,126122.0,64091.0,62031.0,2930.0,305.0,14.0,127.75,64.92,62.83,19.37,142.0,5.0,0.005,22.22,98728.0,231.845,32.1,6.933,4.631,21490.943,0.5,191.511,13.17,29.0,37.8,26.664,3.8,77.02,0.778,-61.0,-4.75,-24.71,-617.8591686000001
896,103512,LIE,Europe,Liechtenstein,2022-07-01,17935.0,32.0,17.285999999999998,85.0,0.0,0.0,468839.86,836.5139999999999,451.86699999999996,2221.99,0.0,0.0,1.37,1.0,0.536,294.0,157.477,10.0,5.282,1.0,25.605,90632.0,248.0,2369.216,6.483,220.0,5.751,0.344,2.9,tests performed,70780.0,26744.0,26429.0,18624.0,0.0,7.0,185.03,69.91,69.09,48.69,183.0,0.0,0.0,14.81,38254.0,237.012,29.0,4.4239999999999995,2.8160000000000003,17881.509,38.6,341.86199999999997,7.77,1.5,18.1,1.188,2.397,82.49,0.919,46.6,8.62,10.62,1218.1732630000001
897,89022,ISR,Asia,Israel,2022-07-01,4360719.0,7686.0,10656.571000000002,10958.0,0.0,5.2860000000000005,469348.725,827.252,1146.978,1179.421,0.0,0.569,1.2,62.0,6.672999999999999,1329.0,143.042,45.0,4.843,1414.0,152.19,51780014.0,30887.0,5573.137,3.324,26227.0,2.823,0.33299999999999996,3.0,people tested,18188350.0,6712496.0,6145371.0,5330483.0,179.0,1125.0,195.76,72.25,66.14,57.37,121.0,66.0,0.001,14.81,9291000.0,402.606,30.6,11.732999999999999,7.359,33132.32,0.5,93.32,6.74,15.4,35.4,94.57600000000001,2.99,82.97,0.919,10022.5,8.92,-9.47,1078.7321060000002
898,136323,OWID_OCE,Europe,Oceania,2022-07-01,9870479.0,37218.0,38102.143,14203.0,75.0,60.0,228377.823,861.13,881.587,328.621,1.735,1.3880000000000001,1.06,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,11154564.0,1943.0,2040.856,0.355,1723.0,0.315,0.322,3.1,people tested,73946544.0,28980760.0,27760676.0,17078311.0,17603.0,10559.0,171.09,67.05,64.23,39.51,244.0,1169.0,0.003,11.11,43219954.0,14.462,39.7,16.820999999999998,10.812999999999999,64800.057,0.2,114.316,5.31,19.6,20.7,41.949,3.6,82.4,0.9570000000000001,2521.4,2.52,5.9,461.31927360000003
899,61009,FLK,South America,Falkland Islands,2022-07-01,1815.0,0.0,1.143,28.0,0.0,0.0,514455.782,0.0,323.939,570.811,0.0,0.0,0.55,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,777845.0,391.0,15857.236,7.971,539.0,10.988,0.6621,1.5,people tested,4407.0,2632.0,1775.0,21284.0,42.0,12.0,124.91,74.6,50.31,43.39,3401.0,4.0,0.113,11.11,3528.0,35.308,19.8,3.5260000000000002,2.063,1729.9270000000001,26.7,182.63400000000001,7.47,0.4,8.5,7.96,0.3,81.44,0.485,-38.6,-3.8,10.79,-786.903961
900,15516,BGD,Asia,Bangladesh,2022-07-01,1975682.0,1893.0,1924.1429999999998,29154.0,5.0,2.714,11879.979,11.383,11.57,175.30599999999998,0.03,0.016,1.43,50.0,5.529,874.0,96.649,,,,,13820904.0,8536.0,83.10700000000001,0.051,2366.0,0.013999999999999999,0.2761,3.6,tests performed,277499188.0,129343045.0,119422697.0,29061179.0,252703.0,207806.0,166.86,77.78,71.81,17.47,1250.0,47165.0,0.027999999999999997,34.26,166303494.0,1265.036,27.5,5.098,3.262,3523.9840000000004,14.8,298.003,8.38,1.0,44.7,34.808,0.8,72.59,0.632,43744.8,33.01,2.0,4278.913044
901,61896,FJI,Oceania,Fiji,2022-07-01,65713.0,0.0,35.429,866.0,0.0,0.14300000000000002,72780.012,0.0,39.239000000000004,959.133,0.0,0.158,1.68,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,558519.0,567.0,618.5840000000001,0.628,765.0,0.847,0.6621,1.5,tests performed,1609748.0,706496.0,635168.0,141572.0,28295.0,62.0,178.29,78.25,70.35,15.68,69.0,26.0,0.003,57.41,902899.0,49.562,28.6,6.224,3.284,8702.975,1.4,412.82,14.49,10.2,34.8,7.96,2.3,67.44,0.743,-38.6,-3.8,10.79,-786.903961
902,33340,CPV,Africa,Cape Verde,2022-07-01,60770.0,228.0,215.0,405.0,0.0,0.28600000000000003,108150.724,405.765,382.63,720.768,0.0,0.508,1.4,220.0,5.779,3505.0,92.072,,,760.0,65.335,62177630.0,904.0,1633.3339999999998,1.609,324.0,0.5770000000000001,0.1168,8.6,tests performed,773810.0,355377.0,307526.0,183.0,4461.0,404.0,137.71,63.25,54.73,0.03,719.0,5.0,0.001,19.44,561901.0,135.58,25.7,4.46,3.437,6222.554,0.5,182.21900000000002,2.42,2.1,16.5,2.735,2.1,72.98,0.665,188.6,6.81,13.94,335.6463149
903,4308,AND,Europe,Andorra,2022-07-01,44177.0,403.0,57.571000000000005,153.0,0.0,0.0,571101.688,5209.815,744.2589999999999,1977.92,0.0,0.0,0.39,0.0,0.0,,,,,,,300307.0,957.0,3882.243,0.33299999999999996,91.0,1.176,0.7049,1.4,tests performed,153383.0,57886.0,53456.0,42041.0,1973.0,15.0,198.29,74.83,69.11,54.35,194.0,0.0,0.0,8.33,77354.0,163.755,29.1,6.211,3.8569999999999998,13913.839,0.5,109.135,7.97,29.0,37.8,83.741,1.9,83.73,0.868,89.6,27.2,31.41,1158.311141
904,160085,SLE,Africa,Sierra Leone,2022-07-01,7697.0,2.0,0.5710000000000001,125.0,0.0,0.0,945.421,0.24600000000000002,0.07,15.354000000000001,0.0,0.0,0.86,7.0,1.0190000000000001,118.0,17.172,9.0,1.669,7292.0,49.975,428517.0,7466.0,52.635,1.087,251.0,0.031,0.0011,877.6,tests performed,3493386.0,2621469.0,1893466.0,12864.0,1928.0,52708.0,42.91,32.2,23.26,0.16,6474.0,33976.0,0.41700000000000004,48.15,8141343.0,104.7,19.1,2.5380000000000003,1.285,1390.3,52.2,325.721,2.42,8.8,41.3,19.275,3.6,54.7,0.452,-110.2,-6.47,3.73,-1114.1441710000001
905,87319,IRL,Europe,Ireland,2022-07-01,1600614.0,13229.0,1889.8570000000002,7499.0,30.0,4.2860000000000005,321221.119,2654.8779999999997,379.26800000000003,1504.9460000000001,6.021,0.86,0.89,31.0,6.221,746.0,149.71200000000002,17.0,3.3960000000000004,708.0,142.02,12347313.0,5553.0,2477.935,1.114,5178.0,1.0390000000000001,0.32,3.1,tests performed,10982589.0,4090983.0,4043163.0,3089212.0,1443.0,1350.0,220.41,82.1,81.14,62.0,271.0,81.0,0.002,11.11,4982904.0,69.874,38.7,13.927999999999999,8.677999999999999,67335.293,0.2,126.459,3.28,23.0,25.7,94.57600000000001,2.96,82.3,0.955,3219.2,4.29,15.34,646.0489706000001
906,174102,SYR,Asia,Syria,2022-07-01,55929.0,2.0,1.286,3150.0,0.0,0.0,3060.2929999999997,0.109,0.07,172.36,0.0,0.0,1.1,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,175957.0,9789.0,9.628,1.123,221.0,0.012,0.0052,193.4,tests performed,4232490.0,2748571.0,1831005.0,28686.0,72289.0,11862.0,23.16,15.04,10.02,0.16,649.0,5373.0,0.028999999999999998,26.85,18275704.0,214.243,21.7,18.436,2.577,57410.166,0.5,376.264,5.59,22.6,28.9,70.598,1.5,72.7,0.5670000000000001,11808.7,7.09,-9.86,1354.9088550000001
907,135431,NOR,Europe,Norway,2022-07-01,1447885.0,615.0,606.857,3337.0,57.0,8.142999999999999,264907.29600000003,112.521,111.03200000000001,610.543,10.429,1.49,1.06,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,11154564.0,1943.0,2040.856,0.355,1723.0,0.315,0.322,3.1,people tested,11413813.0,4342022.0,4047621.0,3024170.0,1869.0,1478.0,208.83,79.44,74.06,55.33,270.0,70.0,0.001,11.11,5465629.0,14.462,39.7,16.820999999999998,10.812999999999999,64800.057,0.2,114.316,5.31,19.6,20.7,41.949,3.6,82.4,0.9570000000000001,2521.4,2.52,5.9,461.31927360000003
908,88156,IMN,Europe,Isle of Man,2022-07-01,36463.0,2642.0,377.42900000000003,108.0,0.0,0.0,426917.223,30933.146,4419.021,1264.489,0.0,0.0,0.89,31.0,6.221,746.0,149.71200000000002,17.0,3.3960000000000004,708.0,142.02,12347313.0,5553.0,2477.935,1.114,5178.0,1.0390000000000001,0.32,3.1,tests performed,189994.0,69560.0,67106.0,53328.0,1.0,4.0,222.45,81.44,78.57,62.44,47.0,0.0,0.0,11.11,85410.0,147.872,38.7,13.927999999999999,8.677999999999999,67335.293,0.2,126.459,3.28,23.0,25.7,94.57600000000001,2.96,81.4,0.955,3219.2,4.29,15.34,646.0489706000001
909,86462,IRQ,Asia,Iraq,2022-07-01,2351614.0,2952.0,2121.429,25242.0,1.0,1.857,57106.630999999994,71.686,51.516999999999996,612.977,0.024,0.045,1.88,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,19002710.0,20703.0,461.462,0.503,11852.0,0.28800000000000003,0.0092,109.2,tests performed,18636865.0,10833447.0,7609777.0,193641.0,16843.0,6803.0,45.26,26.31,18.48,0.47,165.0,3625.0,0.009000000000000001,35.19,41179351.0,88.125,20.0,3.1860000000000004,1.9569999999999999,15663.986,2.5,218.612,8.83,0.8,21.1,94.57600000000001,1.4,70.6,0.674,261045.6,29.95,27.79,3070.085933
910,116873,FSM,Oceania,Micronesia (country),2022-07-01,38.0,0.0,0.0,325793.0,5.0,28.143,326.868,0.0,0.0,2501.055,0.038,0.21600000000000003,1.51,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,15569464.0,1462.0,119.524,0.011000000000000001,12427.0,0.095,0.488,2.0,people tested,209179257.0,88336802.0,79947470.0,53157386.0,157958.0,21292.0,160.58,67.81,61.37,40.81,163.0,4943.0,0.004,17.59,116255.0,150.77700000000002,23.0,4.81,2.392,3299.4640000000004,16.0,454.343,12.02,6.9,21.4,87.84700000000001,1.38,67.88,0.62,663318.5,37.67,-8.77,5092.178684
911,112104,MLI,Africa,Mali,2022-07-01,31169.0,4.0,2.714,737.0,0.0,0.14300000000000002,1494.506,0.192,0.13,35.338,0.0,0.006999999999999999,1.03,45.0,1.3730000000000002,746.0,22.76,10.0,5.282,1351.0,41.218999999999994,708110.0,605.0,33.953,0.028999999999999998,536.0,0.026000000000000002,0.0035,288.6,tests performed,2406986.0,1781525.0,1304066.0,161938.0,1683.0,7053.0,11.54,8.54,6.25,29.79,338.0,6112.0,0.028999999999999998,40.74,20855724.0,15.196,16.4,2.519,1.486,2014.306,0.1,268.024,2.42,1.6,23.0,52.232,0.1,59.31,0.434,160.6,14.41,3.78,295.42695269999996
912,159259,SYC,Africa,Seychelles,2022-07-01,44847.0,178.0,25.429000000000002,167.0,0.0,0.0,453412.19299999997,1799.616,257.08799999999997,1688.404,0.0,0.0,0.9,7.0,1.0190000000000001,118.0,17.172,9.0,1.669,7292.0,49.975,9852899.0,7466.0,1433.869,1.087,6317.0,0.919,0.0594,16.8,people tested,221597.0,84943.0,80726.0,41022.0,1315.0,0.0,224.04,85.88,81.62,41.47,0.0,4.0,0.004,37.04,98910.0,208.354,36.2,8.606,5.586,26382.287,1.1,242.648,10.55,7.1,35.7,97.719,3.6,73.4,0.7959999999999999,-110.2,-6.47,3.73,-1114.1441710000001
913,63677,FRA,Europe,France,2022-07-01,31269545.0,125066.0,99330.714,149654.0,52.0,38.286,463788.45200000005,1854.973,1473.269,2219.661,0.7709999999999999,0.568,1.43,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,278234000.0,179427.0,4126.754,2.661,201691.0,2.991,0.22699999999999998,4.4,people tested,146144674.0,54464925.0,52915542.0,39844447.0,134514.0,76368.0,216.76,80.78,78.48,59.1,1133.0,1200.0,0.002,23.15,67422000.0,122.57799999999999,42.0,19.718,13.079,38605.671,1.4,86.06,4.77,30.1,35.6,7.96,5.98,82.66,0.9009999999999999,88431.4,5.98,-7.05,1311.610454
914,133643,MKD,Europe,North Macedonia,2022-07-01,314211.0,193.0,121.571,9327.0,2.0,0.7140000000000001,150869.969,92.67,58.373000000000005,4478.405,0.96,0.34299999999999997,1.52,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,2074132.0,1124.0,995.905,0.54,792.0,0.38,0.0743,13.5,tests performed,1850145.0,853927.0,837453.0,158765.0,3869.0,21.0,88.84,41.0,40.21,7.62,10.0,4.0,0.0,40.74,2082661.0,82.6,39.1,13.26,8.16,13111.214,5.0,322.688,10.08,0.6,10.8,41.949,4.28,75.8,0.774,16133.6,35.44,22.15,7746.627992000001
915,138046,PAK,Asia,Pakistan,2022-07-01,1536479.0,0.0,428.14300000000003,30395.0,0.0,1.286,6822.733,0.0,1.901,134.969,0.0,0.006,2.01,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,28889568.0,31201.0,128.284,0.139,11780.0,0.052000000000000005,0.0142,70.5,tests performed,270801545.0,137177325.0,126863819.0,24483269.0,633410.0,947217.0,120.25,60.91,56.33,10.87,4206.0,83306.0,0.037000000000000005,77.78,225199929.0,255.57299999999998,23.5,4.495,2.78,5034.708,4.0,423.031,8.35,2.8,36.7,59.607,0.6,67.27,0.557,4286.8,18.62,-6.95,820.6952745
916,121105,MSR,North America,Montserrat,2022-07-01,1018.0,0.0,0.28600000000000003,8.0,0.0,0.0,204376.63100000002,0.0,57.361000000000004,1606.1029999999998,0.0,0.0,1.62,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,7408778.0,4118.0,2225.3379999999997,1.237,487.0,0.146,0.4242,2.4,samples tested,4422.0,2044.0,1868.0,510.0,13.0,3.0,88.78,41.04,37.5,10.24,602.0,3.0,0.06,11.11,4981.0,46.28,39.1,14.762,9.395,16409.288,1.0,387.305,10.08,44.0,47.9,71.18,3.861,74.16,0.8290000000000001,2633.7,21.49,55.05,4193.449258
917,90754,JAM,North America,Jamaica,2022-07-01,142912.0,108.0,107.286,3130.0,2.0,2.571,48062.494000000006,36.321,36.080999999999996,1052.645,0.6729999999999999,0.865,0.93,291.0,4.82,7503.0,124.289,259.0,4.29,2964.0,49.099,1124299.0,2223.0,378.111,0.748,678.0,0.228,0.2164,4.6,samples tested,1458755.0,813432.0,710288.0,42266.0,586.0,473.0,49.06,27.36,23.89,1.42,159.0,262.0,0.009000000000000001,11.11,2973462.0,266.879,31.4,9.684,6.39,8193.571,2.0,206.537,11.28,5.3,28.6,66.425,1.7,74.47,0.7340000000000001,5134.8,14.0,1.16,1726.875945
918,185572,UKR,Europe,Ukraine,2022-07-01,5040518.0,0.0,0.0,112459.0,0.0,0.0,115962.42300000001,0.0,0.0,2587.238,0.0,0.0,-0.0,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,19288823.0,96361.0,443.76,2.217,52561.0,1.209,0.6027,1.7,tests performed,31668577.0,15774300.0,15153577.0,741197.0,62935.0,24457.0,72.86,36.29,34.86,1.71,563.0,13420.0,0.031,75.0,43466822.0,77.39,41.4,16.462,11.133,7894.393,0.1,539.849,7.11,13.5,47.4,21.221999999999998,8.8,72.06,0.779,179972.2,14.89,1.92,4140.449928
919,34184,CYM,North America,Cayman Islands,2022-07-01,27594.0,423.0,113.85700000000001,29.0,1.0,0.14300000000000002,414959.848,6361.094,1712.1889999999999,436.103,15.038,2.148,1.38,220.0,5.779,3505.0,92.072,,,760.0,65.335,9358.0,2691.0,140.726,40.467,384.0,5.775,0.0,3.0,tests performed,145906.0,61307.0,59547.0,23536.0,226.0,58.0,219.41,92.19,89.55,35.39,872.0,10.0,0.015,19.44,66498.0,256.496,25.7,4.46,3.437,49903.029,0.5,182.21900000000002,13.22,2.1,16.5,2.735,2.1,83.92,0.665,188.6,6.81,13.94,335.6463149
920,60187,FRO,Europe,Faeroe Islands,2022-07-01,34658.0,0.0,0.0,28.0,0.0,0.0,706541.9040000001,0.0,0.0,570.811,0.0,0.0,0.55,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,777845.0,391.0,15857.236,7.971,539.0,10.988,0.6621,1.5,people tested,103894.0,41715.0,40895.0,21284.0,42.0,26.0,211.8,85.04,83.37,43.39,530.0,2.0,0.004,11.11,49053.0,35.308,19.8,3.5260000000000002,2.063,1729.9270000000001,26.7,182.63400000000001,7.47,0.4,8.5,7.96,0.3,80.67,0.485,-38.6,-3.8,10.79,-786.903961
921,107865,MAC,Asia,Macao,2022-07-01,325.0,61.0,28.570999999999998,1094.0,0.0,0.857,493.62800000000004,92.65,43.396,1723.339,0.0,1.35,1.56,3.0,4.726,15.0,23.629,10.0,5.282,1.0,1.575,4299901.0,2293.0,6773.482,3.612,1630.0,2.568,0.376,2.7,tests performed,1440454.0,613839.0,586137.0,279849.0,357.0,487.0,218.78,93.23,89.03,42.5,740.0,134.0,0.02,73.15,658391.0,20546.766,39.2,9.798,4.9910000000000005,104861.851,0.2,128.275,4.42,20.9,26.0,1.188,4.51,84.24,0.9159999999999999,413.4,8.35,22.9,627.8943667000001
922,85600,IRN,Asia,Iran,2022-07-01,7238589.0,463.0,380.14300000000003,141390.0,1.0,1.571,85131.06599999999,5.445,4.471,1662.849,0.012,0.018000000000000002,1.56,0.0,0.0,46.0,124.73200000000001,21.0,2.06,9.0,24.404,52269202.0,76234.0,614.724,0.897,25540.0,0.3,0.0078,129.0,tests performed,149957751.0,64545209.0,57860379.0,27552163.0,31765.0,22970.0,176.36,75.91,68.05,32.4,270.0,5082.0,0.006,58.33,85028760.0,49.831,32.4,5.44,3.182,19082.62,0.2,270.308,9.59,0.8,21.1,64.204,1.5,76.68,0.7829999999999999,261045.6,29.95,27.79,3070.085933
923,158417,SRB,Europe,Serbia,2022-07-01,2030363.0,960.0,760.143,16126.0,0.0,0.857,295473.93,139.707,110.62200000000001,2346.779,0.0,0.125,1.48,8.0,1.1640000000000001,110.0,16.008,9.0,1.669,7292.0,49.975,9852899.0,7466.0,1433.869,1.087,6317.0,0.919,0.0594,16.8,people tested,8534688.0,3354075.0,3278198.0,1902412.0,221.0,175.0,124.2,48.81,47.71,27.69,25.0,47.0,0.001,11.11,6871547.0,80.291,41.2,17.366,1.796,14048.881000000001,38.0,439.415,10.08,37.7,40.2,97.719,5.609,76.0,0.8059999999999999,58394.0,24.45,1.98,8497.940857
924,62784,FIN,Europe,Finland,2022-07-01,1145610.0,12013.0,1716.1429999999998,4875.0,43.0,6.143,206477.19199999998,2165.144,309.306,878.638,7.75,1.107,1.26,15.0,2.7039999999999997,464.0,83.62799999999999,3.0,2.256,79.0,59.395,11038890.0,4591.0,1989.5770000000002,0.8270000000000001,4001.0,0.721,0.331,3.0,tests performed,12168388.0,4517181.0,4334110.0,3317097.0,5922.0,2044.0,219.32,81.41,78.12,59.79,368.0,82.0,0.001,26.85,5548361.0,18.136,42.8,21.228,13.264000000000001,40585.721,1.4,153.507,5.76,18.3,22.6,7.96,3.28,81.91,0.938,4932.8,3.79,7.25,889.0553445
925,17214,BLR,Europe,Belarus,2022-07-01,982867.0,0.0,0.0,6978.0,0.0,0.0,104085.655,0.0,0.0,738.97,0.0,0.0,-0.0,50.0,5.529,874.0,96.649,,,,,13220483.0,9650.0,1400.05,1.022,7068.0,0.7490000000000001,0.0404,24.8,tests performed,13206203.0,6425755.0,6325490.0,756085.0,31.0,7151.0,139.85,68.05,66.99,8.01,757.0,1628.0,0.017,20.37,9442867.0,46.858000000000004,40.3,14.799000000000001,9.788,17167.967,14.8,443.129,5.18,10.5,46.1,88.469,11.0,74.79,0.823,31222.4,20.4,1.61,3306.4534320000002
926,47318,COD,Africa,Democratic Republic of Congo,2022-07-01,91393.0,311.0,44.428999999999995,1375.0,4.0,0.5710000000000001,989.337,3.367,0.48100000000000004,14.884,0.043,0.006,0.55,8.0,0.746,191.0,17.81,10.0,0.932,238.0,22.191999999999997,1045120.0,4000.0,11.314,0.373,928.0,0.01,0.1168,8.6,tests performed,3514480.0,2979005.0,2272532.0,4240912.0,42303.0,40168.0,3.8,3.22,2.46,39.54,435.0,40168.0,0.043,31.48,92377986.0,35.879,17.0,3.02,1.745,808.133,77.1,318.949,6.1,30.5,38.3,4.4719999999999995,6.63,60.68,0.48,42100.6,15.74,5.93,3925.6274829999998
927,137185,OMN,Asia,Oman,2022-07-01,390244.0,0.0,0.0,4628.0,0.0,0.0,74711.068,0.0,0.0,886.0169999999999,0.0,0.0,0.01,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,2031675.0,1943.0,388.958,0.355,622.0,0.11900000000000001,0.006,167.5,tests performed,7068002.0,3266729.0,3039478.0,761795.0,3650.0,475.0,135.31,62.54,58.19,14.58,91.0,92.0,0.002,14.81,5223376.0,14.98,30.7,2.355,1.53,37960.709,0.2,266.342,12.61,0.5,15.6,97.4,1.6,77.86,0.813,4286.8,18.62,-6.95,820.6952745
928,12108,AUT,Europe,Austria,2022-07-01,4471152.0,11385.0,10083.714,20057.0,9.0,6.0,494428.44200000004,1258.975,1115.076,2217.9410000000003,0.995,0.6629999999999999,1.41,49.0,5.419,870.0,96.206,,,,,189791719.0,97659.0,20987.527000000002,10.799000000000001,86208.0,9.533,0.0752,13.3,tests performed,18418001.0,6831552.0,6625237.0,5312508.0,4140.0,234.0,203.67,75.54,73.26,58.75,26.0,16.0,0.0,35.19,9043072.0,106.749,44.4,19.202,13.748,45436.685999999994,0.7,145.183,6.35,28.4,30.9,94.04299999999999,7.37,81.54,0.922,17273.6,8.5,6.4,1910.147348
929,89908,ITA,Europe,Italy,2022-07-01,18610011.0,86900.0,68852.429,168425.0,72.0,58.143,308278.791,1439.517,1140.555,2789.9959999999996,1.193,0.963,1.47,264.0,4.373,7094.0,117.514,225.0,3.727,2964.0,49.099,224876148.0,246512.0,3725.1209999999996,4.084,193140.0,3.199,0.2053,4.9,tests performed,138292415.0,50804161.0,47949220.0,41046855.0,15967.0,15421.0,229.08,84.16,79.43,67.99,255.0,467.0,0.001,22.22,60367471.0,205.859,47.9,23.021,16.24,35220.084,2.0,113.15100000000001,4.78,19.8,27.8,94.57600000000001,3.18,83.51,0.892,180753.4,11.84,-8.54,2994.218525
930,45616,CYP,Europe,Cyprus,2022-07-01,515596.0,10879.0,1554.1429999999998,1075.0,3.0,0.429,575438.753,12141.673,1734.525,1199.77,3.3480000000000003,0.478,0.92,1.0,1.1159999999999999,47.0,52.455,1.0,1.1159999999999999,26.0,29.018,29501771.0,67206.0,32925.9,75.006,67201.0,75.001,0.0256,39.1,tests performed,1788761.0,668493.0,645099.0,475169.0,1437.0,82.0,199.64,74.61,72.0,53.03,92.0,18.0,0.002,14.81,896005.0,127.65700000000001,37.3,13.415999999999999,8.562999999999999,32415.132,0.7,141.171,9.24,19.6,52.7,85.198,3.4,80.98,0.887,1154.2,7.83,-0.57,1288.1624539999998
931,160979,SGP,Asia,Singapore,2022-07-01,1453155.0,9087.0,8011.571,1415.0,2.0,1.0,266457.936,1666.239,1469.043,259.462,0.36700000000000005,0.183,1.36,7.0,1.0190000000000001,118.0,17.172,20.0,3.667,840.0,154.02700000000002,428517.0,24000.0,52.635,4.401,24000.0,4.401,0.1627,6.1,samples tested,14225122.0,5019556.0,4997156.0,4208410.0,2675.0,2928.0,260.84,92.04,91.63,77.17,537.0,177.0,0.003,41.67,5453600.0,7915.731,42.4,12.922,7.0489999999999995,85535.383,52.2,92.243,10.99,5.2,28.3,19.275,2.4,83.62,0.938,2868.1,5.71,34.08,525.909491
932,32503,CAN,North America,Canada,2022-07-01,3955704.0,1429.0,2299.571,42000.0,7.0,17.857,103911.76400000001,37.538000000000004,60.407,1103.2910000000002,0.184,0.469,1.12,220.0,5.779,3505.0,92.072,,,760.0,65.335,62177630.0,75648.0,1633.3339999999998,1.9869999999999999,27030.0,0.71,0.0874,11.4,tests performed,86256122.0,32777269.0,31448069.0,22030784.0,16102.0,11814.0,226.58,86.1,82.61,57.87,310.0,565.0,0.001,25.93,38067913.0,4.037,41.4,16.984,10.797,44017.59099999999,0.5,105.59899999999999,7.37,12.0,16.6,2.735,2.5,82.43,0.929,15846.7,2.65,-9.19,416.2744619
933,129983,NER,Africa,Niger,2022-07-01,9031.0,0.0,0.0,310.0,0.0,0.0,359.36,0.0,0.0,12.335,0.0,0.0,0.05,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,254538.0,374.0,10.129,0.015,260.0,0.01,0.0115,86.7,tests performed,3530154.0,3330202.0,2603341.0,2756062.0,7377.0,118094.0,14.05,13.25,10.36,53.76,4699.0,161635.0,0.643,5.56,25130810.0,16.955,15.1,2.553,1.3780000000000001,926.0,44.5,238.33900000000003,2.42,0.1,15.4,8.978,0.3,62.42,0.39399999999999996,8148.4,31.97,5.18,1215.747423
934,858,AFG,Asia,Afghanistan,2022-07-01,182594.0,66.0,80.143,7723.0,0.0,0.857,4583.709,1.6569999999999998,2.012,193.873,0.0,0.022000000000000002,1.12,,,,,,,,,994894.0,,24.975,,435.0,0.011000000000000001,0.222,4.5,tests performed,6445359.0,5713284.0,5064430.0,,383.0,10273.0,16.18,14.34,12.71,,258.0,9307.0,0.023,11.11,39835428.0,54.422,18.6,2.5810000000000004,1.337,1803.987,,597.029,9.59,,,37.746,0.5,64.83,0.511,,,,
935,19771,BEN,Africa,Benin,2022-07-01,27216.0,0.0,13.429,163.0,0.0,0.0,2185.843,0.0,1.079,13.091,0.0,0.0,0.04,75.0,6.4479999999999995,1352.0,116.228,,,760.0,65.335,604310.0,1351.0,48.535,3.3369999999999997,1012.0,2.499,0.1451,6.9,tests performed,3681560.0,3174135.0,2690085.0,200.0,5470.0,2213.0,29.57,25.49,21.61,0.0,178.0,481.0,0.004,13.89,12451031.0,99.11,18.8,3.2439999999999998,1.942,2064.236,49.6,235.84799999999998,0.99,0.6,12.3,11.035,0.5,61.77,0.545,127.6,6.28,51.1,315.1278663
936,108702,MDG,Africa,Madagascar,2022-07-01,65381.0,0.0,53.143,1398.0,0.0,0.0,2299.9339999999997,0.0,1.869,49.178000000000004,0.0,0.0,0.44,3.0,4.726,15.0,23.629,10.0,5.282,1.0,1.575,451753.0,693.0,15.892000000000001,0.024,541.0,0.019,0.0547,18.3,tests performed,2369775.0,1290584.0,1199011.0,43528.0,13544.0,0.0,8.34,4.54,4.22,0.15,0.0,0.0,0.0,17.59,28427333.0,43.951,19.6,2.929,1.686,1416.44,77.6,405.994,3.94,20.9,26.0,50.54,0.2,67.04,0.528,413.4,8.35,22.9,627.8943667000001
937,153573,VCT,North America,Saint Vincent and the Grenadines,2022-07-01,9058.0,7.0,4.571000000000001,112.0,0.0,0.14300000000000002,81406.322,62.911,41.083999999999996,1006.57,0.0,1.284,0.95,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,108388.0,59.0,974.1080000000001,0.53,50.0,0.449,0.2257,4.4,tests performed,71501.0,36742.0,30855.0,3904.0,20.0,28.0,64.26,33.02,27.73,3.51,252.0,9.0,0.008,66.67,111269.0,281.78700000000003,31.8,7.724,4.832,10727.146,56.0,252.675,11.62,4.7,21.0,87.20200000000001,2.6,72.53,0.738,12.2,3.33,8.11,227.8414821
938,16356,BRB,North America,Barbados,2022-07-01,84562.0,141.0,148.286,477.0,0.0,0.5710000000000001,293916.054,490.08,515.404,1657.931,0.0,1.986,1.04,50.0,5.529,874.0,96.649,,,,,697476.0,734.0,2424.25,2.551,507.0,1.7619999999999998,0.1812,5.5,tests performed,316139.0,162619.0,153520.0,29645608.0,13.0,30.0,109.88,56.52,53.36,17.83,104.0,13.0,0.005,40.74,287708.0,664.4630000000001,39.8,14.952,9.472999999999999,16978.068,14.8,170.05,13.57,1.9,14.5,88.469,5.8,79.19,0.8140000000000001,-270.0,-5.42,-3.28,-938.4514855
939,37622,CHN,Asia,China,2022-07-01,888729.0,72.0,105.286,5226.0,0.0,0.0,615.371,0.05,0.073,3.6189999999999998,0.0,0.0,1.33,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,9214000000.0,58711.0,6379.932,3.056,14769984.0,10.227,0.0016,637.8,tests performed,3403201000.0,1294045000.0,1260501000.0,790025000.0,579000.0,634143.0,235.64,89.6,87.28,54.7,439.0,153571.0,0.011000000000000001,79.17,1444216102.0,147.674,38.7,10.640999999999998,5.928999999999999,15308.712,0.7,261.899,9.74,1.9,48.4,5.818,4.34,76.91,0.7609999999999999,51537.3,19.01,15.69,2682.507232
940,78660,OWID_HIC,North America,High income,2022-07-01,323269248.0,813383.0,622645.8570000001,2449768.0,1424.0,974.429,266080.50399999996,669.4889999999999,512.495,2016.386,1.172,0.802,1.32,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,206594.0,263.0,17.9,0.023,197.0,0.017,0.0363,27.6,tests performed,2505503646.0,971686323.0,910620646.0,648097586.0,659718.0,722028.0,206.23,79.98,74.95,53.34,594.0,65354.0,0.005,34.26,1214930230.0,398.44800000000004,24.3,4.8,2.9539999999999997,1653.1729999999998,23.5,430.548,6.65,2.9,23.1,22.863000000000003,0.7,64.0,0.51,43113.3,25.35,10.04,2362.38969
941,10356,OWID_ASI,North America,Asia,2022-07-01,157031907.0,129416.0,129276.286,1444502.0,228.0,236.571,33564.979,27.662,27.631999999999998,308.757,0.049,0.051,-0.01,372.0,8.157,,,,,,,793.0,428.0,7.398,3.9930000000000003,1467.0,0.494,0.003,333.3,tests performed,8259252790.0,3559376733.0,3314002446.0,1346240506.0,5045909.0,4524916.0,176.54,76.08,70.84,28.78,967.0,453485.0,0.01,25.93,4678444992.0,584.8,41.2,13.085,7.452000000000001,35973.781,1.8,341.01,11.62,1.5,52.1,94.04299999999999,4.2,76.29,0.7759999999999999,352.2,26.0,11.85,3285.6010079999996
942,127450,NCL,Oceania,New Caledonia,2022-07-01,64337.0,136.0,117.429,313.0,0.0,0.0,223224.168,471.86699999999996,407.431,1085.987,0.0,0.0,1.21,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,30687346.0,6207.0,1786.943,0.361,4928.0,0.287,0.685,1.5,tests performed,461709.0,188411.0,180351.0,92947.0,144666.0,29.0,160.19,65.37,62.57,32.25,101.0,4.0,0.001,19.44,288217.0,15.342,33.4,9.954,6.489,48472.545,15.0,109.361,23.36,24.4,27.3,47.782,3.32,77.55,0.9440000000000001,-89.2,-5.43,-4.34,-309.4890308
943,166343,OWID_SAM,Africa,South America,2022-07-01,59736848.0,93125.0,81906.286,1305223.0,352.0,280.42900000000003,137560.054,214.445,188.611,3005.625,0.8109999999999999,0.6459999999999999,0.44,202.0,3.364,1725.0,28.73,7.0,3.319,470.0,7.827999999999999,25637671.0,19244.0,426.996,0.321,14296.0,0.23800000000000002,0.0726,13.8,people tested,891453275.0,368125591.0,329423410.0,206762576.0,1608383.0,703712.0,205.28,84.77,75.86,47.61,1620.0,28141.0,0.006,11.11,434260137.0,46.754,27.3,5.343999999999999,3.053,12294.876,18.9,200.38,5.52,8.1,33.2,43.993,2.32,64.13,0.7090000000000001,272670.6,21.46,10.13,4541.331371
944,5974,AIA,North America,Anguilla,2022-07-01,3456.0,0.0,6.428999999999999,9.0,0.0,0.0,228495.86800000002,0.0,425.03,595.0409999999999,0.0,0.0,0.01,0.0,0.0,,,,,,,51382.0,1459.0,3397.157,0.043,169.0,11.174000000000001,0.0803,12.5,tests performed,23926.0,10813.0,10183.0,2930.0,1421.0,19.0,158.19,71.49,67.33,19.37,1256.0,3.0,0.02,22.22,15125.0,23.89,16.8,2.405,1.3619999999999999,5819.495,0.5,276.045,3.94,29.0,37.8,26.664,1.9,81.88,0.581,89.6,27.2,31.41,1158.311141
945,96786,KWT,Asia,Kuwait,2022-07-01,644451.0,1447.0,396.14300000000003,2555.0,0.0,0.0,148883.703,334.292,91.51899999999999,590.2669999999999,0.0,0.0,1.24,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,8208880.0,8163.0,1896.4489999999998,1.886,6104.0,1.41,0.0165,60.4,tests performed,8120613.0,3433696.0,3322065.0,1364852.0,4709.0,2504.0,187.61,79.33,76.75,31.53,578.0,243.0,0.006,11.11,4328553.0,232.128,33.7,2.345,1.114,65530.537000000004,0.6,132.235,15.84,2.7,37.0,24.651,2.0,75.49,0.8059999999999999,3210.8,43.64,14.51,741.7721349
946,105213,OWID_LIC,Europe,Low income,2022-07-01,1862675.0,1361.0,824.857,43280.0,6.0,3.8569999999999998,2800.387,2.046,1.24,65.068,0.009000000000000001,0.006,1.54,1.0,0.536,58.0,21.561999999999998,10.0,5.282,1.0,25.605,8718186.0,136.0,3241.1279999999997,0.051,751.0,0.27899999999999997,0.212,4.7,tests performed,187609152.0,134244480.0,109066718.0,7525232.0,110861.0,53135.0,28.21,20.18,16.4,1.13,80.0,51996.0,0.008,11.11,665149040.0,45.135,43.5,19.002,13.777999999999999,29524.265,0.7,342.98900000000003,3.67,21.3,38.0,1.188,6.56,75.93,0.882,19277.5,21.09,-6.35,7166.7245379999995
947,14667,BHR,Asia,Bahrain,2022-07-01,627327.0,1471.0,1743.1429999999998,1493.0,1.0,0.14300000000000002,358822.167,841.3910000000001,997.053,853.975,0.5720000000000001,0.08199999999999999,1.07,50.0,5.529,874.0,96.649,,,,,9969082.0,7215.0,5702.174,4.127,6220.0,3.5580000000000003,0.2814,3.6,units unclear,3454217.0,1238413.0,1223091.0,992713.0,222.0,283.0,197.58,70.84,69.96,56.78,162.0,48.0,0.003,17.59,1748295.0,1935.9070000000002,32.4,2.372,1.3869999999999998,43290.705,0.7,151.689,16.52,5.8,37.6,83.241,2.0,77.29,0.852,43744.8,33.01,2.0,4278.913044
948,68797,GHA,Africa,Ghana,2022-07-01,166133.0,0.0,184.28599999999997,1450.0,0.0,0.28600000000000003,5235.482,0.0,5.808,45.695,0.0,0.009000000000000001,1.0,1000.0,11.919,16108.0,238.91299999999998,945.0,11.263,4313.0,51.406000000000006,2465238.0,2208.0,77.689,0.07,1210.0,0.038,0.2632,3.8,tests performed,18643437.0,10443364.0,7193153.0,1006920.0,60270.0,27848.0,58.75,32.91,22.67,3.17,878.0,13052.0,0.040999999999999995,51.85,31732128.0,126.719,21.1,3.385,1.9480000000000002,4227.63,12.0,298.245,4.97,0.3,7.7,41.047,0.9,64.07,0.611,90163.5,3.81,-1.17,1074.648318
949,12964,AZE,Asia,Azerbaijan,2022-07-01,793302.0,126.0,28.0,9717.0,0.0,0.0,77597.115,12.325,2.739,950.472,0.0,0.0,1.84,50.0,5.529,874.0,96.649,,,,,6947820.0,6872.0,679.6030000000001,0.672,2341.0,0.22899999999999998,0.017,58.9,tests performed,13768446.0,5355145.0,4854038.0,3309825.0,1475.0,1316.0,134.68,52.38,47.48,32.38,129.0,288.0,0.003,36.11,10223344.0,119.309,32.4,6.018,3.8710000000000004,15847.419,0.7,559.812,7.11,0.3,42.5,83.241,4.7,73.0,0.7559999999999999,43744.8,33.01,2.0,4278.913044
950,79506,HND,North America,Honduras,2022-07-01,427718.0,363.0,175.429,10906.0,0.0,0.28600000000000003,42504.05,36.073,17.433,1083.7730000000001,0.0,0.027999999999999997,1.0,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,206594.0,263.0,17.9,0.023,197.0,0.017,0.0363,27.6,tests performed,14444316.0,6300528.0,5377667.0,2766496.0,81065.0,5669.0,143.54,62.61,53.44,27.49,563.0,1010.0,0.01,34.26,10062994.0,82.805,24.9,4.652,2.883,4541.795,16.0,240.208,7.21,2.0,23.1,84.169,0.7,75.27,0.634,43113.3,25.35,10.04,2362.38969
951,143488,PHL,Asia,Philippines,2022-07-01,3705649.0,1242.0,914.0,60565.0,10.0,8.286,33370.123,11.184000000000001,8.231,545.4,0.09,0.075,1.53,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,28472887.0,21192.0,256.404,0.191,19245.0,0.17300000000000001,0.0093,107.8,people tested,153852751.0,75654809.0,70845546.0,14880868.0,227791.0,140975.0,138.55,68.13,63.8,13.4,1270.0,52634.0,0.047,37.96,111046910.0,351.87300000000005,25.2,4.803,2.661,7599.188,3.5,370.43699999999995,7.07,7.8,40.8,78.46300000000001,1.0,71.23,0.718,204049.6,16.16,-9.94,1837.5081309999998
952,95924,OWID_KOS,Europe,Kosovo,2022-07-01,229366.0,167.0,99.0,3140.0,0.0,0.0,128704.377,93.709,55.552,1761.951,0.0,0.0,2.51,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,1846365.0,1719.0,1036.053,0.965,214.0,0.12,0.0754,13.3,tests performed,1830688.0,903657.0,823766.0,103265.0,66.0,41.0,102.73,50.71,46.22,5.79,23.0,11.0,0.001,37.04,1782115.0,168.155,23.2,3.895,2.21,9795.834,0.6,434.657,22.66,35.9,58.9,24.651,1.9,68.37,0.63,5869.8,25.36,-11.76,3293.726836
953,43079,HRV,Europe,Croatia,2022-07-01,1149575.0,1047.0,801.2860000000001,16070.0,5.0,3.286,281644.195,256.513,196.31400000000002,3937.127,1.225,0.805,1.57,177.0,9.213,190.0,46.55,82.0,4.268,121.0,29.73,4922712.0,5587.0,1206.057,1.369,1521.0,0.373,0.2363,4.2,people tested,5258460.0,2315512.0,2245193.0,594785.0,169.0,170.0,128.83,56.73,55.01,14.57,42.0,25.0,0.001,14.81,4081657.0,73.726,44.0,19.724,13.052999999999999,22669.797000000002,0.7,253.782,5.59,34.3,39.9,19.351,5.54,78.49,0.851,19749.3,16.18,-5.95,4838.549638
954,55859,EST,Europe,Estonia,2022-07-01,580114.0,0.0,114.0,2591.0,0.0,0.429,437759.774,0.0,86.02600000000001,1955.194,0.0,0.32299999999999995,1.15,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,3425068.0,1246.0,2584.59,0.94,993.0,0.7490000000000001,0.1183,8.5,tests performed,1993944.0,863093.0,847710.0,476572.0,144.0,76.0,150.46,65.13,63.97,35.96,57.0,19.0,0.001,11.11,1325188.0,31.033,42.7,19.452,13.491,29481.252,0.5,255.56900000000002,4.02,24.5,39.3,24.64,4.69,78.74,0.892,3805.5,9.78,12.82,2871.66802
955,116343,MEX,North America,Mexico,2022-07-01,6058689.0,24087.0,19371.857,325747.0,31.0,33.714,46511.483,184.912,148.714,2500.702,0.23800000000000002,0.259,1.53,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,15569464.0,1462.0,119.524,0.011000000000000001,12427.0,0.095,0.488,2.0,people tested,209179257.0,88336802.0,79947470.0,53157386.0,157958.0,21292.0,160.58,67.81,61.37,40.81,163.0,4943.0,0.004,17.59,130262220.0,66.444,29.3,6.857,4.321000000000001,17336.468999999997,2.5,152.783,13.06,6.9,21.4,87.84700000000001,1.38,75.05,0.779,663318.5,37.67,-8.77,5092.178684
956,54976,ERI,Africa,Eritrea,2022-07-01,9801.0,2.0,1.857,103.0,0.0,0.0,2721.395,0.555,0.516,28.599,0.0,0.0,0.94,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,23693.0,501.0,6.579,0.34600000000000003,109.0,0.075,0.0157,63.6,tests performed,484554.0,267610.0,208104.0,4420.0,639.0,0.0,33.42,18.46,14.35,0.3,0.0,0.0,0.0,50.93,3601462.0,44.303999999999995,19.3,3.6069999999999998,2.171,1510.4589999999998,2.2,311.11,6.05,0.2,11.4,24.64,0.7,66.32,0.45899999999999996,4739.0,16.28,49.24,727.0077472
957,144426,POL,Europe,Poland,2022-07-01,6015634.0,642.0,428.42900000000003,116429.0,5.0,2.4290000000000003,159156.388,16.985,11.335,3080.377,0.132,0.064,1.63,41.0,2.387,287.0,7.593,9.0,1.669,234.0,42.846000000000004,36962382.0,21192.0,977.918,0.191,3366.0,0.08900000000000001,0.0591,16.9,tests performed,54604140.0,22735900.0,22516696.0,12164438.0,3361.0,2386.0,144.47,60.15,59.57,32.18,63.0,300.0,0.001,14.81,37797000.0,124.027,41.8,16.762999999999998,10.202,27216.445,3.5,227.331,5.91,23.3,33.1,78.46300000000001,6.62,78.73,0.88,169651.0,16.76,-7.57,4488.477922
958,97625,KGZ,Asia,Kyrgyzstan,2022-07-01,201053.0,0.0,4.143,2991.0,0.0,0.0,30332.299,0.0,0.625,451.244,0.0,0.0,-0.0,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,8208880.0,8163.0,1896.4489999999998,1.886,6104.0,1.41,0.0165,60.4,tests performed,3153847.0,1571540.0,1321799.0,1364852.0,661.0,919.0,47.58,23.71,19.94,31.53,139.0,196.0,0.003,33.33,6628347.0,32.333,26.3,4.489,2.8819999999999997,3393.474,1.4,436.36199999999997,7.11,3.6,50.5,89.22,4.5,71.45,0.6970000000000001,15644.0,20.79,13.42,2360.166117
959,54140,GNQ,Africa,Equatorial Guinea,2022-07-01,16087.0,53.0,13.142999999999999,183.0,0.0,0.0,11095.317,36.554,9.065,126.21600000000001,0.0,0.0,1.44,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,484554.0,501.0,334.2,0.34600000000000003,109.0,0.075,0.0157,63.6,tests performed,484554.0,267610.0,208104.0,4420.0,639.0,0.0,33.42,18.46,14.35,0.3,0.0,0.0,0.0,37.96,1449891.0,45.193999999999996,22.4,2.846,1.7519999999999998,22604.873,2.2,202.812,7.78,2.5,18.8,24.64,2.1,58.74,0.5920000000000001,4739.0,16.28,49.24,727.0077472
960,191640,UZB,Asia,Uzbekistan,2022-07-01,240856.0,92.0,109.85700000000001,1637.0,0.0,0.0,7097.409000000001,2.7110000000000003,3.237,48.238,0.0,0.0,1.3,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,6086835.0,2072.0,1746.505,0.595,3188.0,0.915,0.0836,12.0,people tested,55782994.0,19699111.0,15571588.0,10296725.0,145313.0,130190.0,164.38,58.05,45.89,30.34,3836.0,12536.0,0.037000000000000005,11.11,33935765.0,76.134,28.2,4.468999999999999,2.873,6253.104,0.1,724.4169999999999,7.57,1.3,24.7,21.221999999999998,4.0,71.72,0.72,38486.9,10.93,1.96,1134.110282
961,152730,SPM,North America,Saint Pierre and Miquelon,2022-07-01,2779.0,0.0,1.714,1.0,0.0,0.0,481545.659,0.0,297.052,173.28,0.0,0.0,0.86,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,208560.0,117.0,1131.013,0.634,145.0,0.7859999999999999,0.1488,6.7,tests performed,121513.0,59602.0,54309.0,7602.0,49.0,17.0,65.9,32.32,29.45,4.12,92.0,6.0,0.003,66.67,5771.0,293.187,34.9,9.721,6.405,12951.839,56.0,204.62,11.62,4.7,21.0,87.20200000000001,1.3,81.07,0.759,12.2,3.33,8.11,227.8414821
962,167238,KOR,Asia,South Korea,2022-07-01,18379552.0,10695.0,8539.857,24562.0,7.0,6.571000000000001,358239.666,208.458,166.452,478.74300000000005,0.136,0.128,1.24,59.0,1.15,1725.0,28.73,42.0,0.8190000000000001,413.0,8.05,100269452.0,145445.0,1954.3729999999998,2.835,116619.0,2.273,0.0687,14.5,people tested,125998273.0,45069202.0,44630289.0,37815434.0,20697.0,10904.0,245.59,87.85,86.99,73.71,213.0,268.0,0.001,13.89,51305184.0,527.967,43.4,13.914000000000001,8.622,35938.373999999996,0.2,85.99799999999999,6.8,6.2,40.9,43.993,12.27,83.03,0.9159999999999999,38323.1,5.28,18.0,746.9635037
963,69650,GIB,Europe,Gibraltar,2022-07-01,19633.0,327.0,46.714,104.0,0.0,0.0,582737.23,9705.856,1386.5510000000002,3086.8779999999997,0.0,0.0,1.0,1000.0,11.919,16108.0,238.91299999999998,945.0,11.263,4313.0,51.406000000000006,533268.0,514.0,15828.203000000001,15.255999999999998,553.0,16.414,0.0858,11.7,tests performed,119855.0,42074.0,41421.0,36360.0,202.0,40.0,355.75,124.88,122.94,107.92,1187.0,1.0,0.003,51.85,33691.0,3457.1,21.1,3.385,1.9480000000000002,4227.63,12.0,298.245,4.97,0.3,7.7,41.047,0.9,79.93,0.611,19.6,5.77,157.23,581.7577395
964,11247,AUS,Oceania,Australia,2022-07-01,8194909.0,30236.0,30862.0,9984.0,54.0,47.0,317777.262,1172.473,1196.748,387.154,2.094,1.8230000000000002,1.11,109.0,4.227,3329.0,129.09,,,,,73370295.0,82399.0,2845.1090000000004,3.195,67114.0,2.603,0.149,6.7,tests performed,57923662.0,22353997.0,21673357.0,13896308.0,9423.0,8305.0,224.61,86.68,84.04,53.89,322.0,1107.0,0.004,13.89,25788217.0,3.202,37.9,15.504000000000001,10.129,44648.71,0.5,107.791,5.07,13.0,16.5,94.04299999999999,3.84,83.44,0.9440000000000001,4853.0,1.35,8.37,188.1867211
965,98458,LAO,Asia,Laos,2022-07-01,210297.0,5.0,9.142999999999999,757.0,0.0,0.0,28498.007999999998,0.6779999999999999,1.239,102.583,0.0,0.0,1.09,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,1030237.0,671.0,139.611,0.091,113.0,0.015,0.1062,9.4,tests performed,10894482.0,5817695.0,5076787.0,1364852.0,11603.0,2560.0,147.63,78.84,68.8,31.53,347.0,599.0,0.008,57.87,7379358.0,29.715,24.4,4.029,2.322,6397.36,22.7,368.111,4.0,7.3,51.2,49.839,1.5,67.92,0.613,15644.0,20.79,13.42,2360.166117
966,77765,HTI,North America,Haiti,2022-07-01,31603.0,53.0,50.714,837.0,0.0,0.0,2738.1620000000003,4.592,4.394,72.52,0.0,0.0,1.32,1000.0,11.919,16108.0,238.91299999999998,21.0,2.06,1323.0,127.544,206594.0,263.0,17.9,0.023,197.0,0.017,0.0363,27.6,tests performed,342724.0,241385.0,157276.0,68657.0,4278.0,3249.0,2.97,2.09,1.36,8.69,282.0,3090.0,0.027000000000000003,34.26,11541683.0,398.44800000000004,24.3,4.8,2.9539999999999997,1653.1729999999998,23.5,430.548,6.65,2.9,23.1,22.863000000000003,0.7,64.0,0.51,43113.3,25.35,10.04,2362.38969
967,119426,MNG,Asia,Mongolia,2022-07-01,928586.0,0.0,329.14300000000003,2179.0,0.0,0.0,278914.793,0.0,98.863,654.495,0.0,0.0,0.24,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,7408778.0,4118.0,2225.3379999999997,1.237,487.0,0.146,0.4242,2.4,samples tested,5492919.0,2272965.0,2175617.0,1044337.0,1100.0,143.0,164.99,68.27,65.35,31.37,43.0,0.0,0.0,11.11,3329282.0,1.98,28.6,4.031000000000001,2.421,11840.846000000001,0.5,460.043,4.82,5.5,46.5,71.18,7.0,69.87,0.737,609.0,1.43,-2.07,182.92232380000002
968,1731,OWID_AFR,Asia,Africa,2022-07-01,12069307.0,6117.0,7333.429,255076.0,41.0,27.570999999999998,8787.35,4.454,5.3389999999999995,185.71400000000003,0.03,0.02,1.12,,,,,,,,,994894.0,,24.975,,435.0,0.011000000000000001,0.222,4.5,tests performed,562615030.0,345764824.0,271661053.0,30979655.0,636173.0,331460.0,40.96,25.17,19.78,2.26,241.0,215737.0,0.016,11.11,1373486472.0,54.422,18.6,2.5810000000000004,1.337,1803.987,,597.029,9.59,,,37.746,0.5,64.83,0.511,,,,
969,145282,PRT,Europe,Portugal,2022-07-01,5171236.0,10375.0,8832.0,24149.0,28.0,22.0,508583.316,1020.3660000000001,868.6139999999999,2375.018,2.7539999999999996,2.164,0.66,85.0,8.36,1743.0,171.421,9.0,1.669,234.0,42.846000000000004,42825431.0,52990.0,4211.817,5.211,48792.0,4.7989999999999995,0.5063,2.0,tests performed,24616852.0,9729123.0,8884776.0,6731760.0,79.0,12306.0,242.1,95.68,87.38,66.21,1210.0,299.0,0.003,13.89,10167923.0,112.37100000000001,46.2,21.502,14.924000000000001,27936.896,0.5,127.84200000000001,9.85,16.3,30.0,78.46300000000001,3.39,82.05,0.8640000000000001,22143.4,7.83,10.95,2177.7702289999997
970,109530,MWI,Africa,Malawi,2022-07-01,86534.0,28.0,26.570999999999998,2645.0,0.0,0.0,4404.286,1.425,1.3519999999999999,134.621,0.0,0.0,1.32,3.0,4.726,15.0,23.629,10.0,5.282,1.0,1.575,589303.0,490.0,29.994,0.025,307.0,0.016,0.0656,15.2,tests performed,2166402.0,2047317.0,1590299.0,740.0,14163.0,0.0,11.03,10.42,8.09,0.0,0.0,64387.0,0.32799999999999996,47.22,19647681.0,197.519,18.1,2.9789999999999996,1.7830000000000001,1095.042,71.4,227.34900000000002,3.94,4.4,24.7,8.704,1.3,64.26,0.483,413.4,8.35,22.9,627.8943667000001
971,115427,MUS,Africa,Mauritius,2022-07-01,231036.0,1557.0,222.429,1004.0,1.0,0.28600000000000003,181428.396,1222.684,174.669,788.423,0.785,0.22399999999999998,0.26,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,1282782.0,1362.0,1007.346,0.285,12.0,0.009000000000000001,0.0,11.3,tests performed,2559789.0,978297.0,945621.0,626856.0,35153.0,734.0,201.02,76.82,74.26,49.23,576.0,99.0,0.008,37.96,1273428.0,622.962,37.4,10.945,5.8839999999999995,20292.745,0.5,224.644,22.02,3.2,40.7,15.95,3.4,74.99,0.804,1097.6,4.72,46.05,861.9254484999999
972,49041,DJI,Africa,Djibouti,2022-07-01,15690.0,0.0,0.0,189.0,0.0,0.0,15655.605,0.0,0.0,188.58599999999998,0.0,0.0,0.04,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,309732.0,912.0,309.053,0.91,196.0,0.196,0.0,31.2,tests performed,222387.0,201787.0,161003.0,3650643.0,12179.0,1785.0,22.19,20.13,16.07,62.8,1781.0,860.0,0.086,49.07,1002197.0,41.285,25.4,4.213,2.38,2705.406,22.5,258.03700000000003,6.05,1.7,24.5,4.4719999999999995,1.4,67.11,0.524,1780.7,1.29,0.54,306.3147244
973,42218,CIV,Africa,Cote d'Ivoire,2022-07-01,83571.0,108.0,88.286,805.0,0.0,0.14300000000000002,3089.086,3.992,3.263,29.756,0.0,0.005,1.8,177.0,9.213,3505.0,92.072,82.0,4.268,857.0,44.607,1540831.0,635.0,56.955,0.023,1206.0,0.045,0.031,32.2,tests performed,12753769.0,8026397.0,5540193.0,87290.0,20396.0,0.0,47.14,29.67,20.48,0.32,0.0,5281.0,0.02,15.74,27053629.0,76.399,18.7,2.9330000000000003,1.5819999999999999,3601.006,28.2,303.74,2.42,6.4,17.4,19.351,1.13,57.78,0.5379999999999999,5946.8,11.58,-1.44,1157.17818
974,182337,TUR,Asia,Turkey,2022-07-01,15123331.0,0.0,5369.857,99032.0,0.0,5.143,177832.13100000002,0.0,63.143,1164.497,0.0,0.06,0.06,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,163164533.0,128854.0,1918.618,1.515,134604.0,1.5830000000000002,0.0077,130.4,tests performed,147828801.0,57858728.0,53088281.0,36881792.0,3362.0,2498.0,173.83,68.03,62.43,43.37,29.0,366.0,0.0,13.89,85042736.0,104.914,31.6,8.152999999999999,5.061,25129.341,0.2,171.285,12.13,14.1,41.1,78.687,2.81,77.69,0.82,20481.6,16.84,40.84,1715.9856710000001
975,177552,THA,Asia,Thailand,2022-07-01,4527777.0,2508.0,2605.143,30681.0,17.0,17.429000000000002,64727.982,35.854,37.242,438.608,0.243,0.249,1.07,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,24733803.0,7706.0,353.588,0.11,11151.0,0.159,0.3093,3.2,tests performed,139070010.0,56717751.0,52914214.0,29438045.0,97036.0,63367.0,198.81,81.08,75.64,42.08,906.0,4543.0,0.006,30.09,69950844.0,135.132,40.1,11.373,6.89,16277.671,0.1,109.861,7.04,1.9,38.8,90.67,2.1,77.15,0.777,97687.9,8.02,19.55,1396.5221060000001
976,126612,NLD,Europe,Netherlands,2022-07-01,8200738.0,6076.0,5359.429,22467.0,3.0,3.8569999999999998,477534.101,353.809,312.08299999999997,1308.267,0.175,0.225,1.22,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,30687346.0,6207.0,1786.943,0.361,4928.0,0.287,0.685,1.5,tests performed,33326378.0,12804977.0,11980109.0,9295105.0,144666.0,1769.0,194.06,74.56,69.76,54.13,103.0,194.0,0.001,19.44,17173094.0,508.54400000000004,43.2,18.779,11.880999999999998,48472.545,15.0,109.361,5.29,24.4,27.3,47.782,3.32,82.28,0.9440000000000001,30266.9,7.84,1.12,1762.460509
977,28195,BGR,Europe,Bulgaria,2022-07-01,1172777.0,538.0,435.57099999999997,37257.0,2.0,1.571,170050.11800000002,78.009,63.157,5402.184,0.29,0.228,1.46,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,10080207.0,4881.0,1461.608,0.708,3104.0,0.45,0.0777,12.9,tests performed,4412572.0,2092116.0,2061900.0,768379.0,1195.0,829.0,63.98,30.34,29.9,11.14,120.0,63.0,0.001,11.11,6896655.0,65.18,44.7,20.801,13.272,18563.307,1.5,424.68800000000005,5.81,30.1,44.4,97.164,7.454,75.05,0.816,66889.5,26.21,-5.49,9698.83226
978,190798,URY,South America,Uruguay,2022-07-01,957629.0,0.0,811.571,7331.0,0.0,2.714,274773.955,0.0,232.865,2103.495,0.0,0.779,1.09,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,6086835.0,2072.0,1746.505,0.595,3188.0,0.915,0.0836,12.0,people tested,8680177.0,2997390.0,2887575.0,2795212.0,593.0,5452.0,249.06,86.0,82.85,80.2,1564.0,131.0,0.004,13.89,3485152.0,19.750999999999998,35.6,14.655,10.360999999999999,20551.409,0.1,160.708,6.93,14.0,19.9,21.221999999999998,2.8,77.91,0.8170000000000001,6095.1,7.28,8.55,1748.8763760000002
979,171521,SUR,South America,Suriname,2022-07-01,80864.0,0.0,6.7139999999999995,1369.0,10.0,1.429,136641.219,0.0,11.345999999999998,2313.2889999999998,16.898,2.414,1.04,336.0,7.188,6247.0,133.639,241.0,5.156000000000001,5307.0,113.53,84184.0,165.0,142.251,0.27899999999999997,24.0,0.040999999999999995,0.491,2.0,tests performed,505699.0,267820.0,237879.0,48889.0,398.0,14.0,85.45,45.26,40.2,8.26,24.0,6.0,0.001,44.44,591798.0,3.612,29.6,6.933,4.229,13767.118999999999,0.7,258.314,12.54,7.4,42.9,67.779,3.1,71.68,0.738,48.2,1.23,14.57,81.44670986
980,29042,BFA,Africa,Burkina Faso,2022-07-01,21044.0,0.0,0.0,387.0,0.0,0.0,978.923,0.0,0.0,18.002,0.0,0.0,0.0,26.0,3.77,318.0,46.108999999999995,,,760.0,65.335,324773.0,41.0,15.107999999999999,0.002,291.0,0.013999999999999999,0.0,624.3,tests performed,2947625.0,2449809.0,1555140.0,768430.0,1242.0,9.0,13.71,11.4,7.23,11.14,0.0,9.0,0.0,8.33,21497097.0,70.15100000000001,17.6,2.4090000000000003,1.358,1703.102,43.7,269.048,2.42,1.6,23.9,11.877,0.4,61.58,0.452,66889.5,26.21,-5.49,9698.83226
981,113745,MHL,Oceania,Marshall Islands,2022-07-01,18.0,0.0,0.0,748.0,0.0,1.143,301.922,0.0,0.0,1449.332,0.0,2.214,1.34,1.0,1.9380000000000002,77.0,149.196,1.0,1.9380000000000002,88.0,170.51,3184.0,392.0,53.407,6.575,14.0,0.235,0.0,30.3,tests performed,1317628.0,476936.0,469857.0,405198.0,28.0,277.0,255.3,92.41,91.04,78.51,537.0,17.0,0.003,13.89,59618.0,295.15,42.4,19.426,11.324000000000002,3819.202,0.2,557.793,30.53,20.9,30.2,82.50200000000001,2.7,73.7,0.7040000000000001,539.8,5.7,-1.02,1045.921333
982,94668,KEN,Africa,Kenya,2022-07-01,333952.0,258.0,344.714,5653.0,1.0,0.28600000000000003,6073.433000000001,4.692,6.269,102.809,0.018000000000000002,0.005,0.87,341.0,2.705,5028.0,39.889,259.0,4.29,2964.0,49.099,3728165.0,2868.0,67.80199999999999,0.052000000000000005,3338.0,0.061,0.1107,9.0,tests performed,18535975.0,12641679.0,9326814.0,376018.0,13702.0,12048.0,33.71,22.99,16.96,0.68,219.0,4649.0,0.008,37.04,54985702.0,87.324,20.0,2.6860000000000004,1.528,2993.028,36.8,218.637,2.92,1.2,20.4,24.651,1.4,66.7,0.601,83124.6,26.77,-14.32,4376.140237
983,183538,TCA,North America,Turks and Caicos Islands,2022-07-01,6219.0,0.0,1.143,36.0,0.0,0.0,158542.803,0.0,29.135,917.7589999999999,0.0,0.0,0.06,48.0,5.507000000000001,848.0,97.29799999999999,241.0,5.156000000000001,95.0,10.9,163164533.0,128854.0,1918.618,1.515,134604.0,1.5830000000000002,0.0077,130.4,tests performed,69803.0,31989.0,29963.0,7851.0,5279.0,16.0,177.95,81.55,76.39,20.01,408.0,9.0,0.023,66.67,39226.0,37.312,26.9,4.277,2.541,16389.023,0.2,536.783,7.11,14.1,41.1,100.0,7.4,80.22,0.715,20481.6,16.84,40.84,1715.9856710000001
984,43924,CUB,North America,Cuba,2022-07-01,1106045.0,22.0,24.285999999999998,8529.0,0.0,0.0,97728.756,1.944,2.146,753.612,0.0,0.0,1.13,177.0,9.213,190.0,46.55,82.0,4.268,121.0,29.73,5296762.0,38826.0,468.015,3.431,35601.0,3.1460000000000004,0.0879,11.4,tests performed,38713307.0,10680187.0,9974854.0,7405890.0,42871.0,29630.0,342.07,94.37,88.14,65.44,2618.0,250.0,0.002,18.52,11317498.0,110.40799999999999,43.1,14.738,9.719,22669.797000000002,0.7,190.968,8.27,17.1,53.3,85.198,5.2,78.8,0.7829999999999999,53645.6,23.69,2.89,4740.058271
985,195454,WLF,Oceania,Wallis and Futuna,2022-07-01,454.0,0.0,0.0,7.0,0.0,0.0,40923.021,0.0,0.0,630.972,0.0,0.0,0.91,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,85824349.0,56715.0,874.253,0.578,620.0,0.006,0.9523,1.1,people tested,16426.0,6483.0,6457.0,3201.0,66330.0,7.0,148.06,58.44,58.2,28.85,631.0,2.0,0.018000000000000002,25.93,11094.0,308.127,32.6,7.15,4.718,6171.884,2.0,245.465,6.0,1.0,45.9,85.84700000000001,2.6,79.94,0.7040000000000001,38486.9,10.93,1.96,1134.110282
986,141750,PRY,South America,Paraguay,2022-07-01,655532.0,0.0,0.0,18963.0,0.0,0.0,90798.421,0.0,0.0,2626.585,0.0,0.0,0.07,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,2609819.0,1757.0,361.48900000000003,0.243,1763.0,0.244,0.0654,15.3,tests performed,8952310.0,3950238.0,3462777.0,1539295.0,33555.0,8811.0,124.0,54.72,47.96,21.32,1220.0,807.0,0.011000000000000001,13.89,7219641.0,17.144000000000002,26.5,6.377999999999999,3.833,8827.01,1.7,199.128,8.27,5.0,21.6,79.602,1.3,74.25,0.728,24508.4,31.67,-9.8,3394.684029
987,56702,SWZ,Africa,Eswatini,2022-07-01,73131.0,22.0,8.857000000000001,1416.0,0.0,0.14300000000000002,62378.824,18.765,7.555,1207.8110000000001,0.0,0.122,0.92,4.0,3.0180000000000002,95.0,71.688,3.0,2.256,79.0,59.395,549656.0,333.0,468.842,0.284,303.0,0.258,0.0434,23.1,tests performed,535393.0,387468.0,336066.0,66331.0,7504.0,0.0,45.67,33.05,28.67,5.66,0.0,0.0,0.0,23.15,1172369.0,79.492,21.5,3.1630000000000003,1.845,7738.975,0.5,333.436,3.94,1.7,16.5,24.096999999999998,2.1,60.19,0.611,3805.5,9.78,12.82,2871.66802
988,129146,NIC,North America,Nicaragua,2022-07-01,14690.0,0.0,10.142999999999999,242.0,0.0,0.14300000000000002,2191.759,0.0,1.5130000000000001,36.107,0.0,0.021,0.06,41.0,2.387,717.0,41.751000000000005,30.0,1.7469999999999999,680.0,39.597,196380.0,1761.0,29.3,0.344,205.0,0.031,0.0174,57.4,tests performed,11441278.0,5938231.0,5503047.0,2756062.0,7377.0,14308.0,170.7,88.6,82.11,53.76,2135.0,2983.0,0.045,13.89,6702379.0,51.667,27.3,5.445,3.5189999999999997,5321.444,3.2,137.016,11.47,14.8,17.2,47.782,0.9,74.48,0.66,8148.4,31.97,5.18,1215.747423
989,81254,HUN,Europe,Hungary,2022-07-01,1928125.0,3042.0,434.57099999999997,46647.0,21.0,3.0,200134.168,315.751,45.107,4841.833,2.18,0.311,1.2,1000.0,11.919,1499.0,155.592,21.0,2.06,1323.0,127.544,10943720.0,39094.0,1135.9289999999999,4.058,4344.0,0.451,0.2219,4.5,tests performed,16530488.0,6411804.0,6198798.0,4189321.0,93527.0,938.0,171.58,66.55,64.34,43.48,97.0,60.0,0.001,11.11,9634162.0,108.04299999999999,43.4,18.577,11.975999999999999,26777.561,0.5,278.296,7.55,26.8,34.8,84.169,7.02,76.88,0.8540000000000001,37165.7,11.92,-2.81,3857.6993
990,67064,GEO,Asia,Georgia,2022-07-01,1660429.0,1058.0,151.143,16841.0,0.0,0.28600000000000003,417217.01200000005,265.844,37.978,4231.648,0.0,0.07200000000000001,0.02,960.0,14.239,16108.0,238.91299999999998,590.0,8.751,6479.0,96.096,13652505.0,20318.0,3430.473,5.105,3491.0,0.877,0.0706,14.2,tests performed,2902085.0,1631237.0,1270848.0,80818.0,758.0,266.0,72.92,40.99,31.93,2.03,67.0,159.0,0.004,13.89,3979773.0,65.032,38.7,14.864,10.244000000000002,9745.079,4.2,496.218,7.11,5.3,55.5,7.876,2.6,73.77,0.812,20504.2,22.8,46.06,5152.102896
991,165479,ZAF,Africa,South Africa,2022-07-01,3993843.0,399.0,405.714,101793.0,29.0,10.857000000000001,66517.492,6.645,6.757000000000001,1695.3629999999998,0.483,0.18100000000000002,0.43,202.0,3.364,1725.0,28.73,7.0,3.319,470.0,7.827999999999999,25637671.0,19244.0,426.996,0.321,14296.0,0.23800000000000002,0.0726,13.8,people tested,36843272.0,22035325.0,19065825.0,3469201.0,19577.0,15941.0,61.36,36.7,31.75,5.78,265.0,5214.0,0.009000000000000001,11.11,60041996.0,46.754,27.3,5.343999999999999,3.053,12294.876,18.9,200.38,5.52,8.1,33.2,43.993,2.32,64.13,0.7090000000000001,272670.6,21.46,10.13,4541.331371
992,155024,SMR,Europe,San Marino,2022-07-01,18092.0,76.0,53.286,115.0,0.0,0.0,531961.188,2234.637,1566.766,3381.3579999999997,0.0,0.0,1.15,61.0,3.1889999999999996,683.0,35.707,9.0,1.669,7292.0,49.975,108388.0,59.0,974.1080000000001,0.53,50.0,0.449,0.2257,4.4,tests performed,69338.0,26357.0,23633.0,19348.0,9.0,4.0,203.88,77.5,69.49,56.89,118.0,0.0,0.0,13.89,34010.0,556.6669999999999,22.0,5.606,3.5639999999999996,56861.47,56.0,348.977,5.64,16.7,38.1,87.20200000000001,3.8,84.97,0.715,133.0,21.63,-19.49,3910.614525
993,189954,OWID_UMC,North America,Upper middle income,2022-07-01,131897917.0,128783.0,116743.0,2533490.0,464.0,416.57099999999997,52472.19,51.233000000000004,46.443000000000005,1007.8839999999999,0.185,0.166,1.13,3391.0,10.186,29765.0,89.40700000000001,241.0,5.156000000000001,36778.0,110.473,115079.0,14.0,1104.214,0.134,54.0,0.518,0.192,5.2,tests performed,5228409566.0,2075489845.0,1965267759.0,1153385587.0,2402706.0,1556707.0,208.0,82.57,78.18,45.88,619.0,76640.0,0.003,43.52,2513672790.0,306.48,42.2,18.601,10.799000000000001,54225.445999999996,1.2,273.67,12.26,19.1,24.6,21.221999999999998,2.77,80.58,0.9259999999999999,1105051.9,16.45,-3.34,3319.320711
994,48202,DNK,Europe,Denmark,2022-07-01,3173556.0,1790.0,1772.5710000000001,6471.0,2.0,4.7139999999999995,545912.805,307.915,304.916,1113.137,0.344,0.8109999999999999,1.33,12.0,2.064,290.0,49.886,10.0,0.932,483.0,83.085,64649913.0,7934.0,11121.031,1.365,7179.0,1.235,0.19399999999999998,5.2,tests performed,13227056.0,4829959.0,4793733.0,3650092.0,336.0,595.0,227.53,83.08,82.46,62.79,102.0,29.0,0.0,11.11,5813302.0,136.52,42.3,19.677,12.325,46682.515,0.2,114.76700000000001,6.41,19.3,18.8,4.4719999999999995,2.5,80.9,0.94,1780.7,1.29,0.54,306.3147244
995,67954,DEU,Europe,Germany,2022-07-01,28392629.0,98669.0,88788.286,141292.0,103.0,79.714,338408.458,1176.024,1058.257,1684.043,1.228,0.95,1.21,977.0,11.645,16108.0,238.91299999999998,946.0,11.275,5296.0,63.122,131286804.0,20318.0,1564.7920000000001,5.105,88471.0,1.054,0.418,2.4,tests performed,182895940.0,64705163.0,63353019.0,57131867.0,34302.0,34643.0,217.99,77.12,75.51,68.09,413.0,1178.0,0.001,17.59,83900471.0,237.016,46.6,21.453000000000003,15.957,45229.245,4.2,156.139,8.31,28.2,33.1,7.876,8.0,81.33,0.9470000000000001,90163.5,3.81,-1.17,1074.648318
996,164600,SOM,Africa,Somalia,2022-07-01,26803.0,0.0,7.857,1361.0,0.0,0.0,1638.375,0.0,0.48,83.193,0.0,0.0,0.5,11.0,5.292000000000001,62.0,29.826,7.0,3.319,43.0,20.863000000000003,501224.0,3998.0,30.638,1.923,252.0,0.015,0.0414,24.2,tests performed,3143630.0,2645189.0,1641835.0,2343.0,0.0,5733.0,19.22,16.17,10.04,0.33,350.0,5946.0,0.036000000000000004,40.74,16359500.0,23.5,16.8,2.7310000000000003,1.496,2205.923,25.1,365.769,6.05,20.1,25.0,9.831,0.9,57.4,0.5670000000000001,5202.5,10.13,-6.54,2502.73846
997,142601,PER,South America,Peru,2022-07-01,3629796.0,2994.0,2667.571,213526.0,17.0,11.857000000000001,108808.743,89.75,79.965,6400.772,0.51,0.355,1.41,41.0,2.387,467.0,85.443,9.0,1.669,234.0,42.846000000000004,28971116.0,1757.0,868.454,0.243,49170.0,1.474,0.009000000000000001,111.1,tests performed,77892776.0,29526162.0,27648136.0,20718478.0,18196.0,72952.0,233.5,88.51,82.88,62.11,2187.0,3081.0,0.009000000000000001,50.93,33359415.0,25.129,29.1,7.151,4.455,12236.706,3.5,85.755,5.95,4.8,21.6,79.602,1.6,76.74,0.777,231903.0,72.67,1.94,6951.650681
998,7734,ARG,South America,Argentina,2022-07-01,9367172.0,0.0,3668.571,129070.0,0.0,7.7139999999999995,205394.21,0.0,80.441,2830.1209999999996,0.0,0.16899999999999998,1.01,372.0,8.157,,,,,,,36663990.0,6236.0,803.932,0.13699999999999998,36366.0,0.797,0.287,3.5,tests performed,106038289.0,41163452.0,37586029.0,27606317.0,84845.0,65933.0,232.51,90.26,82.41,60.53,1446.0,978.0,0.002,39.81,45605823.0,16.177,31.9,11.198,7.441,18933.907,0.6,191.032,5.5,16.2,27.7,26.664,5.0,76.67,0.845,41948.2,12.45,28.58,919.7992107000001